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

com.pulumi.gcp.privilegedaccessmanager.kotlin.outputs.EntitlementRequesterJustificationConfig.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.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