View reserved capacity (original) (raw)

Skip to main content

View reserved capacity

This document explains how to view your requests for reserved capacity and your reserved capacity for AI Hypercomputer. By viewing the availability, properties, and topology of your reserved capacity and requests, you can plan reserved capacity for your workloads.

The scope of this document is limited to workloads that use a capacity option that mentions future reservations. For more information about the capacity options for AI Hypercomputer, seeCapacity overview.

After Google Cloud approves a future reservation request, Compute Engine automatically creates (auto-creates) an empty reservation for your requested resources. You can then view the reservation to plan your workload. Later, at the requested start time, the following occurs:

Limitations

You can view a shared reservation or shared future reservation request only in the project where Google created it.

Before you begin

  1. Reserve capacity: If your project hasn't already, reserve capacity for AI Hypercomputer by using one of the following options:
  2. Select the tab for how you plan to use the samples on this page:

Console

When you use the Google Cloud console to access Google Cloud services and APIs, you don't need to set up authentication.

gcloud

In the Google Cloud console, activate Cloud Shell.
Activate Cloud Shell
At the bottom of the Google Cloud console, aCloud Shell session starts and displays a command-line prompt. Cloud Shell is a shell environment with the Google Cloud CLI already installed and with values already set for your current project. It can take a few seconds for the session to initialize.

REST

To use the REST API samples on this page in a local development environment, you use the credentials you provide to the gcloud CLI.
Install the Google Cloud CLI.
If you're using an external identity provider (IdP), you must first sign in to the gcloud CLI with your federated identity.
For more information, seeAuthenticate for using REST in the Google Cloud authentication documentation.

Required roles

To get the permissions that you need to view reservations, ask your administrator to grant you theCompute Future Reservation User (roles/compute.futureReservationUser) IAM role on the project. For more information about granting roles, see Manage access to projects, folders, and organizations.

This predefined role contains the permissions required to view reservations. To see the exact permissions that are required, expand the Required permissions section:

Required permissions

The following permissions are required to view reservations:

You might also be able to get these permissions with custom roles or other predefined roles.

View your requests for reserved capacity

To view your future reservation requests, use one or more of the following methods:

View a list of your future reservation requests

You can view a list of your future reservation requests to see the reservation period, status, and zone of your requests.

To view a list of your future reservation requests, select one of the following options:

Console

  1. In the Google Cloud console, go to the Reservations page.
    Go to Reservations
  2. Click the Future reservations tab. The table lists each future reservation request, and each table column describes a property.
  3. Optional: To refine your list of requests, in theFilter field, select the properties that you want to filter the requests by.

gcloud

To view a list of your future reservation requests, use thegcloud compute future-reservations list command:

gcloud compute future-reservations list

The output is similar to the following example:

NAME: fr-01 TOTAL_COUNT: 100 START_TIME: 2026-07-20T07:00:00Z END_TIME: 2026-08-05T07:00:00Z PROCUREMENT_STATUS: FULFILLED ZONE: us-west4-b

NAME: fr-02 TOTAL_COUNT: 10 START_TIME: 2026-07-20T07:00:00Z END_TIME: 2026-12-01T00:00:00Z PROCUREMENT_STATUS: PENDING_APPROVAL ZONE: us-west4-b

If you want to refine your list of future reservation requests, then use the same command with the--filter flag.

REST

To view a list of your future reservation requests, make a GET request to one of the following methods:

For example, to view a list of requests across all zones, make a GET request as follows:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/aggregated/futureReservations

Replace PROJECT_ID with the ID of the project where the requests exist.

The output for a list of future reservations requests in a single zone is similar to the following:

{ "id": "projects/example-project/aggregated/futureReservations", "items": [ { "specificSkuProperties": { "instanceProperties": { "machineType": "a3-ultragpu-8g", "guestAccelerators": [ { "acceleratorType": "nvidia-h200-141gb", "acceleratorCount": 8 } ], "localSsds": [ { "diskSizeGb": "375", "interface": "NVME" }, ... ] }, "totalCount": "2" }, "kind": "compute#futureReservation", "id": "7979651787097007552", "creationTimestamp": "2025-11-27T11:14:58.305-08:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/example-draft-request", "selfLinkWithId": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/7979651787097007552", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b", "name": "example-draft-request", "timeWindow": { "startTime": "2026-01-27T19:20:00Z", "endTime": "2026-02-10T19:20:00Z" }, "status": { "procurementStatus": "DRAFTING", "lockTime": "2026-01-27T19:15:00Z" }, "planningStatus": "DRAFT", "specificReservationRequired": true, "reservationName": "example-reservation", "deploymentType": "DENSE", "schedulingType": "INDEPENDENT", "autoCreatedReservationsDeleteTime": "2026-02-10T19:20:00Z" }, ... ], "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/aggregated/futureReservations", "etag": "AnzKY34l-cvvV-JnniESJ0dtQvQ=/hvc4jaHpxFAZmOt1FVtKNgzZu-M=", "kind": "compute#futureReservationsListResponse" }

