import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../../types/output"; /** * Fetches a single WorkflowConfig. */ export declare function getWorkflowConfig(args: GetWorkflowConfigArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetWorkflowConfigArgs { location: string; project?: string; repositoryId: string; workflowConfigId: string; } export interface GetWorkflowConfigResult { /** * Optional. Optional schedule (in cron format) for automatic execution of this workflow config. */ readonly cronSchedule: string; /** * Optional. If left unset, a default InvocationConfig will be used. */ readonly invocationConfig: outputs.dataform.v1beta1.InvocationConfigResponse; /** * The workflow config's name. */ readonly name: string; /** * Records of the 10 most recent scheduled execution attempts, ordered in in descending order of `execution_time`. Updated whenever automatic creation of a workflow invocation is triggered by cron_schedule. */ readonly recentScheduledExecutionRecords: outputs.dataform.v1beta1.ScheduledExecutionRecordResponse[]; /** * The name of the release config whose release_compilation_result should be executed. Must be in the format `projects/*/locations/*/repositories/*/releaseConfigs/*`. */ readonly releaseConfig: string; /** * Optional. Specifies the time zone to be used when interpreting cron_schedule. Must be a time zone name from the time zone database (https://en.wikipedia.org/wiki/List_of_tz_database_time_zones). If left unspecified, the default is UTC. */ readonly timeZone: string; } /** * Fetches a single WorkflowConfig. */ export declare function getWorkflowConfigOutput(args: GetWorkflowConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetWorkflowConfigOutputArgs { location: pulumi.Input; project?: pulumi.Input; repositoryId: pulumi.Input; workflowConfigId: pulumi.Input; }