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