Struct google_ml1::GoogleIamV1__AuditLogConfig[][src]

pub struct GoogleIamV1__AuditLogConfig {
    pub exempted_members: Option<Vec<String>>,
    pub log_type: Option<String>,
}

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

{
  "audit_log_configs": [
    {
      "log_type": "DATA_READ",
      "exempted_members": [
        "user:foo@gmail.com"
      ]
    },
    {
      "log_type": "DATA_WRITE",
    }
  ]
}

This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo@gmail.com from DATA_READ logging.

This type is not used in any activity, and only used as part of another schema.

Fields

Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.

The log type that this config enables.

Trait Implementations

impl Default for GoogleIamV1__AuditLogConfig
[src]

Returns the "default value" for a type. Read more

impl Clone for GoogleIamV1__AuditLogConfig
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GoogleIamV1__AuditLogConfig
[src]

Formats the value using the given formatter. Read more

impl Part for GoogleIamV1__AuditLogConfig
[src]

Auto Trait Implementations