![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.migrate.kotlin.inputs.MigrationConfigurationArgs.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.migrate.kotlin.inputs
import com.pulumi.azurenative.migrate.inputs.MigrationConfigurationArgs.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
/**
* MigrationConfiguration properties.
* @property keyVaultResourceId Gets or sets the key vault resource Id.
* @property migrationSolutionResourceId Gets or sets the migration solution resource Id.
* @property storageAccountResourceId Gets or sets the storage account resource Id.
*/
public data class MigrationConfigurationArgs(
public val keyVaultResourceId: Output? = null,
public val migrationSolutionResourceId: Output? = null,
public val storageAccountResourceId: Output? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.migrate.inputs.MigrationConfigurationArgs =
com.pulumi.azurenative.migrate.inputs.MigrationConfigurationArgs.builder()
.keyVaultResourceId(keyVaultResourceId?.applyValue({ args0 -> args0 }))
.migrationSolutionResourceId(migrationSolutionResourceId?.applyValue({ args0 -> args0 }))
.storageAccountResourceId(storageAccountResourceId?.applyValue({ args0 -> args0 })).build()
}
/**
* Builder for [MigrationConfigurationArgs].
*/
@PulumiTagMarker
public class MigrationConfigurationArgsBuilder internal constructor() {
private var keyVaultResourceId: Output? = null
private var migrationSolutionResourceId: Output? = null
private var storageAccountResourceId: Output? = null
/**
* @param value Gets or sets the key vault resource Id.
*/
@JvmName("covuyeskibdoxiso")
public suspend fun keyVaultResourceId(`value`: Output) {
this.keyVaultResourceId = value
}
/**
* @param value Gets or sets the migration solution resource Id.
*/
@JvmName("ynsovqqiwvracwws")
public suspend fun migrationSolutionResourceId(`value`: Output) {
this.migrationSolutionResourceId = value
}
/**
* @param value Gets or sets the storage account resource Id.
*/
@JvmName("ybbrlvwoswpuckma")
public suspend fun storageAccountResourceId(`value`: Output) {
this.storageAccountResourceId = value
}
/**
* @param value Gets or sets the key vault resource Id.
*/
@JvmName("idbqrqvvntktywsd")
public suspend fun keyVaultResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.keyVaultResourceId = mapped
}
/**
* @param value Gets or sets the migration solution resource Id.
*/
@JvmName("uybcpyhtjqabwphf")
public suspend fun migrationSolutionResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.migrationSolutionResourceId = mapped
}
/**
* @param value Gets or sets the storage account resource Id.
*/
@JvmName("viksskuxkahijano")
public suspend fun storageAccountResourceId(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.storageAccountResourceId = mapped
}
internal fun build(): MigrationConfigurationArgs = MigrationConfigurationArgs(
keyVaultResourceId = keyVaultResourceId,
migrationSolutionResourceId = migrationSolutionResourceId,
storageAccountResourceId = storageAccountResourceId,
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy