com.pulumi.gcp.privilegedaccessmanager.kotlin.outputs.EntitlementRequesterJustificationConfig.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.privilegedaccessmanager.kotlin.outputs
import kotlin.Suppress
/**
*
* @property notMandatory The justification is not mandatory but can be provided in any of the supported formats.
* @property unstructured The requester has to provide a justification in the form of free flowing text.
* - - -
*/
public data class EntitlementRequesterJustificationConfig(
public val notMandatory: EntitlementRequesterJustificationConfigNotMandatory? = null,
public val unstructured: EntitlementRequesterJustificationConfigUnstructured? = null,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.gcp.privilegedaccessmanager.outputs.EntitlementRequesterJustificationConfig): EntitlementRequesterJustificationConfig = EntitlementRequesterJustificationConfig(
notMandatory = javaType.notMandatory().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.privilegedaccessmanager.kotlin.outputs.EntitlementRequesterJustificationConfigNotMandatory.Companion.toKotlin(args0)
})
}).orElse(null),
unstructured = javaType.unstructured().map({ args0 ->
args0.let({ args0 ->
com.pulumi.gcp.privilegedaccessmanager.kotlin.outputs.EntitlementRequesterJustificationConfigUnstructured.Companion.toKotlin(args0)
})
}).orElse(null),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy