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.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateContainerVersionRequestVersionOptions
Returns a new instance of CreateContainerVersionRequestVersionOptions
517 518 519 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 517 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
510 511 512 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 510 def name @name end |
#notes ⇒ String
The notes of the container version to be created.
Corresponds to the JSON property notes
515 516 517 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 515 def notes @notes end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
522 523 524 525 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 522 def update!(**args) @name = args[:name] if args.key?(:name) @notes = args[:notes] if args.key?(:notes) end |