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 Stream Sources in Oracle Cloud Infrastructure Ai Vision service. * * Gets a list of the streamSources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamSources = oci.aivision.getStreamSources({ * compartmentId: compartmentId, * displayName: streamSourceDisplayName, * id: streamSourceId, * state: streamSourceState, * }); * ``` */ export declare function getStreamSources(args?: GetStreamSourcesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamSources. */ export interface GetStreamSourcesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.AiVision.GetStreamSourcesFilter[]; /** * The filter to find the device with the given identifier. */ id?: string; /** * The filter to match projects with the given lifecycleState. */ state?: string; } /** * A collection of values returned by getStreamSources. */ export interface GetStreamSourcesResult { /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartm. */ readonly compartmentId?: string; /** * display name. */ readonly displayName?: string; readonly filters?: outputs.AiVision.GetStreamSourcesFilter[]; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the streamSource. */ readonly id?: string; /** * The current state of the streamSource. */ readonly state?: string; /** * The list of stream_source_collection. */ readonly streamSourceCollections: outputs.AiVision.GetStreamSourcesStreamSourceCollection[]; } /** * This data source provides the list of Stream Sources in Oracle Cloud Infrastructure Ai Vision service. * * Gets a list of the streamSources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamSources = oci.aivision.getStreamSources({ * compartmentId: compartmentId, * displayName: streamSourceDisplayName, * id: streamSourceId, * state: streamSourceState, * }); * ``` */ export declare function getStreamSourcesOutput(args?: GetStreamSourcesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamSources. */ export interface GetStreamSourcesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The filter to find the device with the given identifier. */ id?: pulumi.Input; /** * The filter to match projects with the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getStreamSources.d.ts.map