google-cloud-dialogflow-v2 0.28.0 → 0.29.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (51) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/dialogflow/v2/agents/client.rb +10 -1
  3. data/lib/google/cloud/dialogflow/v2/agents/operations.rb +10 -1
  4. data/lib/google/cloud/dialogflow/v2/agents/rest/client.rb +176 -0
  5. data/lib/google/cloud/dialogflow/v2/agents/rest/operations.rb +75 -0
  6. data/lib/google/cloud/dialogflow/v2/answer_records/client.rb +10 -1
  7. data/lib/google/cloud/dialogflow/v2/answer_records/rest/client.rb +36 -0
  8. data/lib/google/cloud/dialogflow/v2/contexts/client.rb +10 -1
  9. data/lib/google/cloud/dialogflow/v2/contexts/rest/client.rb +100 -0
  10. data/lib/google/cloud/dialogflow/v2/conversation_datasets/client.rb +10 -1
  11. data/lib/google/cloud/dialogflow/v2/conversation_datasets/operations.rb +10 -1
  12. data/lib/google/cloud/dialogflow/v2/conversation_datasets/rest/client.rb +105 -0
  13. data/lib/google/cloud/dialogflow/v2/conversation_datasets/rest/operations.rb +75 -0
  14. data/lib/google/cloud/dialogflow/v2/conversation_models/client.rb +10 -1
  15. data/lib/google/cloud/dialogflow/v2/conversation_models/operations.rb +10 -1
  16. data/lib/google/cloud/dialogflow/v2/conversation_models/rest/client.rb +187 -0
  17. data/lib/google/cloud/dialogflow/v2/conversation_models/rest/operations.rb +75 -0
  18. data/lib/google/cloud/dialogflow/v2/conversation_profiles/client.rb +10 -1
  19. data/lib/google/cloud/dialogflow/v2/conversation_profiles/operations.rb +10 -1
  20. data/lib/google/cloud/dialogflow/v2/conversation_profiles/rest/client.rb +130 -0
  21. data/lib/google/cloud/dialogflow/v2/conversation_profiles/rest/operations.rb +75 -0
  22. data/lib/google/cloud/dialogflow/v2/conversations/client.rb +10 -1
  23. data/lib/google/cloud/dialogflow/v2/conversations/rest/client.rb +136 -0
  24. data/lib/google/cloud/dialogflow/v2/documents/client.rb +10 -1
  25. data/lib/google/cloud/dialogflow/v2/documents/operations.rb +10 -1
  26. data/lib/google/cloud/dialogflow/v2/documents/rest/client.rb +174 -0
  27. data/lib/google/cloud/dialogflow/v2/documents/rest/operations.rb +75 -0
  28. data/lib/google/cloud/dialogflow/v2/entity_types/client.rb +10 -1
  29. data/lib/google/cloud/dialogflow/v2/entity_types/operations.rb +10 -1
  30. data/lib/google/cloud/dialogflow/v2/entity_types/rest/client.rb +199 -0
  31. data/lib/google/cloud/dialogflow/v2/entity_types/rest/operations.rb +75 -0
  32. data/lib/google/cloud/dialogflow/v2/environments/client.rb +10 -1
  33. data/lib/google/cloud/dialogflow/v2/environments/rest/client.rb +104 -0
  34. data/lib/google/cloud/dialogflow/v2/fulfillments/client.rb +10 -1
  35. data/lib/google/cloud/dialogflow/v2/fulfillments/rest/client.rb +32 -0
  36. data/lib/google/cloud/dialogflow/v2/intents/client.rb +10 -1
  37. data/lib/google/cloud/dialogflow/v2/intents/operations.rb +10 -1
  38. data/lib/google/cloud/dialogflow/v2/intents/rest/client.rb +130 -0
  39. data/lib/google/cloud/dialogflow/v2/intents/rest/operations.rb +75 -0
  40. data/lib/google/cloud/dialogflow/v2/knowledge_bases/client.rb +10 -1
  41. data/lib/google/cloud/dialogflow/v2/knowledge_bases/rest/client.rb +84 -0
  42. data/lib/google/cloud/dialogflow/v2/participants/client.rb +10 -1
  43. data/lib/google/cloud/dialogflow/v2/participants/rest/client.rb +132 -0
  44. data/lib/google/cloud/dialogflow/v2/session_entity_types/client.rb +10 -1
  45. data/lib/google/cloud/dialogflow/v2/session_entity_types/rest/client.rb +84 -0
  46. data/lib/google/cloud/dialogflow/v2/sessions/client.rb +10 -1
  47. data/lib/google/cloud/dialogflow/v2/sessions/rest/client.rb +16 -0
  48. data/lib/google/cloud/dialogflow/v2/version.rb +1 -1
  49. data/lib/google/cloud/dialogflow/v2/versions/client.rb +10 -1
  50. data/lib/google/cloud/dialogflow/v2/versions/rest/client.rb +84 -0
  51. metadata +4 -4
@@ -191,6 +191,26 @@ module Google
191
191
  # @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Dialogflow::V2::Version>]
192
192
  #
