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

com.pulumi.azure.containerservice.kotlin.outputs.GetKubernetesClusterKeyManagementService.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: 6.15.0.0
Show newest version
@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