All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.gcp.projects.kotlin.outputs.IAMAuditConfigAuditLogConfig.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 8.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.projects.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.projects.outputs.IAMAuditConfigAuditLogConfig): IAMAuditConfigAuditLogConfig = IAMAuditConfigAuditLogConfig(
            exemptedMembers = javaType.exemptedMembers().map({ args0 -> args0 }),
            logType = javaType.logType(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy