import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific System Media Workflow resource in Oracle Cloud Infrastructure Media Services service. * * Lists the SystemMediaWorkflows that can be used to run a job by name or as a template to create a MediaWorkflow. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSystemMediaWorkflow = oci.mediaservices.getSystemMediaWorkflow({ * compartmentId: compartmentId, * name: systemMediaWorkflowName, * }); * ``` */ export declare function getSystemMediaWorkflow(args?: GetSystemMediaWorkflowArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSystemMediaWorkflow. */ export interface GetSystemMediaWorkflowArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only the resources with their system defined, unique name matching the given name. */ name?: string; } /** * A collection of values returned by getSystemMediaWorkflow. */ export interface GetSystemMediaWorkflowResult { readonly compartmentId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of SytemMediaWorkflow items. */ readonly items: outputs.MediaServices.GetSystemMediaWorkflowItem[]; /** * System provided unique identifier for this static media workflow. */ readonly name?: string; } /** * This data source provides details about a specific System Media Workflow resource in Oracle Cloud Infrastructure Media Services service. * * Lists the SystemMediaWorkflows that can be used to run a job by name or as a template to create a MediaWorkflow. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSystemMediaWorkflow = oci.mediaservices.getSystemMediaWorkflow({ * compartmentId: compartmentId, * name: systemMediaWorkflowName, * }); * ``` */ export declare function getSystemMediaWorkflowOutput(args?: GetSystemMediaWorkflowOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSystemMediaWorkflow. */ export interface GetSystemMediaWorkflowOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only the resources with their system defined, unique name matching the given name. */ name?: pulumi.Input; } //# sourceMappingURL=getSystemMediaWorkflow.d.ts.map