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

com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyAuditConfig.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 auditLogConfigs A nested block that defines the operations you'd like to log.
 * @property service Defines a service that will be enabled for audit logging. For example, `storage.googleapis.com`, `cloudsql.googleapis.com`. `allServices` is a special value that covers all services.
 */
public data class GetIAMPolicyAuditConfig(
    public val auditLogConfigs: List,
    public val service: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.organizations.outputs.GetIAMPolicyAuditConfig): GetIAMPolicyAuditConfig = GetIAMPolicyAuditConfig(
            auditLogConfigs = javaType.auditLogConfigs().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyAuditConfigAuditLogConfig.Companion.toKotlin(args0)
                })
            }),
            service = javaType.service(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy