com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicy.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-kotlin Show documentation
Show all versions of pulumi-azure-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.azure.keyvault.kotlin.outputs
import kotlin.Suppress
import kotlin.collections.List
/**
*
* @property issuerParameters A `issuer_parameters` block as defined below.
* @property keyProperties A `key_properties` block as defined below.
* @property lifetimeActions A `lifetime_action` block as defined below.
* @property secretProperties A `secret_properties` block as defined below.
* @property x509CertificateProperties An `x509_certificate_properties` block as defined below.
*/
public data class GetCertificateCertificatePolicy(
public val issuerParameters: List,
public val keyProperties: List,
public val lifetimeActions: List,
public val secretProperties: List,
public val x509CertificateProperties:
List,
) {
public companion object {
public
fun toKotlin(javaType: com.pulumi.azure.keyvault.outputs.GetCertificateCertificatePolicy):
GetCertificateCertificatePolicy = GetCertificateCertificatePolicy(
issuerParameters = javaType.issuerParameters().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyIssuerParameter.Companion.toKotlin(args0)
})
}),
keyProperties = javaType.keyProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyKeyProperty.Companion.toKotlin(args0)
})
}),
lifetimeActions = javaType.lifetimeActions().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyLifetimeAction.Companion.toKotlin(args0)
})
}),
secretProperties = javaType.secretProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicySecretProperty.Companion.toKotlin(args0)
})
}),
x509CertificateProperties = javaType.x509CertificateProperties().map({ args0 ->
args0.let({ args0 ->
com.pulumi.azure.keyvault.kotlin.outputs.GetCertificateCertificatePolicyX509CertificateProperty.Companion.toKotlin(args0)
})
}),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy