![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.healthcareapis.kotlin.inputs.ServiceExportConfigurationInfoArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-azure-native-kotlin Show documentation
Show all versions of pulumi-azure-native-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.azurenative.healthcareapis.kotlin.inputs
import com.pulumi.azurenative.healthcareapis.inputs.ServiceExportConfigurationInfoArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
* Export operation configuration information
* @property storageAccountName The name of the default export storage account.
*/
public data class ServiceExportConfigurationInfoArgs(
public val storageAccountName: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.healthcareapis.inputs.ServiceExportConfigurationInfoArgs =
com.pulumi.azurenative.healthcareapis.inputs.ServiceExportConfigurationInfoArgs.builder()
.storageAccountName(storageAccountName?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [ServiceExportConfigurationInfoArgs].
*/
@PulumiTagMarker
public class ServiceExportConfigurationInfoArgsBuilder internal constructor() {
private var storageAccountName: Output? = null
/**
* @param value The name of the default export storage account.
*/
@JvmName("qiwytgmjqyppvknl")
public suspend fun storageAccountName(`value`: Output) {
this.storageAccountName = value
}
/**
* @param value The name of the default export storage account.
*/
@JvmName("cqqvpwrohcarvbiw")
public suspend fun storageAccountName(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountName = mapped
}
internal fun build(): ServiceExportConfigurationInfoArgs = ServiceExportConfigurationInfoArgs(
storageAccountName = storageAccountName,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy