instance_group_managers_errors
Creates, updates, deletes, gets or lists an instance_group_managers_errors
resource.
Overview
Name | instance_group_managers_errors |
Type | Resource |
Id | google.compute.instance_group_managers_errors |
Fields
The following fields are returned by SELECT
queries:
- list_errors
Successful response
Name | Datatype | Description |
---|---|---|
items | array | [Output Only] The list of errors of the managed instance group. |
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. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list_errors | select | project , region , instanceGroupManager | filter , maxResults , orderBy , pageToken , returnPartialSuccess | Lists 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.
Name | Datatype | Description |
---|---|---|
instanceGroupManager | string | |
project | string | |
region | string | |
filter | string | |
maxResults | integer (uint32) | |
orderBy | string | |
pageToken | string | |
returnPartialSuccess | boolean |
SELECT
examples
- list_errors
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 }}';