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 Exadata Infrastructures in Oracle Cloud Infrastructure Database service. * * Lists the Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud@Customer instances only. * To list the Exadata Cloud Service infrastructure resources in a compartment, use the [ListCloudExadataInfrastructures](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/ListCloudExadataInfrastructures) operation. * * ## Example Usage */ export declare function getExadataInfrastructures(args: GetExadataInfrastructuresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExadataInfrastructures. */ export interface GetExadataInfrastructuresArgs { /** * 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; filters?: inputs.Database.GetExadataInfrastructuresFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getExadataInfrastructures. */ export interface GetExadataInfrastructuresResult { /** * 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 Cloud@Customer infrastructure. The name does not need to be unique. */ readonly displayName?: string; /** * The list of exadata_infrastructures. */ readonly exadataInfrastructures: outputs.Database.GetExadataInfrastructuresExadataInfrastructure[]; readonly filters?: outputs.Database.GetExadataInfrastructuresFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the Exadata infrastructure. */ readonly state?: string; } /** * This data source provides the list of Exadata Infrastructures in Oracle Cloud Infrastructure Database service. * * Lists the Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud@Customer instances only. * To list the Exadata Cloud Service infrastructure resources in a compartment, use the [ListCloudExadataInfrastructures](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/ListCloudExadataInfrastructures) operation. * * ## Example Usage */ export declare function getExadataInfrastructuresOutput(args: GetExadataInfrastructuresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExadataInfrastructures. */ export interface GetExadataInfrastructuresOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getExadataInfrastructures.d.ts.map