Method: regionCommitments.aggregatedList

Retrieves an aggregated list of commitments by region.

To prevent failure, Google recommends that you set the returnPartialSuccess parameter to true.

HTTP request

GET https://compute.googleapis.com/compute/beta/projects/{project}/aggregated/commitments

The URL uses gRPC Transcoding syntax.

Path parameters

Parameters
project

string

Project ID for this request.

Query parameters

Parameters
maxResults

integer (uint32 format)

The maximum number of results per page that should be returned. If the number of available results is larger than maxResults, Compute Engine returns a nextPageToken that can be used to get the next page of results in subsequent list requests. Acceptable values are 0 to 500, inclusive. (Default: 500)

pageToken

string

Specifies a page token to use. Set pageToken to the nextPageToken returned by a previous list request to get the next page of results.

filter

string

A filter expression that filters resources listed in the response. Most Compute resources support two types of filter expressions: expressions that support regular expressions and expressions that follow API improvement proposal AIP-160. These two types of filter expressions cannot be mixed in one request.

If you want to use AIP-160, your expression must specify the field name, an operator, and the value that you want to use for filtering. The value must be a string, a number, or a boolean. The operator must be either =, !=, >, <, <=, >= or :.

For example, if you are filtering Compute Engine instances, you can exclude instances named example-instance by specifying name != example-instance.

The :* comparison can be used to test whether a key has been defined. For example, to find all objects with owner label use:

labels.owner:*

You can also filter nested fields. For example, you could specify scheduling.automaticRestart = false to include instances only if they are not scheduled for automatic restarts. You can use filtering on nested fields to filter based on resource labels.

To filter on multiple expressions, provide each separate expression within parentheses. For example:

(scheduling.automaticRestart = true)
(cpuPlatform = "Intel Skylake")

By default, each expression is an AND expression. However, you can include AND and OR expressions explicitly. For example:

(cpuPlatform = "Intel Skylake") OR
(cpuPlatform = "Intel Broadwell") AND
(scheduling.automaticRestart = true)

If you want to use a regular expression, use the eq (equal) or ne (not equal) operator against a single un-parenthesized expression with or without quotes or against multiple parenthesized expressions. Examples:

fieldname eq unquoted literal fieldname eq 'single quoted literal' fieldname eq "double quoted literal" (fieldname1 eq literal) (fieldname2 ne "literal")

The literal value is interpreted as a regular expression using Google RE2 library syntax. The literal value must match the entire field.

For example, to filter for instances that do not end with name "instance", you would use name ne .*instance.

You cannot combine constraints on multiple fields using regular expressions.

orderBy

string

Sorts list results by a certain order. By default, results are returned in alphanumerical order based on the resource name.

You can also sort results in descending order based on the creation timestamp using orderBy="creationTimestamp desc". This sorts results based on the creationTimestamp field in reverse chronological order (newest result first). Use this to sort resources like operations so that the newest operation is returned first.

Currently, only sorting by name or creationTimestamp desc is supported.

returnPartialSuccess

boolean

Opt-in for partial success behavior which provides partial results in case of failure. The default value is false.

For example, when partial success behavior is enabled, aggregatedList for a single zone scope either returns all resources in the zone or no resources, with an error code.

includeAllScopes

boolean

Indicates whether every visible scope for each scope type (zone, region, global) should be included in the response. For new resource types added after this field, the flag has no effect as new resource types will always include every visible scope for each scope type in response. For resource types which predate this field, if this flag is omitted or false, only scopes of the scope types where the resource type is expected to be found will be included.

serviceProjectNumber

string (int64 format)

The Shared VPC service project id or service project number for which aggregated list request is invoked for subnetworks list-usable api.

Request body

The request body must be empty.

Response body

If successful, the response body contains data with the following structure:

JSON representation
{
  "kind": string,
  "id": string,
  "items": {
    string: {
      "commitments": [
        {
          "kind": string,
          "id": string,
          "creationTimestamp": string,
          "name": string,
          "description": string,
          "region": string,
          "selfLink": string,
          "status": enum,
          "statusMessage": string,
          "plan": enum,
          "startTimestamp": string,
          "endTimestamp": string,
          "resources": [
            {
              "type": enum,
              "amount": string,
              "acceleratorType": string
            }
          ],
          "type": enum,
          "reservations": [
            {
              "kind": string,
              "id": string,
              "creationTimestamp": string,
              "selfLink": string,
              "zone": string,
              "description": string,
              "name": string,
              "specificReservation": {
                "instanceProperties": {
                  "machineType": string,
                  "guestAccelerators": [
                    {
                      "acceleratorType": string,
                      "acceleratorCount": integer
                    }
                  ],
                  "minCpuPlatform": string,
                  "localSsds": [
                    {
                      "diskSizeGb": string,
                      "interface": enum
                    }
                  ],
                  "maintenanceFreezeDurationHours": integer,
                  "locationHint": string,
                  "maintenanceInterval": enum
                },
                "count": string,
                "inUseCount": string,
                "assuredCount": string,
                "sourceInstanceTemplate": string
              },
              "aggregateReservation": {
                "vmFamily": enum,
                "reservedResources": [
                  {
                    "accelerator": {
                      "acceleratorCount": integer,
                      "acceleratorType": string
                    }
                  }
                ],
                "inUseResources": [
                  {
                    "accelerator": {
                      "acceleratorCount": integer,
                      "acceleratorType": string
                    }
                  }
                ],
                "workloadType": enum
              },
              "commitment": string,
              "specificReservationRequired": boolean,
              "status": enum,
              "shareSettings": {
                "shareType": enum,
                "projects": [
                  string
                ],
                "projectMap": {
                  string: {
                    "projectId": string
                  },
                  ...
                }
              },
              "satisfiesPzs": boolean,
              "resourcePolicies": {
                string: string,
                ...
              },
              "resourceStatus": {
                "specificSkuAllocation": {
                  "sourceInstanceTemplateId": string
                }
              },
              "deleteAtTime": string,
              "deleteAfterDuration": {
                "seconds": string,
                "nanos": integer
              }
            }
          ],
          "category": enum,
          "licenseResource": {
            "license": string,
            "amount": string,
            "coresPerLicense": string
          },
          "autoRenew": boolean,
          "mergeSourceCommitments": [
            string
          ],
          "splitSourceCommitment": string,
          "existingReservations": [
            string
          ]
        }
      ],
      "warning": {
        "code": enum,
        "message": string,
        "data": [
          {
            "key": string,
            "value": string
          }
        ]
      }
    },
    ...
  },
  "nextPageToken": string,
  "selfLink": string,
  "warning": {
    "code": enum,
    "message": string,
    "data": [
      {
        "key": string,
        "value": string
      }
    ]
  },
  "unreachables": [
    string
  ]
}
Fields
kind

string

[Output Only] Type of resource. Always compute#commitmentAggregatedList for aggregated lists of commitments.

id

string

[Output Only] Unique identifier for the resource; defined by the server.

items

map (key: string, value: object)

A list of CommitmentsScopedList resources.

Key: [Output Only] Name of the scope containing this set of commitments.

items.commitments[]

object

[Output Only] A list of commitments contained in this scope.

items.commitments[].kind

string

[Output Only] Type of the resource. Always compute#commitment for commitments.

items.commitments[].id

string (uint64 format)

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

items.commitments[].creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

items.commitments[].name

string

Name of the resource. Provided by the client when the resource is created. The 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.

items.commitments[].description

string

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

items.commitments[].region

string

[Output Only] URL of the region where this commitment may be used.

items.commitments[].selfLink

string

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

items.commitments[].status

enum

[Output Only] Status of the commitment with regards to eventual expiration (each commitment has an end date defined). One of the following values: NOT_YET_ACTIVE, ACTIVE, EXPIRED.

items.commitments[].statusMessage

string

[Output Only] An optional, human-readable explanation of the status.

items.commitments[].plan

enum

The plan for this commitment, which determines duration and discount rate. The currently supported plans are TWELVE_MONTH (1 year), and THIRTY_SIX_MONTH (3 years).

items.commitments[].startTimestamp

string

[Output Only] Commitment start time in RFC3339 text format.

items.commitments[].endTimestamp

string

[Output Only] Commitment end time in RFC3339 text format.

items.commitments[].resources[]

object

A list of commitment amounts for particular resources. Note that VCPU and MEMORY resource commitments must occur together.

items.commitments[].resources[].type

enum

Type of resource for which this commitment applies. Possible values are VCPU, MEMORY, LOCAL_SSD, and ACCELERATOR.

items.commitments[].resources[].amount

string (int64 format)

The amount of the resource purchased (in a type-dependent unit, such as bytes). For vCPUs, this can just be an integer. For memory, this must be provided in MB. Memory must be a multiple of 256 MB, with up to 6.5GB of memory per every vCPU.

items.commitments[].resources[].acceleratorType

string

Name of the accelerator type resource. Applicable only when the type is ACCELERATOR.

items.commitments[].type

enum

The type of commitment, which affects the discount rate and the eligible resources. Type MEMORY_OPTIMIZED specifies a commitment that will only apply to memory optimized machines. Type ACCELERATOR_OPTIMIZED specifies a commitment that will only apply to accelerator optimized machines.

items.commitments[].reservations[]

object

regionCommitments.list of create-on-create reservations for this commitment.

items.commitments[].reservations[].kind

string

[Output Only] Type of the resource. Always compute#reservations for reservations.

items.commitments[].reservations[].id

string (uint64 format)

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

items.commitments[].reservations[].creationTimestamp

string

[Output Only] Creation timestamp in RFC3339 text format.

items.commitments[].reservations[].selfLink

string

[Output Only] Server-defined fully-qualified URL for this resource.

items.commitments[].reservations[].zone

string

Zone in which the reservation resides. A zone must be provided if the reservation is created within a commitment.

items.commitments[].reservations[].description

string

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

items.commitments[].reservations[].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.

items.commitments[].reservations[].specificReservation

object

Reservation for instances with specific machine shapes.

items.commitments[].reservations[].specificReservation.instanceProperties

object

The instance properties for the reservation.

items.commitments[].reservations[].specificReservation.instanceProperties.machineType

string

Specifies type of machine (name only) which has fixed number of vCPUs and fixed amount of memory. This also includes specifying custom machine type following custom-NUMBER_OF_CPUS-AMOUNT_OF_MEMORY pattern.

items.commitments[].reservations[].specificReservation.instanceProperties.guestAccelerators[]

object

Specifies accelerator type and count.

items.commitments[].reservations[].specificReservation.instanceProperties.guestAccelerators[].acceleratorType

string

Full or partial URL of the accelerator type resource to attach to this instance. For example: projects/my-project/zones/us-central1-c/acceleratorTypes/nvidia-tesla-p100 If you are creating an instance template, specify only the accelerator name. See GPUs on Compute Engine for a full list of accelerator types.

items.commitments[].reservations[].specificReservation.instanceProperties.guestAccelerators[].acceleratorCount

integer

The number of the guest accelerator cards exposed to this instance.

items.commitments[].reservations[].specificReservation.instanceProperties.minCpuPlatform

string

Minimum cpu platform the reservation.

items.commitments[].reservations[].specificReservation.instanceProperties.localSsds[]

object

Specifies amount of local ssd to reserve with each instance. The type of disk is local-ssd.

items.commitments[].reservations[].specificReservation.instanceProperties.localSsds[].diskSizeGb

string (int64 format)

Specifies the size of the disk in base-2 GB.

items.commitments[].reservations[].specificReservation.instanceProperties.localSsds[].interface

enum

Specifies the disk interface to use for attaching this disk, which is either SCSI or NVME. The default is SCSI. For performance characteristics of SCSI over NVMe, see Local SSD performance.

items.commitments[].reservations[].specificReservation.instanceProperties.maintenanceFreezeDurationHours

integer

Specifies the number of hours after reservation creation where instances using the reservation won't be scheduled for maintenance.

items.commitments[].reservations[].specificReservation.instanceProperties.locationHint

string

An opaque location hint used to place the allocation close to other resources. This field is for use by internal tools that use the public API.

items.commitments[].reservations[].specificReservation.instanceProperties.maintenanceInterval

enum

Specifies the frequency of planned maintenance events. The accepted values are: PERIODIC.

items.commitments[].reservations[].specificReservation.count

string (int64 format)

Specifies the number of resources that are allocated.

items.commitments[].reservations[].specificReservation.inUseCount

string (int64 format)

[Output Only] Indicates how many instances are in use.

items.commitments[].reservations[].specificReservation.assuredCount

string (int64 format)

[Output Only] Indicates how many instances are actually usable currently.

items.commitments[].reservations[].specificReservation.sourceInstanceTemplate

string

Specifies the instance template to create the reservation. If you use this field, you must exclude the instanceProperties field.

This field is optional, and it can be a full or partial URL. For example, the following are all valid URLs to an instance template:

items.commitments[].reservations[].aggregateReservation

object

Reservation for aggregated resources, providing shape flexibility.

items.commitments[].reservations[].aggregateReservation.vmFamily

enum

The VM family that all instances scheduled against this reservation must belong to.

items.commitments[].reservations[].aggregateReservation.reservedResources[]

object

regionCommitments.list of reserved resources (CPUs, memory, accelerators).

items.commitments[].reservations[].aggregateReservation.reservedResources[].accelerator

object

Properties of accelerator resources in this reservation.

items.commitments[].reservations[].aggregateReservation.reservedResources[].accelerator.acceleratorCount

integer

Number of accelerators of specified type.

items.commitments[].reservations[].aggregateReservation.reservedResources[].accelerator.acceleratorType

string

Full or partial URL to accelerator type. e.g. "projects/{PROJECT}/zones/{ZONE}/acceleratorTypes/ct4l"

items.commitments[].reservations[].aggregateReservation.inUseResources[]

object

[Output only] regionCommitments.list of resources currently in use.

items.commitments[].reservations[].aggregateReservation.inUseResources[].accelerator

object

Properties of accelerator resources in this reservation.

items.commitments[].reservations[].aggregateReservation.inUseResources[].accelerator.acceleratorCount

integer

Number of accelerators of specified type.

items.commitments[].reservations[].aggregateReservation.inUseResources[].accelerator.acceleratorType

string

Full or partial URL to accelerator type. e.g. "projects/{PROJECT}/zones/{ZONE}/acceleratorTypes/ct4l"

items.commitments[].reservations[].aggregateReservation.workloadType

enum

The workload type of the instances that will target this reservation.

items.commitments[].reservations[].commitment

string

[Output Only] Full or partial URL to a parent commitment. This field displays for reservations that are tied to a commitment.

items.commitments[].reservations[].specificReservationRequired

boolean

Indicates whether the reservation can be consumed by VMs with affinity for "any" reservation. If the field is set, then only VMs that target the reservation by name can consume from this reservation.

items.commitments[].reservations[].status

enum

[Output Only] The status of the reservation.

items.commitments[].reservations[].shareSettings

object

Specify share-settings to create a shared reservation. This property is optional. For more information about the syntax and options for this field and its subfields, see the guide for creating a shared reservation.

items.commitments[].reservations[].shareSettings.shareType

enum

Type of sharing for this shared-reservation

items.commitments[].reservations[].shareSettings.projects[]

string

A regionCommitments.list of Project names to specify consumer projects for this shared-reservation. This is only valid when shareType's value is SPECIFIC_PROJECTS.

items.commitments[].reservations[].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.

items.commitments[].reservations[].shareSettings.projectMap[].projectId

string

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

items.commitments[].reservations[].satisfiesPzs

boolean

[Output Only] Reserved for future use.

items.commitments[].reservations[].resourcePolicies

map (key: string, value: string)

Resource policies to be added to this reservation. The key is defined by user, and the value is resource policy url. This is to define placement policy with reservation.

items.commitments[].reservations[].resourceStatus

object

[Output Only] Status information for Reservation resource.

items.commitments[].reservations[].resourceStatus.specificSkuAllocation

