Class: Google::Apis::ComputeAlpha::RouterBgpPeerCustomLearnedIpRange
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::RouterBgpPeerCustomLearnedIpRange
- 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
-
#range ⇒ String
The custom learned route IP address range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RouterBgpPeerCustomLearnedIpRange
constructor
A new instance of RouterBgpPeerCustomLearnedIpRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RouterBgpPeerCustomLearnedIpRange
Returns a new instance of RouterBgpPeerCustomLearnedIpRange.
39017 39018 39019 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 39017 def initialize(**args) update!(**args) end |
Instance Attribute Details
#range ⇒ String
The custom learned route IP address range. Must be a valid CIDR-formatted
prefix. If an IP address is provided without a subnet mask, it is interpreted
as, for IPv4, a /32
singular IP address range, and, for IPv6, /128
.
Corresponds to the JSON property range
39015 39016 39017 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 39015 def range @range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
39022 39023 39024 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 39022 def update!(**args) @range = args[:range] if args.key?(:range) end |