list method
Lists all Controls by their parent Catalog.
Request parameters:
parent
- Required. The catalog resource name. Format:
projects/{project_number}/locations/{location_id}/catalogs/{catalog_id}
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/catalogs/\[^/\]+$
.
filter
- Optional. A filter to apply on the list results. Supported
features: * List all the products under the parent branch if filter is
unset. * List controls that are used in a single ServingConfig:
'serving_config = "boosted_home_page_cvr"'
pageSize
- Optional. Maximum number of results to return. If
unspecified, defaults to 50. Max allowed value is 1000.
pageToken
- Optional. A page token, received from a previous
ListControls
call. Provide this to retrieve the subsequent page.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudRetailV2ListControlsResponse.
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<GoogleCloudRetailV2ListControlsResponse> list(
core.String parent, {
core.String? filter,
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (filter != null) 'filter': [filter],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v2/' + core.Uri.encodeFull('$parent') + '/controls';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleCloudRetailV2ListControlsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}