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.



1449
1450
1451
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1449

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>)


1430
1431
1432
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1430

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>)


1437
1438
1439
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1437

def effective_roles
  @effective_roles
end

#email_addressString

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

Returns:

  • (String)


1442
1443
1444
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1442

def email_address
  @email_address
end

#nameString

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

Returns:

  • (String)


1447
1448
1449
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1447

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1454
1455
1456
1457
1458
1459
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 1454

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