Class: Google::Apis::TagmanagerV1::UserAccess

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/tagmanager_v1/classes.rb,
generated/google/apis/tagmanager_v1/representations.rb,
generated/google/apis/tagmanager_v1/representations.rb

Overview

Represents a user's permissions to an account and its container.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ UserAccess

Returns a new instance of UserAccess



1444
1445
1446
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1444

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#account_accessGoogle::Apis::TagmanagerV1::AccountAccess

Defines the Google Tag Manager Account access permissions. Corresponds to the JSON property accountAccess



1422
1423
1424
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1422

def 
  @account_access
end

#account_idString

GTM Account ID. Corresponds to the JSON property accountId

Returns:

  • (String)


1427
1428
1429
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1427

def 
  @account_id
end

#container_accessArray<Google::Apis::TagmanagerV1::ContainerAccess>

GTM Container access permissions. Corresponds to the JSON property containerAccess



1432
1433
1434
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1432

def container_access
  @container_access
end

#email_addressString

User's email address. Corresponds to the JSON property emailAddress

Returns:

  • (String)


1437
1438
1439
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1437

def email_address
  @email_address
end

#permission_idString

Account Permission ID. Corresponds to the JSON property permissionId

Returns:

  • (String)


1442
1443
1444
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1442

def permission_id
  @permission_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1449
1450
1451
1452
1453
1454
1455
# File 'generated/google/apis/tagmanager_v1/classes.rb', line 1449

def update!(**args)
  @account_access = args[:account_access] if args.key?(:account_access)
  @account_id = args[:account_id] if args.key?(:account_id)
  @container_access = args[:container_access] if args.key?(:container_access)
  @email_address = args[:email_address] if args.key?(:email_address)
  @permission_id = args[:permission_id] if args.key?(:permission_id)
end