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.
Implements
Inherited Members
Namespace: Google.Apis.Backupdr.v1.Data
Assembly: Google.Apis.Backupdr.v1.dll
Syntax
public class AuditLogConfig : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
ExemptedMembers
Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
Declaration
[JsonProperty("exemptedMembers")]
public virtual IList<string> ExemptedMembers { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
LogType
The log type that this config enables.
Declaration
[JsonProperty("logType")]
public virtual string LogType { get; set; }
Property Value
Type | Description |
---|---|
string |