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.
846 847 848 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 846 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
839 840 841 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 839 def name @name end |
#notes ⇒ String
The notes of the container version to be created.
Corresponds to the JSON property notes
844 845 846 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 844 def notes @notes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
851 852 853 854 |
# File 'lib/google/apis/tagmanager_v2/classes.rb', line 851 def update!(**args) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) end |