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

CycleStep

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

CycleStep holds information about a step progress.

interface CycleStep {
endTime?: Date;
initializingReplication?: InitializingReplicationStep;
postProcessing?: PostProcessingStep;
replicating?: ReplicatingStep;
startTime?: Date;
}

§Properties

§
endTime?: Date
[src]

The time the cycle step has ended.

§
initializingReplication?: InitializingReplicationStep
[src]

Initializing replication step.

§
postProcessing?: PostProcessingStep
[src]

Post processing step.

§
replicating?: ReplicatingStep
[src]

Replicating step.

§
startTime?: Date
[src]

The time the cycle step has started.