listRuntimes method

Future<ListRuntimesResponse> listRuntimes(
  1. String appsId, {
  2. String? environment,
  3. String? $fields,
})

Lists all the available runtimes for the application.

Request parameters:

appsId - Part of parent. Required. Name of the parent Application resource. Example: apps/myapp.

environment - Optional. The environment of the Application. Possible string values are:

  • "ENVIRONMENT_UNSPECIFIED" : Default value.
  • "STANDARD" : App Engine Standard.
  • "FLEXIBLE" : App Engine Flexible

$fields - Selector specifying which fields to include in a partial response.

Completes with a ListRuntimesResponse.

Completes with a commons.ApiRequestError if the API endpoint returned an error.

If the used http.Client completes with an error when making a REST call, this method will complete with the same error.

Implementation

async.Future<ListRuntimesResponse> listRuntimes(
  core.String appsId, {
  core.String? environment,
  core.String? $fields,
}) async {
  final queryParams_ = <core.String, core.List<core.String>>{
    if (environment != null) 'environment': [environment],
    if ($fields != null) 'fields': [$fields],
  };

  final url_ =
      'v1/apps/' + commons.escapeVariable('$appsId') + ':listRuntimes';

  final response_ = await _requester.request(
    url_,
    'GET',
    queryParams: queryParams_,
  );
  return ListRuntimesResponse.fromJson(
      response_ as core.Map<core.String, core.dynamic>);
}