import * as pulumi from "@pulumi/pulumi"; /** * > **_NOTE:_** This data source has been deprecated and is no longer supported. * This data source provides details about a specific Media Workflow Job Fact resource in Oracle Cloud Infrastructure Media Services service. * * Get the MediaWorkflowJobFact identified by the mediaWorkflowJobId and Fact ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowJobFact = oci.mediaservices.getMediaWorkflowJobFact({ * key: mediaWorkflowJobFactKey, * mediaWorkflowJobId: testMediaWorkflowJob.id, * }); * ``` */ export declare function getMediaWorkflowJobFact(args: GetMediaWorkflowJobFactArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMediaWorkflowJobFact. */ export interface GetMediaWorkflowJobFactArgs { /** * Identifier of the MediaWorkflowJobFact within a MediaWorkflowJob. */ key: string; /** * Unique MediaWorkflowJob identifier. */ mediaWorkflowJobId: string; } /** * A collection of values returned by getMediaWorkflowJobFact. */ export interface GetMediaWorkflowJobFactResult { /** * The body of the detail captured as JSON. */ readonly detail: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * System generated serial number to uniquely identify a detail in order within a MediaWorkflowJob. */ readonly key: string; /** * Reference to the parent job. */ readonly mediaWorkflowJobId: string; /** * Unique name. It is read-only and generated for the fact. */ readonly name: string; /** * The type of information contained in this detail. */ readonly type: string; } /** * > **_NOTE:_** This data source has been deprecated and is no longer supported. * This data source provides details about a specific Media Workflow Job Fact resource in Oracle Cloud Infrastructure Media Services service. * * Get the MediaWorkflowJobFact identified by the mediaWorkflowJobId and Fact ID. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMediaWorkflowJobFact = oci.mediaservices.getMediaWorkflowJobFact({ * key: mediaWorkflowJobFactKey, * mediaWorkflowJobId: testMediaWorkflowJob.id, * }); * ``` */ export declare function getMediaWorkflowJobFactOutput(args: GetMediaWorkflowJobFactOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMediaWorkflowJobFact. */ export interface GetMediaWorkflowJobFactOutputArgs { /** * Identifier of the MediaWorkflowJobFact within a MediaWorkflowJob. */ key: pulumi.Input; /** * Unique MediaWorkflowJob identifier. */ mediaWorkflowJobId: pulumi.Input; } //# sourceMappingURL=getMediaWorkflowJobFact.d.ts.map