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

PortabilityArchiveState

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

Resource that contains the state of an Archive job.

interface PortabilityArchiveState {
name?: string;
state?:
| "STATE_UNSPECIFIED"
| "IN_PROGRESS"
| "COMPLETE"
| "FAILED"
| "CANCELLED";
urls?: string[];
}

§Properties

§
name?: string
[src]

The resource name of ArchiveJob's PortabilityArchiveState singleton. The format is: archiveJobs/{archive_job}/portabilityArchiveState. archive_job is the job ID provided in the request.

§
state?: "STATE_UNSPECIFIED" | "IN_PROGRESS" | "COMPLETE" | "FAILED" | "CANCELLED"
[src]

Resource that represents the state of the Archive job.

§
urls?: string[]
[src]

If the state is complete, this method returns the signed URLs of the objects in the Cloud Storage bucket.