Retrieves the list of instances contained within the specified zone.
gce_list_instances(filter = NULL, maxResults = NULL, pageToken = NULL, project = gce_get_global_project(), zone = gce_get_global_zone())
filter
: Sets a filter expression for filtering listed resources, in the form filter=expressionmaxResults
: The maximum number of results per page that should be returnedpageToken
: Specifies a page token to useproject
: Project ID for this requestzone
: The name of the zone for this requestAuthentication scopes used by this function are:
To filter you need a single string in the form field_name eq|ne string
e.g. gce_list_instances("status eq RUNNING")
where eq
is 'equals' and ne
is 'not-equals'.
Useful links