class Google::Apis::ServicenetworkingV1beta::GoogleCloudServicenetworkingV1ConsumerConfigReservedRange
Allocated IP address ranges for this private service access connection.
Attributes
address[RW]
The starting address of the reserved range. The address must be a valid IPv4 address in the x.x.x.x format. This value combined with the IP prefix length is the CIDR range for the reserved range. Corresponds to the JSON property `address` @return [String]
ip_prefix_length[RW]
The prefix length of the reserved range. Corresponds to the JSON property `ipPrefixLength` @return [Fixnum]
name[RW]
The name of the reserved range. Corresponds to the JSON property `name` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicenetworking_v1beta/classes.rb, line 1418 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/servicenetworking_v1beta/classes.rb, line 1423 def update!(**args) @address = args[:address] if args.key?(:address) @ip_prefix_length = args[:ip_prefix_length] if args.key?(:ip_prefix_length) @name = args[:name] if args.key?(:name) end