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 Configurations in Oracle Cloud Infrastructure Media Services service. * * Returns a list of MediaWorkflowConfigurations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowConfigurations = oci.mediaservices.getMediaWorkflowConfigurations({ * compartmentId: compartmentId, * displayName: mediaWorkflowConfigurationDisplayName, * id: mediaWorkflowConfigurationId, * state: mediaWorkflowConfigurationState, * }); * ``` */ export declare function getMediaWorkflowConfigurations(args?: GetMediaWorkflowConfigurationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMediaWorkflowConfigurations. */ export interface GetMediaWorkflowConfigurationsArgs { /** * 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.GetMediaWorkflowConfigurationsFilter[]; /** * Unique MediaWorkflowConfiguration identifier. */ id?: string; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: string; } /** * A collection of values returned by getMediaWorkflowConfigurations. */ export interface GetMediaWorkflowConfigurationsResult { /** * The compartment ID of the lock. */ readonly compartmentId?: string; /** * Display name for the MediaWorkflowConfiguration. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.MediaServices.GetMediaWorkflowConfigurationsFilter[]; /** * Unique identifier that is immutable on creation. */ readonly id?: string; /** * The list of media_workflow_configuration_collection. */ readonly mediaWorkflowConfigurationCollections: outputs.MediaServices.GetMediaWorkflowConfigurationsMediaWorkflowConfigurationCollection[]; /** * The current state of the MediaWorkflowConfiguration. */ readonly state?: string; } /** * This data source provides the list of Media Workflow Configurations in Oracle Cloud Infrastructure Media Services service. * * Returns a list of MediaWorkflowConfigurations. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowConfigurations = oci.mediaservices.getMediaWorkflowConfigurations({ * compartmentId: compartmentId, * displayName: mediaWorkflowConfigurationDisplayName, * id: mediaWorkflowConfigurationId, * state: mediaWorkflowConfigurationState, * }); * ``` */ export declare function getMediaWorkflowConfigurationsOutput(args?: GetMediaWorkflowConfigurationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMediaWorkflowConfigurations. */ export interface GetMediaWorkflowConfigurationsOutputArgs { /** * 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 MediaWorkflowConfiguration identifier. */ id?: pulumi.Input; /** * A filter to return only the resources with lifecycleState matching the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getMediaWorkflowConfigurations.d.ts.map