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 service. * * Gets a list of the cloud Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud Service instances and Autonomous AI Database on dedicated Exadata infrastructure only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructures = oci.database.getCloudExadataInfrastructures({ * compartmentId: compartmentId, * clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId, * displayName: cloudExadataInfrastructureDisplayName, * state: cloudExadataInfrastructureState, * }); * ``` */ export declare function getCloudExadataInfrastructures(args: GetCloudExadataInfrastructuresArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresArgs { /** * 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; filters?: inputs.Database.GetCloudExadataInfrastructuresFilter[]; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: string; } /** * A collection of values returned by getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresResult { /** * The list of cloud_exadata_infrastructures. */ readonly cloudExadataInfrastructures: outputs.Database.GetCloudExadataInfrastructuresCloudExadataInfrastructure[]; /** * 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 cloud Exadata infrastructure resource. The name does not need to be unique. */ readonly displayName?: string; readonly filters?: outputs.Database.GetCloudExadataInfrastructuresFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current lifecycle state of the cloud Exadata infrastructure resource. */ readonly state?: string; } /** * This data source provides the list of Cloud Exadata Infrastructures in Oracle Cloud Infrastructure Database service. * * Gets a list of the cloud Exadata infrastructure resources in the specified compartment. Applies to Exadata Cloud Service instances and Autonomous AI Database on dedicated Exadata infrastructure only. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudExadataInfrastructures = oci.database.getCloudExadataInfrastructures({ * compartmentId: compartmentId, * clusterPlacementGroupId: cloudExadataInfrastructureClusterPlacementGroupId, * displayName: cloudExadataInfrastructureDisplayName, * state: cloudExadataInfrastructureState, * }); * ``` */ export declare function getCloudExadataInfrastructuresOutput(args: GetCloudExadataInfrastructuresOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudExadataInfrastructures. */ export interface GetCloudExadataInfrastructuresOutputArgs { /** * 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; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given lifecycle state exactly. */ state?: pulumi.Input; } //# sourceMappingURL=getCloudExadataInfrastructures.d.ts.map