AuditLogConfigResponse

data class AuditLogConfigResponse(val exemptedMembers: List<String>, val ignoreChildExemptions: Boolean, val logType: String)

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.

Constructors

Link copied to clipboard
fun AuditLogConfigResponse(exemptedMembers: List<String>, ignoreChildExemptions: Boolean, logType: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

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

Link copied to clipboard
Link copied to clipboard

The log type that this config enables.