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
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.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 |
---|---|
System.Collections.Generic.IList<T><string> |
LogType
The log type that this config enables.
Declaration
[JsonProperty("logType")]
public virtual string LogType { get; set; }
Property Value
Type | Description |
---|---|
string |