Class: Google::Apis::ComputeAlpha::HelpLink
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::HelpLink
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Describes a URL link.
Instance Attribute Summary collapse
-
#description ⇒ String
Describes what the link offers.
-
#url ⇒ String
The URL of the link.
Instance Method Summary collapse
-
#initialize(**args) ⇒ HelpLink
constructor
A new instance of HelpLink.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ HelpLink
Returns a new instance of HelpLink.
14302 14303 14304 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14302 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Describes what the link offers.
Corresponds to the JSON property description
14295 14296 14297 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14295 def description @description end |
#url ⇒ String
The URL of the link.
Corresponds to the JSON property url
14300 14301 14302 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14300 def url @url end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
14307 14308 14309 14310 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 14307 def update!(**args) @description = args[:description] if args.key?(:description) @url = args[:url] if args.key?(:url) end |