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 Groups in Oracle Cloud Infrastructure Ai Vision service. * * Gets a list of the streamGroups in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamGroups = oci.aivision.getStreamGroups({ * compartmentId: compartmentId, * displayName: streamGroupDisplayName, * id: streamGroupId, * }); * ``` */ export declare function getStreamGroups(args?: GetStreamGroupsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getStreamGroups. */ export interface GetStreamGroupsArgs { /** * 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.GetStreamGroupsFilter[]; /** * The filter to find the device with the given identifier. */ id?: string; } /** * A collection of values returned by getStreamGroups. */ export interface GetStreamGroupsResult { /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of compartment */ readonly compartmentId?: string; /** * A human-friendly name for the streamGroup. */ readonly displayName?: string; readonly filters?: outputs.AiVision.GetStreamGroupsFilter[]; /** * [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the streamGroup. */ readonly id?: string; /** * The list of stream_group_collection. */ readonly streamGroupCollections: outputs.AiVision.GetStreamGroupsStreamGroupCollection[]; } /** * This data source provides the list of Stream Groups in Oracle Cloud Infrastructure Ai Vision service. * * Gets a list of the streamGroups in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testStreamGroups = oci.aivision.getStreamGroups({ * compartmentId: compartmentId, * displayName: streamGroupDisplayName, * id: streamGroupId, * }); * ``` */ export declare function getStreamGroupsOutput(args?: GetStreamGroupsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getStreamGroups. */ export interface GetStreamGroupsOutputArgs { /** * 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; } //# sourceMappingURL=getStreamGroups.d.ts.map