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

com.pulumi.gcp.organizations.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.13.1.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.organizations.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.
 * Each entry can have one of the following values:
 * * **user:{emailid}**: An email address that represents a specific Google account. For example, [email protected] or [email protected].
 * * **serviceAccount:{emailid}**: An email address that represents a service account. For example, [email protected].
 * * **group:{emailid}**: An email address that represents a Google group. For example, [email protected].
 * * **domain:{domain}**: A G Suite domain (primary, instead of alias) name that represents all the users of that domain. For example, google.com or example.com.
 * @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.organizations.outputs.IamAuditConfigAuditLogConfig): IamAuditConfigAuditLogConfig = IamAuditConfigAuditLogConfig(
            exemptedMembers = javaType.exemptedMembers().map({ args0 -> args0 }),
            logType = javaType.logType(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy