Class: Google::Apis::TagmanagerV2::CreateContainerVersionRequestVersionOptions
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::CreateContainerVersionRequestVersionOptions
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/tagmanager_v2/classes.rb,
lib/google/apis/tagmanager_v2/representations.rb,
lib/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.
827 828 829 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 827 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
820 821 822 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 820 def name @name end |
#notes ⇒ String
The notes of the container version to be created.
Corresponds to the JSON property notes
825 826 827 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 825 def notes @notes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
832 833 834 835 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 832 def update!(**args) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) end |