import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Media Workflow Jobs in Oracle Cloud Infrastructure Media Services service. * * Lists the MediaWorkflowJobs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowJobs = oci.mediaservices.getMediaWorkflowJobs({ * compartmentId: compartmentId, * displayName: mediaWorkflowJobDisplayName, * id: mediaWorkflowJobId, * mediaWorkflowId: testMediaWorkflow.id, * state: mediaWorkflowJobState, * }); * ``` */ export declare function getMediaWorkflowJobs(args?: GetMediaWorkflowJobsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMediaWorkflowJobs. */ export interface GetMediaWorkflowJobsArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only the resources that match the entire display name given. */ displayName?: string; filters?: inputs.MediaServices.GetMediaWorkflowJobsFilter[]; /** * unique MediaWorkflowJob identifier */ id?: string; /** * Unique MediaWorkflow identifier. */ mediaWorkflowId?: string; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getMediaWorkflowJobs. */ export interface GetMediaWorkflowJobsResult { /** * The compartment ID of the lock. */ readonly compartmentId?: string; /** * Name of the Media Workflow Job. Does not have to be unique. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.MediaServices.GetMediaWorkflowJobsFilter[]; /** * The ID associated with the job output. */ readonly id?: string; /** * The workflow to execute. */ readonly mediaWorkflowId?: string; /** * The list of media_workflow_job_collection. */ readonly mediaWorkflowJobCollections: outputs.MediaServices.GetMediaWorkflowJobsMediaWorkflowJobCollection[]; /** * The current state of the MediaWorkflowJob task. */ readonly state?: string; } /** * This data source provides the list of Media Workflow Jobs in Oracle Cloud Infrastructure Media Services service. * * Lists the MediaWorkflowJobs. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowJobs = oci.mediaservices.getMediaWorkflowJobs({ * compartmentId: compartmentId, * displayName: mediaWorkflowJobDisplayName, * id: mediaWorkflowJobId, * mediaWorkflowId: testMediaWorkflow.id, * state: mediaWorkflowJobState, * }); * ``` */ export declare function getMediaWorkflowJobsOutput(args?: GetMediaWorkflowJobsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMediaWorkflowJobs. */ export interface GetMediaWorkflowJobsOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only the resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * unique MediaWorkflowJob identifier */ id?: pulumi.Input; /** * Unique MediaWorkflow identifier. */ mediaWorkflowId?: pulumi.Input; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getMediaWorkflowJobs.d.ts.map