google-apis-dialogflow_v3 0.107.0 → 0.109.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6a54a3f4aa2502146d66e8409b3bb16beea3d906cb3c7855c4ec65919c3a5615
|
4
|
+
data.tar.gz: d9216afb7fe495416434555d70e40d4fb5d263fa07f650859b66428955d8e7bf
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8100855da8657edb20853c6a49d8a493560dada6487e60ff3a002d1e6f91e8cb8294b649d6f1279eba4633b00e1488d8ea27d1a0d1055f13c9cd28f5e1bd3006
|
7
|
+
data.tar.gz: 5aeea72663691e20195a7deb017858719dca86db0028031df66caf51da974dac14e48993ac3e62f7a7ade62a66f7a15ba9a2bec0e116aefcf488b32ee33fc03b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,14 @@
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
2
2
|
|
3
|
+
### v0.109.0 (2025-06-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250612
|
6
|
+
|
7
|
+
### v0.108.0 (2025-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250602
|
10
|
+
* Regenerated using generator version 0.18.0
|
11
|
+
|
3
12
|
### v0.107.0 (2025-05-04)
|
4
13
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
@@ -2254,9 +2254,10 @@ module Google
|
|
2254
2254
|
class GoogleCloudDialogflowCxV3EnvironmentVersionConfig
|
2255
2255
|
include Google::Apis::Core::Hashable
|
2256
2256
|
|
2257
|
-
# Required.
|
2257
|
+
# Required. Flow, playbook and tool versions are supported. Format for flow
|
2258
2258
|
# version: projects//locations//agents//flows//versions/. Format for playbook
|
2259
|
-
# version: projects//locations//agents//playbooks//versions/.
|
2259
|
+
# version: projects//locations//agents//playbooks//versions/. Format for tool
|
2260
|
+
# version: projects//locations//agents//tools//versions/.
|
2260
2261
|
# Corresponds to the JSON property `version`
|
2261
2262
|
# @return [String]
|
2262
2263
|
attr_accessor :version
|
@@ -4225,6 +4226,110 @@ module Google
|
|
4225
4226
|
end
|
4226
4227
|
end
|
4227
4228
|
|
4229
|
+
# Handler can be used to define custom logic to be executed based on the user-
|
4230
|
+
# specified triggers.
|
4231
|
+
class GoogleCloudDialogflowCxV3Handler
|
4232
|
+
include Google::Apis::Core::Hashable
|
4233
|
+
|
4234
|
+
# A handler that is triggered by the specified event.
|
4235
|
+
# Corresponds to the JSON property `eventHandler`
|
4236
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerEventHandler]
|
4237
|
+
attr_accessor :event_handler
|
4238
|
+
|
4239
|
+
# A handler that is triggered on the specific lifecycle_stage of the playbook
|
4240
|
+
# execution.
|
4241
|
+
# Corresponds to the JSON property `lifecycleHandler`
|
4242
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerLifecycleHandler]
|
4243
|
+
attr_accessor :lifecycle_handler
|
4244
|
+
|
4245
|
+
def initialize(**args)
|
4246
|
+
update!(**args)
|
4247
|
+
end
|
4248
|
+
|
4249
|
+
# Update properties of this object
|
4250
|
+
def update!(**args)
|
4251
|
+
@event_handler = args[:event_handler] if args.key?(:event_handler)
|
4252
|
+
@lifecycle_handler = args[:lifecycle_handler] if args.key?(:lifecycle_handler)
|
4253
|
+
end
|
4254
|
+
end
|
4255
|
+
|
4256
|
+
# A handler that is triggered by the specified event.
|
4257
|
+
class GoogleCloudDialogflowCxV3HandlerEventHandler
|
4258
|
+
include Google::Apis::Core::Hashable
|
4259
|
+
|
4260
|
+
# Optional. The condition that must be satisfied to trigger this handler.
|
4261
|
+
# Corresponds to the JSON property `condition`
|
4262
|
+
# @return [String]
|
4263
|
+
attr_accessor :condition
|
4264
|
+
|
4265
|
+
# Required. The name of the event that triggers this handler.
|
4266
|
+
# Corresponds to the JSON property `event`
|
4267
|
+
# @return [String]
|
4268
|
+
attr_accessor :event
|
4269
|
+
|
4270
|
+
# A fulfillment can do one or more of the following actions at the same time: *
|
4271
|
+
# Generate rich message responses. * Set parameter values. * Call the webhook.
|
4272
|
+
# Fulfillments can be called at various stages in the Page or Form lifecycle.
|
4273
|
+
# For example, when a DetectIntentRequest drives a session to enter a new page,
|
4274
|
+
# the page's entry fulfillment can add a static response to the QueryResult in
|
4275
|
+
# the returning DetectIntentResponse, call the webhook (for example, to load
|
4276
|
+
# user data from a database), or both.
|
4277
|
+
# Corresponds to the JSON property `fulfillment`
|
4278
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment]
|
4279
|
+
attr_accessor :fulfillment
|
4280
|
+
|
4281
|
+
def initialize(**args)
|
4282
|
+
update!(**args)
|
4283
|
+
end
|
4284
|
+
|
4285
|
+
# Update properties of this object
|
4286
|
+
def update!(**args)
|
4287
|
+
@condition = args[:condition] if args.key?(:condition)
|
4288
|
+
@event = args[:event] if args.key?(:event)
|
4289
|
+
@fulfillment = args[:fulfillment] if args.key?(:fulfillment)
|
4290
|
+
end
|
4291
|
+
end
|
4292
|
+
|
4293
|
+
# A handler that is triggered on the specific lifecycle_stage of the playbook
|
4294
|
+
# execution.
|
4295
|
+
class GoogleCloudDialogflowCxV3HandlerLifecycleHandler
|
4296
|
+
include Google::Apis::Core::Hashable
|
4297
|
+
|
4298
|
+
# Optional. The condition that must be satisfied to trigger this handler.
|
4299
|
+
# Corresponds to the JSON property `condition`
|
4300
|
+
# @return [String]
|
4301
|
+
attr_accessor :condition
|
4302
|
+
|
4303
|
+
# A fulfillment can do one or more of the following actions at the same time: *
|
4304
|
+
# Generate rich message responses. * Set parameter values. * Call the webhook.
|
4305
|
+
# Fulfillments can be called at various stages in the Page or Form lifecycle.
|
4306
|
+
# For example, when a DetectIntentRequest drives a session to enter a new page,
|
4307
|
+
# the page's entry fulfillment can add a static response to the QueryResult in
|
4308
|
+
# the returning DetectIntentResponse, call the webhook (for example, to load
|
4309
|
+
# user data from a database), or both.
|
4310
|
+
# Corresponds to the JSON property `fulfillment`
|
4311
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment]
|
4312
|
+
attr_accessor :fulfillment
|
4313
|
+
|
4314
|
+
# Required. The name of the lifecycle stage that triggers this handler.
|
4315
|
+
# Supported values: * `playbook-start` * `pre-action-selection` * `pre-action-
|
4316
|
+
# execution`
|
4317
|
+
# Corresponds to the JSON property `lifecycleStage`
|
4318
|
+
# @return [String]
|
4319
|
+
attr_accessor :lifecycle_stage
|
4320
|
+
|
4321
|
+
def initialize(**args)
|
4322
|
+
update!(**args)
|
4323
|
+
end
|
4324
|
+
|
4325
|
+
# Update properties of this object
|
4326
|
+
def update!(**args)
|
4327
|
+
@condition = args[:condition] if args.key?(:condition)
|
4328
|
+
@fulfillment = args[:fulfillment] if args.key?(:fulfillment)
|
4329
|
+
@lifecycle_stage = args[:lifecycle_stage] if args.key?(:lifecycle_stage)
|
4330
|
+
end
|
4331
|
+
end
|
4332
|
+
|
4228
4333
|
# Metadata returned for the EntityTypes.ImportEntityTypes long running operation.
|
4229
4334
|
class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
|
4230
4335
|
include Google::Apis::Core::Hashable
|
@@ -5600,6 +5705,33 @@ module Google
|
|
5600
5705
|
end
|
5601
5706
|
end
|
5602
5707
|
|
5708
|
+
# The response message for Tools.ListToolVersions.
|
5709
|
+
class GoogleCloudDialogflowCxV3ListToolVersionsResponse
|
5710
|
+
include Google::Apis::Core::Hashable
|
5711
|
+
|
5712
|
+
# Token to retrieve the next page of results, or empty if there are no more
|
5713
|
+
# results in the list.
|
5714
|
+
# Corresponds to the JSON property `nextPageToken`
|
5715
|
+
# @return [String]
|
5716
|
+
attr_accessor :next_page_token
|
5717
|
+
|
5718
|
+
# The list of tool versions. There will be a maximum number of items returned
|
5719
|
+
# based on the page_size field in the request.
|
5720
|
+
# Corresponds to the JSON property `toolVersions`
|
5721
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion>]
|
5722
|
+
attr_accessor :tool_versions
|
5723
|
+
|
5724
|
+
def initialize(**args)
|
5725
|
+
update!(**args)
|
5726
|
+
end
|
5727
|
+
|
5728
|
+
# Update properties of this object
|
5729
|
+
def update!(**args)
|
5730
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
5731
|
+
@tool_versions = args[:tool_versions] if args.key?(:tool_versions)
|
5732
|
+
end
|
5733
|
+
end
|
5734
|
+
|
5603
5735
|
# The response message for Tools.ListTools.
|
5604
5736
|
class GoogleCloudDialogflowCxV3ListToolsResponse
|
5605
5737
|
include Google::Apis::Core::Hashable
|
@@ -6304,6 +6436,12 @@ module Google
|
|
6304
6436
|
# @return [String]
|
6305
6437
|
attr_accessor :goal
|
6306
6438
|
|
6439
|
+
# Optional. A list of registered handlers to execuate based on the specified
|
6440
|
+
# triggers.
|
6441
|
+
# Corresponds to the JSON property `handlers`
|
6442
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler>]
|
6443
|
+
attr_accessor :handlers
|
6444
|
+
|
6307
6445
|
# Message of the Instruction of the playbook.
|
6308
6446
|
# Corresponds to the JSON property `instruction`
|
6309
6447
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction]
|
@@ -6359,6 +6497,7 @@ module Google
|
|
6359
6497
|
@create_time = args[:create_time] if args.key?(:create_time)
|
6360
6498
|
@display_name = args[:display_name] if args.key?(:display_name)
|
6361
6499
|
@goal = args[:goal] if args.key?(:goal)
|
6500
|
+
@handlers = args[:handlers] if args.key?(:handlers)
|
6362
6501
|
@instruction = args[:instruction] if args.key?(:instruction)
|
6363
6502
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
6364
6503
|
@name = args[:name] if args.key?(:name)
|
@@ -6731,6 +6870,14 @@ module Google
|
|
6731
6870
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings]
|
6732
6871
|
attr_accessor :llm_model_settings
|
6733
6872
|
|
6873
|
+
# Scope for the parameters. If not specified, parameters will be treated as
|
6874
|
+
# session parameters. Parameters with custom scope will not be put into session
|
6875
|
+
# parameters. You can reference the parameters with custom scope in the agent
|
6876
|
+
# with the following format: $parameter-scope.params.parameter-id.
|
6877
|
+
# Corresponds to the JSON property `parameterScope`
|
6878
|
+
# @return [String]
|
6879
|
+
attr_accessor :parameter_scope
|
6880
|
+
|
6734
6881
|
# Additional parameters to be put into session parameters. To remove a parameter
|
6735
6882
|
# from the session, clients should explicitly set the parameter value to null.
|
6736
6883
|
# You can reference the session parameters in the agent with the following
|
@@ -6818,6 +6965,7 @@ module Google
|
|
6818
6965
|
@flow_versions = args[:flow_versions] if args.key?(:flow_versions)
|
6819
6966
|
@geo_location = args[:geo_location] if args.key?(:geo_location)
|
6820
6967
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
6968
|
+
@parameter_scope = args[:parameter_scope] if args.key?(:parameter_scope)
|
6821
6969
|
@parameters = args[:parameters] if args.key?(:parameters)
|
6822
6970
|
@payload = args[:payload] if args.key?(:payload)
|
6823
6971
|
@populate_data_store_connection_signals = args[:populate_data_store_connection_signals] if args.key?(:populate_data_store_connection_signals)
|
@@ -7520,6 +7668,41 @@ module Google
|
|
7520
7668
|
end
|
7521
7669
|
end
|
7522
7670
|
|
7671
|
+
# The request message for Tools.RestoreToolVersion.
|
7672
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionRequest
|
7673
|
+
include Google::Apis::Core::Hashable
|
7674
|
+
|
7675
|
+
def initialize(**args)
|
7676
|
+
update!(**args)
|
7677
|
+
end
|
7678
|
+
|
7679
|
+
# Update properties of this object
|
7680
|
+
def update!(**args)
|
7681
|
+
end
|
7682
|
+
end
|
7683
|
+
|
7684
|
+
# The response message for Tools.RestoreToolVersion.
|
7685
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionResponse
|
7686
|
+
include Google::Apis::Core::Hashable
|
7687
|
+
|
7688
|
+
# A tool provides a list of actions which are available to the Playbook to
|
7689
|
+
# attain its goal. A Tool consists of a description of the tool's usage and a
|
7690
|
+
# specification of the tool which contains the schema and authentication
|
7691
|
+
# information.
|
7692
|
+
# Corresponds to the JSON property `tool`
|
7693
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool]
|
7694
|
+
attr_accessor :tool
|
7695
|
+
|
7696
|
+
def initialize(**args)
|
7697
|
+
update!(**args)
|
7698
|
+
end
|
7699
|
+
|
7700
|
+
# Update properties of this object
|
7701
|
+
def update!(**args)
|
7702
|
+
@tool = args[:tool] if args.key?(:tool)
|
7703
|
+
end
|
7704
|
+
end
|
7705
|
+
|
7523
7706
|
# The configuration for auto rollout.
|
7524
7707
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
7525
7708
|
include Google::Apis::Core::Hashable
|
@@ -9079,6 +9262,53 @@ module Google
|
|
9079
9262
|
end
|
9080
9263
|
end
|
9081
9264
|
|
9265
|
+
# Tool version is a snapshot of the tool at certain timestamp.
|
9266
|
+
class GoogleCloudDialogflowCxV3ToolVersion
|
9267
|
+
include Google::Apis::Core::Hashable
|
9268
|
+
|
9269
|
+
# Output only. Last time the tool version was created or modified.
|
9270
|
+
# Corresponds to the JSON property `createTime`
|
9271
|
+
# @return [String]
|
9272
|
+
attr_accessor :create_time
|
9273
|
+
|
9274
|
+
# Required. The display name of the tool version.
|
9275
|
+
# Corresponds to the JSON property `displayName`
|
9276
|
+
# @return [String]
|
9277
|
+
attr_accessor :display_name
|
9278
|
+
|
9279
|
+
# Identifier. The unique identifier of the tool version. Format: `projects//
|
9280
|
+
# locations//agents//tools//versions/`.
|
9281
|
+
# Corresponds to the JSON property `name`
|
9282
|
+
# @return [String]
|
9283
|
+
attr_accessor :name
|
9284
|
+
|
9285
|
+
# A tool provides a list of actions which are available to the Playbook to
|
9286
|
+
# attain its goal. A Tool consists of a description of the tool's usage and a
|
9287
|
+
# specification of the tool which contains the schema and authentication
|
9288
|
+
# information.
|
9289
|
+
# Corresponds to the JSON property `tool`
|
9290
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool]
|
9291
|
+
attr_accessor :tool
|
9292
|
+
|
9293
|
+
# Output only. Last time the tool version was created or modified.
|
9294
|
+
# Corresponds to the JSON property `updateTime`
|
9295
|
+
# @return [String]
|
9296
|
+
attr_accessor :update_time
|
9297
|
+
|
9298
|
+
def initialize(**args)
|
9299
|
+
update!(**args)
|
9300
|
+
end
|
9301
|
+
|
9302
|
+
# Update properties of this object
|
9303
|
+
def update!(**args)
|
9304
|
+
@create_time = args[:create_time] if args.key?(:create_time)
|
9305
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
9306
|
+
@name = args[:name] if args.key?(:name)
|
9307
|
+
@tool = args[:tool] if args.key?(:tool)
|
9308
|
+
@update_time = args[:update_time] if args.key?(:update_time)
|
9309
|
+
end
|
9310
|
+
end
|
9311
|
+
|
9082
9312
|
# The request message for Flows.TrainFlow.
|
9083
9313
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
9084
9314
|
include Google::Apis::Core::Hashable
|
@@ -11074,9 +11304,10 @@ module Google
|
|
11074
11304
|
class GoogleCloudDialogflowCxV3beta1EnvironmentVersionConfig
|
11075
11305
|
include Google::Apis::Core::Hashable
|
11076
11306
|
|
11077
|
-
# Required.
|
11307
|
+
# Required. Flow, playbook and tool versions are supported. Format for flow
|
11078
11308
|
# version: projects//locations//agents//flows//versions/. Format for playbook
|
11079
|
-
# version: projects//locations//agents//playbooks//versions/.
|
11309
|
+
# version: projects//locations//agents//playbooks//versions/. Format for tool
|
11310
|
+
# version: projects//locations//agents//tools//versions/.
|
11080
11311
|
# Corresponds to the JSON property `version`
|
11081
11312
|
# @return [String]
|
11082
11313
|
attr_accessor :version
|
@@ -17705,7 +17936,7 @@ module Google
|
|
17705
17936
|
class GoogleCloudDialogflowV2ToolCall
|
17706
17937
|
include Google::Apis::Core::Hashable
|
17707
17938
|
|
17708
|
-
#
|
17939
|
+
# Optional. The name of the tool's action associated with this call.
|
17709
17940
|
# Corresponds to the JSON property `action`
|
17710
17941
|
# @return [String]
|
17711
17942
|
attr_accessor :action
|
@@ -17720,7 +17951,7 @@ module Google
|
|
17720
17951
|
# @return [Hash<String,Object>]
|
17721
17952
|
attr_accessor :input_parameters
|
17722
17953
|
|
17723
|
-
#
|
17954
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
17724
17955
|
# tools/`.
|
17725
17956
|
# Corresponds to the JSON property `tool`
|
17726
17957
|
# @return [String]
|
@@ -17743,7 +17974,7 @@ module Google
|
|
17743
17974
|
class GoogleCloudDialogflowV2ToolCallResult
|
17744
17975
|
include Google::Apis::Core::Hashable
|
17745
17976
|
|
17746
|
-
#
|
17977
|
+
# Optional. The name of the tool's action associated with this call.
|
17747
17978
|
# Corresponds to the JSON property `action`
|
17748
17979
|
# @return [String]
|
17749
17980
|
attr_accessor :action
|
@@ -17770,7 +18001,7 @@ module Google
|
|
17770
18001
|
# @return [String]
|
17771
18002
|
attr_accessor :raw_content
|
17772
18003
|
|
17773
|
-
#
|
18004
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
17774
18005
|
# tools/`.
|
17775
18006
|
# Corresponds to the JSON property `tool`
|
17776
18007
|
# @return [String]
|
@@ -21989,7 +22220,7 @@ module Google
|
|
21989
22220
|
class GoogleCloudDialogflowV2beta1ToolCall
|
21990
22221
|
include Google::Apis::Core::Hashable
|
21991
22222
|
|
21992
|
-
#
|
22223
|
+
# Optional. The name of the tool's action associated with this call.
|
21993
22224
|
# Corresponds to the JSON property `action`
|
21994
22225
|
# @return [String]
|
21995
22226
|
attr_accessor :action
|
@@ -22004,7 +22235,7 @@ module Google
|
|
22004
22235
|
# @return [Hash<String,Object>]
|
22005
22236
|
attr_accessor :input_parameters
|
22006
22237
|
|
22007
|
-
#
|
22238
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
22008
22239
|
# tools/`.
|
22009
22240
|
# Corresponds to the JSON property `tool`
|
22010
22241
|
# @return [String]
|
@@ -22027,7 +22258,7 @@ module Google
|
|
22027
22258
|
class GoogleCloudDialogflowV2beta1ToolCallResult
|
22028
22259
|
include Google::Apis::Core::Hashable
|
22029
22260
|
|
22030
|
-
#
|
22261
|
+
# Optional. The name of the tool's action associated with this call.
|
22031
22262
|
# Corresponds to the JSON property `action`
|
22032
22263
|
# @return [String]
|
22033
22264
|
attr_accessor :action
|
@@ -22054,7 +22285,7 @@ module Google
|
|
22054
22285
|
# @return [String]
|
22055
22286
|
attr_accessor :raw_content
|
22056
22287
|
|
22057
|
-
#
|
22288
|
+
# Optional. The tool associated with this call. Format: `projects//locations//
|
22058
22289
|
# tools/`.
|
22059
22290
|
# Corresponds to the JSON property `tool`
|
22060
22291
|
# @return [String]
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.109.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250612"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -676,6 +676,24 @@ module Google
|
|
676
676
|
include Google::Apis::Core::JsonObjectSupport
|
677
677
|
end
|
678
678
|
|
679
|
+
class GoogleCloudDialogflowCxV3Handler
|
680
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
|
+
|
682
|
+
include Google::Apis::Core::JsonObjectSupport
|
683
|
+
end
|
684
|
+
|
685
|
+
class GoogleCloudDialogflowCxV3HandlerEventHandler
|
686
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
687
|
+
|
688
|
+
include Google::Apis::Core::JsonObjectSupport
|
689
|
+
end
|
690
|
+
|
691
|
+
class GoogleCloudDialogflowCxV3HandlerLifecycleHandler
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
679
697
|
class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
|
680
698
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
681
699
|
|
@@ -940,6 +958,12 @@ module Google
|
|
940
958
|
include Google::Apis::Core::JsonObjectSupport
|
941
959
|
end
|
942
960
|
|
961
|
+
class GoogleCloudDialogflowCxV3ListToolVersionsResponse
|
962
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
963
|
+
|
964
|
+
include Google::Apis::Core::JsonObjectSupport
|
965
|
+
end
|
966
|
+
|
943
967
|
class GoogleCloudDialogflowCxV3ListToolsResponse
|
944
968
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
945
969
|
|
@@ -1204,6 +1228,18 @@ module Google
|
|
1204
1228
|
include Google::Apis::Core::JsonObjectSupport
|
1205
1229
|
end
|
1206
1230
|
|
1231
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionRequest
|
1232
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1233
|
+
|
1234
|
+
include Google::Apis::Core::JsonObjectSupport
|
1235
|
+
end
|
1236
|
+
|
1237
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionResponse
|
1238
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1239
|
+
|
1240
|
+
include Google::Apis::Core::JsonObjectSupport
|
1241
|
+
end
|
1242
|
+
|
1207
1243
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
1208
1244
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1209
1245
|
|
@@ -1492,6 +1528,12 @@ module Google
|
|
1492
1528
|
include Google::Apis::Core::JsonObjectSupport
|
1493
1529
|
end
|
1494
1530
|
|
1531
|
+
class GoogleCloudDialogflowCxV3ToolVersion
|
1532
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1533
|
+
|
1534
|
+
include Google::Apis::Core::JsonObjectSupport
|
1535
|
+
end
|
1536
|
+
|
1495
1537
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
1496
1538
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
1497
1539
|
|
@@ -4771,6 +4813,36 @@ module Google
|
|
4771
4813
|
end
|
4772
4814
|
end
|
4773
4815
|
|
4816
|
+
class GoogleCloudDialogflowCxV3Handler
|
4817
|
+
# @private
|
4818
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4819
|
+
property :event_handler, as: 'eventHandler', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerEventHandler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerEventHandler::Representation
|
4820
|
+
|
4821
|
+
property :lifecycle_handler, as: 'lifecycleHandler', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerLifecycleHandler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3HandlerLifecycleHandler::Representation
|
4822
|
+
|
4823
|
+
end
|
4824
|
+
end
|
4825
|
+
|
4826
|
+
class GoogleCloudDialogflowCxV3HandlerEventHandler
|
4827
|
+
# @private
|
4828
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4829
|
+
property :condition, as: 'condition'
|
4830
|
+
property :event, as: 'event'
|
4831
|
+
property :fulfillment, as: 'fulfillment', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment::Representation
|
4832
|
+
|
4833
|
+
end
|
4834
|
+
end
|
4835
|
+
|
4836
|
+
class GoogleCloudDialogflowCxV3HandlerLifecycleHandler
|
4837
|
+
# @private
|
4838
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
4839
|
+
property :condition, as: 'condition'
|
4840
|
+
property :fulfillment, as: 'fulfillment', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Fulfillment::Representation
|
4841
|
+
|
4842
|
+
property :lifecycle_stage, as: 'lifecycleStage'
|
4843
|
+
end
|
4844
|
+
end
|
4845
|
+
|
4774
4846
|
class GoogleCloudDialogflowCxV3ImportEntityTypesMetadata
|
4775
4847
|
# @private
|
4776
4848
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5171,6 +5243,15 @@ module Google
|
|
5171
5243
|
end
|
5172
5244
|
end
|
5173
5245
|
|
5246
|
+
class GoogleCloudDialogflowCxV3ListToolVersionsResponse
|
5247
|
+
# @private
|
5248
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5249
|
+
property :next_page_token, as: 'nextPageToken'
|
5250
|
+
collection :tool_versions, as: 'toolVersions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion::Representation
|
5251
|
+
|
5252
|
+
end
|
5253
|
+
end
|
5254
|
+
|
5174
5255
|
class GoogleCloudDialogflowCxV3ListToolsResponse
|
5175
5256
|
# @private
|
5176
5257
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5352,6 +5433,8 @@ module Google
|
|
5352
5433
|
property :create_time, as: 'createTime'
|
5353
5434
|
property :display_name, as: 'displayName'
|
5354
5435
|
property :goal, as: 'goal'
|
5436
|
+
collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler::Representation
|
5437
|
+
|
5355
5438
|
property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction::Representation
|
5356
5439
|
|
5357
5440
|
property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings::Representation
|
@@ -5465,6 +5548,7 @@ module Google
|
|
5465
5548
|
|
5466
5549
|
property :llm_model_settings, as: 'llmModelSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3LlmModelSettings::Representation
|
5467
5550
|
|
5551
|
+
property :parameter_scope, as: 'parameterScope'
|
5468
5552
|
hash :parameters, as: 'parameters'
|
5469
5553
|
hash :payload, as: 'payload'
|
5470
5554
|
property :populate_data_store_connection_signals, as: 'populateDataStoreConnectionSignals'
|
@@ -5656,6 +5740,20 @@ module Google
|
|
5656
5740
|
end
|
5657
5741
|
end
|
5658
5742
|
|
5743
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionRequest
|
5744
|
+
# @private
|
5745
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5746
|
+
end
|
5747
|
+
end
|
5748
|
+
|
5749
|
+
class GoogleCloudDialogflowCxV3RestoreToolVersionResponse
|
5750
|
+
# @private
|
5751
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
5752
|
+
property :tool, as: 'tool', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool::Representation
|
5753
|
+
|
5754
|
+
end
|
5755
|
+
end
|
5756
|
+
|
5659
5757
|
class GoogleCloudDialogflowCxV3RolloutConfig
|
5660
5758
|
# @private
|
5661
5759
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -6104,6 +6202,18 @@ module Google
|
|
6104
6202
|
end
|
6105
6203
|
end
|
6106
6204
|
|
6205
|
+
class GoogleCloudDialogflowCxV3ToolVersion
|
6206
|
+
# @private
|
6207
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
6208
|
+
property :create_time, as: 'createTime'
|
6209
|
+
property :display_name, as: 'displayName'
|
6210
|
+
property :name, as: 'name'
|
6211
|
+
property :tool, as: 'tool', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Tool::Representation
|
6212
|
+
|
6213
|
+
property :update_time, as: 'updateTime'
|
6214
|
+
end
|
6215
|
+
end
|
6216
|
+
|
6107
6217
|
class GoogleCloudDialogflowCxV3TrainFlowRequest
|
6108
6218
|
# @private
|
6109
6219
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -5098,6 +5098,181 @@ module Google
|
|
5098
5098
|
execute_or_queue_command(command, &block)
|
5099
5099
|
end
|
5100
5100
|
|
5101
|
+
# Creates a version for the specified Tool.
|
5102
|
+
# @param [String] parent
|
5103
|
+
# Required. The tool to create a version for. Format: `projects//locations//
|
5104
|
+
# agents//tools/`.
|
5105
|
+
# @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion] google_cloud_dialogflow_cx_v3_tool_version_object
|
5106
|
+
# @param [String] fields
|
5107
|
+
# Selector specifying which fields to include in a partial response.
|
5108
|
+
# @param [String] quota_user
|
5109
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5110
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5111
|
+
# @param [Google::Apis::RequestOptions] options
|
5112
|
+
# Request-specific options
|
5113
|
+
#
|
5114
|
+
# @yield [result, err] Result & error if block supplied
|
5115
|
+
# @yieldparam result [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion] parsed result object
|
5116
|
+
# @yieldparam err [StandardError] error object if request failed
|
5117
|
+
#
|
5118
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion]
|
5119
|
+
#
|
5120
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5121
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5122
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5123
|
+
def create_project_location_agent_tool_version(parent, google_cloud_dialogflow_cx_v3_tool_version_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
5124
|
+
command = make_simple_command(:post, 'v3/{+parent}/versions', options)
|
5125
|
+
command.request_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion::Representation
|
5126
|
+
command.request_object = google_cloud_dialogflow_cx_v3_tool_version_object
|
5127
|
+
command.response_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion::Representation
|
5128
|
+
command.response_class = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion
|
5129
|
+
command.params['parent'] = parent unless parent.nil?
|
5130
|
+
command.query['fields'] = fields unless fields.nil?
|
5131
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5132
|
+
execute_or_queue_command(command, &block)
|
5133
|
+
end
|
5134
|
+
|
5135
|
+
# Deletes the specified version of the Tool.
|
5136
|
+
# @param [String] name
|
5137
|
+
# Required. The name of the tool version to delete. Format: `projects//locations/
|
5138
|
+
# /agents//tools//versions/`.
|
5139
|
+
# @param [Boolean] force
|
5140
|
+
# Optional. This field has no effect for Tools not being used. For Tools that
|
5141
|
+
# are used: * If `force` is set to false, an error will be returned with message
|
5142
|
+
# indicating the referenced resources. * If `force` is set to true, Dialogflow
|
5143
|
+
# will remove the tool, as well as any references to the tool.
|
5144
|
+
# @param [String] fields
|
5145
|
+
# Selector specifying which fields to include in a partial response.
|
5146
|
+
# @param [String] quota_user
|
5147
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5148
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5149
|
+
# @param [Google::Apis::RequestOptions] options
|
5150
|
+
# Request-specific options
|
5151
|
+
#
|
5152
|
+
# @yield [result, err] Result & error if block supplied
|
5153
|
+
# @yieldparam result [Google::Apis::DialogflowV3::GoogleProtobufEmpty] parsed result object
|
5154
|
+
# @yieldparam err [StandardError] error object if request failed
|
5155
|
+
#
|
5156
|
+
# @return [Google::Apis::DialogflowV3::GoogleProtobufEmpty]
|
5157
|
+
#
|
5158
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5159
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5160
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5161
|
+
def delete_project_location_agent_tool_version(name, force: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5162
|
+
command = make_simple_command(:delete, 'v3/{+name}', options)
|
5163
|
+
command.response_representation = Google::Apis::DialogflowV3::GoogleProtobufEmpty::Representation
|
5164
|
+
command.response_class = Google::Apis::DialogflowV3::GoogleProtobufEmpty
|
5165
|
+
command.params['name'] = name unless name.nil?
|
5166
|
+
command.query['force'] = force unless force.nil?
|
5167
|
+
command.query['fields'] = fields unless fields.nil?
|
5168
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5169
|
+
execute_or_queue_command(command, &block)
|
5170
|
+
end
|
5171
|
+
|
5172
|
+
# Retrieves the specified version of the Tool.
|
5173
|
+
# @param [String] name
|
5174
|
+
# Required. The name of the tool version. Format: `projects//locations//agents//
|
5175
|
+
# tools//versions/`.
|
5176
|
+
# @param [String] fields
|
5177
|
+
# Selector specifying which fields to include in a partial response.
|
5178
|
+
# @param [String] quota_user
|
5179
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5180
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5181
|
+
# @param [Google::Apis::RequestOptions] options
|
5182
|
+
# Request-specific options
|
5183
|
+
#
|
5184
|
+
# @yield [result, err] Result & error if block supplied
|
5185
|
+
# @yieldparam result [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion] parsed result object
|
5186
|
+
# @yieldparam err [StandardError] error object if request failed
|
5187
|
+
#
|
5188
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion]
|
5189
|
+
#
|
5190
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5191
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5192
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5193
|
+
def get_project_location_agent_tool_version(name, fields: nil, quota_user: nil, options: nil, &block)
|
5194
|
+
command = make_simple_command(:get, 'v3/{+name}', options)
|
5195
|
+
command.response_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion::Representation
|
5196
|
+
command.response_class = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolVersion
|
5197
|
+
command.params['name'] = name unless name.nil?
|
5198
|
+
command.query['fields'] = fields unless fields.nil?
|
5199
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5200
|
+
execute_or_queue_command(command, &block)
|
5201
|
+
end
|
5202
|
+
|
5203
|
+
# List versions of the specified Tool.
|
5204
|
+
# @param [String] parent
|
5205
|
+
# Required. The parent of the tool versions. Format: `projects//locations//
|
5206
|
+
# agents//tools/`.
|
5207
|
+
# @param [Fixnum] page_size
|
5208
|
+
# Optional. The maximum number of items to return in a single page. By default
|
5209
|
+
# 100 and at most 1000.
|
5210
|
+
# @param [String] page_token
|
5211
|
+
# Optional. The next_page_token value returned from a previous list request.
|
5212
|
+
# @param [String] fields
|
5213
|
+
# Selector specifying which fields to include in a partial response.
|
5214
|
+
# @param [String] quota_user
|
5215
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5216
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5217
|
+
# @param [Google::Apis::RequestOptions] options
|
5218
|
+
# Request-specific options
|
5219
|
+
#
|
5220
|
+
# @yield [result, err] Result & error if block supplied
|
5221
|
+
# @yieldparam result [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListToolVersionsResponse] parsed result object
|
5222
|
+
# @yieldparam err [StandardError] error object if request failed
|
5223
|
+
#
|
5224
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListToolVersionsResponse]
|
5225
|
+
#
|
5226
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5227
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5228
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5229
|
+
def list_project_location_agent_tool_versions(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
5230
|
+
command = make_simple_command(:get, 'v3/{+parent}/versions', options)
|
5231
|
+
command.response_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListToolVersionsResponse::Representation
|
5232
|
+
command.response_class = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ListToolVersionsResponse
|
5233
|
+
command.params['parent'] = parent unless parent.nil?
|
5234
|
+
command.query['pageSize'] = page_size unless page_size.nil?
|
5235
|
+
command.query['pageToken'] = page_token unless page_token.nil?
|
5236
|
+
command.query['fields'] = fields unless fields.nil?
|
5237
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5238
|
+
execute_or_queue_command(command, &block)
|
5239
|
+
end
|
5240
|
+
|
5241
|
+
# Retrieves the specified version of the Tool and stores it as the current tool
|
5242
|
+
# draft, returning the tool with resources updated.
|
5243
|
+
# @param [String] name
|
5244
|
+
# Required. The name of the tool version. Format: `projects//locations//agents//
|
5245
|
+
# tools//versions/`.
|
5246
|
+
# @param [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionRequest] google_cloud_dialogflow_cx_v3_restore_tool_version_request_object
|
5247
|
+
# @param [String] fields
|
5248
|
+
# Selector specifying which fields to include in a partial response.
|
5249
|
+
# @param [String] quota_user
|
5250
|
+
# Available to use for quota purposes for server-side applications. Can be any
|
5251
|
+
# arbitrary string assigned to a user, but should not exceed 40 characters.
|
5252
|
+
# @param [Google::Apis::RequestOptions] options
|
5253
|
+
# Request-specific options
|
5254
|
+
#
|
5255
|
+
# @yield [result, err] Result & error if block supplied
|
5256
|
+
# @yieldparam result [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionResponse] parsed result object
|
5257
|
+
# @yieldparam err [StandardError] error object if request failed
|
5258
|
+
#
|
5259
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionResponse]
|
5260
|
+
#
|
5261
|
+
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
5262
|
+
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
5263
|
+
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
5264
|
+
def restore_project_location_agent_tool_version(name, google_cloud_dialogflow_cx_v3_restore_tool_version_request_object = nil, fields: nil, quota_user: nil, options: nil, &block)
|
5265
|
+
command = make_simple_command(:post, 'v3/{+name}:restore', options)
|
5266
|
+
command.request_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionRequest::Representation
|
5267
|
+
command.request_object = google_cloud_dialogflow_cx_v3_restore_tool_version_request_object
|
5268
|
+
command.response_representation = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionResponse::Representation
|
5269
|
+
command.response_class = Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3RestoreToolVersionResponse
|
5270
|
+
command.params['name'] = name unless name.nil?
|
5271
|
+
command.query['fields'] = fields unless fields.nil?
|
5272
|
+
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
5273
|
+
execute_or_queue_command(command, &block)
|
5274
|
+
end
|
5275
|
+
|
5101
5276
|
# Creates an TransitionRouteGroup in the specified flow. Note: You should always
|
5102
5277
|
# train a flow prior to sending it queries. See the [training documentation](
|
5103
5278
|
# https://cloud.google.com/dialogflow/cx/docs/concept/training).
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.109.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
@@ -57,7 +57,7 @@ licenses:
|
|
57
57
|
metadata:
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.109.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
73
73
|
- !ruby/object:Gem::Version
|
74
74
|
version: '0'
|
75
75
|
requirements: []
|
76
|
-
rubygems_version: 3.6.
|
76
|
+
rubygems_version: 3.6.9
|
77
77
|
specification_version: 4
|
78
78
|
summary: Simple REST client for Dialogflow API V3
|
79
79
|
test_files: []
|