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 Cloud Exadata Storage Servers in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata storage servers for the specified Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageServers = oci.databasemanagement.getCloudExadataStorageServers({ * cloudExadataInfrastructureId: testCloudExadataInfrastructure.id, * compartmentId: compartmentId, * displayName: cloudExadataStorageServerDisplayName, * }); * ``` */ export declare function getCloudExadataStorageServers(args: GetCloudExadataStorageServersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataStorageServers. */ export interface GetCloudExadataStorageServersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: string; /** * The optional single value query filter parameter on the entity display name. */ displayName?: string; filters?: inputs.DatabaseManagement.GetCloudExadataStorageServersFilter[]; } /** * A collection of values returned by getCloudExadataStorageServers. */ export interface GetCloudExadataStorageServersResult { readonly cloudExadataInfrastructureId: string; /** * The list of cloud_exadata_storage_server_collection. */ readonly cloudExadataStorageServerCollections: outputs.DatabaseManagement.GetCloudExadataStorageServersCloudExadataStorageServerCollection[]; readonly compartmentId: string; /** * The name of the Exadata resource. English letters, numbers, "-", "_" and "." only. */ readonly displayName?: string; readonly filters?: outputs.DatabaseManagement.GetCloudExadataStorageServersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Exadata Storage Servers in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata storage servers for the specified Exadata infrastructure. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataStorageServers = oci.databasemanagement.getCloudExadataStorageServers({ * cloudExadataInfrastructureId: testCloudExadataInfrastructure.id, * compartmentId: compartmentId, * displayName: cloudExadataStorageServerDisplayName, * }); * ``` */ export declare function getCloudExadataStorageServersOutput(args: GetCloudExadataStorageServersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataStorageServers. */ export interface GetCloudExadataStorageServersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata infrastructure. */ cloudExadataInfrastructureId: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId: pulumi.Input; /** * The optional single value query filter parameter on the entity display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCloudExadataStorageServers.d.ts.map