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 Backup Destinations in Oracle Cloud Infrastructure Database service. * * Gets a list of backup destinations in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBackupDestinations = oci.database.getBackupDestinations({ * compartmentId: compartmentId, * type: backupDestinationType, * }); * ``` */ export declare function getBackupDestinations(args: GetBackupDestinationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackupDestinations. */ export interface GetBackupDestinationsArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: string; filters?: inputs.Database.GetBackupDestinationsFilter[]; /** * A filter to return only resources that match the given type of the Backup Destination. */ type?: string; } /** * A collection of values returned by getBackupDestinations. */ export interface GetBackupDestinationsResult { /** * The list of backup_destinations. */ readonly backupDestinations: outputs.Database.GetBackupDestinationsBackupDestination[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; readonly filters?: outputs.Database.GetBackupDestinationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Type of the backup destination. */ readonly type?: string; } /** * This data source provides the list of Backup Destinations in Oracle Cloud Infrastructure Database service. * * Gets a list of backup destinations in the specified compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testBackupDestinations = oci.database.getBackupDestinations({ * compartmentId: compartmentId, * type: backupDestinationType, * }); * ``` */ export declare function getBackupDestinationsOutput(args: GetBackupDestinationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackupDestinations. */ export interface GetBackupDestinationsOutputArgs { /** * The compartment [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that match the given type of the Backup Destination. */ type?: pulumi.Input; } //# sourceMappingURL=getBackupDestinations.d.ts.map