object

Allocation Properties of this reservation.

items.commitments[].reservations[].resourceStatus.specificSkuAllocation.sourceInstanceTemplateId

string

ID of the instance template used to populate reservation properties.

items.commitments[].reservations[].deleteAtTime

string

Absolute time in future when the reservation will be auto-deleted by Compute Engine. Timestamp is represented in RFC3339 text format.

items.commitments[].reservations[].deleteAfterDuration

object

Duration time relative to reservation creation when Compute Engine will automatically delete this resource.

items.commitments[].reservations[].deleteAfterDuration.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

items.commitments[].reservations[].deleteAfterDuration.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.

items.commitments[].category

enum

The category of the commitment. Category MACHINE specifies commitments composed of machine resources such as VCPU or MEMORY, listed in resources. Category LICENSE specifies commitments composed of software licenses, listed in licenseResources. Note that only MACHINE commitments should have a Type specified.

items.commitments[].licenseResource

object

The license specification required as part of a license commitment.

items.commitments[].licenseResource.license

string

Any applicable license URI.

items.commitments[].licenseResource.amount

string (int64 format)

The number of licenses purchased.

items.commitments[].licenseResource.coresPerLicense

string

Specifies the core range of the instance for which this license applies.

items.commitments[].autoRenew

boolean

Specifies whether to enable automatic renewal for the commitment. The default value is false if not specified. The field can be updated until the day of the commitment expiration at 12:00am PST. If the field is set to true, the commitment will be automatically renewed for either one or three years according to the terms of the existing commitment.

items.commitments[].mergeSourceCommitments[]

string

regionCommitments.list of source commitments to be merged into a new commitment.

items.commitments[].splitSourceCommitment

string

Source commitment to be split into a new commitment.

items.commitments[].existingReservations[]

string

Specifies the already existing reservations to attach to the Commitment.

This field is optional, and it can be a full or partial URL. For example, the following are valid URLs to an reservation:

items.warning

object

[Output Only] Informational warning which replaces the list of commitments when the list is empty.

items.warning.code

enum

[Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.

items.warning.message

string

[Output Only] A human-readable description of the warning code.

items.warning.data[]

object

[Output Only] Metadata about this warning in key: value format. For example:

"data": [  {  "key": "scope",  "value": "zones/us-east1-d"  }

items.warning.data[].key

string

[Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).

items.warning.data[].value

string

[Output Only] A warning data value corresponding to the key.

nextPageToken

string

[Output Only] This token allows you to get the next page of results for list requests. If the number of results is larger than maxResults, use the nextPageToken as a value for the query parameter pageToken in the next list request. Subsequent list requests will have their own nextPageToken to continue paging through the results.

warning

object

[Output Only] Informational warning message.

warning.code

enum

[Output Only] A warning code, if applicable. For example, Compute Engine returns NO_RESULTS_ON_PAGE if there are no results in the response.

warning.message

string

[Output Only] A human-readable description of the warning code.

warning.data[]

object

[Output Only] Metadata about this warning in key: value format. For example:

"data": [  {  "key": "scope",  "value": "zones/us-east1-d"  }

warning.data[].key

string

[Output Only] A key that provides more detail on the warning being returned. For example, for warnings where there are no results in a list request for a particular zone, this key might be scope and the key value might be the zone name. Other examples might be a key indicating a deprecated resource and a suggested replacement, or a warning about invalid network settings (for example, if an instance attempts to perform IP forwarding but is not enabled for IP forwarding).

warning.data[].value

string

[Output Only] A warning data value corresponding to the key.

unreachables[]

string

[Output Only] Unreachable resources.

Authorization scopes

Requires one of the following OAuth scopes:

  • https://www.googleapis.com/auth/compute.readonly
  • https://www.googleapis.com/auth/compute
  • https://www.googleapis.com/auth/cloud-platform

For more information, see the Authentication Overview.

IAM Permissions

In addition to any permissions specified on the fields above, authorization requires one or more of the following IAM permissions:

  • compute.commitments.list

To find predefined roles that contain those permissions, see Compute Engine IAM Roles.