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 Managed Databases Asm Properties 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 testManagedDatabasesAsmProperties = oci.databasemanagement.getManagedDatabasesAsmProperties({ * managedDatabaseId: testManagedDatabase.id, * name: managedDatabasesAsmPropertyName, * }); * ``` */ export declare function getManagedDatabasesAsmProperties(args: GetManagedDatabasesAsmPropertiesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getManagedDatabasesAsmProperties. */ export interface GetManagedDatabasesAsmPropertiesArgs { filters?: inputs.DatabaseManagement.GetManagedDatabasesAsmPropertiesFilter[]; /** * 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 getManagedDatabasesAsmProperties. */ export interface GetManagedDatabasesAsmPropertiesResult { /** * The list of asm_property_collection. */ readonly asmPropertyCollections: outputs.DatabaseManagement.GetManagedDatabasesAsmPropertiesAsmPropertyCollection[]; readonly filters?: outputs.DatabaseManagement.GetManagedDatabasesAsmPropertiesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly managedDatabaseId: string; readonly name?: string; } /** * This data source provides the list of Managed Databases Asm Properties 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 testManagedDatabasesAsmProperties = oci.databasemanagement.getManagedDatabasesAsmProperties({ * managedDatabaseId: testManagedDatabase.id, * name: managedDatabasesAsmPropertyName, * }); * ``` */ export declare function getManagedDatabasesAsmPropertiesOutput(args: GetManagedDatabasesAsmPropertiesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getManagedDatabasesAsmProperties. */ export interface GetManagedDatabasesAsmPropertiesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * 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=getManagedDatabasesAsmProperties.d.ts.map