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

BulkInsertOperationStatus

import type { BulkInsertOperationStatus } from "https://googleapis.deno.dev/v1/compute:v1.ts";
interface BulkInsertOperationStatus {
createdVmCount?: number;
deletedVmCount?: number;
failedToCreateVmCount?: number;
status?:
| "CREATING"
| "DONE"
| "ROLLING_BACK"
| "STATUS_UNSPECIFIED";
targetVmCount?: number;
}

§Properties

§
createdVmCount?: number
[src]

[Output Only] Count of VMs successfully created so far.

§
deletedVmCount?: number
[src]

[Output Only] Count of VMs that got deleted during rollback.

§
failedToCreateVmCount?: number
[src]

[Output Only] Count of VMs that started creating but encountered an error.

§
status?: "CREATING" | "DONE" | "ROLLING_BACK" | "STATUS_UNSPECIFIED"
[src]

[Output Only] Creation status of BulkInsert operation - information if the flow is rolling forward or rolling back.

§
targetVmCount?: number
[src]

[Output Only] Count of VMs originally planned to be created.