google-apis-dialogflow_v2 0.62.0 → 0.63.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: 1cfd3f8c331bd3e653b6165ca2bf96a6c0dfb84ea373a00951c3c8127c1b035d
4
- data.tar.gz: a021f619340ef2d0fcc09087fe8ac2d099028c55e880a38cd527c08db195e00b
3
+ metadata.gz: c7f5c565dabf2c6f2dbbba303820f8430c58fb96384e4f411faad974e364fcb4
4
+ data.tar.gz: c933c2e5d19d3874ae154eafddda2cffd2725abcb07050f01f308aff7b26987b
5
5
  SHA512:
6
- metadata.gz: 43670249bcbfe5a388f285268a5f9989f276d224d2173488e957b4fb1985a0fdc169ff8e633735ac97d2d5371250056a916ecb514f09b89659a73a0e88931e54
7
- data.tar.gz: e9ecf9e31233501c8b144bea637ceb3711685c71bc972025e06521bff8749df87f17369da1b32e99765650828f206eec67669821c7ebc962621fd314f3267506
6
+ metadata.gz: b3d028bc22c69e93bbe187b68df7c18ce6ca8ff5cae2160bdde54b685ee552dd80aeaad2eb7194d3530a78c36aa7196ae3cd102f538f3ca334e1bb82af90e2c5
7
+ data.tar.gz: 79d0f3a31897b62feee7be8e85827e43fab69ea553eb9d08ed89c8f87be2a582343dbfc7205f024a93e200cc4aa605fe342d9aba316cef2223e8517f1ec02c63
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v2
2
2
 
3
+ ### v0.63.0 (2023-06-25)
4
+
5
+ * Regenerated from discovery document revision 20230621
6
+
3
7
  ### v0.62.0 (2023-06-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20230614
@@ -6773,6 +6773,13 @@ module Google
6773
6773
  # @return [String]
6774
6774
  attr_accessor :agent
6775
6775
 
6776
+ # Optional. Sets Dialogflow CX session life time. By default, a Dialogflow CX
6777
+ # session remains active and its data is stored for 30 minutes after the last
6778
+ # request is sent for the session. This value should be no longer than 1 day.
6779
+ # Corresponds to the JSON property `sessionTtl`
6780
+ # @return [String]
6781
+ attr_accessor :session_ttl
6782
+
6776
6783
  def initialize(**args)
6777
6784
  update!(**args)
6778
6785
  end
@@ -6780,6 +6787,7 @@ module Google
6780
6787
  # Update properties of this object
6781
6788
  def update!(**args)
6782
6789
  @agent = args[:agent] if args.key?(:agent)
6790
+ @session_ttl = args[:session_ttl] if args.key?(:session_ttl)
6783
6791
  end
6784
6792
  end
6785
6793
 
@@ -12769,6 +12777,11 @@ module Google
12769
12777
  class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
12770
12778
  include Google::Apis::Core::Hashable
12771
12779
 
12780
+ # Represents the parameters of human assist query.
12781
+ # Corresponds to the JSON property `assistQueryParams`
12782
+ # @return [Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters]
12783
+ attr_accessor :assist_query_params
12784
+
12772
12785
  # Max number of messages prior to and including [latest_message] to use as
12773
12786
  # context when compiling the suggestion. By default 500 and at most 1000.
12774
12787
  # Corresponds to the JSON property `contextSize`
@@ -12788,6 +12801,7 @@ module Google
12788
12801
 
12789
12802
  # Update properties of this object
12790
12803
  def update!(**args)
12804
+ @assist_query_params = args[:assist_query_params] if args.key?(:assist_query_params)
12791
12805
  @context_size = args[:context_size] if args.key?(:context_size)
12792
12806
  @latest_message = args[:latest_message] if args.key?(:latest_message)
12793
12807
  end
@@ -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.62.0"
19
+ GEM_VERSION = "0.63.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
@@ -4672,6 +4672,7 @@ module Google
4672
4672
  # @private
4673
4673
  class Representation < Google::Apis::Core::JsonRepresentation
4674
4674
  property :agent, as: 'agent'
4675
+ property :session_ttl, as: 'sessionTtl'
4675
4676
  end
4676
4677
  end
4677
4678
 
@@ -6334,6 +6335,8 @@ module Google
6334
6335
  class GoogleCloudDialogflowV2SuggestConversationSummaryRequest
6335
6336
  # @private
6336
6337
  class Representation < Google::Apis::Core::JsonRepresentation
6338
+ property :assist_query_params, as: 'assistQueryParams', class: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters, decorator: Google::Apis::DialogflowV2::GoogleCloudDialogflowV2AssistQueryParameters::Representation
6339
+
6337
6340
  property :context_size, as: 'contextSize'
6338
6341
  property :latest_message, as: 'latestMessage'
6339
6342
  end
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.62.0
4
+ version: 0.63.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_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.62.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2/v0.63.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: []