AuditLogConfig

Provides the configuration for logging a type of permissions. Example: { "audit_log_configs": [ { "log_type": "DATA_READ", "exempted_members": [ "user:[email protected]" ] }, { "log_type": "DATA_WRITE" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from DATA_READ logging.

HealthcareFHIRHL7v2DICOMMedical ImagingDe-identificationInteroperabilityCloud

Properties

Name Type Description
exemptedMembers array Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.
logType string The log type that this config enables.
View JSON Schema on GitHub

JSON Schema

AuditLogConfig.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "AuditLogConfig",
  "description": "Provides the configuration for logging a type of permissions. Example: { \"audit_log_configs\": [ { \"log_type\": \"DATA_READ\", \"exempted_members\": [ \"user:[email protected]\" ] }, { \"log_type\": \"DATA_WRITE\" } ] } This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting [email protected] from DATA_READ logging.",
  "properties": {
    "exemptedMembers": {
      "description": "Specifies the identities that do not cause logging for this type of permission. Follows the same format of Binding.members.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "logType": {
      "description": "The log type that this config enables.",
      "enum": [
        "LOG_TYPE_UNSPECIFIED",
        "ADMIN_READ",
        "DATA_WRITE",
        "DATA_READ"
      ],
      "type": "string"
    }
  },
  "type": "object"
}