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 External Cluster Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the cluster instances in the specified external cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalClusterInstances = oci.databasemanagement.getExternalClusterInstances({ * compartmentId: compartmentId, * displayName: externalClusterInstanceDisplayName, * externalClusterId: testExternalCluster.id, * }); * ``` */ export declare function getExternalClusterInstances(args?: GetExternalClusterInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getExternalClusterInstances. */ export interface GetExternalClusterInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A filter to only return the resources that match the entire display name. */ displayName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster. */ externalClusterId?: string; filters?: inputs.DatabaseManagement.GetExternalClusterInstancesFilter[]; } /** * A collection of values returned by getExternalClusterInstances. */ export interface GetExternalClusterInstancesResult { /** * 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 cluster instance. The name does not have to be unique. */ readonly displayName?: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster that the cluster instance belongs to. */ readonly externalClusterId?: string; /** * The list of external_cluster_instance_collection. */ readonly externalClusterInstanceCollections: outputs.DatabaseManagement.GetExternalClusterInstancesExternalClusterInstanceCollection[]; readonly filters?: outputs.DatabaseManagement.GetExternalClusterInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of External Cluster Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the cluster instances in the specified external cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testExternalClusterInstances = oci.databasemanagement.getExternalClusterInstances({ * compartmentId: compartmentId, * displayName: externalClusterInstanceDisplayName, * externalClusterId: testExternalCluster.id, * }); * ``` */ export declare function getExternalClusterInstancesOutput(args?: GetExternalClusterInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getExternalClusterInstances. */ export interface GetExternalClusterInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A filter to only return the resources that match the entire display name. */ displayName?: pulumi.Input; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external cluster. */ externalClusterId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getExternalClusterInstances.d.ts.map