getTriggerSchedule

Use this data source to access information about a trigger schedule in Azure Data Factory.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.datafactory.DatafactoryFunctions;
import com.pulumi.azure.datafactory.inputs.GetTriggerScheduleArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var example = DatafactoryFunctions.getTriggerSchedule(GetTriggerScheduleArgs.builder()
.name("example_trigger")
.dataFactoryId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataFactory/factories/datafactory1")
.build());
ctx.export("id", example.applyValue(getTriggerScheduleResult -> getTriggerScheduleResult.id()));
}
}

Return

A collection of values returned by getTriggerSchedule.

Parameters

argument

A collection of arguments for invoking getTriggerSchedule.


suspend fun getTriggerSchedule(dataFactoryId: String, name: String): GetTriggerScheduleResult

Return

A collection of values returned by getTriggerSchedule.

See also

Parameters

dataFactoryId

The ID of the Azure Data Factory to fetch trigger schedule from.

name

The name of the trigger schedule.


Return

A collection of values returned by getTriggerSchedule.

See also

Parameters

argument

Builder for com.pulumi.azure.datafactory.kotlin.inputs.GetTriggerSchedulePlainArgs.