Show / Hide Table of Contents

Class AuditUserLink

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

Inheritance
System.Object
AuditUserLink
Implements
Google.Protobuf.IMessage<AuditUserLink>
System.IEquatable<AuditUserLink>
Google.Protobuf.IDeepCloneable<AuditUserLink>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Inherited Members
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ToString()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class AuditUserLink : IMessage<AuditUserLink>, IEquatable<AuditUserLink>, IDeepCloneable<AuditUserLink>, IBufferMessage, IMessage

Constructors

AuditUserLink()

Declaration
public AuditUserLink()

AuditUserLink(AuditUserLink)

Declaration
public AuditUserLink(AuditUserLink other)
Parameters
Type Name Description
AuditUserLink other

Properties

DirectRoles

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.

Declaration
public RepeatedField<string> DirectRoles { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<System.String>

EffectiveRoles

Union of all permissions a user has at this account or property (includes direct permissions, group-inherited permissions, etc.).

Format: predefinedRoles/read

Declaration
public RepeatedField<string> EffectiveRoles { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<System.String>

EmailAddress

Email address of the linked user

Declaration
public string EmailAddress { get; set; }
Property Value
Type Description
System.String

Name

Example format: properties/1234/userLinks/5678

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
In This Article
Back to top