instance_group_managers_errors
Creates, updates, deletes, gets or lists a instance_group_managers_errors
resource.
Overview
Name | instance_group_managers_errors |
Type | Resource |
Id | google.compute.instance_group_managers_errors |
Fields
Name | Datatype | Description |
---|---|---|
error | object | |
instanceActionDetails | object | |
timestamp | string | [Output Only] The time that this error occurred. This value is in RFC3339 text format. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_errors | SELECT | instanceGroupManager, project, zone | Lists all errors thrown by actions on instances for a given managed instance group. The filter and orderBy query parameters are not supported. |
SELECT
examples
Lists all errors thrown by actions on instances for a given managed instance group. The filter and orderBy query parameters are not supported.
SELECT
error,
instanceActionDetails,
timestamp
FROM google.compute.instance_group_managers_errors
WHERE instanceGroupManager = '{{ instanceGroupManager }}'
AND project = '{{ project }}'
AND zone = '{{ zone }}';