import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * A Backup and DR BackupPlanAssociation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backupplan_association = gcp.backupdisasterrecovery.getBackupPlanAssociation({ * location: "us-central1", * backupPlanAssociationId: "bpa-id", * }); * ``` */ export declare function getBackupPlanAssociation(args: GetBackupPlanAssociationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getBackupPlanAssociation. */ export interface GetBackupPlanAssociationArgs { /** * The id of Backupplan association resource. * * - - - */ backupPlanAssociationId: string; /** * The location in which the Backupplan association resource belongs. */ location: string; project?: string; } /** * A collection of values returned by getBackupPlanAssociation. */ export interface GetBackupPlanAssociationResult { readonly backupPlan: string; readonly backupPlanAssociationId: string; readonly createTime: string; readonly dataSource: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly lastSuccessfulBackupConsistencyTime: string; readonly location: string; readonly name: string; readonly project?: string; readonly resource: string; readonly resourceType: string; readonly rulesConfigInfos: outputs.backupdisasterrecovery.GetBackupPlanAssociationRulesConfigInfo[]; readonly updateTime: string; } /** * A Backup and DR BackupPlanAssociation. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as gcp from "@pulumi/gcp"; * * const my_backupplan_association = gcp.backupdisasterrecovery.getBackupPlanAssociation({ * location: "us-central1", * backupPlanAssociationId: "bpa-id", * }); * ``` */ export declare function getBackupPlanAssociationOutput(args: GetBackupPlanAssociationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getBackupPlanAssociation. */ export interface GetBackupPlanAssociationOutputArgs { /** * The id of Backupplan association resource. * * - - - */ backupPlanAssociationId: pulumi.Input; /** * The location in which the Backupplan association resource belongs. */ location: pulumi.Input; project?: pulumi.Input; }