import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Gets a Schedule. */ export declare function getSchedule(args: GetScheduleArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetScheduleArgs { location: string; project?: string; scheduleId: string; } export interface GetScheduleResult { /** * Optional. Whether new scheduled runs can be queued when max_concurrent_runs limit is reached. If set to true, new runs will be queued instead of skipped. Default to false. */ readonly allowQueueing: boolean; /** * Whether to backfill missed runs when the schedule is resumed from PAUSED state. If set to true, all missed runs will be scheduled. New runs will be scheduled after the backfill is complete. Default to false. */ readonly catchUp: boolean; /** * Request for PipelineService.CreatePipelineJob. CreatePipelineJobRequest.parent field is required (format: projects/{project}/locations/{location}). */ readonly createPipelineJobRequest: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1CreatePipelineJobRequestResponse; /** * Timestamp when this Schedule was created. */ readonly createTime: string; /** * Cron schedule (https://en.wikipedia.org/wiki/Cron) to launch scheduled runs. To explicitly set a timezone to the cron tab, apply a prefix in the cron tab: "CRON_TZ=${IANA_TIME_ZONE}" or "TZ=${IANA_TIME_ZONE}". The ${IANA_TIME_ZONE} may only be a valid string from IANA time zone database. For example, "CRON_TZ=America/New_York 1 * * * *", or "TZ=America/New_York 1 * * * *". */ readonly cron: string; /** * User provided name of the Schedule. The name can be up to 128 characters long and can consist of any UTF-8 characters. */ readonly displayName: string; /** * Optional. Timestamp after which no new runs can be scheduled. If specified, The schedule will be completed when either end_time is reached or when scheduled_run_count >= max_run_count. If not specified, new runs will keep getting scheduled until this Schedule is paused or deleted. Already scheduled runs will be allowed to complete. Unset if not specified. */ readonly endTime: string; /** * Timestamp when this Schedule was last paused. Unset if never paused. */ readonly lastPauseTime: string; /** * Timestamp when this Schedule was last resumed. Unset if never resumed from pause. */ readonly lastResumeTime: string; /** * Response of the last scheduled run. This is the response for starting the scheduled requests and not the execution of the operations/jobs created by the requests (if applicable). Unset if no run has been scheduled yet. */ readonly lastScheduledRunResponse: outputs.aiplatform.v1beta1.GoogleCloudAiplatformV1beta1ScheduleRunResponseResponse; /** * Maximum number of runs that can be started concurrently for this Schedule. This is the limit for starting the scheduled requests and not the execution of the operations/jobs created by the requests (if applicable). */ readonly maxConcurrentRunCount: string; /** * Optional. Maximum run count of the schedule. If specified, The schedule will be completed when either started_run_count >= max_run_count or when end_time is reached. If not specified, new runs will keep getting scheduled until this Schedule is paused or deleted. Already scheduled runs will be allowed to complete. Unset if not specified. */ readonly maxRunCount: string; /** * Immutable. The resource name of the Schedule. */ readonly name: string; /** * Timestamp when this Schedule should schedule the next run. Having a next_run_time in the past means the runs are being started behind schedule. */ readonly nextRunTime: string; /** * Optional. Timestamp after which the first run can be scheduled. Default to Schedule create time if not specified. */ readonly startTime: string; /** * The number of runs started by this schedule. */ readonly startedRunCount: string; /** * The state of this Schedule. */ readonly state: string; /** * Timestamp when this Schedule was updated. */ readonly updateTime: string; } /** * Gets a Schedule. */ export declare function getScheduleOutput(args: GetScheduleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetScheduleOutputArgs { location: pulumi.Input; project?: pulumi.Input; scheduleId: pulumi.Input; }