A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from http://cloud.google.com/compute/docs/reference/rest/v1/nodeGroups below:

REST Resource: nodeGroups | Compute Engine Documentation

REST Resource: nodeGroups

Stay organized with collections Save and categorize content based on your preferences.

Resource: NodeGroup

Represents a sole-tenant Node Group resource.

A sole-tenant node is a physical server that is dedicated to hosting VM instances only for your specific project. Use sole-tenant nodes to keep your instances physically separated from instances in other projects, or to group your instances together on the same host hardware. For more information, read Sole-tenant nodes.

JSON representation
{
  "kind": string,
  "id": string,
  "creationTimestamp": string,
  "name": string,
  "description": string,
  "nodeTemplate": string,
  "zone": string,
  "selfLink": string,
  "status": enum,
  "size": integer,
  "autoscalingPolicy": {
    "mode": enum,
    "minNodes": integer,
    "maxNodes": integer
  },
  "maintenancePolicy": enum,
  "locationHint": string,
  "fingerprint": string,
  "maintenanceWindow": {
    "startTime": string,
    "maintenanceDuration": {
      "seconds": string,
      "nanos": integer
    }
  },
  "shareSettings": {
    "shareType": enum,
    "projectMap": {
      string: {
        "projectId": string
      },
      ...
    }
  },
  "maintenanceInterval": enum
}
Fields kind

string

[Output Only] The type of the resource. Always compute#nodeGroup for node group.

id

string (uint64 format)

[Output Only] The unique identifier for the resource. This identifier is defined by the server.

creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

name

string

The name of the resource, provided by the client when initially creating the resource. The resource name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.

description

string

An optional description of this resource. Provide this property when you create the resource.

nodeTemplate

string

URL of the node template to create the node group from.

zone

string

[Output Only] The name of the zone where the node group resides, such as us-central1-a.

selfLink

string

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

status

enum

size

integer

[Output Only] The total number of nodes in the node group.

autoscalingPolicy

object

Specifies how autoscaling should behave.

autoscalingPolicy.mode

enum

The autoscaling mode. Set to one of: ON, OFF, or ONLY_SCALE_OUT. For more information, see Autoscaler modes.

autoscalingPolicy.minNodes

integer

The minimum number of nodes that the group should have.

autoscalingPolicy.maxNodes

integer

The maximum number of nodes that the group should have. Must be set if autoscaling is enabled. Maximum value allowed is 100.

maintenancePolicy

enum

Specifies how to handle instances when a node in the group undergoes maintenance. Set to one of: DEFAULT, RESTART_IN_PLACE, or MIGRATE_WITHIN_NODE_GROUP. The default value is DEFAULT. For more information, see Maintenance policies.

locationHint

string

An opaque location hint used to place the Node close to other resources. This field is for use by internal tools that use the public API. The location hint here on the NodeGroup overrides any locationHint present in the NodeTemplate.

fingerprint

string (bytes format)

A base64-encoded string.

maintenanceWindow

object

maintenanceWindow.startTime

string

Start time of the window. This must be in UTC format that resolves to one of 00:00, 04:00, 08:00, 12:00, 16:00, or 20:00. For example, both 13:00-5 and 08:00 are valid.

maintenanceWindow.maintenanceDuration

object

[Output only] A predetermined duration for the window, automatically chosen to be the smallest possible in the given scenario.

maintenanceWindow.maintenanceDuration.seconds

string (int64 format)

Span of time at a resolution of a second. Must be from 0 to 315,576,000,000 inclusive. Note: these bounds are computed from: 60 sec/min * 60 min/hr * 24 hr/day * 365.25 days/year * 10000 years

maintenanceWindow.maintenanceDuration.nanos

integer

Span of time that's a fraction of a second at nanosecond resolution. Durations less than one second are represented with a 0 seconds field and a positive nanos field. Must be from 0 to 999,999,999 inclusive.

shareSettings.shareType

enum

Type of sharing for this shared-reservation

shareSettings.projectMap[]

map (key: string, value: object)

A map of project id and project config. This is only valid when shareType's value is SPECIFIC_PROJECTS.

shareSettings.projectMap[].projectId

string

The project ID, should be same as the key of this project config in the parent map.

maintenanceInterval

enum

Specifies the frequency of planned maintenance events. The accepted values are: AS_NEEDED and RECURRENT.

Methods addNodes Adds specified number of nodes to the node group. aggregatedList Retrieves an aggregated list of node groups. delete Deletes the specified NodeGroup resource. deleteNodes Deletes specified nodes from the node group. get Returns the specified NodeGroup. getIamPolicy Gets the access control policy for a resource. insert Creates a NodeGroup resource in the specified project using the data included in the request. list Retrieves a list of node groups available to the specified project. listNodes Lists nodes in the node group. patch Updates the specified node group. performMaintenance Perform maintenance on a subset of nodes in the node group. setIamPolicy Sets the access control policy on the specified resource. setNodeTemplate Updates the node template of the node group. simulateMaintenanceEvent Simulates maintenance event on specified nodes from the node group. testIamPermissions Returns permissions that a caller has on the specified resource.

Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.

Last updated 2025-07-28 UTC.

[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-07-28 UTC."],[[["NodeGroup represents a sole-tenant Node Group, which is a physical server dedicated to hosting VM instances for a specific project, ensuring physical separation or grouping of instances."],["The JSON representation of a NodeGroup includes details like its kind, ID, creation timestamp, name, description, node template, zone, status, size, and various policy settings, such as autoscaling and maintenance policies."],["NodeGroups support autoscaling, which can be configured to manage the minimum and maximum number of nodes automatically, with options for different scaling modes like `ON`, `OFF`, or `ONLY_SCALE_OUT`."],["Maintenance policies can be set to handle instances during node maintenance, with options such as `DEFAULT`, `RESTART_IN_PLACE`, or `MIGRATE_WITHIN_NODE_GROUP`."],["Various methods are available for managing NodeGroups, including adding or deleting nodes, retrieving information about NodeGroups, setting policies, and simulating maintenance events."]]],[]]


RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4