
com.pulumi.azure.apimanagement.kotlin.outputs.GetServiceHostnameConfigurationManagement.kt Maven / Gradle / Ivy
@file:Suppress("NAME_SHADOWING", "DEPRECATION")
package com.pulumi.azure.apimanagement.kotlin.outputs
import kotlin.Boolean
import kotlin.String
import kotlin.Suppress
/**
*
* @property hostName The Hostname used for the SCM URL.
* @property keyVaultId The ID of the Key Vault Secret which contains the SSL Certificate.
* @property negotiateClientCertificate Is Client Certificate Negotiation enabled?
*/
public data class GetServiceHostnameConfigurationManagement(
public val hostName: String,
public val keyVaultId: String,
public val negotiateClientCertificate: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetServiceHostnameConfigurationManagement): GetServiceHostnameConfigurationManagement = GetServiceHostnameConfigurationManagement(
hostName = javaType.hostName(),
keyVaultId = javaType.keyVaultId(),
negotiateClientCertificate = javaType.negotiateClientCertificate(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy