region_instance_group_managers_managed_instances
Creates, updates, deletes, gets or lists a region_instance_group_managers_managed_instances
resource.
Overview
Name | region_instance_group_managers_managed_instances |
Type | Resource |
Id | google.compute.region_instance_group_managers_managed_instances |
Fields
Name | Datatype | Description |
---|---|---|
managedInstances | array | A list of managed instances. |
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
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_managed_instances | SELECT | instanceGroupManager, project, region | Lists the instances in the managed instance group and instances that are scheduled to be created. The list includes any current actions that the group has scheduled for its instances. The orderBy query parameter is not supported. The pageToken query parameter is supported only if the group's listManagedInstancesResults field is set to PAGINATED . |
SELECT
examples
Lists the instances in the managed instance group and instances that are scheduled to be created. The list includes any current actions that the group has scheduled for its instances. The orderBy query parameter is not supported. The pageToken
query parameter is supported only if the group's listManagedInstancesResults
field is set to PAGINATED
.
SELECT
managedInstances,
nextPageToken
FROM google.compute.region_instance_group_managers_managed_instances
WHERE instanceGroupManager = '{{ instanceGroupManager }}'
AND project = '{{ project }}'
AND region = '{{ region }}';