Skip to main content

region_instance_group_managers_managed_instances

Creates, updates, deletes, gets or lists a region_instance_group_managers_managed_instances resource.

Overview

Nameregion_instance_group_managers_managed_instances
TypeResource
Idgoogle.compute.region_instance_group_managers_managed_instances

Fields

NameDatatypeDescription
managedInstancesarrayA list of managed instances.
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

NameAccessible byRequired ParamsDescription
list_managed_instancesSELECTinstanceGroupManager, project, regionLists 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 }}';