If you want to refine your list of future reservation requests, then make the same request and, in the request URL, include thefilter query parameter.

View the details of a future reservation request

You can view the details of a future reservation request to review the properties and reservation period of your reserved resources.

To view the details of a future reservation request, select one of the following options:

Console

  1. In the Google Cloud console, go to the Reservations page.
    Go to Reservations
  2. Click the Future reservations tab. The table lists each future reservation request, and each table column describes a property.
  3. To view the details of a request, in the Name column, click the name of the request. A page that gives the details of the future reservation request opens.

gcloud

To view the details of a future reservation request, use the gcloud compute future-reservations describe command:

gcloud compute future-reservations describe FUTURE_RESERVATION_NAME
--zone=ZONE

Replace the following:

The output is similar to the following example:

autoCreatedReservationsDeleteTime: '2026-02-10T19:20:00Z' creationTimestamp: '2025-11-27T11:14:58.305-08:00' deploymentType: DENSE id: '7979651787097007552' kind: compute#futureReservation name: example-draft-request planningStatus: DRAFT reservationName: example-reservation schedulingType: INDEPENDENT selfLink: https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/example-draft-request selfLinkWithId: https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/7979651787097007552 specificReservationRequired: true specificSkuProperties: instanceProperties: guestAccelerators: - acceleratorCount: 8 acceleratorType: nvidia-h200-141gb localSsds: - diskSizeGb: '375' interface: NVME ... machineType: a3-ultragpu-8g totalCount: '2' status: autoCreatedReservations:

REST

To view the details of a future reservation request, make a GETrequest to thefutureReservations.get method:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/futureReservations/FUTURE_RESERVATION_NAME

Replace the following:

The output is similar to the following:

{ "specificSkuProperties": { "instanceProperties": { "machineType": "a3-ultragpu-8g", "guestAccelerators": [ { "acceleratorType": "nvidia-h200-141gb", "acceleratorCount": 8 } ], "localSsds": [ { "diskSizeGb": "375", "interface": "NVME" }, ... ] }, "totalCount": "2" }, "kind": "compute#futureReservation", "id": "7979651787097007552", "creationTimestamp": "2025-11-27T11:14:58.305-08:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/example-draft-request", "selfLinkWithId": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/7979651787097007552", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b", "name": "example-draft-request", "timeWindow": { "startTime": "2026-01-27T19:20:00Z", "endTime": "2026-02-10T19:20:00Z" }, "status": { "procurementStatus": "DRAFTING", "lockTime": "2026-01-27T19:15:00Z" }, "planningStatus": "DRAFT", "specificReservationRequired": true, "reservationName": "example-reservation", "deploymentType": "DENSE", "schedulingType": "INDEPENDENT", "autoCreatedReservationsDeleteTime": "2026-02-10T19:20:00Z" }

View your reserved capacity when you want to do one or more of the following:

To view your reserved capacity, use one or more of the following methods:

View a list of your reservations

You can view a list of your reservations in your project to see all of the reserved capacity in your project and search for a reservation to use to deploy your workload.

To view a list of your reservations, select one of the following options:

Console

  1. In the Google Cloud console, go to the Reservations page.
    Go to Reservations
    On the On-demand reservations tab (default), the table lists each reservation, and each table column describes a property.
  2. Optional: To refine your list of reservations, in theFilter field, select the properties that you want to filter the reservations by.

gcloud

To view a list of your reservations, use thegcloud compute reservations list command:

gcloud compute reservations list

The output is similar to the following:

NAME: r-01 IN_USE_COUNT: 0 COUNT: 5 ZONE: europe-west4-b SHARE_TYPE: LOCAL

NAME: r-02 IN_USE_COUNT: 3 COUNT: 10 ZONE: europe-west4-b SHARE_TYPE: LOCAL

If you want to refine your list of reservations, then use the same command with the--filter flag.

REST

To view a list of your reservations, make a GET request to one of the following methods:

For example, to view a list of your reservations across all zones, make a GET request as follows:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/aggregated/reservations

