import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Stream Job resource in Oracle Cloud Infrastructure Ai Vision service. * * Get details of a stream analysis job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamJob = oci.aivision.getStreamJob({ * streamJobId: testStreamJobOciAiVisionStreamJob.id, * }); * ``` */ export declare function getStreamJob(args: GetStreamJobArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamJob. */ export interface GetStreamJobArgs { /** * Stream job id. */ streamJobId: string; } /** * A collection of values returned by getStreamJob. */ export interface GetStreamJobResult { /** * participant id of agent where results need to be sent */ readonly agentParticipantId: string; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of compartment */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For example: `{"foo-namespace": {"bar-key": "value"}}` */ readonly definedTags: { [key: string]: string; }; /** * Stream job display name. */ readonly displayName: string; /** * a list of document analysis features. */ readonly features: outputs.AiVision.GetStreamJobFeature[]; /** * A simple key-value pair that is applied without any predefined name, type, or scope. It exists for cross-compatibility only. For example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the streamJob. */ readonly id: string; /** * Additional details about current state of streamJob */ readonly lifecycleDetails: string; /** * The current state of the Stream job. */ readonly state: string; readonly streamJobId: string; /** * Details about a where results will be Sent */ readonly streamOutputLocations: outputs.AiVision.GetStreamJobStreamOutputLocation[]; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the streamSource */ readonly streamSourceId: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. For example: `{"orcl-cloud": {"free-tier-retained": "true"}}` */ readonly systemTags: { [key: string]: string; }; /** * When the streamJob was created, as an RFC3339 datetime string. */ readonly timeCreated: string; /** * When the stream job was updated, as an RFC3339 datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Stream Job resource in Oracle Cloud Infrastructure Ai Vision service. * * Get details of a stream analysis job. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamJob = oci.aivision.getStreamJob({ * streamJobId: testStreamJobOciAiVisionStreamJob.id, * }); * ``` */ export declare function getStreamJobOutput(args: GetStreamJobOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamJob. */ export interface GetStreamJobOutputArgs { /** * Stream job id. */ streamJobId: pulumi.Input; } //# sourceMappingURL=getStreamJob.d.ts.map