import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Data Source schema for Volcengine::CBR::Vault */ export declare function getVault(args: GetVaultArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVault. */ export interface GetVaultArgs { /** * Uniquely identifies the resource. */ id: string; } /** * A collection of values returned by getVault. */ export interface GetVaultResult { /** * Creation Time */ readonly createdTime: string; /** * Access Domain Name */ readonly endpoint: string; /** * Uniquely identifies the resource. */ readonly id: string; /** * Project Name */ readonly projectName: string; /** * Backup Repository Tag */ readonly tags: outputs.cbr.GetVaultTag[]; /** * Backup Repository ID */ readonly vaultId: string; /** * Backup Repository Name */ readonly vaultName: string; } /** * Data Source schema for Volcengine::CBR::Vault */ export declare function getVaultOutput(args: GetVaultOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVault. */ export interface GetVaultOutputArgs { /** * Uniquely identifies the resource. */ id: pulumi.Input; }