![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azurenative.datafactory.kotlin.inputs.SSISPackageLocationArgs.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.datafactory.kotlin.inputs
import com.pulumi.azurenative.datafactory.inputs.SSISPackageLocationArgs.builder
import com.pulumi.azurenative.datafactory.kotlin.enums.SsisPackageLocationType
import com.pulumi.core.Either
import com.pulumi.core.Output
import com.pulumi.core.Output.of
import com.pulumi.kotlin.ConvertibleToJava
import com.pulumi.kotlin.PulumiTagMarker
import com.pulumi.kotlin.applySuspend
import kotlin.Any
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.List
import kotlin.jvm.JvmName
/**
* SSIS package location.
* @property accessCredential The package access credential.
* @property childPackages The embedded child package list.
* @property configurationAccessCredential The configuration file access credential.
* @property configurationPath The configuration file of the package execution. Type: string (or Expression with resultType string).
* @property packageContent The embedded package content. Type: string (or Expression with resultType string).
* @property packageLastModifiedDate The embedded package last modified date.
* @property packageName The package name.
* @property packagePassword Password of the package.
* @property packagePath The SSIS package path. Type: string (or Expression with resultType string).
* @property type The type of SSIS package location.
*/
public data class SSISPackageLocationArgs(
public val accessCredential: Output? = null,
public val childPackages: Output>? = null,
public val configurationAccessCredential: Output? = null,
public val configurationPath: Output? = null,
public val packageContent: Output? = null,
public val packageLastModifiedDate: Output? = null,
public val packageName: Output? = null,
public val packagePassword: Output>? =
null,
public val packagePath: Output? = null,
public val type: Output>? = null,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azurenative.datafactory.inputs.SSISPackageLocationArgs =
com.pulumi.azurenative.datafactory.inputs.SSISPackageLocationArgs.builder()
.accessCredential(accessCredential?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.childPackages(
childPackages?.applyValue({ args0 ->
args0.map({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
)
.configurationAccessCredential(
configurationAccessCredential?.applyValue({ args0 ->
args0.let({ args0 -> args0.toJava() })
}),
)
.configurationPath(configurationPath?.applyValue({ args0 -> args0 }))
.packageContent(packageContent?.applyValue({ args0 -> args0 }))
.packageLastModifiedDate(packageLastModifiedDate?.applyValue({ args0 -> args0 }))
.packageName(packageName?.applyValue({ args0 -> args0 }))
.packagePassword(
packagePassword?.applyValue({ args0 ->
args0.transform({ args0 ->
args0.let({ args0 -> args0.toJava() })
}, { args0 -> args0.let({ args0 -> args0.toJava() }) })
}),
)
.packagePath(packagePath?.applyValue({ args0 -> args0 }))
.type(
type?.applyValue({ args0 ->
args0.transform({ args0 -> args0 }, { args0 ->
args0.let({ args0 ->
args0.toJava()
})
})
}),
).build()
}
/**
* Builder for [SSISPackageLocationArgs].
*/
@PulumiTagMarker
public class SSISPackageLocationArgsBuilder internal constructor() {
private var accessCredential: Output? = null
private var childPackages: Output>? = null
private var configurationAccessCredential: Output? = null
private var configurationPath: Output? = null
private var packageContent: Output? = null
private var packageLastModifiedDate: Output? = null
private var packageName: Output? = null
private var packagePassword: Output>? =
null
private var packagePath: Output? = null
private var type: Output>? = null
/**
* @param value The package access credential.
*/
@JvmName("oweywbjbqjjrctwr")
public suspend fun accessCredential(`value`: Output) {
this.accessCredential = value
}
/**
* @param value The embedded child package list.
*/
@JvmName("aeqviuwfhxoldlwf")
public suspend fun childPackages(`value`: Output>) {
this.childPackages = value
}
@JvmName("mrkbyrwwdfwhurkf")
public suspend fun childPackages(vararg values: Output) {
this.childPackages = Output.all(values.asList())
}
/**
* @param values The embedded child package list.
*/
@JvmName("axtswwdqqxklxhuh")
public suspend fun childPackages(values: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy