class Google::Apis::ServicenetworkingV1::Range
Represents a found unused range.
Attributes
ip_cidr_range[RW]
CIDR range in “10.x.x.x/y” format that is within the allocated ranges and currently unused. Corresponds to the JSON property `ipCidrRange` @return [String]
network[RW]
In the Shared VPC host project, the VPC network that's peered with the consumer network. For example: `projects/1234321/global/networks/host-network` Corresponds to the JSON property `network` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/servicenetworking_v1/classes.rb, line 3143 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_v1/classes.rb, line 3148 def update!(**args) @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range) @network = args[:network] if args.key?(:network) end