Google Cloud Identity and Access Management (IAM) v1 API - Class AuditLogConfig (3.1.0)

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

Reference documentation and code samples for the Google Cloud Identity and Access Management (IAM) v1 API class AuditLogConfig.

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

{
  "audit_log_configs": [
    {
      "log_type": "DATA_READ",
      "exempted_members": [
        "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
RepeatedFieldstring

LogType

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

The log type that this config enables.

Property Value
TypeDescription
AuditLogConfigTypesLogType