Class: Google::Apis::AnalyticsadminV1alpha::GoogleAnalyticsAdminV1alphaAuditUserLink

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

Overview

Read-only resource used to summarize a principal's effective roles.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAnalyticsAdminV1alphaAuditUserLink

Returns a new instance of GoogleAnalyticsAdminV1alphaAuditUserLink.



1372
1373
1374
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1372

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

Instance Attribute Details

#direct_rolesArray<String>

Roles directly assigned to this user for this entity. Format: predefinedRoles/ viewer Excludes roles that are inherited from an account (if this is for a property), group, or organization admin role. Corresponds to the JSON property directRoles

Returns:

  • (Array<String>)


1353
1354
1355
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1353

def direct_roles
  @direct_roles
end

#effective_rolesArray<String>

Union of all permissions a user has at this account or property (includes direct permissions, group-inherited permissions, etc.). Format: predefinedRoles/viewer Corresponds to the JSON property effectiveRoles

Returns:

  • (Array<String>)


1360
1361
1362
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1360

def effective_roles
  @effective_roles
end

#email_addressString

Email address of the linked user Corresponds to the JSON property emailAddress

Returns:

  • (String)


1365
1366
1367
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1365

def email_address
  @email_address
end

#nameString

Example format: properties/1234/userLinks/5678 Corresponds to the JSON property name

Returns:

  • (String)


1370
1371
1372
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1370

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1377
1378
1379
1380
1381
1382
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1377

def update!(**args)
  @direct_roles = args[:direct_roles] if args.key?(:direct_roles)
  @effective_roles = args[:effective_roles] if args.key?(:effective_roles)
  @email_address = args[:email_address] if args.key?(:email_address)
  @name = args[:name] if args.key?(:name)
end