Audit Log Config Response
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)