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

com.pulumi.gcp.certificateauthority.kotlin.outputs.CaPoolIssuancePolicyAllowedIssuanceModes.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.10.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.gcp.certificateauthority.kotlin.outputs

import kotlin.Boolean
import kotlin.Suppress

/**
 *
 * @property allowConfigBasedIssuance When true, allows callers to create Certificates by specifying a CertificateConfig.
 * @property allowCsrBasedIssuance When true, allows callers to create Certificates by specifying a CSR.
 */
public data class CaPoolIssuancePolicyAllowedIssuanceModes(
    public val allowConfigBasedIssuance: Boolean,
    public val allowCsrBasedIssuance: Boolean,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.gcp.certificateauthority.outputs.CaPoolIssuancePolicyAllowedIssuanceModes): CaPoolIssuancePolicyAllowedIssuanceModes = CaPoolIssuancePolicyAllowedIssuanceModes(
            allowConfigBasedIssuance = javaType.allowConfigBasedIssuance(),
            allowCsrBasedIssuance = javaType.allowCsrBasedIssuance(),
        )
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy