
com.pulumi.azure.datafactory.kotlin.inputs.IntegrationRuntimeSsisProxyArgs.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.datafactory.kotlin.inputs
import com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisProxyArgs.builder
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiNullFieldException
import com.pulumi.kotlin.PulumiTagMarker
import kotlin.String
import kotlin.Suppress
import kotlin.jvm.JvmName
/**
*
* @property path The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
* @property selfHostedIntegrationRuntimeName Name of Self Hosted Integration Runtime as a proxy.
* @property stagingStorageLinkedServiceName Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
*/
public data class IntegrationRuntimeSsisProxyArgs(
public val path: Output? = null,
public val selfHostedIntegrationRuntimeName: Output,
public val stagingStorageLinkedServiceName: Output,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisProxyArgs =
com.pulumi.azure.datafactory.inputs.IntegrationRuntimeSsisProxyArgs.builder()
.path(path?.applyValue({ args0 -> args0 }))
.selfHostedIntegrationRuntimeName(selfHostedIntegrationRuntimeName.applyValue({ args0 -> args0 }))
.stagingStorageLinkedServiceName(
stagingStorageLinkedServiceName.applyValue({ args0 ->
args0
}),
).build()
}
/**
* Builder for [IntegrationRuntimeSsisProxyArgs].
*/
@PulumiTagMarker
public class IntegrationRuntimeSsisProxyArgsBuilder internal constructor() {
private var path: Output? = null
private var selfHostedIntegrationRuntimeName: Output? = null
private var stagingStorageLinkedServiceName: Output? = null
/**
* @param value The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
*/
@JvmName("hjohckjvcmeiohlv")
public suspend fun path(`value`: Output) {
this.path = value
}
/**
* @param value Name of Self Hosted Integration Runtime as a proxy.
*/
@JvmName("oglgekicatjmeolo")
public suspend fun selfHostedIntegrationRuntimeName(`value`: Output) {
this.selfHostedIntegrationRuntimeName = value
}
/**
* @param value Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
*/
@JvmName("dtedgagrrvnhwojm")
public suspend fun stagingStorageLinkedServiceName(`value`: Output) {
this.stagingStorageLinkedServiceName = value
}
/**
* @param value The path in the data store to be used when moving data between Self-Hosted and Azure-SSIS Integration Runtimes.
*/
@JvmName("hxbrdagrgatdbice")
public suspend fun path(`value`: String?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.path = mapped
}
/**
* @param value Name of Self Hosted Integration Runtime as a proxy.
*/
@JvmName("vnpxttvgqvmfacer")
public suspend fun selfHostedIntegrationRuntimeName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.selfHostedIntegrationRuntimeName = mapped
}
/**
* @param value Name of Azure Blob Storage linked service to reference the staging data store to be used when moving data between self-hosted and Azure-SSIS integration runtimes.
*/
@JvmName("obvyxxqxtgayjjpm")
public suspend fun stagingStorageLinkedServiceName(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.stagingStorageLinkedServiceName = mapped
}
internal fun build(): IntegrationRuntimeSsisProxyArgs = IntegrationRuntimeSsisProxyArgs(
path = path,
selfHostedIntegrationRuntimeName = selfHostedIntegrationRuntimeName ?: throw
PulumiNullFieldException("selfHostedIntegrationRuntimeName"),
stagingStorageLinkedServiceName = stagingStorageLinkedServiceName ?: throw
PulumiNullFieldException("stagingStorageLinkedServiceName"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy