get method
Gets the catalog of supported test environments.
May return any of the following canonical error codes: - INVALID_ARGUMENT
- if the request is malformed - NOT_FOUND - if the environment type does not exist - INTERNAL - if an internal error occurred
Request parameters:
environmentType
- Required. The type of environment that should be
listed.
Possible string values are:
- "ENVIRONMENT_TYPE_UNSPECIFIED" : Do not use. For proto versioning only.
- "ANDROID" : A device running a version of the Android OS.
- "IOS" : A device running a version of iOS.
- "NETWORK_CONFIGURATION" : A network configuration to use when running a test.
- "PROVIDED_SOFTWARE" : The software environment provided by TestExecutionService.
- "DEVICE_IP_BLOCKS" : The IP blocks used by devices in the test environment.
projectId
- For authorization, the cloud project requesting the
TestEnvironmentCatalog.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a TestEnvironmentCatalog.
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<TestEnvironmentCatalog> get(
core.String environmentType, {
core.String? projectId,
core.String? $fields,
}) async {
final _queryParams = <core.String, core.List<core.String>>{
if (projectId != null) 'projectId': [projectId],
if ($fields != null) 'fields': [$fields],
};
final _url = 'v1/testEnvironmentCatalog/' +
commons.escapeVariable('$environmentType');
final _response = await _requester.request(
_url,
'GET',
queryParams: _queryParams,
);
return TestEnvironmentCatalog.fromJson(
_response as core.Map<core.String, core.dynamic>);
}