class Google::Apis::ComputeBeta::UsableSubnetworkSecondaryRange

Secondary IP range of a usable subnetwork.

Attributes

ip_cidr_range[RW]

The range of IP addresses belonging to this subnetwork secondary range. Corresponds to the JSON property `ipCidrRange` @return [String]

range_name[RW]

The name associated with this subnetwork secondary range, used when adding an alias IP range to a VM instance. The name must be 1-63 characters long, and comply with RFC1035. The name must be unique within the subnetwork. Corresponds to the JSON property `rangeName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_beta/classes.rb, line 39012
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/compute_beta/classes.rb, line 39017
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