google-apis-dialogflow_v2beta1 0.39.0 → 0.40.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: cae28bab8d1ac8980957f10b90d04d4b3addcdf9ccec49f6eba0f1f6736681f4
|
4
|
+
data.tar.gz: feeb01a8b653db970b21c847559414f226fb1e058911dd1366ac3a1cde829325
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c36f039cb69df35addb02398e01d7d6e9aaa8666e3414f1b758d858baddd303d554093ef492bed93d0fd9117ddad73240bfb7ed359908a6292d2cc5bbc16ae0c
|
7
|
+
data.tar.gz: 5f4a9846a2f8c7f1776e1cf517efd531cb5628b2618139ae73c344061fd7c29945a2b02e6cb6cdb566b82127a54c7283927e342f728f2d899274b8aebb29f8b8
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v2beta1
|
2
2
|
|
3
|
+
### v0.40.0 (2022-07-22)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20220714
|
6
|
+
* Regenerated using generator version 0.9.0
|
7
|
+
|
3
8
|
### v0.39.0 (2022-07-02)
|
4
9
|
|
5
10
|
* Regenerated using generator version 0.8.0
|
@@ -9450,7 +9450,7 @@ module Google
|
|
9450
9450
|
|
9451
9451
|
# Required. The natural language speech audio to be processed. A single request
|
9452
9452
|
# can contain up to 1 minute of speech audio data. The transcribed text cannot
|
9453
|
-
# contain more than 256 bytes.
|
9453
|
+
# contain more than 256 bytes for virtual agent interactions.
|
9454
9454
|
# Corresponds to the JSON property `audio`
|
9455
9455
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
9456
9456
|
# @return [String]
|
@@ -15978,7 +15978,7 @@ module Google
|
|
15978
15978
|
attr_accessor :language_code
|
15979
15979
|
|
15980
15980
|
# Required. The UTF-8 encoded natural language text to be processed. Text length
|
15981
|
-
# must not exceed 256 characters.
|
15981
|
+
# must not exceed 256 characters for virtual agent interactions.
|
15982
15982
|
# Corresponds to the JSON property `text`
|
15983
15983
|
# @return [String]
|
15984
15984
|
attr_accessor :text
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV2beta1
|
18
18
|
# Version of the google-apis-dialogflow_v2beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.40.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
|
@@ -3122,6 +3122,9 @@ module Google
|
|
3122
3122
|
# @param [String] parent
|
3123
3123
|
# Required. The project to list all answer records for in reverse chronological
|
3124
3124
|
# order. Format: `projects//locations/`.
|
3125
|
+
# @param [String] filter
|
3126
|
+
# Optional. Filters to restrict results to specific answer records. For more
|
3127
|
+
# information about filtering, see [API Filtering](https://aip.dev/160).
|
3125
3128
|
# @param [Fixnum] page_size
|
3126
3129
|
# Optional. The maximum number of records to return in a single page. The server
|
3127
3130
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
@@ -3146,11 +3149,12 @@ module Google
|
|
3146
3149
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
3147
3150
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
3148
3151
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
3149
|
-
def list_project_answer_records(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3152
|
+
def list_project_answer_records(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
3150
3153
|
command = make_simple_command(:get, 'v2beta1/{+parent}/answerRecords', options)
|
3151
3154
|
command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListAnswerRecordsResponse::Representation
|
3152
3155
|
command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListAnswerRecordsResponse
|
3153
3156
|
command.params['parent'] = parent unless parent.nil?
|
3157
|
+
command.query['filter'] = filter unless filter.nil?
|
3154
3158
|
command.query['pageSize'] = page_size unless page_size.nil?
|
3155
3159
|
command.query['pageToken'] = page_token unless page_token.nil?
|
3156
3160
|
command.query['fields'] = fields unless fields.nil?
|
@@ -7265,6 +7269,9 @@ module Google
|
|
7265
7269
|
# @param [String] parent
|
7266
7270
|
# Required. The project to list all answer records for in reverse chronological
|
7267
7271
|
# order. Format: `projects//locations/`.
|
7272
|
+
# @param [String] filter
|
7273
|
+
# Optional. Filters to restrict results to specific answer records. For more
|
7274
|
+
# information about filtering, see [API Filtering](https://aip.dev/160).
|
7268
7275
|
# @param [Fixnum] page_size
|
7269
7276
|
# Optional. The maximum number of records to return in a single page. The server
|
7270
7277
|
# may return fewer records than this. If unspecified, we use 10. The maximum is
|
@@ -7289,11 +7296,12 @@ module Google
|
|
7289
7296
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
7290
7297
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
7291
7298
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
7292
|
-
def list_project_location_answer_records(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7299
|
+
def list_project_location_answer_records(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
7293
7300
|
command = make_simple_command(:get, 'v2beta1/{+parent}/answerRecords', options)
|
7294
7301
|
command.response_representation = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListAnswerRecordsResponse::Representation
|
7295
7302
|
command.response_class = Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1ListAnswerRecordsResponse
|
7296
7303
|
command.params['parent'] = parent unless parent.nil?
|
7304
|
+
command.query['filter'] = filter unless filter.nil?
|
7297
7305
|
command.query['pageSize'] = page_size unless page_size.nil?
|
7298
7306
|
command.query['pageToken'] = page_token unless page_token.nil?
|
7299
7307
|
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_v2beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.40.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_v2beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.40.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v2beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|