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 Volume Backup Policies in Oracle Cloud Infrastructure Core service. * * Lists all the volume backup policies available in the specified compartment. * * For more information about Oracle defined backup policies and user defined backup policies, * see [Policy-Based Backups](https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVolumeBackupPolicies = oci.core.getVolumeBackupPolicies({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVolumeBackupPolicies(args?: GetVolumeBackupPoliciesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVolumeBackupPolicies. */ export interface GetVolumeBackupPoliciesArgs { /** * The OCID of the compartment. If no compartment is specified, the Oracle defined backup policies are listed. */ compartmentId?: string; filters?: inputs.Core.GetVolumeBackupPoliciesFilter[]; } /** * A collection of values returned by getVolumeBackupPolicies. */ export interface GetVolumeBackupPoliciesResult { /** * The OCID of the compartment that contains the volume backup. */ readonly compartmentId?: string; readonly filters?: outputs.Core.GetVolumeBackupPoliciesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of volume_backup_policies. */ readonly volumeBackupPolicies: outputs.Core.GetVolumeBackupPoliciesVolumeBackupPolicy[]; } /** * This data source provides the list of Volume Backup Policies in Oracle Cloud Infrastructure Core service. * * Lists all the volume backup policies available in the specified compartment. * * For more information about Oracle defined backup policies and user defined backup policies, * see [Policy-Based Backups](https://docs.cloud.oracle.com/iaas/Content/Block/Tasks/schedulingvolumebackups.htm). * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVolumeBackupPolicies = oci.core.getVolumeBackupPolicies({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVolumeBackupPoliciesOutput(args?: GetVolumeBackupPoliciesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVolumeBackupPolicies. */ export interface GetVolumeBackupPoliciesOutputArgs { /** * The OCID of the compartment. If no compartment is specified, the Oracle defined backup policies are listed. */ compartmentId?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getVolumeBackupPolicies.d.ts.map