Replace PROJECT_ID with the ID of the project where the reservations exist.

The output for a list of reservations in a single zone is similar to the following:

{ "id": "projects/example-project/zones/europe-west1-b/futureReservations", "items": [ { "specificSkuProperties": { "instanceProperties": { "machineType": "a3-ultragpu-8g", "guestAccelerators": [ { "acceleratorType": "nvidia-h200-141gb", "acceleratorCount": 8 } ], "localSsds": [ { "diskSizeGb": "375", "interface": "NVME" }, ... ] }, "totalCount": "2" }, "kind": "compute#futureReservation", "id": "7979651787097007552", "creationTimestamp": "2025-11-27T11:14:58.305-08:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/example-draft-request", "selfLinkWithId": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations/7979651787097007552", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b", "name": "example-draft-request", "timeWindow": { "startTime": "2026-01-27T19:20:00Z", "endTime": "2026-02-10T19:20:00Z" }, "status": { "procurementStatus": "DRAFTING", "lockTime": "2026-01-27T19:15:00Z" }, "planningStatus": "DRAFT", "specificReservationRequired": true, "reservationName": "example-reservation", "deploymentType": "DENSE", "schedulingType": "INDEPENDENT", "autoCreatedReservationsDeleteTime": "2026-02-10T19:20:00Z" } ... ], "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/europe-west1-b/futureReservations", "etag": "AnzKY34l-cvvV-JnniESJ0dtQvQ=/hvc4jaHpxFAZmOt1FVtKNgzZu-M=", "kind": "compute#futureReservationsListResponse" }

If you want to refine your list of reservations, then make the same request and, in the request URL, include thefilter query parameter.

View the details of a reservation

You can view the details of a reservations in your project to understand details like the following:

If you want to understand the blocks and sub-blocks of a reservation, seeView the topology of a reservationinstead.

To view the details of a reservation, select one of the following options:

Console

  1. In the Google Cloud console, go to the Reservations page.
    Go to Reservations
  2. In the On-demand reservations table, in the Name column, click the name of the reservation that you want to view the details of. A page that gives the details of the reservation appears.

gcloud

To view the details of a reservation, use the gcloud compute reservations describe command:

gcloud compute reservations describe RESERVATION_NAME
--zone=ZONE

Replace the following:

The output is similar to the following example:

advancedDeploymentControl: reservationOperationalMode: ALL_CAPACITY creationTimestamp: '2025-07-18T13:23:22.191-07:00' deleteAtTime: '2026-06-19T00:00:00Z' deploymentType: DENSE enableEmergentMaintenance: false id: '4298354039694234582' kind: compute#reservation name: example-res1 reservationSharingPolicy: serviceShareType: DISALLOW_ALL resourceStatus: healthInfo: degradedBlockCount: 0 healthStatus: HEALTHY healthyBlockCount: 1 reservationBlockCount: 1 reservationMaintenance: schedulingType: GROUPED schedulingType: GROUPED selfLink: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1 selfLinkWithId: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/4298354039694234582 shareSettings: shareType: LOCAL specificReservation: assuredCount: '18' count: '18' inUseCount: '2' instanceProperties: guestAccelerators: - acceleratorCount: 4 acceleratorType: nvidia-gb200 localSsds: - diskSizeGb: '3000' interface: NVME - diskSizeGb: '3000' interface: NVME - diskSizeGb: '3000' interface: NVME - diskSizeGb: '3000' interface: NVME machineType: a4x-highgpu-4g specificReservationRequired: true status: READY zone: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a

The output includes the following fields for the reservation:

REST

To view the details of a reservation, make a GET request to the reservations.get method:

GET https://compute.googleapis.com/compute/v1/projects/PROJECT_ID/zones/ZONE/reservations/RESERVATION_NAME

Replace the following:

The output is similar to the following:

