PortabilityArchiveState
import type { PortabilityArchiveState } from "https://googleapis.deno.dev/v1/dataportability:v1.ts";
Resource that contains the state of an Archive job.
interface PortabilityArchiveState {
exportTime?: Date;
name?: string;
startTime?: Date;
state?:
| "STATE_UNSPECIFIED"
| "IN_PROGRESS"
| "COMPLETE"
| "FAILED"
| "CANCELLED";
urls?: string[];
}§Properties
§
exportTime?: Date
[src]The timestamp that represents the end point for the data you are exporting. If the end_time value is set in the InitiatePortabilityArchiveRequest, this field is set to that value. If end_time is not set, this value is set to the time the export was requested.
§
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.
§
startTime?: Date
[src]The timestamp that represents the starting point for the data you are exporting. This field is set only if the start_time field is specified in the InitiatePortabilityArchiveRequest.