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 Exadb Vm Clusters in Oracle Cloud Infrastructure Database service. * * Gets a list of the Exadata VM clusters on Exascale Infrastructure in the specified compartment. Applies to Exadata Database Service on Exascale Infrastructure only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusters = oci.database.getExadbVmClusters({ * compartmentId: compartmentId, * clusterPlacementGroupId: testClusterPlacementGroup.id, * displayName: exadbVmClusterDisplayName, * exascaleDbStorageVaultId: testExascaleDbStorageVault.id, * state: exadbVmClusterState, * }); * ``` */ export declare function getExadbVmClusters(args: GetExadbVmClustersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExadbVmClusters. */ export interface GetExadbVmClustersArgs { /** * A filter to return only resources that match the given cluster placement group ID exactly. */ clusterPlacementGroupId?: string; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: string; /** * A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID. */ exascaleDbStorageVaultId?: string; filters?: inputs.Database.GetExadbVmClustersFilter[]; /** * A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getExadbVmClusters. */ export interface GetExadbVmClustersResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure or Db System. */ readonly clusterPlacementGroupId?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the Exadata VM cluster on Exascale Infrastructure. The name does not need to be unique. */ readonly displayName?: string; /** * The list of exadb_vm_clusters. */ readonly exadbVmClusters: outputs.Database.GetExadbVmClustersExadbVmCluster[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault. */ readonly exascaleDbStorageVaultId?: string; readonly filters?: outputs.Database.GetExadbVmClustersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Exadata VM cluster on Exascale Infrastructure. */ readonly state?: string; } /** * This data source provides the list of Exadb Vm Clusters in Oracle Cloud Infrastructure Database service. * * Gets a list of the Exadata VM clusters on Exascale Infrastructure in the specified compartment. Applies to Exadata Database Service on Exascale Infrastructure only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExadbVmClusters = oci.database.getExadbVmClusters({ * compartmentId: compartmentId, * clusterPlacementGroupId: testClusterPlacementGroup.id, * displayName: exadbVmClusterDisplayName, * exascaleDbStorageVaultId: testExascaleDbStorageVault.id, * state: exadbVmClusterState, * }); * ``` */ export declare function getExadbVmClustersOutput(args: GetExadbVmClustersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExadbVmClusters. */ export interface GetExadbVmClustersOutputArgs { /** * A filter to return only resources that match the given cluster placement group ID exactly. */ clusterPlacementGroupId?: pulumi.Input; /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. The match is not case sensitive. */ displayName?: pulumi.Input; /** * A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given Exascale Database Storage Vault ID. */ exascaleDbStorageVaultId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only Exadata VM clusters on Exascale Infrastructure that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getExadbVmClusters.d.ts.map