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

com.pulumi.azurenative.storage.kotlin.outputs.CustomDomainResponse.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: 2.82.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azurenative.storage.kotlin.outputs

import kotlin.Boolean
import kotlin.String
import kotlin.Suppress

/**
 * The custom domain assigned to this storage account. This can be set via Update.
 * @property name Gets or sets the custom domain name assigned to the storage account. Name is the CNAME source.
 * @property useSubDomainName Indicates whether indirect CName validation is enabled. Default value is false. This should only be set on updates.
 */
public data class CustomDomainResponse(
    public val name: String,
    public val useSubDomainName: Boolean? = null,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azurenative.storage.outputs.CustomDomainResponse): CustomDomainResponse = CustomDomainResponse(
            name = javaType.name(),
            useSubDomainName = javaType.useSubDomainName().map({ args0 -> args0 }).orElse(null),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy