list method
Returns the list of all intents in the specified agent.
Request parameters:
parent
- Required. The agent to list all intents for. Format:
projects//locations//agents/
.
Value must have pattern
^projects/\[^/\]+/locations/\[^/\]+/agents/\[^/\]+$
.
intentView
- The resource view to apply to the returned intent.
Possible string values are:
- "INTENT_VIEW_UNSPECIFIED" : Not specified. Treated as INTENT_VIEW_FULL.
- "INTENT_VIEW_PARTIAL" : Training phrases field is not populated in the response.
- "INTENT_VIEW_FULL" : All fields are populated.
languageCode
- The language to list intents for. The following fields
are language dependent: * Intent.training_phrases.parts.text
If not
specified, the agent's default language is used.
Many languages
are supported. Note: languages must be enabled in the agent before they
can be used.
pageSize
- The maximum number of items to return in a single page. By
default 100 and at most 1000.
pageToken
- The next_page_token value returned from a previous list
request.
$fields
- Selector specifying which fields to include in a partial
response.
Completes with a GoogleCloudDialogflowCxV3ListIntentsResponse.
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<GoogleCloudDialogflowCxV3ListIntentsResponse> list(
core.String parent, {
core.String? intentView,
core.String? languageCode,
core.int? pageSize,
core.String? pageToken,
core.String? $fields,
}) async {
final queryParams_ = <core.String, core.List<core.String>>{
if (intentView != null) 'intentView': [intentView],
if (languageCode != null) 'languageCode': [languageCode],
if (pageSize != null) 'pageSize': ['${pageSize}'],
if (pageToken != null) 'pageToken': [pageToken],
if ($fields != null) 'fields': [$fields],
};
final url_ = 'v3/' + core.Uri.encodeFull('$parent') + '/intents';
final response_ = await _requester.request(
url_,
'GET',
queryParams: queryParams_,
);
return GoogleCloudDialogflowCxV3ListIntentsResponse.fromJson(
response_ as core.Map<core.String, core.dynamic>);
}