import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::CBR::BackupPlan */ export declare function getBackupPlan(args: GetBackupPlanArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackupPlan. */ export interface GetBackupPlanArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getBackupPlan. */ export interface GetBackupPlanResult { /** * Account ID that created this plan */ readonly accountId: string; /** * Creation Time */ readonly createdTime: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Backup Plan Name */ readonly name: string; /** * Backup Plan ID */ readonly planId: string; /** * Backup Policy */ readonly policy: outputs.cbr.GetBackupPlanPolicy; /** * Backup Policy ID */ readonly policyId: string; /** * Backup Source List */ readonly resourceLists: outputs.cbr.GetBackupPlanResourceList[]; /** * Update Time */ readonly updatedTime: string; } /** * Data Source schema for Volcengine::CBR::BackupPlan */ export declare function getBackupPlanOutput(args: GetBackupPlanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackupPlan. */ export interface GetBackupPlanOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }