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

InstanceGroupManagerResizeRequest

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

InstanceGroupManagerResizeRequest represents a request to create a number of VMs: either immediately or by queuing the request for the specified time. This resize request is nested under InstanceGroupManager and the VMs created by this request are added to the owning InstanceGroupManager.

interface InstanceGroupManagerResizeRequest {
creationTimestamp?: string;
description?: string;
id?: bigint;
kind?: string;
name?: string;
requestedRunDuration?: Duration;
resizeBy?: number;
selfLink?: string;
selfLinkWithId?: string;
state?:
| "ACCEPTED"
| "CANCELLED"
| "CREATING"
| "FAILED"
| "STATE_UNSPECIFIED"
| "SUCCEEDED";
zone?: string;
}

§Properties

§
creationTimestamp?: string
[src]

[Output Only] The creation timestamp for this resize request in RFC3339 text format.

§
description?: string
[src]

An optional description of this resource.

§
id?: bigint
[src]

[Output Only] A unique identifier for this resource type. The server generates this identifier.

§
kind?: string
[src]

[Output Only] The resource type, which is always compute#instanceGroupManagerResizeRequest for resize requests.

§
name?: string
[src]

The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.

§
requestedRunDuration?: Duration
[src]

Requested run duration for instances that will be created by this request. At the end of the run duration instance will be deleted.

§
resizeBy?: number
[src]

The number of instances to be created by this resize request. The group's target size will be increased by this number.

§
selfLinkWithId?: string
[src]

[Output Only] Server-defined URL for this resource with the resource id.

§
state?: "ACCEPTED" | "CANCELLED" | "CREATING" | "FAILED" | "STATE_UNSPECIFIED" | "SUCCEEDED"
[src]

[Output only] Current state of the request.

§

[Output only] Status of the request.

§
zone?: string
[src]

[Output Only] The URL of a zone where the resize request is located. Populated only for zonal resize requests.