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.



199
200
201
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 199

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

Instance Attribute Details

#direct_rolesArray<String>

Roles directly assigned to this user for this entity. Format: predefinedRoles/ read 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>)


180
181
182
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 180

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/read Corresponds to the JSON property effectiveRoles

Returns:

  • (Array<String>)


187
188
189
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 187

def effective_roles
  @effective_roles
end

#email_addressString

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

Returns:

  • (String)


192
193
194
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 192

def email_address
  @email_address
end

#nameString

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

Returns:

  • (String)


197
198
199
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 197

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



204
205
206
207
208
209
# File 'lib/google/apis/analyticsadmin_v1alpha/classes.rb', line 204

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