193
193
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
194
+ #
195
+ # @example Basic example
196
+ # require "google/cloud/dialogflow/v2"
197
+ #
198
+ # # Create a client object. The client can be reused for multiple calls.
199
+ # client = Google::Cloud::Dialogflow::V2::Versions::Rest::Client.new
200
+ #
201
+ # # Create a request. To set request fields, pass in keyword arguments.
202
+ # request = Google::Cloud::Dialogflow::V2::ListVersionsRequest.new
203
+ #
204
+ # # Call the list_versions method.
205
+ # result = client.list_versions request
206
+ #
207
+ # # The returned object is of type Gapic::PagedEnumerable. You can iterate
208
+ # # over elements, and API calls will be issued to fetch pages as needed.
209
+ # result.each do |item|
210
+ # # Each element is of type ::Google::Cloud::Dialogflow::V2::Version.
211
+ # p item
212
+ # end
213
+ #
194
214
  def list_versions request, options = nil
195
215
  raise ::ArgumentError, "request must be provided" if request.nil?
196
216
 
@@ -259,6 +279,22 @@ module Google
259
279
  # @return [::Google::Cloud::Dialogflow::V2::Version]
260
280
  #
261
281
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
282
+ #
283
+ # @example Basic example
284
+ # require "google/cloud/dialogflow/v2"
285
+ #
286
+ # # Create a client object. The client can be reused for multiple calls.
287
+ # client = Google::Cloud::Dialogflow::V2::Versions::Rest::Client.new
288
+ #
289
+ # # Create a request. To set request fields, pass in keyword arguments.
290
+ # request = Google::Cloud::Dialogflow::V2::GetVersionRequest.new
291
+ #
292
+ # # Call the get_version method.
293
+ # result = client.get_version request
294
+ #
295
+ # # The returned object is of type Google::Cloud::Dialogflow::V2::Version.
296
+ # p result
297
+ #
262
298
  def get_version request, options = nil
263
299
  raise ::ArgumentError, "request must be provided" if request.nil?
264
300
 
@@ -329,6 +365,22 @@ module Google
329
365
  # @return [::Google::Cloud::Dialogflow::V2::Version]
330
366
  #
331
367
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
368
+ #
369
+ # @example Basic example
370
+ # require "google/cloud/dialogflow/v2"
371
+ #
372
+ # # Create a client object. The client can be reused for multiple calls.
373
+ # client = Google::Cloud::Dialogflow::V2::Versions::Rest::Client.new
374
+ #
375
+ # # Create a request. To set request fields, pass in keyword arguments.
376
+ # request = Google::Cloud::Dialogflow::V2::CreateVersionRequest.new
377
+ #
378
+ # # Call the create_version method.
379
+ # result = client.create_version request
380
+ #
381
+ # # The returned object is of type Google::Cloud::Dialogflow::V2::Version.
382
+ # p result
383
+ #
332
384
  def create_version request, options = nil
333
385
  raise ::ArgumentError, "request must be provided" if request.nil?
334
386
 
@@ -402,6 +454,22 @@ module Google
402
454
  # @return [::Google::Cloud::Dialogflow::V2::Version]
403
455
  #
404
456
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
457
+ #
458
+ # @example Basic example
459
+ # require "google/cloud/dialogflow/v2"
460
+ #
461
+ # # Create a client object. The client can be reused for multiple calls.
462
+ # client = Google::Cloud::Dialogflow::V2::Versions::Rest::Client.new
463
+ #
464
+ # # Create a request. To set request fields, pass in keyword arguments.
465
+ # request = Google::Cloud::Dialogflow::V2::UpdateVersionRequest.new
466
+ #
467
+ # # Call the update_version method.
468
+ # result = client.update_version request
469
+ #
470
+ # # The returned object is of type Google::Cloud::Dialogflow::V2::Version.
471
+ # p result
472
+ #
405
473
  def update_version request, options = nil
406
474
  raise ::ArgumentError, "request must be provided" if request.nil?
407
475
 
@@ -469,6 +537,22 @@ module Google
469
537
  # @return [::Google::Protobuf::Empty]
470
538
  #
471
539
  # @raise [::Google::Cloud::Error] if the REST call is aborted.
540
+ #
541
+ # @example Basic example
542
+ # require "google/cloud/dialogflow/v2"
543
+ #
544
+ # # Create a client object. The client can be reused for multiple calls.
545
+ # client = Google::Cloud::Dialogflow::V2::Versions::Rest::Client.new
546
+ #
547
+ # # Create a request. To set request fields, pass in keyword arguments.
548
+ # request = Google::Cloud::Dialogflow::V2::DeleteVersionRequest.new
549
+ #
550
+ # # Call the delete_version method.
551
+ # result = client.delete_version request
552
+ #
553
+ # # The returned object is of type Google::Protobuf::Empty.
554
+ # p result
555
+ #
472
556
  def delete_version request, options = nil
473
557
  raise ::ArgumentError, "request must be provided" if request.nil?
474
558
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dialogflow-v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.28.0
4
+ version: 0.29.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-09-05 00:00:00.000000000 Z
11
+ date: 2023-09-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.19.1
19
+ version: 0.20.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.19.1
29
+ version: 0.20.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a