Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

Export

import type { Export } from "https://googleapis.deno.dev/v1/vault:v1.ts";

An export. To work with Vault resources, the account must have the required Vault privileges and access to the matter. To access a matter, the account must have created the matter, have the matter shared with them, or have the View All Matters privilege.

interface Export {
cloudStorageSink?: CloudStorageSink;
createTime?: Date;
exportOptions?: ExportOptions;
id?: string;
matterId?: string;
name?: string;
readonly parentExportId?: string;
query?: Query;
requester?: UserInfo;
stats?: ExportStats;
status?:
| "EXPORT_STATUS_UNSPECIFIED"
| "COMPLETED"
| "FAILED"
| "IN_PROGRESS";
}

§Properties

§
cloudStorageSink?: CloudStorageSink
[src]

Output only. The sink for export files in Cloud Storage.

§
createTime?: Date
[src]

Output only. The time when the export was created.

§
exportOptions?: ExportOptions
[src]

Additional export options.

§
id?: string
[src]

Output only. The generated export ID.

§
matterId?: string
[src]

Output only. The matter ID.

§
name?: string
[src]

The export name. Don't use special characters (~!$'(),;@:/?) in the name, they can prevent you from downloading exports.

§
readonly parentExportId?: string
[src]

Output only. Identifies the parent export that spawned this child export. This is only set on child exports.

§
query?: Query
[src]

The query parameters used to create the export.

§
requester?: UserInfo
[src]

Output only. The requester of the export.

§

Output only. Details about the export progress and size.

§
status?: "EXPORT_STATUS_UNSPECIFIED" | "COMPLETED" | "FAILED" | "IN_PROGRESS"
[src]

Output only. The status of the export.