![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKeyManagementService.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.containerservice.kotlin.outputs
import kotlin.String
import kotlin.Suppress
/**
*
* @property keyVaultKeyId Identifier of Azure Key Vault key. See [key identifier format](https://learn.microsoft.com/en-us/azure/key-vault/general/about-keys-secrets-certificates#vault-name-and-object-name) for more details.
* @property keyVaultNetworkAccess Network access of the key vault. The possible values are `Public` and `Private`. `Public` means the key vault allows public access from all networks. `Private` means the key vault disables public access and enables private link.
*/
public data class GetKubernetesClusterKeyManagementService(
public val keyVaultKeyId: String,
public val keyVaultNetworkAccess: String,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.containerservice.outputs.GetKubernetesClusterKeyManagementService): GetKubernetesClusterKeyManagementService = GetKubernetesClusterKeyManagementService(
keyVaultKeyId = javaType.keyVaultKeyId(),
keyVaultNetworkAccess = javaType.keyVaultNetworkAccess(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy