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 Asm Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the ASM instances in the specified cloud ASM. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudAsmInstances = oci.databasemanagement.getCloudAsmInstances({ * cloudAsmId: testCloudAsm.id, * compartmentId: compartmentId, * displayName: cloudAsmInstanceDisplayName, * }); * ``` */ export declare function getCloudAsmInstances(args?: GetCloudAsmInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudAsmInstances. */ export interface GetCloudAsmInstancesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud ASM. */ cloudAsmId?: 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.GetCloudAsmInstancesFilter[]; } /** * A collection of values returned by getCloudAsmInstances. */ export interface GetCloudAsmInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud ASM that the ASM instance belongs to. */ readonly cloudAsmId?: string; /** * The list of cloud_asm_instance_collection. */ readonly cloudAsmInstanceCollections: outputs.DatabaseManagement.GetCloudAsmInstancesCloudAsmInstanceCollection[]; /** * 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 ASM instance. The name does not have to be unique. */ readonly displayName?: string; readonly filters?: outputs.DatabaseManagement.GetCloudAsmInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Cloud Asm Instances in Oracle Cloud Infrastructure Database Management service. * * Lists the ASM instances in the specified cloud ASM. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudAsmInstances = oci.databasemanagement.getCloudAsmInstances({ * cloudAsmId: testCloudAsm.id, * compartmentId: compartmentId, * displayName: cloudAsmInstanceDisplayName, * }); * ``` */ export declare function getCloudAsmInstancesOutput(args?: GetCloudAsmInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudAsmInstances. */ export interface GetCloudAsmInstancesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud ASM. */ cloudAsmId?: 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=getCloudAsmInstances.d.ts.map