Class: Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraints
- 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
-
#bgp_md5 ⇒ String
[Output Only] Whether the attachment's BGP session requires/allows/disallows BGP MD5 authentication.
-
#bgp_peer_asn_ranges ⇒ Array<Google::Apis::ComputeAlpha::InterconnectAttachmentConfigurationConstraintsBgpPeerAsnRange>
[Output Only] List of ASN ranges that the remote location is known to support.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InterconnectAttachmentConfigurationConstraints
constructor
A new instance of InterconnectAttachmentConfigurationConstraints.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InterconnectAttachmentConfigurationConstraints
Returns a new instance of InterconnectAttachmentConfigurationConstraints.
21253 21254 21255 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21253 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bgp_md5 ⇒ String
[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
21241 21242 21243 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21241 def bgp_md5 @bgp_md5 end |
#bgp_peer_asn_ranges ⇒ Array<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
21251 21252 21253 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21251 def bgp_peer_asn_ranges @bgp_peer_asn_ranges end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21258 21259 21260 21261 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 21258 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 |