Compute Engine v1 API - Class AuditLogConfig (2.15.0)

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

Reference documentation and code samples for the Compute Engine 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.Compute.V1

Assembly

Google.Cloud.Compute.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.

Property Value
TypeDescription
RepeatedFieldstring

HasIgnoreChildExemptions

public bool HasIgnoreChildExemptions { get; }

Gets whether the "ignore_child_exemptions" field is set

Property Value
TypeDescription
bool

HasLogType

public bool HasLogType { get; }

Gets whether the "log_type" field is set

Property Value
TypeDescription
bool

IgnoreChildExemptions

public bool IgnoreChildExemptions { get; set; }

This is deprecated and has no effect. Do not use.

Property Value
TypeDescription
bool

LogType

public string LogType { get; set; }

The log type that this config enables. Check the LogType enum for the list of possible values.

Property Value
TypeDescription
string