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 Clusters in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the Clusters in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusters = oci.ocvp.getClusters({ * compartmentId: compartmentId, * displayName: clusterDisplayName, * sddcId: testSddc.id, * state: clusterState, * }); * ``` */ export declare function getClusters(args?: GetClustersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getClusters. */ export interface GetClustersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment as optional parameter. */ compartmentId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Ocvp.GetClustersFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC. */ sddcId?: string; /** * The lifecycle state of the resource. */ state?: string; } /** * A collection of values returned by getClusters. */ export interface GetClustersResult { /** * The list of cluster_collection. */ readonly clusterCollections: outputs.Ocvp.GetClustersClusterCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Cluster. */ readonly compartmentId?: string; /** * A descriptive name for the Cluster. It must be unique, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Ocvp.GetClustersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC that the Cluster belongs to. */ readonly sddcId?: string; /** * The current state of the Cluster. */ readonly state?: string; } /** * This data source provides the list of Clusters in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * Lists the Clusters in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testClusters = oci.ocvp.getClusters({ * compartmentId: compartmentId, * displayName: clusterDisplayName, * sddcId: testSddc.id, * state: clusterState, * }); * ``` */ export declare function getClustersOutput(args?: GetClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getClusters. */ export interface GetClustersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment as optional parameter. */ 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 SDDC. */ sddcId?: pulumi.Input; /** * The lifecycle state of the resource. */ state?: pulumi.Input; } //# sourceMappingURL=getClusters.d.ts.map