google-apis-dialogflow_v2beta1 0.60.0 → 0.61.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: 663e672ba10abd7a014b49d57e29ff19134ac55b3764a54582e4f1f7686b38e8
4
- data.tar.gz: c0f6041205c314c745beb73604f28ed6c0378dcbc471c45966065d589fdbe1ae
3
+ metadata.gz: c9e1194c31deef12e7ef0e9ce062f00e6db63696d45d28f015af3a17bea25001
4
+ data.tar.gz: 628beb1d5fd42c0a1bd71a896dd37dd1b0ffef4a7dd8850fcea34aff929b1a38
5
5
  SHA512:
6
- metadata.gz: 13ddb698c16299915da34e47573e640052fcd5672aa8219c49a3712c17d42636af54762bceea92ffb077edc39e711be810a51e0bda5ca20f02233512f519deda
7
- data.tar.gz: 3312809f886507805557eb5dc67189dbef99d5ea2ea843251e39daebd7719dee6d3479533e16ff2da0afdcac7539e7df83b6a33e88b8cda39289d27cb59cca7f
6
+ metadata.gz: 206aead4fece69d21520c477f57aadf43293505bb1d4bb828dcd9519e27f08034459a9f84189d1a78f30a4b705946393610474bea5b20898b1c0e947c8c6ccaf
7
+ data.tar.gz: e5cea922b41c6ce6bf99cd4424a1d3e5ee6fc7eb3643e54eeb9665681b30f7157a135e766797ef11b54c9823132e2e451169850081ae6ba52e783af31c2090b9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.61.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230621
6
+
3
7
  ### v0.60.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230614
@@ -9812,6 +9812,13 @@ module Google
9812
9812
  # @return [String]
9813
9813
  attr_accessor :agent
9814
9814
 
9815
+ # Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
9816
+ # session remains active and its data is stored for 30 minutes after the last
9817
+ # request is sent for the session. This value should be no longer than 1 day.
9818
+ # Corresponds to the JSON property `sessionTtl`
9819
+ # @return [String]
9820
+ attr_accessor :session_ttl
9821
+
9815
9822
  def initialize(**args)
9816
9823
  update!(**args)
9817
9824
  end
@@ -9819,6 +9826,7 @@ module Google
9819
9826
  # Update properties of this object
9820
9827
  def update!(**args)
9821
9828
  @agent = args[:agent] if args.key?(:agent)
9829
+ @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
9822
9830
  end
9823
9831
  end
9824
9832
 
@@ -16227,6 +16235,11 @@ module Google
16227
16235
  class GoogleCloudDialogflowV2beta1SuggestConversationSummaryRequest
16228
16236
  include Google::Apis::Core::Hashable
16229
16237
 
16238
+ # Represents the parameters of human assist query.
16239
+ # Corresponds to the JSON property `assistQueryParams`
16240
+ # @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters]
16241
+ attr_accessor :assist_query_params
16242
+
16230
16243
  # Max number of messages prior to and including [latest_message] to use as
16231
16244
  # context when compiling the suggestion. By default 500 and at most 1000.
16232
16245
  # Corresponds to the JSON property `contextSize`
@@ -16246,6 +16259,7 @@ module Google
16246
16259
 
16247
16260
  # Update properties of this object
16248
16261
  def update!(**args)
16262
+ @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
16249
16263
  @context_size = args[:context_size] if args.key?(:context_size)
16250
16264
  @latest_message = args[:latest_message] if args.key?(:latest_message)
16251
16265
  end
@@ -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.60.0"
19
+ GEM_VERSION = "0.61.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 = "20230614"
25
+ REVISION = "20230621"
26
26
  end
27
27
  end
28
28
  end
@@ -5536,6 +5536,7 @@ module Google
5536
5536
  # @private
5537
5537
  class Representation < Google::Apis::Core::JsonRepresentation
5538
5538
  property :agent, as: 'agent'
5539
+ property :session_ttl, as: 'sessionTtl'
5539
5540
  end
5540
5541
  end
5541
5542
 
@@ -7299,6 +7300,8 @@ module Google
7299
7300
  class GoogleCloudDialogflowV2beta1SuggestConversationSummaryRequest
7300
7301
  # @private
7301
7302
  class Representation < Google::Apis::Core::JsonRepresentation
7303
+ property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1AssistQueryParameters::Representation
7304
+
7302
7305
  property :context_size, as: 'contextSize'
7303
7306
  property :latest_message, as: 'latestMessage'
7304
7307
  end
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.60.0
4
+ version: 0.61.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-18 00:00:00.000000000 Z
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_v2beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.60.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.61.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: []