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 Datastore Clusters in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * List the Datastore Clusters in the specified compartment. The list can be filtered * by compartment, Datastore Cluster, Display name and Lifecycle state * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatastoreClusters = oci.ocvp.getDatastoreClusters({ * compartmentId: compartmentId, * clusterId: testCluster.id, * datastoreClusterId: testDatastoreCluster.id, * displayName: datastoreClusterDisplayName, * state: datastoreClusterState, * }); * ``` */ export declare function getDatastoreClusters(args: GetDatastoreClustersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDatastoreClusters. */ export interface GetDatastoreClustersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster. */ clusterId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Datastore Cluster. */ datastoreClusterId?: string; /** * A filter to return only resources that match the given display name exactly. */ displayName?: string; filters?: inputs.Ocvp.GetDatastoreClustersFilter[]; /** * The lifecycle state of the resource. */ state?: string; } /** * A collection of values returned by getDatastoreClusters. */ export interface GetDatastoreClustersResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VMware Cluster that Datastore cluster is attached to. */ readonly clusterId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the Datastore. */ readonly compartmentId: string; /** * The list of datastore_cluster_collection. */ readonly datastoreClusterCollections: outputs.Ocvp.GetDatastoreClustersDatastoreClusterCollection[]; readonly datastoreClusterId?: string; /** * A descriptive name for the Datastore Cluster. It must be unique within a SDDC, start with a letter, and contain only letters, digits, whitespaces, dashes and underscores. Avoid entering confidential information. */ readonly displayName?: string; readonly filters?: outputs.Ocvp.GetDatastoreClustersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Datastore Cluster. */ readonly state?: string; } /** * This data source provides the list of Datastore Clusters in Oracle Cloud Infrastructure Oracle Cloud VMware Solution service. * * List the Datastore Clusters in the specified compartment. The list can be filtered * by compartment, Datastore Cluster, Display name and Lifecycle state * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testDatastoreClusters = oci.ocvp.getDatastoreClusters({ * compartmentId: compartmentId, * clusterId: testCluster.id, * datastoreClusterId: testDatastoreCluster.id, * displayName: datastoreClusterDisplayName, * state: datastoreClusterState, * }); * ``` */ export declare function getDatastoreClustersOutput(args: GetDatastoreClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDatastoreClusters. */ export interface GetDatastoreClustersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the SDDC Cluster. */ clusterId?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Datastore Cluster. */ datastoreClusterId?: pulumi.Input; /** * A filter to return only resources that match the given display name exactly. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The lifecycle state of the resource. */ state?: pulumi.Input; } //# sourceMappingURL=getDatastoreClusters.d.ts.map