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 Workflows in Oracle Cloud Infrastructure Media Services service. * * Lists the MediaWorkflows. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflows = oci.mediaservices.getMediaWorkflows({ * compartmentId: compartmentId, * displayName: mediaWorkflowDisplayName, * id: mediaWorkflowId, * state: mediaWorkflowState, * }); * ``` */ export declare function getMediaWorkflows(args?: GetMediaWorkflowsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMediaWorkflows. */ export interface GetMediaWorkflowsArgs { /** * 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.GetMediaWorkflowsFilter[]; /** * Unique MediaWorkflow identifier. */ id?: string; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getMediaWorkflows. */ export interface GetMediaWorkflowsResult { /** * The compartment ID of the lock. */ readonly compartmentId?: string; /** * Name of the Media Workflow. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.MediaServices.GetMediaWorkflowsFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The list of media_workflow_collection. */ readonly mediaWorkflowCollections: outputs.MediaServices.GetMediaWorkflowsMediaWorkflowCollection[]; /** * The current state of the MediaWorkflow. */ readonly state?: string; } /** * This data source provides the list of Media Workflows in Oracle Cloud Infrastructure Media Services service. * * Lists the MediaWorkflows. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflows = oci.mediaservices.getMediaWorkflows({ * compartmentId: compartmentId, * displayName: mediaWorkflowDisplayName, * id: mediaWorkflowId, * state: mediaWorkflowState, * }); * ``` */ export declare function getMediaWorkflowsOutput(args?: GetMediaWorkflowsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMediaWorkflows. */ export interface GetMediaWorkflowsOutputArgs { /** * 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 MediaWorkflow identifier. */ id?: pulumi.Input; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getMediaWorkflows.d.ts.map