list method
Lists debug sessions that are currently active in the given API Proxy revision.
Request parameters:
parent
- Required. The name of the API Proxy revision deployment for
which to list debug sessions. Must be of the form:
organizations/{organization}/environments/{environment}/apis/{api}/revisions/{revision}
.
Value must have pattern
^organizations/\[^/\]+/environments/\[^/\]+/apis/\[^/\]+/revisions/\[^/\]+$
.
pageSize
- Maximum number of debug sessions to return. The page size
defaults to 25.
pageToken
- Page token, returned from a previous ListDebugSessions call,
that you can use to retrieve the next page.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudApigeeV1ListDebugSessionsResponse.
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<GoogleCloudApigeeV1ListDebugSessionsResponse> list(
core.String parent, {
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v1/' + core.Uri.encodeFull('$parent') + '/debugsessions';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleCloudApigeeV1ListDebugSessionsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}