google-apis-dialogflow_v3 0.25.0 → 0.26.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '09118ab82e6d3cf7dad8fca824febfa5f189397feabac663341cc1e927ac3d76'
4
- data.tar.gz: 459a447023433ddf7ad22ceab3895d3bca07080940e25c689b47c8b0db1452d7
3
+ metadata.gz: ad92708ff8b2498e5b1122f89196d0592428339865c15efd675a364c3d500892
4
+ data.tar.gz: 7c1d5da94b3bd1da57227c050b745486f24b58cef0be36c5e0d4717659d8175f
5
5
  SHA512:
6
- metadata.gz: d16aaac8b6d135bb99c313913c62dd9b49ae05399164f75a21b8d364e53a79ed828d2d2123887c07fdb573c4ff34e3d721738213f64df4f73704a0a256024315
7
- data.tar.gz: f0219e69611ab6f02a33d91dce5fa58fe7c16d6e4e0166e08fd1cf2ac0f97a8e62b272124af01a493a6e62cea2c745373953d9c288b3d0517140562a5dcf66b7
6
+ metadata.gz: 4c85fbf98f378b5f1953a7df8daa8418ae913d16ffa2606358fb34d11c9d5dc394a019f6f77951d5d54b85d70417c8702ed547f561da56b61b691331c35ec49f
7
+ data.tar.gz: aedc55c8d9268e04a23f46e8cfc816ac0c2bfba68f89e8878cc44557e91777e1df8e6f42f8b31b0582fb59fd9a9dc77d1308c56f25bf5f941284ade81f9791f3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.26.0 (2022-01-21)
4
+
5
+ * Regenerated from discovery document revision 20220119
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.25.0 (2022-01-07)
4
9
 
5
10
  * Regenerated from discovery document revision 20211231
@@ -1202,7 +1202,7 @@ module Google
1202
1202
  include Google::Apis::Core::Hashable
1203
1203
 
1204
1204
  # Whether to run test cases in TestCasesConfig.test_cases periodically. Default
1205
- # false. If set to ture, run once a day.
1205
+ # false. If set to true, run once a day.
1206
1206
  # Corresponds to the JSON property `enableContinuousRun`
1207
1207
  # @return [Boolean]
1208
1208
  attr_accessor :enable_continuous_run
@@ -3356,7 +3356,8 @@ module Google
3356
3356
  # @return [Float]
3357
3357
  attr_accessor :confidence
3358
3358
 
3359
- # The event that matched the query. Only filled for `EVENT` match type.
3359
+ # The event that matched the query. Filled for `EVENT`, `NO_MATCH` and `NO_INPUT`
3360
+ # match types.
3360
3361
  # Corresponds to the JSON property `event`
3361
3362
  # @return [String]
3362
3363
  attr_accessor :event
@@ -4739,7 +4740,7 @@ module Google
4739
4740
  attr_accessor :display_name
4740
4741
 
4741
4742
  # Settings for exporting conversations to [Insights](https://cloud.google.com/
4742
- # dialogflow/priv/docs/insights).
4743
+ # contact-center/insights/docs).
4743
4744
  # Corresponds to the JSON property `insightsExportSettings`
4744
4745
  # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings]
4745
4746
  attr_accessor :insights_export_settings
@@ -4810,7 +4811,7 @@ module Google
4810
4811
  end
4811
4812
 
4812
4813
  # Settings for exporting conversations to [Insights](https://cloud.google.com/
4813
- # dialogflow/priv/docs/insights).
4814
+ # contact-center/insights/docs).
4814
4815
  class GoogleCloudDialogflowCxV3SecuritySettingsInsightsExportSettings
4815
4816
  include Google::Apis::Core::Hashable
4816
4817
 
@@ -9551,6 +9552,25 @@ module Google
9551
9552
  end
9552
9553
  end
9553
9554
 
9555
+ # Response message for Documents.ImportDocuments.
9556
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
9557
+ include Google::Apis::Core::Hashable
9558
+
9559
+ # Includes details about skipped documents or any other warnings.
9560
+ # Corresponds to the JSON property `warnings`
9561
+ # @return [Array<Google::Apis::DialogflowV3::GoogleRpcStatus>]
9562
+ attr_accessor :warnings
9563
+
9564
+ def initialize(**args)
9565
+ update!(**args)
9566
+ end
9567
+
9568
+ # Update properties of this object
9569
+ def update!(**args)
9570
+ @warnings = args[:warnings] if args.key?(:warnings)
9571
+ end
9572
+ end
9573
+
9554
9574
  # An intent categorizes an end-user's intention for one conversation turn. For
9555
9575
  # each agent, you define many intents, where your combined intents can handle a
9556
9576
  # complete conversation. When an end-user writes or says something, referred to
@@ -10806,6 +10826,11 @@ module Google
10806
10826
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
10807
10827
  include Google::Apis::Core::Hashable
10808
10828
 
10829
+ # The name of the knowledge base interacted with during the operation.
10830
+ # Corresponds to the JSON property `knowledgeBase`
10831
+ # @return [String]
10832
+ attr_accessor :knowledge_base
10833
+
10809
10834
  # Output only. The current state of this operation.
10810
10835
  # Corresponds to the JSON property `state`
10811
10836
  # @return [String]
@@ -10817,6 +10842,7 @@ module Google
10817
10842
 
10818
10843
  # Update properties of this object
10819
10844
  def update!(**args)
10845
+ @knowledge_base = args[:knowledge_base] if args.key?(:knowledge_base)
10820
10846
  @state = args[:state] if args.key?(:state)
10821
10847
  end
10822
10848
  end
@@ -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.25.0"
19
+ GEM_VERSION = "0.26.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
@@ -1612,6 +1612,12 @@ module Google
1612
1612
  include Google::Apis::Core::JsonObjectSupport
1613
1613
  end
1614
1614
 
1615
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
1616
+ class Representation < Google::Apis::Core::JsonRepresentation; end
1617
+
1618
+ include Google::Apis::Core::JsonObjectSupport
1619
+ end
1620
+
1615
1621
  class GoogleCloudDialogflowV2Intent
1616
1622
  class Representation < Google::Apis::Core::JsonRepresentation; end
1617
1623
 
@@ -5065,6 +5071,14 @@ module Google
5065
5071
  end
5066
5072
  end
5067
5073
 
5074
+ class GoogleCloudDialogflowV2ImportDocumentsResponse
5075
+ # @private
5076
+ class Representation < Google::Apis::Core::JsonRepresentation
5077
+ collection :warnings, as: 'warnings', class: Google::Apis::DialogflowV3::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3::GoogleRpcStatus::Representation
5078
+
5079
+ end
5080
+ end
5081
+
5068
5082
  class GoogleCloudDialogflowV2Intent
5069
5083
  # @private
5070
5084
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5429,6 +5443,7 @@ module Google
5429
5443
  class GoogleCloudDialogflowV2KnowledgeOperationMetadata
5430
5444
  # @private
5431
5445
  class Representation < Google::Apis::Core::JsonRepresentation
5446
+ property :knowledge_base, as: 'knowledgeBase'
5432
5447
  property :state, as: 'state'
5433
5448
  end
5434
5449
  end
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.25.0
4
+ version: 0.26.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_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.25.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.26.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
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 V3