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 Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative AI service. * * Lists the dedicated AI clusters in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedAiClusters = oci.generativeai.getDedicatedAiClusters({ * compartmentId: compartmentId, * displayName: dedicatedAiClusterDisplayName, * id: dedicatedAiClusterId, * state: dedicatedAiClusterState, * }); * ``` */ export declare function getDedicatedAiClusters(args: GetDedicatedAiClustersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDedicatedAiClusters. */ export interface GetDedicatedAiClustersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.GenerativeAi.GetDedicatedAiClustersFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster. */ id?: string; /** * A filter to return only the dedicated AI clusters that their lifecycle state matches the given lifecycle state. */ state?: string; } /** * A collection of values returned by getDedicatedAiClusters. */ export interface GetDedicatedAiClustersResult { /** * The compartment OCID to create the dedicated AI cluster in. */ readonly compartmentId: string; /** * The list of dedicated_ai_cluster_collection. */ readonly dedicatedAiClusterCollections: outputs.GenerativeAi.GetDedicatedAiClustersDedicatedAiClusterCollection[]; /** * A user-friendly name. Does not have to be unique, and it's changeable. */ readonly displayName?: string; readonly filters?: outputs.GenerativeAi.GetDedicatedAiClustersFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster. */ readonly id?: string; /** * The current state of the dedicated AI cluster. */ readonly state?: string; } /** * This data source provides the list of Dedicated Ai Clusters in Oracle Cloud Infrastructure Generative AI service. * * Lists the dedicated AI clusters in a specific compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDedicatedAiClusters = oci.generativeai.getDedicatedAiClusters({ * compartmentId: compartmentId, * displayName: dedicatedAiClusterDisplayName, * id: dedicatedAiClusterId, * state: dedicatedAiClusterState, * }); * ``` */ export declare function getDedicatedAiClustersOutput(args: GetDedicatedAiClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDedicatedAiClusters. */ export interface GetDedicatedAiClustersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the dedicated AI cluster. */ id?: pulumi.Input; /** * A filter to return only the dedicated AI clusters that their lifecycle state matches the given lifecycle state. */ state?: pulumi.Input; } //# sourceMappingURL=getDedicatedAiClusters.d.ts.map