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 Autonomous Exadata Infrastructures in Oracle Cloud Infrastructure Database service. * * **Deprecated.** Use the [ListCloudExadataInfrastructures](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/ListCloudExadataInfrastructures) operation to list Exadata Infrastructures in the Oracle cloud and the [ListCloudAutonomousVmClusters](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudAutonomousVmCluster/ListCloudAutonomousVmClusters) operation to list Autonomous Exadata VM clusters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousExadataInfrastructures = oci.database.getAutonomousExadataInfrastructures({ * compartmentId: compartmentId, * availabilityDomain: autonomousExadataInfrastructureAvailabilityDomain, * displayName: autonomousExadataInfrastructureDisplayName, * state: autonomousExadataInfrastructureState, * }); * ``` */ export declare function getAutonomousExadataInfrastructures(args: GetAutonomousExadataInfrastructuresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAutonomousExadataInfrastructures. */ export interface GetAutonomousExadataInfrastructuresArgs { /** * A filter to return only resources that match the given availability domain exactly. */ availabilityDomain?: 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; filters?: inputs.Database.GetAutonomousExadataInfrastructuresFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getAutonomousExadataInfrastructures. */ export interface GetAutonomousExadataInfrastructuresResult { /** * The list of autonomous_exadata_infrastructures. */ readonly autonomousExadataInfrastructures: outputs.Database.GetAutonomousExadataInfrastructuresAutonomousExadataInfrastructure[]; /** * The name of the availability domain that the Autonomous Exadata Infrastructure is located in. */ readonly availabilityDomain?: string; /** * The OCID of the compartment. */ readonly compartmentId: string; /** * The user-friendly name for the Autonomous Exadata Infrastructure. */ readonly displayName?: string; readonly filters?: outputs.Database.GetAutonomousExadataInfrastructuresFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the Autonomous Exadata Infrastructure. */ readonly state?: string; } /** * This data source provides the list of Autonomous Exadata Infrastructures in Oracle Cloud Infrastructure Database service. * * **Deprecated.** Use the [ListCloudExadataInfrastructures](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudExadataInfrastructure/ListCloudExadataInfrastructures) operation to list Exadata Infrastructures in the Oracle cloud and the [ListCloudAutonomousVmClusters](https://docs.cloud.oracle.com/iaas/api/#/en/database/latest/CloudAutonomousVmCluster/ListCloudAutonomousVmClusters) operation to list Autonomous Exadata VM clusters. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAutonomousExadataInfrastructures = oci.database.getAutonomousExadataInfrastructures({ * compartmentId: compartmentId, * availabilityDomain: autonomousExadataInfrastructureAvailabilityDomain, * displayName: autonomousExadataInfrastructureDisplayName, * state: autonomousExadataInfrastructureState, * }); * ``` */ export declare function getAutonomousExadataInfrastructuresOutput(args: GetAutonomousExadataInfrastructuresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAutonomousExadataInfrastructures. */ export interface GetAutonomousExadataInfrastructuresOutputArgs { /** * A filter to return only resources that match the given availability domain exactly. */ availabilityDomain?: 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; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getAutonomousExadataInfrastructures.d.ts.map