com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyAuditConfigAuditLogConfig.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.organizations.kotlin.outputs
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property exemptedMembers Specifies the identities that are exempt from these types of logging operations. Follows the same format of the `members` array for `binding`.
* @property logType Defines the logging level. `DATA_READ`, `DATA_WRITE` and `ADMIN_READ` capture different types of events. See [the audit configuration documentation](https://cloud.google.com/resource-manager/reference/rest/Shared.Types/AuditConfig) for more details.
*/
public data class GetIAMPolicyAuditConfigAuditLogConfig(
public val exemptedMembers: List? = null,
public val logType: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.organizations.outputs.GetIAMPolicyAuditConfigAuditLogConfig): GetIAMPolicyAuditConfigAuditLogConfig = GetIAMPolicyAuditConfigAuditLogConfig(
exemptedMembers = javaType.exemptedMembers().map({ args0 -> args0 }),
logType = javaType.logType(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy