![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.apimanagement.kotlin.outputs.GetServiceHostnameConfigurationDeveloperPortal.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.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 GetServiceHostnameConfigurationDeveloperPortal(
public val hostName: String,
public val keyVaultId: String,
public val negotiateClientCertificate: Boolean,
) {
public companion object {
public fun toKotlin(javaType: com.pulumi.azure.apimanagement.outputs.GetServiceHostnameConfigurationDeveloperPortal): GetServiceHostnameConfigurationDeveloperPortal =
GetServiceHostnameConfigurationDeveloperPortal(
hostName = javaType.hostName(),
keyVaultId = javaType.keyVaultId(),
negotiateClientCertificate = javaType.negotiateClientCertificate(),
)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy