class Google::Apis::ComputeV1::HelpLink

Describes a URL link.

Attributes

description[RW]

Describes what the link offers. Corresponds to the JSON property `description` @return [String]

url[RW]

The URL of the link. Corresponds to the JSON property `url` @return [String]

Public Class Methods

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