google-apis-dialogflow_v2beta1 0.71.0 → 0.72.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 695448f09fda86c2b82654d387ab92c9e939571e03feff28651b2bc3d39535a5
|
4
|
+
data.tar.gz: 9471fc67f96f36ae0338e8247d497268eae59db52e4d7a2bce7b837cc0d9b0c3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c07e2f0f36ffc2973240be4d192f8708d6e47abf08dab11583ec8d5c91bb59a31bb81b16fc45293033bedfff3ec32f9c679b7c3b1a626731af0f7d659ee5000f
|
7
|
+
data.tar.gz: c05e7746efeb881fd9c9840cea1a5cd69ea082cf645bf6456675ef86fd80e1f9e674f82f5e6d741d68c13d6fee72ae3f591ef0464f014c7122e972644f7c8c80
|
data/CHANGELOG.md
CHANGED
@@ -7704,37 +7704,6 @@ module Google
|
|
7704
7704
|
end
|
7705
7705
|
end
|
7706
7706
|
|
7707
|
-
# A customer-managed encryption key specification that can be applied to all
|
7708
|
-
# created resources (e.g. Conversation).
|
7709
|
-
class GoogleCloudDialogflowV2EncryptionSpec
|
7710
|
-
include Google::Apis::Core::Hashable
|
7711
|
-
|
7712
|
-
# Required. The name of customer-managed encryption key that is used to secure a
|
7713
|
-
# resource and its sub-resources. If empty, the resource is secured by the
|
7714
|
-
# default Google encryption key. Only the key in the same location as this
|
7715
|
-
# resource is allowed to be used for encryption. Format: `projects/`project`/
|
7716
|
-
# locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
|
7717
|
-
# Corresponds to the JSON property `kmsKey`
|
7718
|
-
# @return [String]
|
7719
|
-
attr_accessor :kms_key
|
7720
|
-
|
7721
|
-
# Immutable. The resource name of the encryption key specification resource.
|
7722
|
-
# Format: projects/`project`/locations/`location`/encryptionSpec
|
7723
|
-
# Corresponds to the JSON property `name`
|
7724
|
-
# @return [String]
|
7725
|
-
attr_accessor :name
|
7726
|
-
|
7727
|
-
def initialize(**args)
|
7728
|
-
update!(**args)
|
7729
|
-
end
|
7730
|
-
|
7731
|
-
# Update properties of this object
|
7732
|
-
def update!(**args)
|
7733
|
-
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
7734
|
-
@name = args[:name] if args.key?(:name)
|
7735
|
-
end
|
7736
|
-
end
|
7737
|
-
|
7738
7707
|
# Each intent parameter has a type, called the entity type, which dictates
|
7739
7708
|
# exactly how data from an end-user expression is extracted. Dialogflow provides
|
7740
7709
|
# predefined system entities that can match many common types of data. For
|
@@ -8109,45 +8078,6 @@ module Google
|
|
8109
8078
|
end
|
8110
8079
|
end
|
8111
8080
|
|
8112
|
-
# Metadata for initializing a location-level encryption specification.
|
8113
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
|
8114
|
-
include Google::Apis::Core::Hashable
|
8115
|
-
|
8116
|
-
# The request to initialize a location-level encryption specification.
|
8117
|
-
# Corresponds to the JSON property `request`
|
8118
|
-
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest]
|
8119
|
-
attr_accessor :request
|
8120
|
-
|
8121
|
-
def initialize(**args)
|
8122
|
-
update!(**args)
|
8123
|
-
end
|
8124
|
-
|
8125
|
-
# Update properties of this object
|
8126
|
-
def update!(**args)
|
8127
|
-
@request = args[:request] if args.key?(:request)
|
8128
|
-
end
|
8129
|
-
end
|
8130
|
-
|
8131
|
-
# The request to initialize a location-level encryption specification.
|
8132
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
|
8133
|
-
include Google::Apis::Core::Hashable
|
8134
|
-
|
8135
|
-
# A customer-managed encryption key specification that can be applied to all
|
8136
|
-
# created resources (e.g. Conversation).
|
8137
|
-
# Corresponds to the JSON property `encryptionSpec`
|
8138
|
-
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec]
|
8139
|
-
attr_accessor :encryption_spec
|
8140
|
-
|
8141
|
-
def initialize(**args)
|
8142
|
-
update!(**args)
|
8143
|
-
end
|
8144
|
-
|
8145
|
-
# Update properties of this object
|
8146
|
-
def update!(**args)
|
8147
|
-
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
8148
|
-
end
|
8149
|
-
end
|
8150
|
-
|
8151
8081
|
# InputDataset used to create model or do evaluation. NextID:5
|
8152
8082
|
class GoogleCloudDialogflowV2InputDataset
|
8153
8083
|
include Google::Apis::Core::Hashable
|
@@ -12162,37 +12092,6 @@ module Google
|
|
12162
12092
|
end
|
12163
12093
|
end
|
12164
12094
|
|
12165
|
-
# A customer-managed encryption key specification that can be applied to all
|
12166
|
-
# created resources (e.g. Conversation).
|
12167
|
-
class GoogleCloudDialogflowV2beta1EncryptionSpec
|
12168
|
-
include Google::Apis::Core::Hashable
|
12169
|
-
|
12170
|
-
# Required. The name of customer-managed encryption key that is used to secure a
|
12171
|
-
# resource and its sub-resources. If empty, the resource is secured by the
|
12172
|
-
# default Google encryption key. Only the key in the same location as this
|
12173
|
-
# resource is allowed to be used for encryption. Format: `projects/`project`/
|
12174
|
-
# locations/`location`/keyRings/`keyRing`/cryptoKeys/`key``
|
12175
|
-
# Corresponds to the JSON property `kmsKey`
|
12176
|
-
# @return [String]
|
12177
|
-
attr_accessor :kms_key
|
12178
|
-
|
12179
|
-
# Immutable. The resource name of the encryption key specification resource.
|
12180
|
-
# Format: projects/`project`/locations/`location`/encryptionSpec
|
12181
|
-
# Corresponds to the JSON property `name`
|
12182
|
-
# @return [String]
|
12183
|
-
attr_accessor :name
|
12184
|
-
|
12185
|
-
def initialize(**args)
|
12186
|
-
update!(**args)
|
12187
|
-
end
|
12188
|
-
|
12189
|
-
# Update properties of this object
|
12190
|
-
def update!(**args)
|
12191
|
-
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
12192
|
-
@name = args[:name] if args.key?(:name)
|
12193
|
-
end
|
12194
|
-
end
|
12195
|
-
|
12196
12095
|
# Each intent parameter has a type, called the entity type, which dictates
|
12197
12096
|
# exactly how data from an end-user expression is extracted. Dialogflow provides
|
12198
12097
|
# predefined system entities that can match many common types of data. For
|
@@ -13217,6 +13116,13 @@ module Google
|
|
13217
13116
|
# @return [Fixnum]
|
13218
13117
|
attr_accessor :max_results
|
13219
13118
|
|
13119
|
+
# Custom sections to return when requesting a summary of a conversation. This is
|
13120
|
+
# only supported when `baseline_model_version` == '2.0'. Supported features:
|
13121
|
+
# CONVERSATION_SUMMARIZATION, CONVERSATION_SUMMARIZATION_VOICE.
|
13122
|
+
# Corresponds to the JSON property `sections`
|
13123
|
+
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections]
|
13124
|
+
attr_accessor :sections
|
13125
|
+
|
13220
13126
|
def initialize(**args)
|
13221
13127
|
update!(**args)
|
13222
13128
|
end
|
@@ -13229,6 +13135,7 @@ module Google
|
|
13229
13135
|
@document_query_source = args[:document_query_source] if args.key?(:document_query_source)
|
13230
13136
|
@knowledge_base_query_source = args[:knowledge_base_query_source] if args.key?(:knowledge_base_query_source)
|
13231
13137
|
@max_results = args[:max_results] if args.key?(:max_results)
|
13138
|
+
@sections = args[:sections] if args.key?(:sections)
|
13232
13139
|
end
|
13233
13140
|
end
|
13234
13141
|
|
@@ -13356,6 +13263,30 @@ module Google
|
|
13356
13263
|
end
|
13357
13264
|
end
|
13358
13265
|
|
13266
|
+
# Custom sections to return when requesting a summary of a conversation. This is
|
13267
|
+
# only supported when `baseline_model_version` == '2.0'. Supported features:
|
13268
|
+
# CONVERSATION_SUMMARIZATION, CONVERSATION_SUMMARIZATION_VOICE.
|
13269
|
+
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
|
13270
|
+
include Google::Apis::Core::Hashable
|
13271
|
+
|
13272
|
+
# The selected sections chosen to return when requesting a summary of a
|
13273
|
+
# conversation. A duplicate selected section will be treated as a single
|
13274
|
+
# selected section. If section types are not provided, the default will be `
|
13275
|
+
# SITUATION, ACTION, RESULT`.
|
13276
|
+
# Corresponds to the JSON property `sectionTypes`
|
13277
|
+
# @return [Array<String>]
|
13278
|
+
attr_accessor :section_types
|
13279
|
+
|
13280
|
+
def initialize(**args)
|
13281
|
+
update!(**args)
|
13282
|
+
end
|
13283
|
+
|
13284
|
+
# Update properties of this object
|
13285
|
+
def update!(**args)
|
13286
|
+
@section_types = args[:section_types] if args.key?(:section_types)
|
13287
|
+
end
|
13288
|
+
end
|
13289
|
+
|
13359
13290
|
# Settings of suggestion trigger.
|
13360
13291
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
|
13361
13292
|
include Google::Apis::Core::Hashable
|
@@ -13625,45 +13556,6 @@ module Google
|
|
13625
13556
|
end
|
13626
13557
|
end
|
13627
13558
|
|
13628
|
-
# Metadata for initializing a location-level encryption specification.
|
13629
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
|
13630
|
-
include Google::Apis::Core::Hashable
|
13631
|
-
|
13632
|
-
# The request to initialize a location-level encryption specification.
|
13633
|
-
# Corresponds to the JSON property `request`
|
13634
|
-
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest]
|
13635
|
-
attr_accessor :request
|
13636
|
-
|
13637
|
-
def initialize(**args)
|
13638
|
-
update!(**args)
|
13639
|
-
end
|
13640
|
-
|
13641
|
-
# Update properties of this object
|
13642
|
-
def update!(**args)
|
13643
|
-
@request = args[:request] if args.key?(:request)
|
13644
|
-
end
|
13645
|
-
end
|
13646
|
-
|
13647
|
-
# The request to initialize a location-level encryption specification.
|
13648
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
|
13649
|
-
include Google::Apis::Core::Hashable
|
13650
|
-
|
13651
|
-
# A customer-managed encryption key specification that can be applied to all
|
13652
|
-
# created resources (e.g. Conversation).
|
13653
|
-
# Corresponds to the JSON property `encryptionSpec`
|
13654
|
-
# @return [Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec]
|
13655
|
-
attr_accessor :encryption_spec
|
13656
|
-
|
13657
|
-
def initialize(**args)
|
13658
|
-
update!(**args)
|
13659
|
-
end
|
13660
|
-
|
13661
|
-
# Update properties of this object
|
13662
|
-
def update!(**args)
|
13663
|
-
@encryption_spec = args[:encryption_spec] if args.key?(:encryption_spec)
|
13664
|
-
end
|
13665
|
-
end
|
13666
|
-
|
13667
13559
|
# Instructs the speech recognizer on how to process the audio content.
|
13668
13560
|
class GoogleCloudDialogflowV2beta1InputAudioConfig
|
13669
13561
|
include Google::Apis::Core::Hashable
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.72.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20231129"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -1300,12 +1300,6 @@ module Google
|
|
1300
1300
|
include Google::Apis::Core::JsonObjectSupport
|
1301
1301
|
end
|
1302
1302
|
|
1303
|
-
class GoogleCloudDialogflowV2EncryptionSpec
|
1304
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1305
|
-
|
1306
|
-
include Google::Apis::Core::JsonObjectSupport
|
1307
|
-
end
|
1308
|
-
|
1309
1303
|
class GoogleCloudDialogflowV2EntityType
|
1310
1304
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1311
1305
|
|
@@ -1372,18 +1366,6 @@ module Google
|
|
1372
1366
|
include Google::Apis::Core::JsonObjectSupport
|
1373
1367
|
end
|
1374
1368
|
|
1375
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
|
1376
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1377
|
-
|
1378
|
-
include Google::Apis::Core::JsonObjectSupport
|
1379
|
-
end
|
1380
|
-
|
1381
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
|
1382
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1383
|
-
|
1384
|
-
include Google::Apis::Core::JsonObjectSupport
|
1385
|
-
end
|
1386
|
-
|
1387
1369
|
class GoogleCloudDialogflowV2InputDataset
|
1388
1370
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1389
1371
|
|
@@ -1960,12 +1942,6 @@ module Google
|
|
1960
1942
|
include Google::Apis::Core::JsonObjectSupport
|
1961
1943
|
end
|
1962
1944
|
|
1963
|
-
class GoogleCloudDialogflowV2beta1EncryptionSpec
|
1964
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1965
|
-
|
1966
|
-
include Google::Apis::Core::JsonObjectSupport
|
1967
|
-
end
|
1968
|
-
|
1969
1945
|
class GoogleCloudDialogflowV2beta1EntityType
|
1970
1946
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1971
1947
|
|
@@ -2164,6 +2140,12 @@ module Google
|
|
2164
2140
|
include Google::Apis::Core::JsonObjectSupport
|
2165
2141
|
end
|
2166
2142
|
|
2143
|
+
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
|
2144
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2145
|
+
|
2146
|
+
include Google::Apis::Core::JsonObjectSupport
|
2147
|
+
end
|
2148
|
+
|
2167
2149
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
|
2168
2150
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2169
2151
|
|
@@ -2218,18 +2200,6 @@ module Google
|
|
2218
2200
|
include Google::Apis::Core::JsonObjectSupport
|
2219
2201
|
end
|
2220
2202
|
|
2221
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
|
2222
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2223
|
-
|
2224
|
-
include Google::Apis::Core::JsonObjectSupport
|
2225
|
-
end
|
2226
|
-
|
2227
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
|
2228
|
-
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2229
|
-
|
2230
|
-
include Google::Apis::Core::JsonObjectSupport
|
2231
|
-
end
|
2232
|
-
|
2233
2203
|
class GoogleCloudDialogflowV2beta1InputAudioConfig
|
2234
2204
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2235
2205
|
|
@@ -5203,14 +5173,6 @@ module Google
|
|
5203
5173
|
end
|
5204
5174
|
end
|
5205
5175
|
|
5206
|
-
class GoogleCloudDialogflowV2EncryptionSpec
|
5207
|
-
# @private
|
5208
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5209
|
-
property :kms_key, as: 'kmsKey'
|
5210
|
-
property :name, as: 'name'
|
5211
|
-
end
|
5212
|
-
end
|
5213
|
-
|
5214
5176
|
class GoogleCloudDialogflowV2EntityType
|
5215
5177
|
# @private
|
5216
5178
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5312,22 +5274,6 @@ module Google
|
|
5312
5274
|
end
|
5313
5275
|
end
|
5314
5276
|
|
5315
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecMetadata
|
5316
|
-
# @private
|
5317
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5318
|
-
property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2InitializeEncryptionSpecRequest::Representation
|
5319
|
-
|
5320
|
-
end
|
5321
|
-
end
|
5322
|
-
|
5323
|
-
class GoogleCloudDialogflowV2InitializeEncryptionSpecRequest
|
5324
|
-
# @private
|
5325
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
5326
|
-
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2EncryptionSpec::Representation
|
5327
|
-
|
5328
|
-
end
|
5329
|
-
end
|
5330
|
-
|
5331
5277
|
class GoogleCloudDialogflowV2InputDataset
|
5332
5278
|
# @private
|
5333
5279
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6391,14 +6337,6 @@ module Google
|
|
6391
6337
|
end
|
6392
6338
|
end
|
6393
6339
|
|
6394
|
-
class GoogleCloudDialogflowV2beta1EncryptionSpec
|
6395
|
-
# @private
|
6396
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6397
|
-
property :kms_key, as: 'kmsKey'
|
6398
|
-
property :name, as: 'name'
|
6399
|
-
end
|
6400
|
-
end
|
6401
|
-
|
6402
6340
|
class GoogleCloudDialogflowV2beta1EntityType
|
6403
6341
|
# @private
|
6404
6342
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6674,6 +6612,8 @@ module Google
|
|
6674
6612
|
property :knowledge_base_query_source, as: 'knowledgeBaseQuerySource', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySource, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigKnowledgeBaseQuerySource::Representation
|
6675
6613
|
|
6676
6614
|
property :max_results, as: 'maxResults'
|
6615
|
+
property :sections, as: 'sections', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections::Representation
|
6616
|
+
|
6677
6617
|
end
|
6678
6618
|
end
|
6679
6619
|
|
@@ -6716,6 +6656,13 @@ module Google
|
|
6716
6656
|
end
|
6717
6657
|
end
|
6718
6658
|
|
6659
|
+
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionQueryConfigSections
|
6660
|
+
# @private
|
6661
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6662
|
+
collection :section_types, as: 'sectionTypes'
|
6663
|
+
end
|
6664
|
+
end
|
6665
|
+
|
6719
6666
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantConfigSuggestionTriggerSettings
|
6720
6667
|
# @private
|
6721
6668
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6797,22 +6744,6 @@ module Google
|
|
6797
6744
|
end
|
6798
6745
|
end
|
6799
6746
|
|
6800
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecMetadata
|
6801
|
-
# @private
|
6802
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6803
|
-
property :request, as: 'request', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest::Representation
|
6804
|
-
|
6805
|
-
end
|
6806
|
-
end
|
6807
|
-
|
6808
|
-
class GoogleCloudDialogflowV2beta1InitializeEncryptionSpecRequest
|
6809
|
-
# @private
|
6810
|
-
class Representation < Google::Apis::Core::JsonRepresentation
|
6811
|
-
property :encryption_spec, as: 'encryptionSpec', class: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec, decorator: Google::Apis::DialogflowV2beta1::GoogleCloudDialogflowV2beta1EncryptionSpec::Representation
|
6812
|
-
|
6813
|
-
end
|
6814
|
-
end
|
6815
|
-
|
6816
6747
|
class GoogleCloudDialogflowV2beta1InputAudioConfig
|
6817
6748
|
# @private
|
6818
6749
|
class Representation < Google::Apis::Core::JsonRepresentation
|
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.
|
4
|
+
version: 0.72.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-
|
11
|
+
date: 2023-12-03 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.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v2beta1/v0.72.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: []
|