Class: Google::Apis::ServicenetworkingV1beta::SecondaryIpRange
- Inherits:
-
Object
- Object
- Google::Apis::ServicenetworkingV1beta::SecondaryIpRange
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/servicenetworking_v1beta/classes.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb,
lib/google/apis/servicenetworking_v1beta/representations.rb
Instance Attribute Summary collapse
-
#ip_cidr_range ⇒ String
Secondary IP CIDR range in
x.x.x.x/y
format. -
#range_name ⇒ String
Name of the secondary IP range.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SecondaryIpRange
constructor
A new instance of SecondaryIpRange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SecondaryIpRange
Returns a new instance of SecondaryIpRange.
3039 3040 3041 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3039 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ip_cidr_range ⇒ String
Secondary IP CIDR range in x.x.x.x/y
format.
Corresponds to the JSON property ipCidrRange
3032 3033 3034 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3032 def ip_cidr_range @ip_cidr_range end |
#range_name ⇒ String
Name of the secondary IP range.
Corresponds to the JSON property rangeName
3037 3038 3039 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3037 def range_name @range_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3044 3045 3046 3047 |
# File 'lib/google/apis/servicenetworking_v1beta/classes.rb', line 3044 def update!(**args) @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range) @range_name = args[:range_name] if args.key?(:range_name) end |