class Google::Apis::ComputeV1::RouterAdvertisedIpRange

Description-tagged IP ranges for the router to advertise.

Attributes

description[RW]

User-specified description for the IP range. Corresponds to the JSON property `description` @return [String]

range[RW]

The IP range to advertise. The value must be a CIDR-formatted string. Corresponds to the JSON property `range` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/compute_v1/classes.rb, line 30045
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_v1/classes.rb, line 30050
def update!(**args)
  @description = args[:description] if args.key?(:description)
  @range = args[:range] if args.key?(:range)
end