Class: Google::Apis::TagmanagerV2::ContainerAccess
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::ContainerAccess
- 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
Defines the Google Tag Manager Container access permissions.
Instance Attribute Summary collapse
-
#container_id ⇒ String
GTM Container ID.
-
#permission ⇒ String
List of Container permissions.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ContainerAccess
constructor
A new instance of ContainerAccess.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ContainerAccess
Returns a new instance of ContainerAccess
275 276 277 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 275 def initialize(**args) update!(**args) end |
Instance Attribute Details
#container_id ⇒ String
GTM Container ID.
Corresponds to the JSON property containerId
268 269 270 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 268 def container_id @container_id end |
#permission ⇒ String
List of Container permissions.
Corresponds to the JSON property permission
273 274 275 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 273 def @permission end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
280 281 282 283 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 280 def update!(**args) @container_id = args[:container_id] if args.key?(:container_id) @permission = args[:permission] if args.key?(:permission) end |