![JAR search and dependency download from the Maven repository](/logo.png)
com.pulumi.azure.datafactory.kotlin.inputs.GetTriggerSchedulesPlainArgs.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.GetTriggerSchedulesPlainArgs.builder
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
/**
* A collection of arguments for invoking getTriggerSchedules.
* @property dataFactoryId The ID of the Azure Data Factory to fetch trigger schedules from.
*/
public data class GetTriggerSchedulesPlainArgs(
public val dataFactoryId: String,
) : ConvertibleToJava {
override fun toJava(): com.pulumi.azure.datafactory.inputs.GetTriggerSchedulesPlainArgs =
com.pulumi.azure.datafactory.inputs.GetTriggerSchedulesPlainArgs.builder()
.dataFactoryId(dataFactoryId.let({ args0 -> args0 })).build()
}
/**
* Builder for [GetTriggerSchedulesPlainArgs].
*/
@PulumiTagMarker
public class GetTriggerSchedulesPlainArgsBuilder internal constructor() {
private var dataFactoryId: String? = null
/**
* @param value The ID of the Azure Data Factory to fetch trigger schedules from.
*/
@JvmName("xcydlcufmdwnhpwt")
public suspend fun dataFactoryId(`value`: String) {
val toBeMapped = value
val mapped = toBeMapped.let({ args0 -> args0 })
this.dataFactoryId = mapped
}
internal fun build(): GetTriggerSchedulesPlainArgs = GetTriggerSchedulesPlainArgs(
dataFactoryId = dataFactoryId ?: throw PulumiNullFieldException("dataFactoryId"),
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy