com.pulumi.gcp.folder.kotlin.outputs.IamAuditConfigAuditLogConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-gcp-kotlin Show documentation
Show all versions of pulumi-gcp-kotlin Show documentation
Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.gcp.folder.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property exemptedMembers Identities that do not cause logging for this type of permission. The format is the same as that for `members`.
* @property logType Permission type for which logging is to be configured. Must be one of `DATA_READ`, `DATA_WRITE`, or `ADMIN_READ`.
*/
public data class IamAuditConfigAuditLogConfig(
public val exemptedMembers: List? = null,
public val logType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.folder.outputs.IamAuditConfigAuditLogConfig): IamAuditConfigAuditLogConfig = IamAuditConfigAuditLogConfig(
exemptedMembers = javaType.exemptedMembers().map({ args0 -> args0 }),
logType = javaType.logType(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy