Class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InterconnectAttachmentConfigurationConstraints

Returns a new instance of InterconnectAttachmentConfigurationConstraints.



22411
22412
22413
# File 'lib/google/apis/compute_alpha/classes.rb', line 22411

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#bgp_md5String

[Output Only] Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication. This can take one of the following values: MD5_OPTIONAL, MD5_REQUIRED, MD5_UNSUPPORTED. For example, a Cross-Cloud Interconnect connection to a remote cloud provider that requires BGP MD5 authentication has the interconnectRemoteLocation attachment_configuration_constraints.bgp_md5 field set to MD5_REQUIRED, and that property is propagated to the attachment. Similarly, if BGP MD5 is MD5_UNSUPPORTED, an error is returned if MD5 is requested. Corresponds to the JSON property bgpMd5

Returns:

  • (String)


22399
22400
22401
# File 'lib/google/apis/compute_alpha/classes.rb', line 22399

def bgp_md5
  @bgp_md5
end

#bgp_peer_asn_rangesArray<Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange>

[Output Only] List of ASN ranges that the remote location is known to support. Formatted as an array of inclusive ranges min: min-value, max: max-value. For example, [min: 123, max: 123, min: 64512, max: 65534] allows the peer ASN to be 123 or anything in the range 64512-65534. This field is only advisory. Although the API accepts other ranges, these are the ranges that we recommend. Corresponds to the JSON property bgpPeerAsnRanges



22409
22410
22411
# File 'lib/google/apis/compute_alpha/classes.rb', line 22409

def bgp_peer_asn_ranges
  @bgp_peer_asn_ranges
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



22416
22417
22418
22419
# File 'lib/google/apis/compute_alpha/classes.rb', line 22416

def update!(**args)
  @bgp_md5 = args[:bgp_md5] if args.key?(:bgp_md5)
  @bgp_peer_asn_ranges = args[:bgp_peer_asn_ranges] if args.key?(:bgp_peer_asn_ranges)
end