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 Users in Oracle Cloud Infrastructure Database Management service. * * Lists ASM users for the cloud ASM specified by `cloudAsmId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudAsmUsers = oci.databasemanagement.getCloudAsmUsers({ * cloudAsmId: testCloudAsm.id, * opcNamedCredentialId: cloudAsmUserOpcNamedCredentialId, * }); * ``` */ export declare function getCloudAsmUsers(args: GetCloudAsmUsersArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCloudAsmUsers. */ export interface GetCloudAsmUsersArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud ASM. */ cloudAsmId: string; filters?: inputs.DatabaseManagement.GetCloudAsmUsersFilter[]; /** * The OCID of the Named Credential. */ opcNamedCredentialId?: string; } /** * A collection of values returned by getCloudAsmUsers. */ export interface GetCloudAsmUsersResult { readonly cloudAsmId: string; /** * The list of cloud_asm_user_collection. */ readonly cloudAsmUserCollections: outputs.DatabaseManagement.GetCloudAsmUsersCloudAsmUserCollection[]; readonly filters?: outputs.DatabaseManagement.GetCloudAsmUsersFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly opcNamedCredentialId?: string; } /** * This data source provides the list of Cloud Asm Users in Oracle Cloud Infrastructure Database Management service. * * Lists ASM users for the cloud ASM specified by `cloudAsmId`. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCloudAsmUsers = oci.databasemanagement.getCloudAsmUsers({ * cloudAsmId: testCloudAsm.id, * opcNamedCredentialId: cloudAsmUserOpcNamedCredentialId, * }); * ``` */ export declare function getCloudAsmUsersOutput(args: GetCloudAsmUsersOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCloudAsmUsers. */ export interface GetCloudAsmUsersOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cloud ASM. */ cloudAsmId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The OCID of the Named Credential. */ opcNamedCredentialId?: pulumi.Input; } //# sourceMappingURL=getCloudAsmUsers.d.ts.map