import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Managed Databases Asm Property resource in Oracle Cloud Infrastructure Database Management service. * * Gets the list of ASM properties for the specified managedDatabaseId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabasesAsmProperty = oci.databasemanagement.getManagedDatabasesAsmProperty({ * managedDatabaseId: testManagedDatabase.id, * name: managedDatabasesAsmPropertyName, * }); * ``` */ export declare function getManagedDatabasesAsmProperty(args: GetManagedDatabasesAsmPropertyArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedDatabasesAsmProperty. */ export interface GetManagedDatabasesAsmPropertyArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: string; /** * A filter to return only resources that match the entire name. */ name?: string; } /** * A collection of values returned by getManagedDatabasesAsmProperty. */ export interface GetManagedDatabasesAsmPropertyResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * An array of AsmPropertySummary resources. */ readonly items: outputs.DatabaseManagement.GetManagedDatabasesAsmPropertyItem[]; readonly managedDatabaseId: string; readonly name?: string; } /** * This data source provides details about a specific Managed Databases Asm Property resource in Oracle Cloud Infrastructure Database Management service. * * Gets the list of ASM properties for the specified managedDatabaseId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedDatabasesAsmProperty = oci.databasemanagement.getManagedDatabasesAsmProperty({ * managedDatabaseId: testManagedDatabase.id, * name: managedDatabasesAsmPropertyName, * }); * ``` */ export declare function getManagedDatabasesAsmPropertyOutput(args: GetManagedDatabasesAsmPropertyOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedDatabasesAsmProperty. */ export interface GetManagedDatabasesAsmPropertyOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database. */ managedDatabaseId: pulumi.Input; /** * A filter to return only resources that match the entire name. */ name?: pulumi.Input; } //# sourceMappingURL=getManagedDatabasesAsmProperty.d.ts.map