class Google::Apis::ContainerV1beta1::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. Corresponds to the JSON property `rangeName` @return [String]

status[RW]

This field is to determine the status of the secondary range programmably. Corresponds to the JSON property `status` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/container_v1beta1/classes.rb, line 5597
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)
  @status = args[:status] if args.key?(:status)
end