Skip to main content

instance_group_managers_errors

Creates, updates, deletes, gets or lists an instance_group_managers_errors resource.

Overview

Nameinstance_group_managers_errors
TypeResource
Idgoogle.compute.instance_group_managers_errors

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
itemsarray[Output Only] The list of errors of the managed instance group.
nextPageTokenstring[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.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_errorsselectproject, region, instanceGroupManagerfilter, maxResults, orderBy, pageToken, returnPartialSuccessLists all errors thrown by actions on instances for a given regional managed instance group. The filter and orderBy query parameters are not supported.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
instanceGroupManagerstring
projectstring
regionstring
filterstring
maxResultsinteger (uint32)
orderBystring
pageTokenstring
returnPartialSuccessboolean

SELECT examples

Lists all errors thrown by actions on instances for a given regional managed instance group. The filter and orderBy query parameters are not supported.

SELECT
items,
nextPageToken
FROM google.compute.instance_group_managers_errors
WHERE project = '{{ project }}' -- required
AND region = '{{ region }}' -- required
AND instanceGroupManager = '{{ instanceGroupManager }}' -- required
AND filter = '{{ filter }}'
AND maxResults = '{{ maxResults }}'
AND orderBy = '{{ orderBy }}'
AND pageToken = '{{ pageToken }}'
AND returnPartialSuccess = '{{ returnPartialSuccess }}';