google-apis-dialogflow_v3 0.13.0 → 0.14.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: a9bff6b1524079b9c96bb948709032555070d4f97f15fa34459948e5203401f1
4
- data.tar.gz: ea42736729f3301c76998f8ec9f688f1e109f98448c60f8ccf862d6f1c0a62e9
3
+ metadata.gz: 9d622b26b861639bea1d14b1c352ebc0c063db1c9634356ac65da72c19a27709
4
+ data.tar.gz: dd3eadbce4fa7d6804f92cbd4104fc207e4c7e6447b27fc7748c9b668349bc28
5
5
  SHA512:
6
- metadata.gz: 4bb9cb87eeec86add25e988019b64fe48c30c4ab9d2391ee7e8d56c5164201f96d448165425d35b1ef1d7aad7e54b0a4f0021a88855af8904dae3ba86cd4d33d
7
- data.tar.gz: 158d149e18dc5e013db591934f4300ae313bb2d3e3dce9b462a6171b6776634040d1cdb9ace6ee24501b84cfa9b34b2dea1637457251285b1eeeafa5cc449d90
6
+ metadata.gz: 93a4b416ff7292e09842e2e920b2691d2943f4816cdcfa9e4c0198e8c6e178be37aa3858610dff0240555ec86c35015a9215e49b13e806221581afdfe8189679
7
+ data.tar.gz: 2ea3c3854e85e7aaceb8897399369ca9816eacd8255132377ed0b4d9b89aa3846b4aa911bae982f01258c295519732c44c490ec95d836e5b4b1da8ddb6939be0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.14.0 (2021-06-03)
4
+
5
+ * Regenerated from discovery document revision 20210601
6
+ * Regenerated using generator version 0.3.0
7
+
3
8
  ### v0.13.0 (2021-05-26)
4
9
 
5
10
  * Regenerated from discovery document revision 20210524
@@ -379,6 +379,12 @@ module Google
379
379
  class GoogleCloudDialogflowCxV3ConversationTurnUserInput
380
380
  include Google::Apis::Core::Hashable
381
381
 
382
+ # Whether sentiment analysis is enabled.
383
+ # Corresponds to the JSON property `enableSentimentAnalysis`
384
+ # @return [Boolean]
385
+ attr_accessor :enable_sentiment_analysis
386
+ alias_method :enable_sentiment_analysis?, :enable_sentiment_analysis
387
+
382
388
  # Parameters that need to be injected into the conversation during intent
383
389
  # detection.
384
390
  # Corresponds to the JSON property `injectedParameters`
@@ -406,6 +412,7 @@ module Google
406
412
 
407
413
  # Update properties of this object
408
414
  def update!(**args)
415
+ @enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
409
416
  @injected_parameters = args[:injected_parameters] if args.key?(:injected_parameters)
410
417
  @input = args[:input] if args.key?(:input)
411
418
  @is_webhook_enabled = args[:is_webhook_enabled] if args.key?(:is_webhook_enabled)
@@ -3356,11 +3363,11 @@ module Google
3356
3363
  alias_method :analyze_query_text_sentiment?, :analyze_query_text_sentiment
3357
3364
 
3358
3365
  # The unique identifier of the page to override the current page in the session.
3359
- # Format: `projects//locations//agents//pages/`. If `current_page` is specified,
3360
- # the previous state of the session will be ignored by Dialogflow, including the
3361
- # previous page and the previous session parameters. In most cases, current_page
3362
- # and parameters should be configured together to direct a session to a specific
3363
- # state.
3366
+ # Format: `projects//locations//agents//flows//pages/`. If `current_page` is
3367
+ # specified, the previous state of the session will be ignored by Dialogflow,
3368
+ # including the previous page and the previous session parameters. In most cases,
3369
+ # current_page and parameters should be configured together to direct a session
3370
+ # to a specific state.
3364
3371
  # Corresponds to the JSON property `currentPage`
3365
3372
  # @return [String]
3366
3373
  attr_accessor :current_page
@@ -5763,6 +5770,12 @@ module Google
5763
5770
  class GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
5764
5771
  include Google::Apis::Core::Hashable
5765
5772
 
5773
+ # Whether sentiment analysis is enabled.
5774
+ # Corresponds to the JSON property `enableSentimentAnalysis`
5775
+ # @return [Boolean]
5776
+ attr_accessor :enable_sentiment_analysis
5777
+ alias_method :enable_sentiment_analysis?, :enable_sentiment_analysis
5778
+
5766
5779
  # Parameters that need to be injected into the conversation during intent
5767
5780
  # detection.
5768
5781
  # Corresponds to the JSON property `injectedParameters`
@@ -5790,6 +5803,7 @@ module Google
5790
5803
 
5791
5804
  # Update properties of this object
5792
5805
  def update!(**args)
5806
+ @enable_sentiment_analysis = args[:enable_sentiment_analysis] if args.key?(:enable_sentiment_analysis)
5793
5807
  @injected_parameters = args[:injected_parameters] if args.key?(:injected_parameters)
5794
5808
  @input = args[:input] if args.key?(:input)
5795
5809
  @is_webhook_enabled = args[:is_webhook_enabled] if args.key?(:is_webhook_enabled)
@@ -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.13.0"
19
+ GEM_VERSION = "0.14.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210524"
25
+ REVISION = "20210601"
26
26
  end
27
27
  end
28
28
  end
@@ -2382,6 +2382,7 @@ module Google
2382
2382
  class GoogleCloudDialogflowCxV3ConversationTurnUserInput
2383
2383
  # @private
2384
2384
  class Representation < Google::Apis::Core::JsonRepresentation
2385
+ property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
2385
2386
  hash :injected_parameters, as: 'injectedParameters'
2386
2387
  property :input, as: 'input', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryInput::Representation
2387
2388
 
@@ -3875,6 +3876,7 @@ module Google
3875
3876
  class GoogleCloudDialogflowCxV3beta1ConversationTurnUserInput
3876
3877
  # @private
3877
3878
  class Representation < Google::Apis::Core::JsonRepresentation
3879
+ property :enable_sentiment_analysis, as: 'enableSentimentAnalysis'
3878
3880
  hash :injected_parameters, as: 'injectedParameters'
3879
3881
  property :input, as: 'input', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1QueryInput, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1QueryInput::Representation
3880
3882
 
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.13.0
4
+ version: 0.14.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: 2021-05-31 00:00:00.000000000 Z
11
+ date: 2021-06-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.13.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.14.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dialogflow_v3
57
57
  post_install_message:
58
58
  rdoc_options: []