import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about all existing trigger schedules in Azure Data Factory. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.datafactory.getTriggerSchedules({ * dataFactoryId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataFactory/factories/datafactory1", * }); * export const items = example.then(example => example.items); * ``` */ export declare function getTriggerSchedules(args: GetTriggerSchedulesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getTriggerSchedules. */ export interface GetTriggerSchedulesArgs { /** * The ID of the Azure Data Factory to fetch trigger schedules from. */ dataFactoryId: string; } /** * A collection of values returned by getTriggerSchedules. */ export interface GetTriggerSchedulesResult { readonly dataFactoryId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * A list of trigger schedule names available in this Azure Data Factory. */ readonly items: string[]; } /** * Use this data source to access information about all existing trigger schedules in Azure Data Factory. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.datafactory.getTriggerSchedules({ * dataFactoryId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg1/providers/Microsoft.DataFactory/factories/datafactory1", * }); * export const items = example.then(example => example.items); * ``` */ export declare function getTriggerSchedulesOutput(args: GetTriggerSchedulesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getTriggerSchedules. */ export interface GetTriggerSchedulesOutputArgs { /** * The ID of the Azure Data Factory to fetch trigger schedules from. */ dataFactoryId: pulumi.Input; }