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

com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyAuditConfigAuditLogConfig.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.12.0.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 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