class Google::Apis::ComputeBeta::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_beta/classes.rb, line 29282 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 29287 def update!(**args) @description = args[:description] if args.key?(:description) @range = args[:range] if args.key?(:range) end