Class: Google::Apis::ComputeBeta::RouterBgpPeerCustomLearnedIpRange
- Inherits:
-
Object
- Object
- Google::Apis::ComputeBeta::RouterBgpPeerCustomLearnedIpRange
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/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.
52547 52548 52549 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52547 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
52545 52546 52547 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52545 def range @range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
52552 52553 52554 |
# File 'lib/google/apis/compute_beta/classes.rb', line 52552 def update!(**args) @range = args[:range] if args.key?(:range) end |