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 Cluster Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the cluster instances in the specified cloud cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudClusterInstances = oci.databasemanagement.getCloudClusterInstances({ * cloudClusterId: testCloudCluster.id, * compartmentId: compartmentId, * displayName: cloudClusterInstanceDisplayName, * }); * ``` */ export declare function getCloudClusterInstances(args?: GetCloudClusterInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudClusterInstances. */ export interface GetCloudClusterInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud cluster. */ cloudClusterId?: string; /** * 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; filters?: inputs.DatabaseManagement.GetCloudClusterInstancesFilter[]; } /** * A collection of values returned by getCloudClusterInstances. */ export interface GetCloudClusterInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud cluster that the cluster instance belongs to. */ readonly cloudClusterId?: string; /** * The list of cloud_cluster_instance_collection. */ readonly cloudClusterInstanceCollections: outputs.DatabaseManagement.GetCloudClusterInstancesCloudClusterInstanceCollection[]; /** * 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; readonly filters?: outputs.DatabaseManagement.GetCloudClusterInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Cluster Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the cluster instances in the specified cloud cluster. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudClusterInstances = oci.databasemanagement.getCloudClusterInstances({ * cloudClusterId: testCloudCluster.id, * compartmentId: compartmentId, * displayName: cloudClusterInstanceDisplayName, * }); * ``` */ export declare function getCloudClusterInstancesOutput(args?: GetCloudClusterInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudClusterInstances. */ export interface GetCloudClusterInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud cluster. */ cloudClusterId?: pulumi.Input; /** * 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; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getCloudClusterInstances.d.ts.map