Class AuditLogConfig (3.0.0)

public sealed class AuditLogConfig : IMessage<AuditLogConfig>, IEquatable<AuditLogConfig>, IDeepCloneable<AuditLogConfig>, IBufferMessage, IMessage

Provides the configuration for logging a type of permissions. Example:

{ "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ &quot;user:jose@example.com" ] }, { "log_type": "DATA_WRITE" } ] }

This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.com from DATA_READ logging.

Inheritance

Object > AuditLogConfig

Namespace

Google.Cloud.Iam.V1

Assembly

Google.Cloud.Iam.V1.dll

Constructors

AuditLogConfig()

public AuditLogConfig()

AuditLogConfig(AuditLogConfig)

public AuditLogConfig(AuditLogConfig other)
Parameter
NameDescription
otherAuditLogConfig

Properties

ExemptedMembers

public RepeatedField<string> ExemptedMembers { get; }

Specifies the identities that do not cause logging for this type of permission. Follows the same format of [Binding.members][google.iam.v1.Binding.members].

Property Value
TypeDescription
RepeatedField<String>

LogType

public AuditLogConfig.Types.LogType LogType { get; set; }

The log type that this config enables.

Property Value
TypeDescription
AuditLogConfig.Types.LogType