Class: Google::Apis::ClouddebuggerV2::AliasContext
- Inherits:
-
Object
- Object
- Google::Apis::ClouddebuggerV2::AliasContext
- Defined in:
- generated/google/apis/clouddebugger_v2/classes.rb,
generated/google/apis/clouddebugger_v2/representations.rb,
generated/google/apis/clouddebugger_v2/representations.rb
Overview
An alias to a repo revision.
Instance Attribute Summary collapse
-
#kind ⇒ String
The alias kind.
-
#name ⇒ String
The alias name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AliasContext
constructor
A new instance of AliasContext.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AliasContext
Returns a new instance of AliasContext
770 771 772 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 770 def initialize(**args) update!(**args) end |
Instance Attribute Details
#kind ⇒ String
The alias kind.
Corresponds to the JSON property kind
768 769 770 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 768 def kind @kind end |
#name ⇒ String
The alias name.
Corresponds to the JSON property name
763 764 765 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 763 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
775 776 777 778 |
# File 'generated/google/apis/clouddebugger_v2/classes.rb', line 775 def update!(**args) @name = args[:name] if args.key?(:name) @kind = args[:kind] if args.key?(:kind) end |