region_instance_groups_instances
Creates, updates, deletes, gets or lists a region_instance_groups_instances
resource.
Overview
Name | region_instance_groups_instances |
Type | Resource |
Id | google.compute.region_instance_groups_instances |
Fields
Name | Datatype | Description |
---|---|---|
instance | string | [Output Only] The URL of the instance. |
namedPorts | array | [Output Only] The named ports that belong to this instance group. |
status | string | [Output Only] The status of the instance. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list_instances | SELECT | instanceGroup, project, region | Lists the instances in the specified instance group and displays information about the named ports. Depending on the specified options, this method can list all instances or only the instances that are running. The orderBy query parameter is not supported. |
SELECT
examples
Lists the instances in the specified instance group and displays information about the named ports. Depending on the specified options, this method can list all instances or only the instances that are running. The orderBy query parameter is not supported.
SELECT
instance,
namedPorts,
status
FROM google.compute.region_instance_groups_instances
WHERE instanceGroup = '{{ instanceGroup }}'
AND project = '{{ project }}'
AND region = '{{ region }}';