UNPKG

@pulumi/scm

Version:

A Pulumi package for managing resources on Strata Cloud Manager.. Based on terraform-provider-scm: version v0.2.1

58 lines (57 loc) 1.39 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; /** * Schedule data source */ export declare function getSchedule(args: GetScheduleArgs, opts?: pulumi.InvokeOptions): Promise<GetScheduleResult>; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleArgs { /** * The UUID of the schedule */ id: string; /** * The name of the schedule */ name?: string; } /** * A collection of values returned by getSchedule. */ export interface GetScheduleResult { /** * The device in which the resource is defined */ readonly device: string; readonly folder: string; /** * The UUID of the schedule */ readonly id: string; /** * The name of the schedule */ readonly name: string; readonly scheduleType: outputs.GetScheduleScheduleType; readonly snippet: string; readonly tfid: string; } /** * Schedule data source */ export declare function getScheduleOutput(args: GetScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetScheduleResult>; /** * A collection of arguments for invoking getSchedule. */ export interface GetScheduleOutputArgs { /** * The UUID of the schedule */ id: pulumi.Input<string>; /** * The name of the schedule */ name?: pulumi.Input<string>; }