google-apis-dialogflow_v3 0.60.0 → 0.62.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: c93cad3926361f984c6340792cf2c345b4eb69f982dfbeaf40962f28fe57e7ed
|
4
|
+
data.tar.gz: 0d852413d3376721deffacafd97e314bb49e3f498d5af0a3656e5ed336a0787e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cfefc92a5b49c10d54f4f59ad8a5b92bb8a79673935fe19f0e76dbfcad4e4280e6989940022c26d252c26767550d0de682e73875ee7dc6b46e964129e003d7f5
|
7
|
+
data.tar.gz: '083d1e9d591e5be63772a74473f2846d90824237fa8777b7cbab0c77c93c2b136183d41e3eb32d1cba909674d5e1c42e2cde6d5fcd3790cb24e79b7188c9094d'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.62.0 (2023-06-25)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230621
|
6
|
+
|
7
|
+
### v0.61.0 (2023-06-18)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20230614
|
10
|
+
|
3
11
|
### v0.60.0 (2023-06-11)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20230605
|
@@ -1717,6 +1717,12 @@ module Google
|
|
1717
1717
|
# @return [String]
|
1718
1718
|
attr_accessor :environment
|
1719
1719
|
|
1720
|
+
# Optional. Whether to include BigQuery Export setting.
|
1721
|
+
# Corresponds to the JSON property `includeBigqueryExportSettings`
|
1722
|
+
# @return [Boolean]
|
1723
|
+
attr_accessor :include_bigquery_export_settings
|
1724
|
+
alias_method :include_bigquery_export_settings?, :include_bigquery_export_settings
|
1725
|
+
|
1720
1726
|
def initialize(**args)
|
1721
1727
|
update!(**args)
|
1722
1728
|
end
|
@@ -1726,6 +1732,7 @@ module Google
|
|
1726
1732
|
@agent_uri = args[:agent_uri] if args.key?(:agent_uri)
|
1727
1733
|
@data_format = args[:data_format] if args.key?(:data_format)
|
1728
1734
|
@environment = args[:environment] if args.key?(:environment)
|
1735
|
+
@include_bigquery_export_settings = args[:include_bigquery_export_settings] if args.key?(:include_bigquery_export_settings)
|
1729
1736
|
end
|
1730
1737
|
end
|
1731
1738
|
|
@@ -4058,6 +4065,13 @@ module Google
|
|
4058
4065
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType>]
|
4059
4066
|
attr_accessor :session_entity_types
|
4060
4067
|
|
4068
|
+
# Optional. Sets Dialogflow session life time. By default, a Dialogflow session
|
4069
|
+
# remains active and its data is stored for 30 minutes after the last request is
|
4070
|
+
# sent for the session. This value should be no longer than 1 day.
|
4071
|
+
# Corresponds to the JSON property `sessionTtl`
|
4072
|
+
# @return [String]
|
4073
|
+
attr_accessor :session_ttl
|
4074
|
+
|
4061
4075
|
# The time zone of this conversational query from the [time zone database](https:
|
4062
4076
|
# //www.iana.org/time-zones), e.g., America/New_York, Europe/Paris. If not
|
4063
4077
|
# provided, the time zone specified in the agent is used.
|
@@ -4092,6 +4106,7 @@ module Google
|
|
4092
4106
|
@parameters = args[:parameters] if args.key?(:parameters)
|
4093
4107
|
@payload = args[:payload] if args.key?(:payload)
|
4094
4108
|
@session_entity_types = args[:session_entity_types] if args.key?(:session_entity_types)
|
4109
|
+
@session_ttl = args[:session_ttl] if args.key?(:session_ttl)
|
4095
4110
|
@time_zone = args[:time_zone] if args.key?(:time_zone)
|
4096
4111
|
@webhook_headers = args[:webhook_headers] if args.key?(:webhook_headers)
|
4097
4112
|
end
|
@@ -15907,6 +15922,11 @@ module Google
|
|
15907
15922
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
15908
15923
|
attr_accessor :suggest_dialogflow_assists_response
|
15909
15924
|
|
15925
|
+
# The response message for Participants.SuggestDialogflowAssists.
|
15926
|
+
# Corresponds to the JSON property `suggestEntityExtractionResponse`
|
15927
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse]
|
15928
|
+
attr_accessor :suggest_entity_extraction_response
|
15929
|
+
|
15910
15930
|
# The request message for Participants.SuggestFaqAnswers.
|
15911
15931
|
# Corresponds to the JSON property `suggestFaqAnswersResponse`
|
15912
15932
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse]
|
@@ -15926,6 +15946,7 @@ module Google
|
|
15926
15946
|
@error = args[:error] if args.key?(:error)
|
15927
15947
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
15928
15948
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
15949
|
+
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
15929
15950
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
15930
15951
|
@suggest_smart_replies_response = args[:suggest_smart_replies_response] if args.key?(:suggest_smart_replies_response)
|
15931
15952
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3
|
18
18
|
# Version of the google-apis-dialogflow_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.62.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230621"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -3145,6 +3145,7 @@ module Google
|
|
3145
3145
|
property :agent_uri, as: 'agentUri'
|
3146
3146
|
property :data_format, as: 'dataFormat'
|
3147
3147
|
property :environment, as: 'environment'
|
3148
|
+
property :include_bigquery_export_settings, as: 'includeBigqueryExportSettings'
|
3148
3149
|
end
|
3149
3150
|
end
|
3150
3151
|
|
@@ -3780,6 +3781,7 @@ module Google
|
|
3780
3781
|
hash :payload, as: 'payload'
|
3781
3782
|
collection :session_entity_types, as: 'sessionEntityTypes', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SessionEntityType::Representation
|
3782
3783
|
|
3784
|
+
property :session_ttl, as: 'sessionTtl'
|
3783
3785
|
property :time_zone, as: 'timeZone'
|
3784
3786
|
hash :webhook_headers, as: 'webhookHeaders'
|
3785
3787
|
end
|
@@ -6998,6 +7000,8 @@ module Google
|
|
6998
7000
|
|
6999
7001
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7000
7002
|
|
7003
|
+
property :suggest_entity_extraction_response, as: 'suggestEntityExtractionResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
7004
|
+
|
7001
7005
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestFaqAnswersResponse::Representation
|
7002
7006
|
|
7003
7007
|
property :suggest_smart_replies_response, as: 'suggestSmartRepliesResponse', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1SuggestSmartRepliesResponse::Representation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.62.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: 2023-06-
|
11
|
+
date: 2023-06-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_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.62.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|