google-apis-dialogflow_v3 0.12.0 → 0.13.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: 5b48e2d0549c62b484978c4439d4e4d9c52cf15331629598fcde0f99d42dbd3c
4
- data.tar.gz: 691751a26f0f8e0b1feb37ff0b656e43e68bdf4198c6da7c2c356bd082862f76
3
+ metadata.gz: a9bff6b1524079b9c96bb948709032555070d4f97f15fa34459948e5203401f1
4
+ data.tar.gz: ea42736729f3301c76998f8ec9f688f1e109f98448c60f8ccf862d6f1c0a62e9
5
5
  SHA512:
6
- metadata.gz: 37c6df17fa6f7ee3b4b2abf20d987ce1c5939b4962b39e054fdc4f5589c755e6d9a55de461a12f32b1fc44e1484383116634c27d643e929db29d9ded277be469
7
- data.tar.gz: 3dadcd12a27f264011b0a4b2ab2626df516d343b895f0a3a6b427e2e377e6ea6bc4e67d2620fb590ca872cb41661f1dd649c2d423676ebad5ee08cbc42c34257
6
+ metadata.gz: 4bb9cb87eeec86add25e988019b64fe48c30c4ab9d2391ee7e8d56c5164201f96d448165425d35b1ef1d7aad7e54b0a4f0021a88855af8904dae3ba86cd4d33d
7
+ data.tar.gz: 158d149e18dc5e013db591934f4300ae313bb2d3e3dce9b462a6171b6776634040d1cdb9ace6ee24501b84cfa9b34b2dea1637457251285b1eeeafa5cc449d90
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.13.0 (2021-05-26)
4
+
5
+ * Regenerated from discovery document revision 20210524
6
+
3
7
  ### v0.12.0 (2021-05-19)
4
8
 
5
9
  * Regenerated from discovery document revision 20210517
@@ -310,6 +310,45 @@ module Google
310
310
  end
311
311
  end
312
312
 
313
+ # Represents a result from running a test case in an agent environment.
314
+ class GoogleCloudDialogflowCxV3ContinuousTestResult
315
+ include Google::Apis::Core::Hashable
316
+
317
+ # The resource name for the continuous test result. Format: `projects//locations/
318
+ # /agents//environments//continuousTestResults/`.
319
+ # Corresponds to the JSON property `name`
320
+ # @return [String]
321
+ attr_accessor :name
322
+
323
+ # The result of this continuous test run, i.e. whether all the tests in this
324
+ # continuous test run pass or not.
325
+ # Corresponds to the JSON property `result`
326
+ # @return [String]
327
+ attr_accessor :result
328
+
329
+ # Time when the continuous testing run starts.
330
+ # Corresponds to the JSON property `runTime`
331
+ # @return [String]
332
+ attr_accessor :run_time
333
+
334
+ # A list of individual test case results names in this continuous test run.
335
+ # Corresponds to the JSON property `testCaseResults`
336
+ # @return [Array<String>]
337
+ attr_accessor :test_case_results
338
+
339
+ def initialize(**args)
340
+ update!(**args)
341
+ end
342
+
343
+ # Update properties of this object
344
+ def update!(**args)
345
+ @name = args[:name] if args.key?(:name)
346
+ @result = args[:result] if args.key?(:result)
347
+ @run_time = args[:run_time] if args.key?(:run_time)
348
+ @test_case_results = args[:test_case_results] if args.key?(:test_case_results)
349
+ end
350
+ end
351
+
313
352
  # One interaction between a human and virtual agent. The human provides some
314
353
  # input and the virtual agent provides a response.
315
354
  class GoogleCloudDialogflowCxV3ConversationTurn
@@ -2394,6 +2433,32 @@ module Google
2394
2433
  end
2395
2434
  end
2396
2435
 
2436
+ # The response message for Environments.ListTestCaseResults.
2437
+ class GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse
2438
+ include Google::Apis::Core::Hashable
2439
+
2440
+ # The list of continuous test results.
2441
+ # Corresponds to the JSON property `continuousTestResults`
2442
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult>]
2443
+ attr_accessor :continuous_test_results
2444
+
2445
+ # Token to retrieve the next page of results, or empty if there are no more
2446
+ # results in the list.
2447
+ # Corresponds to the JSON property `nextPageToken`
2448
+ # @return [String]
2449
+ attr_accessor :next_page_token
2450
+
2451
+ def initialize(**args)
2452
+ update!(**args)
2453
+ end
2454
+
2455
+ # Update properties of this object
2456
+ def update!(**args)
2457
+ @continuous_test_results = args[:continuous_test_results] if args.key?(:continuous_test_results)
2458
+ @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
2459
+ end
2460
+ end
2461
+
2397
2462
  # The response message for EntityTypes.ListEntityTypes.
