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 {
readonly creationTimestamp?: string;
description?: string;
readonly id?: bigint;
readonly kind?: string;
name?: string;
requestedRunDuration?: Duration;
resizeBy?: number;
readonly selfLink?: string;
readonly selfLinkWithId?: string;
readonly state?:
| "ACCEPTED"
| "CANCELLED"
| "CREATING"
| "FAILED"
| "STATE_UNSPECIFIED"
| "SUCCEEDED";
readonly zone?: string;
}

§Properties

§
readonly creationTimestamp?: string
[src]

Output only. [Output Only] The creation timestamp for this resize request inRFC3339 text format.

§
description?: string
[src]

An optional description of this resource.

§
readonly id?: bigint
[src]

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

§
readonly kind?: string
[src]

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

§
name?: string
[src]

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

§
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. This field cannot be used together with 'instances'.

§
readonly selfLinkWithId?: string
[src]

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

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

Output only. [Output only] Current state of the request.

§

Output only. [Output only] Status of the request.

§
readonly zone?: string
[src]

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