google_api_spanner v0.0.1 GoogleApi.Spanner.V1.Model.AuditLogConfig View Source

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.

Attributes

  • exemptedMembers (List[String]): Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members. Defaults to: null.
  • logType (String): The log type that this config enables. Defaults to: null.

    • Enum - one of [LOG_TYPE_UNSPECIFIED, ADMIN_READ, DATA_WRITE, DATA_READ]