2398
2463
  class GoogleCloudDialogflowCxV3ListEntityTypesResponse
2399
2464
  include Google::Apis::Core::Hashable
@@ -3908,6 +3973,58 @@ module Google
3908
3973
  end
3909
3974
  end
3910
3975
 
3976
+ # Metadata returned for the Environments.RunContinuousTest long running
3977
+ # operation.
3978
+ class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
3979
+ include Google::Apis::Core::Hashable
3980
+
3981
+ # The test errors.
3982
+ # Corresponds to the JSON property `errors`
3983
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestError>]
3984
+ attr_accessor :errors
3985
+
3986
+ def initialize(**args)
3987
+ update!(**args)
3988
+ end
3989
+
3990
+ # Update properties of this object
3991
+ def update!(**args)
3992
+ @errors = args[:errors] if args.key?(:errors)
3993
+ end
3994
+ end
3995
+
3996
+ # The request message for Environments.RunContinuousTest.
3997
+ class GoogleCloudDialogflowCxV3RunContinuousTestRequest
3998
+ include Google::Apis::Core::Hashable
3999
+
4000
+ def initialize(**args)
4001
+ update!(**args)
4002
+ end
4003
+
4004
+ # Update properties of this object
4005
+ def update!(**args)
4006
+ end
4007
+ end
4008
+
4009
+ # The response message for Environments.RunContinuousTest.
4010
+ class GoogleCloudDialogflowCxV3RunContinuousTestResponse
4011
+ include Google::Apis::Core::Hashable
4012
+
4013
+ # Represents a result from running a test case in an agent environment.
4014
+ # Corresponds to the JSON property `continuousTestResult`
4015
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult]
4016
+ attr_accessor :continuous_test_result
4017
+
4018
+ def initialize(**args)
4019
+ update!(**args)
4020
+ end
4021
+
4022
+ # Update properties of this object
4023
+ def update!(**args)
4024
+ @continuous_test_result = args[:continuous_test_result] if args.key?(:continuous_test_result)
4025
+ end
4026
+ end
4027
+
3911
4028
  # Metadata returned for the TestCases.RunTestCase long running operation.
3912
4029
  class GoogleCloudDialogflowCxV3RunTestCaseMetadata
3913
4030
  include Google::Apis::Core::Hashable
@@ -5577,6 +5694,45 @@ module Google
5577
5694
  end
5578
5695
  end
5579
5696
 
5697
+ # Represents a result from running a test case in an agent environment.
5698
+ class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
5699
+ include Google::Apis::Core::Hashable
5700
+
5701
+ # The resource name for the continuous test result. Format: `projects//locations/
5702
+ # /agents//environments//continuousTestResults/`.
5703
+ # Corresponds to the JSON property `name`
5704
+ # @return [String]
5705
+ attr_accessor :name
5706
+
5707
+ # The result of this continuous test run, i.e. whether all the tests in this
5708
+ # continuous test run pass or not.
5709
+ # Corresponds to the JSON property `result`
5710
+ # @return [String]
5711
+ attr_accessor :result
5712
+
5713
+ # Time when the continuous testing run starts.
5714
+ # Corresponds to the JSON property `runTime`
5715
+ # @return [String]
5716
+ attr_accessor :run_time
5717
+
5718
+ # A list of individual test case results names in this continuous test run.
5719
+ # Corresponds to the JSON property `testCaseResults`
5720
+ # @return [Array<String>]
5721
+ attr_accessor :test_case_results
5722
+
5723
+ def initialize(**args)
5724
+ update!(**args)
5725
+ end
5726
+
5727
+ # Update properties of this object
5728
+ def update!(**args)
5729
+ @name = args[:name] if args.key?(:name)
5730
+ @result = args[:result] if args.key?(:result)
5731
+ @run_time = args[:run_time] if args.key?(:run_time)
5732
+ @test_case_results = args[:test_case_results] if args.key?(:test_case_results)
5733
+ end
5734
+ end
5735
+
5580
5736
  # One interaction between a human and virtual agent. The human provides some
