Class: Google::Apis::ComputeAlpha::SubnetworksExpandIpCidrRangeRequest
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::SubnetworksExpandIpCidrRangeRequest
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb
Instance Attribute Summary collapse
-
#ip_cidr_range ⇒ String
The IP (in CIDR format or netmask) of internal addresses that are legal on this Subnetwork.
-
#range_type ⇒ String
The type of IP CIDR range to associate with this subnetwork.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SubnetworksExpandIpCidrRangeRequest
constructor
A new instance of SubnetworksExpandIpCidrRangeRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SubnetworksExpandIpCidrRangeRequest
Returns a new instance of SubnetworksExpandIpCidrRangeRequest
31571 31572 31573 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31571 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_cidr_range ⇒ String
The IP (in CIDR format or netmask) of internal addresses that are legal on
this Subnetwork. This range should be disjoint from other subnetworks within
this network. This range can only be larger than (i.e. a superset of) the
range previously defined before the update.
Corresponds to the JSON property ipCidrRange
31562 31563 31564 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31562 def ip_cidr_range @ip_cidr_range end |
#range_type ⇒ String
The type of IP CIDR range to associate with this subnetwork. The default is
RFC_1918. When expanding to a non-RFC 1918 range, this field must be be set to
NON_RFC_1918.
Corresponds to the JSON property rangeType
31569 31570 31571 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31569 def range_type @range_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31576 31577 31578 31579 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 31576 def update!(**args) @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range) @range_type = args[:range_type] if args.key?(:range_type) end |