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 Infrastructures in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata infrastructure resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructures = oci.databasemanagement.getCloudExadataInfrastructures({ * compartmentId: compartmentId, * displayName: cloudExadataInfrastructureDisplayName, * }); * ``` */ export declare function getCloudExadataInfrastructures(args: GetCloudExadataInfrastructuresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresArgs { /** * 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.GetCloudExadataInfrastructuresFilter[]; } /** * A collection of values returned by getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresResult { /** * The list of cloud_exadata_infrastructure_collection. */ readonly cloudExadataInfrastructureCollections: outputs.DatabaseManagement.GetCloudExadataInfrastructuresCloudExadataInfrastructureCollection[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * The name of the Exadata resource. English letters, numbers, "-", "_" and "." only. */ readonly displayName?: string; readonly filters?: outputs.DatabaseManagement.GetCloudExadataInfrastructuresFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Exadata Infrastructures in Oracle Cloud Infrastructure Database Management service. * * Lists the Exadata infrastructure resources in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructures = oci.databasemanagement.getCloudExadataInfrastructures({ * compartmentId: compartmentId, * displayName: cloudExadataInfrastructureDisplayName, * }); * ``` */ export declare function getCloudExadataInfrastructuresOutput(args: GetCloudExadataInfrastructuresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresOutputArgs { /** * 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=getCloudExadataInfrastructures.d.ts.map