5581
5737
  # input and the virtual agent provides a response.
5582
5738
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
@@ -7255,6 +7411,45 @@ module Google
7255
7411
  end
7256
7412
  end
7257
7413
 
7414
+ # Metadata returned for the Environments.RunContinuousTest long running
7415
+ # operation.
7416
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
7417
+ include Google::Apis::Core::Hashable
7418
+
7419
+ # The test errors.
7420
+ # Corresponds to the JSON property `errors`
7421
+ # @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TestError>]
7422
+ attr_accessor :errors
7423
+
7424
+ def initialize(**args)
7425
+ update!(**args)
7426
+ end
7427
+
7428
+ # Update properties of this object
7429
+ def update!(**args)
7430
+ @errors = args[:errors] if args.key?(:errors)
7431
+ end
7432
+ end
7433
+
7434
+ # The response message for Environments.RunContinuousTest.
7435
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
7436
+ include Google::Apis::Core::Hashable
7437
+
7438
+ # Represents a result from running a test case in an agent environment.
7439
+ # Corresponds to the JSON property `continuousTestResult`
7440
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ContinuousTestResult]
7441
+ attr_accessor :continuous_test_result
7442
+
7443
+ def initialize(**args)
7444
+ update!(**args)
7445
+ end
7446
+
7447
+ # Update properties of this object
7448
+ def update!(**args)
7449
+ @continuous_test_result = args[:continuous_test_result] if args.key?(:continuous_test_result)
7450
+ end
7451
+ end
7452
+
7258
7453
  # Metadata returned for the TestCases.RunTestCase long running operation.
7259
7454
  class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
7260
7455
  include Google::Apis::Core::Hashable
@@ -9844,6 +10039,13 @@ module Google
9844
10039
  attr_accessor :all_required_params_present
9845
10040
  alias_method :all_required_params_present?, :all_required_params_present
9846
10041
 
10042
+ # Indicates whether the conversational query triggers a cancellation for slot
10043
+ # filling.
10044
+ # Corresponds to the JSON property `cancelsSlotFilling`
10045
+ # @return [Boolean]
10046
+ attr_accessor :cancels_slot_filling
10047
+ alias_method :cancels_slot_filling?, :cancels_slot_filling
10048
+
9847
10049
  # Free-form diagnostic information for the associated detect intent request. The
9848
10050
  # fields of this data can change without notice, so you should not write code
9849
10051
  # that depends on its structure. The data may contain: - webhook call latency -
@@ -9964,6 +10166,7 @@ module Google
9964
10166
  def update!(**args)
9965
10167
  @action = args[:action] if args.key?(:action)
9966
10168
  @all_required_params_present = args[:all_required_params_present] if args.key?(:all_required_params_present)
10169
+ @cancels_slot_filling = args[:cancels_slot_filling] if args.key?(:cancels_slot_filling)
9967
10170
  @diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
9968
10171
  @fulfillment_messages = args[:fulfillment_messages] if args.key?(:fulfillment_messages)
9969
10172
  @fulfillment_text = args[:fulfillment_text] if args.key?(:fulfillment_text)
@@ -12791,6 +12994,13 @@ module Google
12791
12994
  attr_accessor :all_required_params_present
12792
12995
  alias_method :all_required_params_present?, :all_required_params_present
12793
12996
 
12997
+ # Indicates whether the conversational query triggers a cancellation for slot
12998
+ # filling.
12999
+ # Corresponds to the JSON property `cancelsSlotFilling`
13000
+ # @return [Boolean]
13001
+ attr_accessor :cancels_slot_filling
13002
+ alias_method :cancels_slot_filling?, :cancels_slot_filling
13003
+
12794
13004
  # Free-form diagnostic information for the associated detect intent request. The
12795
13005
  # fields of this data can change without notice, so you should not write code
12796
13006
  # that depends on its structure. The data may contain: - webhook call latency -
@@ -12916,6 +13126,7 @@ module Google
12916
13126
  def update!(**args)
12917
13127
  @action = args[:action] if args.key?(:action)
12918
13128
  @all_required_params_present = args[:all_required_params_present] if args.key?(:all_required_params_present)
13129
+ @cancels_slot_filling = args[:cancels_slot_filling] if args.key?(:cancels_slot_filling)
12919
13130
  @diagnostic_info = args[:diagnostic_info] if args.key?(:diagnostic_info)
12920
13131
  @fulfillment_messages = args[:fulfillment_messages] if args.key?(:fulfillment_messages)
12921
13132
  @fulfillment_text = args[:fulfillment_text] if args.key?(:fulfillment_text)
@@ -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.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210517"
25
+ REVISION = "20210524"
26
26
  end
27
27
  end
28
28
  end
@@ -70,6 +70,12 @@ module Google
70
70
  include Google::Apis::Core::JsonObjectSupport
71
71
  end
72
72
 
73
+ class GoogleCloudDialogflowCxV3ContinuousTestResult
74
+ class Representation < Google::Apis::Core::JsonRepresentation; end
75
+
76
+ include Google::Apis::Core::JsonObjectSupport
77
+ end
78
+
73
79
  class GoogleCloudDialogflowCxV3ConversationTurn
74
80
  class Representation < Google::Apis::Core::JsonRepresentation; end
75
81
 
@@ -418,6 +424,12 @@ module Google
418
424
  include Google::Apis::Core::JsonObjectSupport
419
425
  end
420
426
 
427
+ class GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse
428
+ class Representation < Google::Apis::Core::JsonRepresentation; end
429
+
430
+ include Google::Apis::Core::JsonObjectSupport
431
+ end
432
+
421
433
  class GoogleCloudDialogflowCxV3ListEntityTypesResponse
422
434
  class Representation < Google::Apis::Core::JsonRepresentation; end
423
435
 
@@ -652,6 +664,24 @@ module Google
652
664
  include Google::Apis::Core::JsonObjectSupport
653
665
  end
654
666
 
667
+ class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
668
+ class Representation < Google::Apis::Core::JsonRepresentation; end
669
+
670
+ include Google::Apis::Core::JsonObjectSupport
671
+ end
672
+
673
+ class GoogleCloudDialogflowCxV3RunContinuousTestRequest
674
+ class Representation < Google::Apis::Core::JsonRepresentation; end
675
+
676
+ include Google::Apis::Core::JsonObjectSupport
677
+ end
678
+
679
+ class GoogleCloudDialogflowCxV3RunContinuousTestResponse
680
+ class Representation < Google::Apis::Core::JsonRepresentation; end
681
+
682
+ include Google::Apis::Core::JsonObjectSupport
683
+ end
684
+
655
685
  class GoogleCloudDialogflowCxV3RunTestCaseMetadata
656
686
  class Representation < Google::Apis::Core::JsonRepresentation; end
657
687
 
@@ -946,6 +976,12 @@ module Google
946
976
  include Google::Apis::Core::JsonObjectSupport
947
977
  end
948
978
 
979
+ class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
980
+ class Representation < Google::Apis::Core::JsonRepresentation; end
981
+
982
+ include Google::Apis::Core::JsonObjectSupport
983
+ end
984
+
949
985
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
950
986
  class Representation < Google::Apis::Core::JsonRepresentation; end
951
987
 
@@ -1234,6 +1270,18 @@ module Google
1234
1270
  include Google::Apis::Core::JsonObjectSupport
1235
1271
  end
1236
1272
 
1273
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
1274
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1275
+
1276
+ include Google::Apis::Core::JsonObjectSupport
1277
+ end
1278
+
1279
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
1280
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1281
+
1282
+ include Google::Apis::Core::JsonObjectSupport
1283
+ end
1284
+
1237
1285
  class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
1238
1286
  class Representation < Google::Apis::Core::JsonRepresentation; end
1239
1287
 
@@ -2311,6 +2359,16 @@ module Google
2311
2359
  end
2312
2360
  end
2313
2361
 
2362
+ class GoogleCloudDialogflowCxV3ContinuousTestResult
2363
+ # @private
2364
+ class Representation < Google::Apis::Core::JsonRepresentation
2365
+ property :name, as: 'name'
2366
+ property :result, as: 'result'
2367
+ property :run_time, as: 'runTime'
2368
+ collection :test_case_results, as: 'testCaseResults'
2369
+ end
2370
+ end
2371
+
2314
2372
  class GoogleCloudDialogflowCxV3ConversationTurn
