Class: Google::Apis::TagmanagerV2::CreateContainerVersionRequestVersionOptions
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::CreateContainerVersionRequestVersionOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tagmanager_v2/classes.rb,
generated/google/apis/tagmanager_v2/representations.rb,
generated/google/apis/tagmanager_v2/representations.rb
Overview
Options for new container versions.
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the container version to be created.
-
#notes ⇒ String
The notes of the container version to be created.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CreateContainerVersionRequestVersionOptions
constructor
A new instance of CreateContainerVersionRequestVersionOptions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CreateContainerVersionRequestVersionOptions
Returns a new instance of CreateContainerVersionRequestVersionOptions.
650 651 652 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 650 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
The name of the container version to be created.
Corresponds to the JSON property name
643 644 645 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 643 def name @name end |
#notes ⇒ String
The notes of the container version to be created.
Corresponds to the JSON property notes
648 649 650 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 648 def notes @notes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
655 656 657 658 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 655 def update!(**args) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) end |