{ "specificReservation": { "instanceProperties": { "machineType": "a4x-highgpu-4g", "guestAccelerators": [ { "acceleratorType": "nvidia-gb200", "acceleratorCount": 4 } ], "localSsds": [ { "diskSizeGb": "3000", "interface": "NVME" }, { "diskSizeGb": "3000", "interface": "NVME" }, { "diskSizeGb": "3000", "interface": "NVME" }, { "diskSizeGb": "3000", "interface": "NVME" } ] }, "count": "36", "inUseCount": "35", "assuredCount": "33" }, "kind": "compute#reservation", "id": "6823689647457870910", "creationTimestamp": "2025-08-04T13:40:50.496-07:00", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a", "name": "example-res1", "specificReservationRequired": true, "status": "READY", "shareSettings": { "shareType": "SPECIFIC_PROJECTS" }, "resourceStatus": { "reservationMaintenance": { "upcomingGroupMaintenance": { "type": "SCHEDULED", "canReschedule": false, "maintenanceStatus": "ONGOING" }, "maintenanceOngoingCount": 2, "maintenancePendingCount": 34, "schedulingType": "GROUPED", "subblockInfraMaintenanceOngoingCount": 0, "subblockInfraMaintenancePendingCount": 0, "instanceMaintenanceOngoingCount": 3, "instanceMaintenancePendingCount": 32 }, "reservationBlockCount": 1, "healthInfo": { "healthStatus": "DEGRADED", "healthyBlockCount": 0, "degradedBlockCount": 1 } }, "reservationSharingPolicy": { "serviceShareType": "DISALLOW_ALL" }, "deploymentType": "DENSE", "advancedDeploymentControl": { "reservationOperationalMode": "ALL_CAPACITY" }, "enableEmergentMaintenance": false, "schedulingType": "GROUPED", "deleteAtTime": "2025-10-01T00:00:00Z" }

The output includes the following fields for the reservation:

View the topology of a reservation

You can view the detailed topology information of a reservation to help you decide where to create compute instances within the reserved blocks and sub-blocks. For information about the placement of reserved compute instances that are already deployed, seeView topology of a compute instance.

If you want to view other details about a reservation, see view the details of a reservation instead.

View reserved blocks

To list and describe the available blocks in a reservation, use any of the following methods. This task helps you determine the following:

Console

  1. In the Google Cloud console, go to the Reservations page.
    Go to Reservations
  2. In the On-demand reservations table, in the Name column, click the name of the reservation that you want to view the details of. The details page of the reservation opens.
  3. In the Resource topology section, you can view information about your reserved blocks. This information includes the following for each block:
    • Block ID: the name of the block.
    • Count: the total number of compute instances that can be deployed in the block.
    • In use: the number of compute instances that are already deployed in the block.

gcloud

You can view the blocks in a reservation using the following commands:

Replace the following:

The output for each block is similar to the following example:

resource: count: 36 creationTimestamp: '2025-08-04T15:15:07.074-07:00' healthInfo: degradedSubBlockCount: 2 healthStatus: DEGRADED healthySubBlockCount: 0 id: '4360924059555106309' inUseCount: 35 kind: compute#reservationBlock name: example-res1-block-0001 physicalTopology: block: 1acd074d42cd3be9e4486b524db2e9ab cluster: us-central1-cluster-dnkc instances: - instanceId: '5815586279631866288' physicalHostTopology: host: c229b308380a83e0ca345d4a0de05aa7 subBlock: c02af6bdaeccacef571e0adbe79e8c28 projectId: 'PROJECT_NUMBER' ... - instanceId: '8389759878923049076' physicalHostTopology: host: '3ac534f00c20e6e0c87c3aaff2705be6' subBlock: 'c081876ba0aa2857d608eb30a5b2fa40' projectId: 'PROJECT_NUMBER' reservationMaintenance: instanceMaintenanceOngoingCount: 3 instanceMaintenancePendingCount: 32 maintenanceOngoingCount: 2 maintenancePendingCount: 34 schedulingType: GROUPED subblockInfraMaintenanceOngoingCount: 0 subblockInfraMaintenancePendingCount: 0 upcomingGroupMaintenance: canReschedule: false maintenanceReasons: - PLANNED_UPDATE maintenanceStatus: ONGOING type: SCHEDULED windowEndTime: '2025-09-08T17:00:00.000-07:00' windowStartTime: '2025-09-08T13:00:00.000-07:00' reservationSubBlockCount: 2 reservationSubBlockInUseCount: 2 selfLink: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001 selfLinkWithId: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/4360924059555106309 status: READY zone: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a

The output includes the following fields for each block:

REST

You can view the blocks in a reservation using the following methods:

Replace the following:

The output for each block is similar to the following:

{ "resource": { "kind": "compute#reservationBlock", "id": "4360924059555106309", "creationTimestamp": "2025-08-04T15:15:07.074-07:00", "name": "example-res1-block-0001", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001", "selfLinkWithId": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/4360924059555106309", "count": 36, "inUseCount": 35, "reservationMaintenance": { "upcomingGroupMaintenance": { "type": "SCHEDULED", "canReschedule": false, "windowStartTime": "2025-09-08T13:00:00.000-07:00", "windowEndTime": "2025-09-08T17:00:00.000-07:00", "maintenanceStatus": "ONGOING", "maintenanceReasons": [ "PLANNED_UPDATE" ] }, "maintenanceOngoingCount": 2, "maintenancePendingCount": 34, "schedulingType": "GROUPED", "subblockInfraMaintenanceOngoingCount": 0, "subblockInfraMaintenancePendingCount": 0, "instanceMaintenanceOngoingCount": 3, "instanceMaintenancePendingCount": 32 }, "status": "READY", "physicalTopology": { "cluster": "us-central1-cluster-dnkc", "block": "1acd074d42cd3be9e4486b524db2e9ab", "instances": [ { "instanceId": "5815586279631866288", "projectId": "PROJECT_NUMBER", "physicalHostTopology": { "subBlock": "c02af6bdaeccacef571e0adbe79e8c28", "host": "c229b308380a83e0ca345d4a0de05aa7" } }, ... { "instanceId": "8389759878923049076", "projectId": "PROJECT_NUMBER", "physicalHostTopology": { "subBlock": "c081876ba0aa2857d608eb30a5b2fa40", "host": "3ac534f00c20e6e0c87c3aaff2705be6" } } ] }, "reservationSubBlockCount": 2, "reservationSubBlockInUseCount": 2, "healthInfo": { "healthStatus": "DEGRADED", "healthySubBlockCount": 0, "degradedSubBlockCount": 2 } } }

The output includes the following fields for each block:

View reserved sub-blocks

To list and describe the available sub-blocks in a block of an reservation, use the Google Cloud CLI or REST API. This task helps you determine the following:

gcloud

You can view the sub-blocks in a reservation using the following commands:

Replace the following:

The output for each sub-block is similar to the following:

count: 18 creationTimestamp: '2025-07-18T14:50:01.652-07:00' healthInfo: degradedHostCount: 0 degradedInfraCount: 0 healthStatus: HEALTHY healthyHostCount: 18 healthyInfraCount: 1 id: '6848013619223297894' inUseCount: 2 kind: compute#reservationSubBlock name: example-res1-block-0001-subblock-0001 physicalTopology: block: 2b6aa63faa2b60b7ecd3b87ec337f270 cluster: us-central1-cluster-xvhj subBlock: 556a310b49a0b247bc109cc7f997cea2 reservationSubBlockMaintenance: schedulingType: GROUPED selfLink: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001/reservationSubBlocks/example-res1-block-0001-subblock-0001 selfLinkWithId: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001/reservationSubBlocks/6848013619223297894 status: READY zone: https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a

The output includes the following fields for each sub-block:

REST

You can view the sub-blocks in a reservation using the following methods:

Replace the following:

The output for each sub-block is similar to the following:

{ "resource": { "kind": "compute#reservationSubBlock", "id": "5679680646666817028", "creationTimestamp": "2025-08-04T15:15:07.625-07:00", "name": "example-res1-block-0001-subblock-0001", "zone": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a", "selfLink": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001/reservationSubBlocks/example-res1-block-0001-subblock-0001", "selfLinkWithId": "https://www.googleapis.com/compute/v1/projects/example-project/zones/us-central1-a/reservations/example-res1/reservationBlocks/example-res1-block-0001/reservationSubBlocks/5679680646666817028", "count": 18, "inUseCount": 18, "reservationSubBlockMaintenance": { "upcomingGroupMaintenance": { "type": "SCHEDULED", "canReschedule": false, "windowStartTime": "2025-09-08T13:00:00.000-07:00", "windowEndTime": "2025-09-08T17:00:00.000-07:00", "maintenanceStatus": "ONGOING", "maintenanceReasons": [ "PLANNED_UPDATE" ] }, "maintenanceOngoingCount": 2, "maintenancePendingCount": 16, "schedulingType": "GROUPED", "subblockInfraMaintenanceOngoingCount": 0, "subblockInfraMaintenancePendingCount": 0, "instanceMaintenanceOngoingCount": 3, "instanceMaintenancePendingCount": 15 }, "status": "READY", "physicalTopology": { "cluster": "us-central1-cluster-dnkc", "block": "1acd074d42cd3be9e4486b524db2e9ab", "subBlock": "c081876ba0aa2857d608eb30a5b2fa40" }, "healthInfo": { "healthStatus": "DEGRADED", "healthyHostCount": 16, "degradedHostCount": 2, "healthyInfraCount": 1, "degradedInfraCount": 0 } } }

The output includes the following fields for each sub-block:

What's next

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 2026-06-15 UTC.