google-apis-dialogflow_v2 0.42.0 → 0.43.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 68f4f10deea0e3732fc87f080d2b47bf8381f4eeaf944db756a0c60b9d5c2a12
|
4
|
+
data.tar.gz: 86067c254ea82b3246c006eaeee79c8622550256586260cc4427737965989d73
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d254a58b87a253cb936da0629141fa0957f78a215a5f9d09fb1444e44708b53ed5120978d14d994b6b70fa24987ccd34f566b96865f1a42c6e6ac8a46380537
|
7
|
+
data.tar.gz: e2a10b386d12bf4242cbff58868fc33f071eca941c7376e31acc791a6ebd5e45685ea20366ccf6d7335157ee399a7e149e05ef494357d017729ed953444e46d1
|
data/CHANGELOG.md
CHANGED
@@ -12491,7 +12491,7 @@ module Google
|
|
12491
12491
|
attr_accessor :language_code
|
12492
12492
|
|
12493
12493
|
# Required. The UTF-8 encoded natural language text to be processed. Text length
|
12494
|
-
# must not exceed 256 characters.
|
12494
|
+
# must not exceed 256 characters for virtual agent interactions.
|
12495
12495
|
# Corresponds to the JSON property `text`
|
12496
12496
|
# @return [String]
|
12497
12497
|
attr_accessor :text
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2
|
18
18
|
# Version of the google-apis-dialogflow_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.43.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.9.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220714"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3001,6 +3001,10 @@ module Google
|
|
3001
3001
|
# @param [String] parent
|
3002
3002
|
# Required. The project to list all answer records for in reverse chronological
|
3003
3003
|
# order. Format: `projects//locations/`.
|
3004
|
+
# @param [String] filter
|
3005
|
+
# Optional. Filters to restrict results to specific answer records. Marked
|
3006
|
+
# deprecated as it hasn't been, and isn't currently, supported. For more
|
3007
|
+
# information about filtering, see [API Filtering](https://aip.dev/160).
|
3004
3008
|
# @param [Fixnum] page_size
|
3005
3009
|
# Optional. The maximum number of records to return in a single page. The server
|
3006
3010
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
@@ -3025,11 +3029,12 @@ module Google
|
|
3025
3029
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3026
3030
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3027
3031
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3028
|
-
def list_project_answer_records(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3032
|
+
def list_project_answer_records(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3029
3033
|
command = make_simple_command(:get, 'v2/{+parent}/answerRecords', options)
|
3030
3034
|
command.response_representation = Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListAnswerRecordsResponse::Representation
|
3031
3035
|
command.response_class = Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListAnswerRecordsResponse
|
3032
3036
|
command.params['parent'] = parent unless parent.nil?
|
3037
|
+
command.query['filter'] = filter unless filter.nil?
|
3033
3038
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3034
3039
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3035
3040
|
command.query['fields'] = fields unless fields.nil?
|
@@ -7332,6 +7337,10 @@ module Google
|
|
7332
7337
|
# @param [String] parent
|
7333
7338
|
# Required. The project to list all answer records for in reverse chronological
|
7334
7339
|
# order. Format: `projects//locations/`.
|
7340
|
+
# @param [String] filter
|
7341
|
+
# Optional. Filters to restrict results to specific answer records. Marked
|
7342
|
+
# deprecated as it hasn't been, and isn't currently, supported. For more
|
7343
|
+
# information about filtering, see [API Filtering](https://aip.dev/160).
|
7335
7344
|
# @param [Fixnum] page_size
|
7336
7345
|
# Optional. The maximum number of records to return in a single page. The server
|
7337
7346
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
@@ -7356,11 +7365,12 @@ module Google
|
|
7356
7365
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7357
7366
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7358
7367
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7359
|
-
def list_project_location_answer_records(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7368
|
+
def list_project_location_answer_records(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7360
7369
|
command = make_simple_command(:get, 'v2/{+parent}/answerRecords', options)
|
7361
7370
|
command.response_representation = Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListAnswerRecordsResponse::Representation
|
7362
7371
|
command.response_class = Google::Apis::DialogflowV2::GoogleCloudDialogflowV2ListAnswerRecordsResponse
|
7363
7372
|
command.params['parent'] = parent unless parent.nil?
|
7373
|
+
command.query['filter'] = filter unless filter.nil?
|
7364
7374
|
command.query['pageSize'] = page_size unless page_size.nil?
|
7365
7375
|
command.query['pageToken'] = page_token unless page_token.nil?
|
7366
7376
|
command.query['fields'] = fields unless fields.nil?
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.43.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-07-
|
11
|
+
date: 2022-07-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.43.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|