All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azure.datafactory.kotlin.outputs.GetTriggerScheduleResult.kt Maven / Gradle / Ivy

Go to download

Build cloud applications and infrastructure by combining the safety and reliability of infrastructure as code with the power of the Kotlin programming language.

There is a newer version: 6.15.0.0
Show newest version
@file:Suppress("NAME_SHADOWING", "DEPRECATION")

package com.pulumi.azure.datafactory.kotlin.outputs

import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.collections.List

/**
 * A collection of values returned by getTriggerSchedule.
 * @property activated Specifies if the Data Factory Schedule Trigger is activated.
 * @property annotations List of tags that can be used for describing the Data Factory Schedule Trigger.
 * @property dataFactoryId
 * @property description The Schedule Trigger's description.
 * @property endTime The time the Schedule Trigger should end. The time will be represented in UTC.
 * @property frequency The trigger frequency.
 * @property id The provider-assigned unique ID for this managed resource.
 * @property interval The interval for how often the trigger occurs.
 * @property name
 * @property pipelineName The Data Factory Pipeline name that the trigger will act on.
 * @property schedules A `schedule` block as described below, which further specifies the recurrence schedule for the trigger.
 * @property startTime The time the Schedule Trigger will start. The time will be represented in UTC.
 * @property timeZone The timezone of the start/end time.
 */
public data class GetTriggerScheduleResult(
    public val activated: Boolean,
    public val annotations: List,
    public val dataFactoryId: String,
    public val description: String,
    public val endTime: String,
    public val frequency: String,
    public val id: String,
    public val interval: Int,
    public val name: String,
    public val pipelineName: String,
    public val schedules: List,
    public val startTime: String,
    public val timeZone: String,
) {
    public companion object {
        public fun toKotlin(javaType: com.pulumi.azure.datafactory.outputs.GetTriggerScheduleResult): GetTriggerScheduleResult = GetTriggerScheduleResult(
            activated = javaType.activated(),
            annotations = javaType.annotations().map({ args0 -> args0 }),
            dataFactoryId = javaType.dataFactoryId(),
            description = javaType.description(),
            endTime = javaType.endTime(),
            frequency = javaType.frequency(),
            id = javaType.id(),
            interval = javaType.interval(),
            name = javaType.name(),
            pipelineName = javaType.pipelineName(),
            schedules = javaType.schedules().map({ args0 ->
                args0.let({ args0 ->
                    com.pulumi.azure.datafactory.kotlin.outputs.GetTriggerScheduleSchedule.Companion.toKotlin(args0)
                })
            }),
            startTime = javaType.startTime(),
            timeZone = javaType.timeZone(),
        )
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy