com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyResult.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
/**
* A collection of values returned by getIAMPolicy.
* @property auditConfigs
* @property bindings
* @property id The provider-assigned unique ID for this managed resource.
* @property policyData The above bindings serialized in a format suitable for
* referencing from a resource that supports IAM.
*/
public data class GetIAMPolicyResult(
public val auditConfigs: List? = null,
public val bindings: List? = null,
public val id: String,
public val policyData: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.organizations.outputs.GetIAMPolicyResult): GetIAMPolicyResult = GetIAMPolicyResult(
auditConfigs = javaType.auditConfigs().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyAuditConfig.Companion.toKotlin(args0)
})
}),
bindings = javaType.bindings().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.organizations.kotlin.outputs.GetIAMPolicyBinding.Companion.toKotlin(args0)
})
}),
id = javaType.id(),
policyData = javaType.policyData(),
)
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy