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 Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service. * * Gets a list of the Exadata Database Storage Vaults in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExascaleDbStorageVaults = oci.database.getExascaleDbStorageVaults({ * compartmentId: compartmentId, * attachedShapeAttributes: exascaleDbStorageVaultAttachedShapeAttributes, * attachedShapeAttributesNotEqualTo: exascaleDbStorageVaultAttachedShapeAttributesNotEqualTo, * clusterPlacementGroupId: testClusterPlacementGroup.id, * displayName: exascaleDbStorageVaultDisplayName, * exadataInfrastructureId: testExadataInfrastructure.id, * state: exascaleDbStorageVaultState, * vmClusterCountGreaterThanOrEqualTo: Number(exascaleDbStorageVaultVmClusterCountGreaterThanOrEqualTo), * vmClusterCountLessThanOrEqualTo: Number(exascaleDbStorageVaultVmClusterCountLessThanOrEqualTo), * }); * ``` */ export declare function getExascaleDbStorageVaults(args: GetExascaleDbStorageVaultsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExascaleDbStorageVaults. */ export interface GetExascaleDbStorageVaultsArgs { /** * A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes */ attachedShapeAttributes?: string; /** * A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes */ attachedShapeAttributesNotEqualTo?: string; /** * 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 list of Vaults that are linked to the exadata infrastructure Id. */ exadataInfrastructureId?: string; filters?: inputs.Database.GetExascaleDbStorageVaultsFilter[]; /** * A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly. */ state?: string; /** * A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count */ vmClusterCountGreaterThanOrEqualTo?: number; /** * A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count */ vmClusterCountLessThanOrEqualTo?: number; } /** * A collection of values returned by getExascaleDbStorageVaults. */ export interface GetExascaleDbStorageVaultsResult { /** * The shapeAttribute of the Exadata VM cluster(s) associated with the Exadata Database Storage Vault. */ readonly attachedShapeAttributes?: string; readonly attachedShapeAttributesNotEqualTo?: string; /** * 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 Database Storage Vault. The name does not need to be unique. */ readonly displayName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ readonly exadataInfrastructureId?: string; /** * The list of exascale_db_storage_vaults. */ readonly exascaleDbStorageVaults: outputs.Database.GetExascaleDbStorageVaultsExascaleDbStorageVault[]; readonly filters?: outputs.Database.GetExascaleDbStorageVaultsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the Exadata Database Storage Vault. */ readonly state?: string; readonly vmClusterCountGreaterThanOrEqualTo?: number; readonly vmClusterCountLessThanOrEqualTo?: number; } /** * This data source provides the list of Exascale Db Storage Vaults in Oracle Cloud Infrastructure Database service. * * Gets a list of the Exadata Database Storage Vaults in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExascaleDbStorageVaults = oci.database.getExascaleDbStorageVaults({ * compartmentId: compartmentId, * attachedShapeAttributes: exascaleDbStorageVaultAttachedShapeAttributes, * attachedShapeAttributesNotEqualTo: exascaleDbStorageVaultAttachedShapeAttributesNotEqualTo, * clusterPlacementGroupId: testClusterPlacementGroup.id, * displayName: exascaleDbStorageVaultDisplayName, * exadataInfrastructureId: testExadataInfrastructure.id, * state: exascaleDbStorageVaultState, * vmClusterCountGreaterThanOrEqualTo: Number(exascaleDbStorageVaultVmClusterCountGreaterThanOrEqualTo), * vmClusterCountLessThanOrEqualTo: Number(exascaleDbStorageVaultVmClusterCountLessThanOrEqualTo), * }); * ``` */ export declare function getExascaleDbStorageVaultsOutput(args: GetExascaleDbStorageVaultsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExascaleDbStorageVaults. */ export interface GetExascaleDbStorageVaultsOutputArgs { /** * A filter to return only Exadata Database Storage Vaults which match the given attachedShapeAttributes or has null attachedShapeAttributes */ attachedShapeAttributes?: pulumi.Input; /** * A filter to return only Exadata Database Storage Vaults which do not match the given attachedShapeAttributes */ attachedShapeAttributesNotEqualTo?: pulumi.Input; /** * 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 list of Vaults that are linked to the exadata infrastructure Id. */ exadataInfrastructureId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only Exadata Database Storage Vaults that match the given lifecycle state exactly. */ state?: pulumi.Input; /** * A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters greater than or equal to the given count */ vmClusterCountGreaterThanOrEqualTo?: pulumi.Input; /** * A filter to return only Exadata Database Storage Vaults with associated Exadata VM Clusters less than or equal to the given count */ vmClusterCountLessThanOrEqualTo?: pulumi.Input; } //# sourceMappingURL=getExascaleDbStorageVaults.d.ts.map