google-apis-dialogflow_v2beta1 0.26.0 → 0.27.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: ea809a742fbb6e5dba4de62211aa08865ef2413159632c0c4c5619612124c1a3
4
- data.tar.gz: 1a6f818cd4d3f9577430c6ea0215fc049fab1f1bb67dcaf9af9886253019fdde
3
+ metadata.gz: 93ba2eb6ece1c3c7f880e70677c6bd44a0b30917ca2738b9ef346a46ad433e16
4
+ data.tar.gz: 40006681489ba9fd8137d123ac848f9faed346c92b2720a9ed6692df84f3d141
5
5
  SHA512:
6
- metadata.gz: 657c625fd24b3e51b509906054d2aa155990c390dd524350349096a8bdc360798bce27b74bd210ac59fb84a775939288fa3878b0e4db2fb9ec333bd94044c842
7
- data.tar.gz: 6f32cd40e1b5e7694f12d0a92d946b54d7bbe225e3ecc77c384089073f1816554c035069c9beb0a6f9dc3c8231fbb3cf271461ed1222b51d01a0b8d01293980b
6
+ metadata.gz: 38ee288834539628a3530469ff74f7c3c9a53d287b03845dd6925f489686a73e8fc28f3ee5fc22059ccb7892992b468e19fe2760ae83934b9f8a4d5767544460
7
+ data.tar.gz: 9caf88210751bd413c3de338eb507602c03608abeda02ef8d5537692e5c331a5aaf3c3000de5080d6db4057f00ea40fcbade493535172da6dce0372091e0c1f1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v2beta1
2
2
 
3
+ ### v0.27.0 (2022-01-21)
4
+
5
+ * Regenerated from discovery document revision 20220119
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.26.0 (2022-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20211231
@@ -476,7 +476,7 @@ module Google
476
476
  include Google::Apis::Core::Hashable
477
477
 
478
478
  # Whether to run test cases in TestCasesConfig.test_cases periodically. Default
479
- # false. If set to ture, run once a day.
479
+ # false. If set to true, run once a day.
480
480
  # Corresponds to the JSON property `enableContinuousRun`
481
481
  # @return [Boolean]
482
482
  attr_accessor :enable_continuous_run
@@ -5992,6 +5992,25 @@ module Google
5992
5992
  end
5993
5993
  end
5994
5994
 
5995
+ # Response message for Documents.ImportDocuments.
5996
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
5997
+ include Google::Apis::Core::Hashable
5998
+
5999
+ # Includes details about skipped documents or any other warnings.
6000
+ # Corresponds to the JSON property `warnings`
6001
+ # @return [Array<Google::Apis::DialogflowV2beta1::GoogleRpcStatus>]
6002
+ attr_accessor :warnings
6003
+
6004
+ def initialize(**args)
6005
+ update!(**args)
6006
+ end
6007
+
6008
+ # Update properties of this object
6009
+ def update!(**args)
6010
+ @warnings = args[:warnings] if args.key?(:warnings)
6011
+ end
6012
+ end
6013
+
5995
6014
  # An intent categorizes an end-user's intention for one conversation turn. For
5996
6015
  # each agent, you define many intents, where your combined intents can handle a
5997
6016
  # complete conversation. When an end-user writes or says something, referred to
@@ -7247,6 +7266,11 @@ module Google
7247
7266
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
7248
7267
  include Google::Apis::Core::Hashable
7249
7268
 
7269
+ # The name of the knowledge base interacted with during the operation.
7270
+ # Corresponds to the JSON property `knowledgeBase`
7271
+ # @return [String]
7272
+ attr_accessor :knowledge_base
7273
+
7250
7274
  # Output only. The current state of this operation.
7251
7275
  # Corresponds to the JSON property `state`
7252
7276
  # @return [String]
@@ -7258,6 +7282,7 @@ module Google
7258
7282
 
7259
7283
  # Update properties of this object
7260
7284
  def update!(**args)
7285
+ @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
7261
7286
  @state = args[:state] if args.key?(:state)
7262
7287
  end
7263
7288
  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.26.0"
19
+ GEM_VERSION = "0.27.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20211231"
25
+ REVISION = "20220119"
26
26
  end
27
27
  end
28
28
  end
@@ -1042,6 +1042,12 @@ module Google
1042
1042
  include Google::Apis::Core::JsonObjectSupport
1043
1043
  end
1044
1044
 
1045
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
1046
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1047
+
1048
+ include Google::Apis::Core::JsonObjectSupport
1049
+ end
1050
+
1045
1051
  class GoogleCloudDialogflowV2Intent
1046
1052
  class Representation < Google::Apis::Core::JsonRepresentation; end
1047
1053
 
@@ -4204,6 +4210,14 @@ module Google
4204
4210
  end
4205
4211
  end
4206
4212
 
4213
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
4214
+ # @private
4215
+ class Representation < Google::Apis::Core::JsonRepresentation
4216
+ collection :warnings, as: 'warnings', class: Google::Apis::DialogflowV2beta1::GoogleRpcStatus, decorator: Google::Apis::DialogflowV2beta1::GoogleRpcStatus::Representation
4217
+
4218
+ end
4219
+ end
4220
+
4207
4221
  class GoogleCloudDialogflowV2Intent
4208
4222
  # @private
4209
4223
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -4568,6 +4582,7 @@ module Google
4568
4582
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
4569
4583
  # @private
4570
4584
  class Representation < Google::Apis::Core::JsonRepresentation
4585
+ property :knowledge_base, as: 'knowledgeBase'
4571
4586
  property :state, as: 'state'
4572
4587
  end
4573
4588
  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.26.0
4
+ version: 0.27.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: 2022-01-10 00:00:00.000000000 Z
11
+ date: 2022-01-24 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.26.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.27.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Dialogflow API V2beta1