2315
2373
  # @private
2316
2374
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2882,6 +2940,15 @@ module Google
2882
2940
  end
2883
2941
  end
2884
2942
 
2943
+ class GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse
2944
+ # @private
2945
+ class Representation < Google::Apis::Core::JsonRepresentation
2946
+ collection :continuous_test_results, as: 'continuousTestResults', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult::Representation
2947
+
2948
+ property :next_page_token, as: 'nextPageToken'
2949
+ end
2950
+ end
2951
+
2885
2952
  class GoogleCloudDialogflowCxV3ListEntityTypesResponse
2886
2953
  # @private
2887
2954
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3285,6 +3352,28 @@ module Google
3285
3352
  end
3286
3353
  end
3287
3354
 
3355
+ class GoogleCloudDialogflowCxV3RunContinuousTestMetadata
3356
+ # @private
3357
+ class Representation < Google::Apis::Core::JsonRepresentation
3358
+ collection :errors, as: 'errors', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestError, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3TestError::Representation
3359
+
3360
+ end
3361
+ end
3362
+
3363
+ class GoogleCloudDialogflowCxV3RunContinuousTestRequest
3364
+ # @private
3365
+ class Representation < Google::Apis::Core::JsonRepresentation
3366
+ end
3367
+ end
3368
+
3369
+ class GoogleCloudDialogflowCxV3RunContinuousTestResponse
3370
+ # @private
3371
+ class Representation < Google::Apis::Core::JsonRepresentation
3372
+ property :continuous_test_result, as: 'continuousTestResult', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ContinuousTestResult::Representation
3373
+
3374
+ end
3375
+ end
3376
+
3288
3377
  class GoogleCloudDialogflowCxV3RunTestCaseMetadata
3289
3378
  # @private
3290
3379
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -3763,6 +3852,16 @@ module Google
3763
3852
  end
3764
3853
  end
3765
3854
 
3855
+ class GoogleCloudDialogflowCxV3beta1ContinuousTestResult
3856
+ # @private
3857
+ class Representation < Google::Apis::Core::JsonRepresentation
3858
+ property :name, as: 'name'
3859
+ property :result, as: 'result'
3860
+ property :run_time, as: 'runTime'
3861
+ collection :test_case_results, as: 'testCaseResults'
3862
+ end
3863
+ end
3864
+
3766
3865
  class GoogleCloudDialogflowCxV3beta1ConversationTurn
3767
3866
  # @private
3768
3867
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4224,6 +4323,22 @@ module Google
4224
4323
  end
4225
4324
  end
4226
4325
 
4326
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestMetadata
4327
+ # @private
4328
+ class Representation < Google::Apis::Core::JsonRepresentation
4329
+ collection :errors, as: 'errors', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TestError, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1TestError::Representation
4330
+
4331
+ end
4332
+ end
4333
+
4334
+ class GoogleCloudDialogflowCxV3beta1RunContinuousTestResponse
4335
+ # @private
4336
+ class Representation < Google::Apis::Core::JsonRepresentation
4337
+ property :continuous_test_result, as: 'continuousTestResult', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ContinuousTestResult, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1ContinuousTestResult::Representation
4338
+
4339
+ end
4340
+ end
4341
+
4227
4342
  class GoogleCloudDialogflowCxV3beta1RunTestCaseMetadata
4228
4343
  # @private
4229
4344
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4945,6 +5060,7 @@ module Google
4945
5060
  class Representation < Google::Apis::Core::JsonRepresentation
4946
5061
  property :action, as: 'action'
4947
5062
  property :all_required_params_present, as: 'allRequiredParamsPresent'
5063
+ property :cancels_slot_filling, as: 'cancelsSlotFilling'
4948
5064
  hash :diagnostic_info, as: 'diagnosticInfo'
4949
5065
  collection :fulfillment_messages, as: 'fulfillmentMessages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2IntentMessage::Representation
4950
5066
 
@@ -5740,6 +5856,7 @@ module Google
5740
5856
  class Representation < Google::Apis::Core::JsonRepresentation
5741
5857
  property :action, as: 'action'
5742
5858
  property :all_required_params_present, as: 'allRequiredParamsPresent'
5859
+ property :cancels_slot_filling, as: 'cancelsSlotFilling'
5743
5860
  hash :diagnostic_info, as: 'diagnosticInfo'
5744
5861
  collection :fulfillment_messages, as: 'fulfillmentMessages', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessage, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowV2beta1IntentMessage::Representation
5745
5862
 
@@ -778,6 +778,77 @@ module Google
778
778
  execute_or_queue_command(command, &block)
779
779
  end
780
780
 
781
+ # Kicks off a continuous test under the specified Environment.
782
+ # @param [String] environment
783
+ # Required. Format: `projects//locations//agents//environments/`.
784
+ # @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RunContinuousTestRequest] google_cloud_dialogflow_cx_v3_run_continuous_test_request_object
785
+ # @param [String] fields
786
+ # Selector specifying which fields to include in a partial response.
787
+ # @param [String] quota_user
788
+ # Available to use for quota purposes for server-side applications. Can be any
789
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
790
+ # @param [Google::Apis::RequestOptions] options
791
+ # Request-specific options
792
+ #
793
+ # @yield [result, err] Result & error if block supplied
794
+ # @yieldparam result [Google::Apis::DialogflowV3::GoogleLongrunningOperation] parsed result object
795
+ # @yieldparam err [StandardError] error object if request failed
796
+ #
797
+ # @return [Google::Apis::DialogflowV3::GoogleLongrunningOperation]
798
+ #
799
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
800
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
801
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
802
+ def run_project_location_agent_environment_continuous_test(environment, google_cloud_dialogflow_cx_v3_run_continuous_test_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
803
+ command = make_simple_command(:post, 'v3/{+environment}:runContinuousTest', options)
804
+ command.request_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RunContinuousTestRequest::Representation
805
+ command.request_object = google_cloud_dialogflow_cx_v3_run_continuous_test_request_object
806
+ command.response_representation = Google::Apis::DialogflowV3::GoogleLongrunningOperation::Representation
807
+ command.response_class = Google::Apis::DialogflowV3::GoogleLongrunningOperation
808
+ command.params['environment'] = environment unless environment.nil?
809
+ command.query['fields'] = fields unless fields.nil?
810
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
811
+ execute_or_queue_command(command, &block)
812
+ end
813
+
814
+ # Fetches a list of continuous test results for a given environment.
815
+ # @param [String] parent
816
+ # Required. The environment to list results for. Format: `projects//locations//
817
+ # agents// environments/`.
818
+ # @param [Fixnum] page_size
819
+ # The maximum number of items to return in a single page. By default 100 and at
820
+ # most 1000.
821
+ # @param [String] page_token
822
+ # The next_page_token value returned from a previous list request.
823
+ # @param [String] fields
824
+ # Selector specifying which fields to include in a partial response.
825
+ # @param [String] quota_user
826
+ # Available to use for quota purposes for server-side applications. Can be any
827
+ # arbitrary string assigned to a user, but should not exceed 40 characters.
828
+ # @param [Google::Apis::RequestOptions] options
829
+ # Request-specific options
830
+ #
831
+ # @yield [result, err] Result & error if block supplied
832
+ # @yieldparam result [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse] parsed result object
833
+ # @yieldparam err [StandardError] error object if request failed
834
+ #
835
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse]
836
+ #
837
+ # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
838
+ # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
839
+ # @raise [Google::Apis::AuthorizationError] Authorization is required
840
+ def list_project_location_agent_environment_continuous_test_results(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
841
+ command = make_simple_command(:get, 'v3/{+parent}/continuousTestResults', options)
842
+ command.response_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse::Representation
843
+ command.response_class = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListContinuousTestResultsResponse
844
+ command.params['parent'] = parent unless parent.nil?
845
+ command.query['pageSize'] = page_size unless page_size.nil?
846
+ command.query['pageToken'] = page_token unless page_token.nil?
847
+ command.query['fields'] = fields unless fields.nil?
848
+ command.query['quotaUser'] = quota_user unless quota_user.nil?
849
+ execute_or_queue_command(command, &block)
850
+ end
851
+
781
852
  # Creates an Experiment in the specified Environment.
782
853
  # @param [String] parent
783
854
  # Required. The Agent to create an Environment for. Format: `projects//locations/
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.12.0
4
+ version: 0.13.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-24 00:00:00.000000000 Z
11
+ date: 2021-05-31 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.12.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.13.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: []