list method
Lists managed services.
Returns all public services. For authenticated users, also returns all services the calling user has "servicemanagement.services.get" permission for.
Request parameters:
consumerId
- Include services consumed by the specified consumer. The
Google Service Management implementation accepts the following forms: -
project:
pageSize
- The max number of items to include in the response list. Page
size is 50 if not specified. Maximum value is 500.
pageToken
- Token identifying which result to start with; returned by a
previous list call.
producerProjectId
- Include services produced by the specified project.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a ListServicesResponse.
Completes with a commons.ApiRequestError if the API endpoint returned an error.
If the used http_1.Client
completes with an error when making a REST
call, this method will complete with the same error.
Implementation
async.Future<ListServicesResponse> list({
core.String? consumerId,
core.int? pageSize,
core.String? pageToken,
core.String? producerProjectId,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (consumerId != null) 'consumerId': [consumerId],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if (producerProjectId != null) 'producerProjectId': [producerProjectId],
if ($fields != null) 'fields': [$fields],
};
const url_ = 'v1/services';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return ListServicesResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}