com.pulumi.aws.appflow.kotlin.inputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pulumi-aws-kotlin Show documentation
Show all versions of pulumi-aws-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.aws.appflow.kotlin.inputs
import com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs.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 com.pulumi.kotlin.applySuspend
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.jvm.JvmName
/**
*
* @property objectPath
* @property paginationConfig Sets the page size for each concurrent process that transfers OData records from your SAP instance.
* @property parallelismConfig Sets the number of concurrent processes that transfers OData records from your SAP instance.
*/
public data class FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs(
public val objectPath: Output,
public val paginationConfig: Output? = null,
public val parallelismConfig: Output? = null,
) :
ConvertibleToJava {
override fun toJava(): com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs =
com.pulumi.aws.appflow.inputs.FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs.builder()
.objectPath(objectPath.applyValue({ args0 -> args0 }))
.paginationConfig(paginationConfig?.applyValue({ args0 -> args0.let({ args0 -> args0.toJava() }) }))
.parallelismConfig(
parallelismConfig?.applyValue({ args0 ->
args0.let({ args0 ->
args0.toJava()
})
}),
).build()
}
/**
* Builder for [FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs].
*/
@PulumiTagMarker
public class FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgsBuilder internal constructor() {
private var objectPath: Output? = null
private var paginationConfig:
Output? = null
private var parallelismConfig:
Output? = null
/**
* @param value
*/
@JvmName("xybpafqebrpajktn")
public suspend fun objectPath(`value`: Output) {
this.objectPath = value
}
/**
* @param value Sets the page size for each concurrent process that transfers OData records from your SAP instance.
*/
@JvmName("nqnksumqsvdespsh")
public suspend fun paginationConfig(`value`: Output) {
this.paginationConfig = value
}
/**
* @param value Sets the number of concurrent processes that transfers OData records from your SAP instance.
*/
@JvmName("jyvdtgsyeqokymar")
public suspend fun parallelismConfig(`value`: Output) {
this.parallelismConfig = value
}
/**
* @param value
*/
@JvmName("yyvwfxwmqusrrcmi")
public suspend fun objectPath(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> of(args0) })
this.objectPath = mapped
}
/**
* @param value Sets the page size for each concurrent process that transfers OData records from your SAP instance.
*/
@JvmName("hmpfcnudixbydpjg")
public suspend fun paginationConfig(`value`: FlowSourceFlowConfigSourceConnectorPropertiesSapoDataPaginationConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.paginationConfig = mapped
}
/**
* @param argument Sets the page size for each concurrent process that transfers OData records from your SAP instance.
*/
@JvmName("oglnnljgxepcvrwd")
public suspend fun paginationConfig(argument: suspend FlowSourceFlowConfigSourceConnectorPropertiesSapoDataPaginationConfigArgsBuilder.() -> Unit) {
val toBeMapped =
FlowSourceFlowConfigSourceConnectorPropertiesSapoDataPaginationConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.paginationConfig = mapped
}
/**
* @param value Sets the number of concurrent processes that transfers OData records from your SAP instance.
*/
@JvmName("ywrjqnjmvmygahxj")
public suspend fun parallelismConfig(`value`: FlowSourceFlowConfigSourceConnectorPropertiesSapoDataParallelismConfigArgs?) {
val toBeMapped = value
val mapped = toBeMapped?.let({ args0 -> of(args0) })
this.parallelismConfig = mapped
}
/**
* @param argument Sets the number of concurrent processes that transfers OData records from your SAP instance.
*/
@JvmName("byuoflwavmeeogak")
public suspend fun parallelismConfig(argument: suspend FlowSourceFlowConfigSourceConnectorPropertiesSapoDataParallelismConfigArgsBuilder.() -> Unit) {
val toBeMapped =
FlowSourceFlowConfigSourceConnectorPropertiesSapoDataParallelismConfigArgsBuilder().applySuspend {
argument()
}.build()
val mapped = of(toBeMapped)
this.parallelismConfig = mapped
}
internal fun build(): FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs =
FlowSourceFlowConfigSourceConnectorPropertiesSapoDataArgs(
objectPath = objectPath ?: throw PulumiNullFieldException("objectPath"),
paginationConfig = paginationConfig,
parallelismConfig = parallelismConfig,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy