class Google::Apis::ServicenetworkingV1beta::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_v1beta/classes.rb, line 2857
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 2862
def update!(**args)
  @ip_cidr_range = args[:ip_cidr_range] if args.key?(:ip_cidr_range)
  @network = args[:network] if args.key?(:network)
end