google-apis-dialogflow_v3beta1 0.95.0 → 0.96.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: c0bfb876f06e6a9693c2e6e4bc1c8a2adacdd2fec41fe04bbc2395b575305388
|
4
|
+
data.tar.gz: dd7f2e0d38b8700ca30b266a1e8666dcba3e2b5f0ebbdb8508c288293bd3f2ec
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aa399f65e19f56edd21e46f19faaaf52c33ed230d6d0f0d8a9127d3a715143629eb86e319f65dbba4233290f3f4ae73fe4a2fedc71f4d3c6654dfb7bb1de7359
|
7
|
+
data.tar.gz: 0252e09fedc67ea542068729af28f307f1c52798fcf1a0919d33ce169c11189f157491c8d2fde7067baaa3bc913659de11fba0bc93f1ce4945b86f11538303bd
|
data/CHANGELOG.md
CHANGED
@@ -13038,6 +13038,11 @@ module Google
|
|
13038
13038
|
class GoogleCloudDialogflowCxV3beta1Tool
|
13039
13039
|
include Google::Apis::Core::Hashable
|
13040
13040
|
|
13041
|
+
# A ConnectorTool enabling using Integration Connectors Connections as tools.
|
13042
|
+
# Corresponds to the JSON property `connectorSpec`
|
13043
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool]
|
13044
|
+
attr_accessor :connector_spec
|
13045
|
+
|
13041
13046
|
# A DataStoreTool is a way to provide specifications needed to search a list of
|
13042
13047
|
# data stores.
|
13043
13048
|
# Corresponds to the JSON property `dataStoreSpec`
|
@@ -13087,6 +13092,7 @@ module Google
|
|
13087
13092
|
|
13088
13093
|
# Update properties of this object
|
13089
13094
|
def update!(**args)
|
13095
|
+
@connector_spec = args[:connector_spec] if args.key?(:connector_spec)
|
13090
13096
|
@data_store_spec = args[:data_store_spec] if args.key?(:data_store_spec)
|
13091
13097
|
@description = args[:description] if args.key?(:description)
|
13092
13098
|
@display_name = args[:display_name] if args.key?(:display_name)
|
@@ -13348,6 +13354,108 @@ module Google
|
|
13348
13354
|
end
|
13349
13355
|
end
|
13350
13356
|
|
13357
|
+
# A ConnectorTool enabling using Integration Connectors Connections as tools.
|
13358
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
13359
|
+
include Google::Apis::Core::Hashable
|
13360
|
+
|
13361
|
+
# Required. Actions for the tool to use.
|
13362
|
+
# Corresponds to the JSON property `actions`
|
13363
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction>]
|
13364
|
+
attr_accessor :actions
|
13365
|
+
|
13366
|
+
# End-user authentication configuration used for Connection calls. The field
|
13367
|
+
# values can either be hardcoded authentication values or the names of [session
|
13368
|
+
# parameters](https://cloud.google.com/dialogflow/cx/docs/concept/parameter#
|
13369
|
+
# session-ref) or [request parameters](https://cloud.google.com/dialogflow/cx/
|
13370
|
+
# docs/concept/parameter#request-scoped). If parameter names are provided, then
|
13371
|
+
# those parameters can be used to pass the authentication values dynamically,
|
13372
|
+
# through `$session.params.param-id` or `$request.payload.param-id`.
|
13373
|
+
# Corresponds to the JSON property `endUserAuthConfig`
|
13374
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig]
|
13375
|
+
attr_accessor :end_user_auth_config
|
13376
|
+
|
13377
|
+
# Required. The full resource name of the referenced Integration Connectors
|
13378
|
+
# Connection. Format: `projects/*/locations/*/connections/*`
|
13379
|
+
# Corresponds to the JSON property `name`
|
13380
|
+
# @return [String]
|
13381
|
+
attr_accessor :name
|
13382
|
+
|
13383
|
+
def initialize(**args)
|
13384
|
+
update!(**args)
|
13385
|
+
end
|
13386
|
+
|
13387
|
+
# Update properties of this object
|
13388
|
+
def update!(**args)
|
13389
|
+
@actions = args[:actions] if args.key?(:actions)
|
13390
|
+
@end_user_auth_config = args[:end_user_auth_config] if args.key?(:end_user_auth_config)
|
13391
|
+
@name = args[:name] if args.key?(:name)
|
13392
|
+
end
|
13393
|
+
end
|
13394
|
+
|
13395
|
+
# Configuration of a Connection operation for the tool to use.
|
13396
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
13397
|
+
include Google::Apis::Core::Hashable
|
13398
|
+
|
13399
|
+
# ID of a Connection action for the tool to use.
|
13400
|
+
# Corresponds to the JSON property `connectionActionId`
|
13401
|
+
# @return [String]
|
13402
|
+
attr_accessor :connection_action_id
|
13403
|
+
|
13404
|
+
# Entity CRUD operation specification.
|
13405
|
+
# Corresponds to the JSON property `entityOperation`
|
13406
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation]
|
13407
|
+
attr_accessor :entity_operation
|
13408
|
+
|
13409
|
+
# Optional. Entity fields to use as inputs for the operation. If no fields are
|
13410
|
+
# specified, all fields of the Entity will be used.
|
13411
|
+
# Corresponds to the JSON property `inputFields`
|
13412
|
+
# @return [Array<String>]
|
13413
|
+
attr_accessor :input_fields
|
13414
|
+
|
13415
|
+
# Optional. Entity fields to return from the operation. If no fields are
|
13416
|
+
# specified, all fields of the Entity will be returned.
|
13417
|
+
# Corresponds to the JSON property `outputFields`
|
13418
|
+
# @return [Array<String>]
|
13419
|
+
attr_accessor :output_fields
|
13420
|
+
|
13421
|
+
def initialize(**args)
|
13422
|
+
update!(**args)
|
13423
|
+
end
|
13424
|
+
|
13425
|
+
# Update properties of this object
|
13426
|
+
def update!(**args)
|
13427
|
+
@connection_action_id = args[:connection_action_id] if args.key?(:connection_action_id)
|
13428
|
+
@entity_operation = args[:entity_operation] if args.key?(:entity_operation)
|
13429
|
+
@input_fields = args[:input_fields] if args.key?(:input_fields)
|
13430
|
+
@output_fields = args[:output_fields] if args.key?(:output_fields)
|
13431
|
+
end
|
13432
|
+
end
|
13433
|
+
|
13434
|
+
# Entity CRUD operation specification.
|
13435
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
13436
|
+
include Google::Apis::Core::Hashable
|
13437
|
+
|
13438
|
+
# Required. ID of the entity.
|
13439
|
+
# Corresponds to the JSON property `entityId`
|
13440
|
+
# @return [String]
|
13441
|
+
attr_accessor :entity_id
|
13442
|
+
|
13443
|
+
# Required. Operation to perform on the entity.
|
13444
|
+
# Corresponds to the JSON property `operation`
|
13445
|
+
# @return [String]
|
13446
|
+
attr_accessor :operation
|
13447
|
+
|
13448
|
+
def initialize(**args)
|
13449
|
+
update!(**args)
|
13450
|
+
end
|
13451
|
+
|
13452
|
+
# Update properties of this object
|
13453
|
+
def update!(**args)
|
13454
|
+
@entity_id = args[:entity_id] if args.key?(:entity_id)
|
13455
|
+
@operation = args[:operation] if args.key?(:operation)
|
13456
|
+
end
|
13457
|
+
end
|
13458
|
+
|
13351
13459
|
# A DataStoreTool is a way to provide specifications needed to search a list of
|
13352
13460
|
# data stores.
|
13353
13461
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
@@ -13389,6 +13497,87 @@ module Google
|
|
13389
13497
|
end
|
13390
13498
|
end
|
13391
13499
|
|
13500
|
+
# End-user authentication configuration used for Connection calls. The field
|
13501
|
+
# values can either be hardcoded authentication values or the names of [session
|
13502
|
+
# parameters](https://cloud.google.com/dialogflow/cx/docs/concept/parameter#
|
13503
|
+
# session-ref) or [request parameters](https://cloud.google.com/dialogflow/cx/
|
13504
|
+
# docs/concept/parameter#request-scoped). If parameter names are provided, then
|
13505
|
+
# those parameters can be used to pass the authentication values dynamically,
|
13506
|
+
# through `$session.params.param-id` or `$request.payload.param-id`.
|
13507
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
13508
|
+
include Google::Apis::Core::Hashable
|
13509
|
+
|
13510
|
+
# Oauth 2.0 Authorization Code authentication configuration.
|
13511
|
+
# Corresponds to the JSON property `oauth2AuthCodeConfig`
|
13512
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig]
|
13513
|
+
attr_accessor :oauth2_auth_code_config
|
13514
|
+
|
13515
|
+
# JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
|
13516
|
+
# Corresponds to the JSON property `oauth2JwtBearerConfig`
|
13517
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig]
|
13518
|
+
attr_accessor :oauth2_jwt_bearer_config
|
13519
|
+
|
13520
|
+
def initialize(**args)
|
13521
|
+
update!(**args)
|
13522
|
+
end
|
13523
|
+
|
13524
|
+
# Update properties of this object
|
13525
|
+
def update!(**args)
|
13526
|
+
@oauth2_auth_code_config = args[:oauth2_auth_code_config] if args.key?(:oauth2_auth_code_config)
|
13527
|
+
@oauth2_jwt_bearer_config = args[:oauth2_jwt_bearer_config] if args.key?(:oauth2_jwt_bearer_config)
|
13528
|
+
end
|
13529
|
+
end
|
13530
|
+
|
13531
|
+
# Oauth 2.0 Authorization Code authentication configuration.
|
13532
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
13533
|
+
include Google::Apis::Core::Hashable
|
13534
|
+
|
13535
|
+
# Required. Oauth token value or parameter name to pass it through.
|
13536
|
+
# Corresponds to the JSON property `oauthToken`
|
13537
|
+
# @return [String]
|
13538
|
+
attr_accessor :oauth_token
|
13539
|
+
|
13540
|
+
def initialize(**args)
|
13541
|
+
update!(**args)
|
13542
|
+
end
|
13543
|
+
|
13544
|
+
# Update properties of this object
|
13545
|
+
def update!(**args)
|
13546
|
+
@oauth_token = args[:oauth_token] if args.key?(:oauth_token)
|
13547
|
+
end
|
13548
|
+
end
|
13549
|
+
|
13550
|
+
# JWT Profile Oauth 2.0 Authorization Grant authentication configuration.
|
13551
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
13552
|
+
include Google::Apis::Core::Hashable
|
13553
|
+
|
13554
|
+
# Required. Client key value or parameter name to pass it through.
|
13555
|
+
# Corresponds to the JSON property `clientKey`
|
13556
|
+
# @return [String]
|
13557
|
+
attr_accessor :client_key
|
13558
|
+
|
13559
|
+
# Required. Issuer value or parameter name to pass it through.
|
13560
|
+
# Corresponds to the JSON property `issuer`
|
13561
|
+
# @return [String]
|
13562
|
+
attr_accessor :issuer
|
13563
|
+
|
13564
|
+
# Required. Subject value or parameter name to pass it through.
|
13565
|
+
# Corresponds to the JSON property `subject`
|
13566
|
+
# @return [String]
|
13567
|
+
attr_accessor :subject
|
13568
|
+
|
13569
|
+
def initialize(**args)
|
13570
|
+
update!(**args)
|
13571
|
+
end
|
13572
|
+
|
13573
|
+
# Update properties of this object
|
13574
|
+
def update!(**args)
|
13575
|
+
@client_key = args[:client_key] if args.key?(:client_key)
|
13576
|
+
@issuer = args[:issuer] if args.key?(:issuer)
|
13577
|
+
@subject = args[:subject] if args.key?(:subject)
|
13578
|
+
end
|
13579
|
+
end
|
13580
|
+
|
13392
13581
|
# An ExtensionTool is a way to use Vertex Extensions as a tool.
|
13393
13582
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
13394
13583
|
include Google::Apis::Core::Hashable
|
@@ -13527,9 +13716,9 @@ module Google
|
|
13527
13716
|
# unspecified, Dialogflow will use Google's default trust store to verify
|
13528
13717
|
# certificates. N.B. Make sure the HTTPS server certificates are signed with "
|
13529
13718
|
# subject alt name". For instance a certificate can be self-signed using the
|
13530
|
-
# following command
|
13531
|
-
# example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
13532
|
-
# DNS:www.example.com'")
|
13719
|
+
# following command: ``` openssl x509 -req -days 200 -in example.com.csr \ -
|
13720
|
+
# signkey example.com.key \ -out example.com.crt \ -extfile <(printf "\
|
13721
|
+
# nsubjectAltName='DNS:www.example.com'") ```
|
13533
13722
|
# Corresponds to the JSON property `cert`
|
13534
13723
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
13535
13724
|
# @return [String]
|
@@ -15750,6 +15939,25 @@ module Google
|
|
15750
15939
|
end
|
15751
15940
|
end
|
15752
15941
|
|
15942
|
+
# Suggestion generated using free form generator.
|
15943
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
15944
|
+
include Google::Apis::Core::Hashable
|
15945
|
+
|
15946
|
+
# Required. Free form suggestion.
|
15947
|
+
# Corresponds to the JSON property `response`
|
15948
|
+
# @return [String]
|
15949
|
+
attr_accessor :response
|
15950
|
+
|
15951
|
+
def initialize(**args)
|
15952
|
+
update!(**args)
|
15953
|
+
end
|
15954
|
+
|
15955
|
+
# Update properties of this object
|
15956
|
+
def update!(**args)
|
15957
|
+
@response = args[:response] if args.key?(:response)
|
15958
|
+
end
|
15959
|
+
end
|
15960
|
+
|
15753
15961
|
# Google Cloud Storage location for the output.
|
15754
15962
|
class GoogleCloudDialogflowV2GcsDestination
|
15755
15963
|
include Google::Apis::Core::Hashable
|
@@ -15771,6 +15979,90 @@ module Google
|
|
15771
15979
|
end
|
15772
15980
|
end
|
15773
15981
|
|
15982
|
+
# The response message for Conversations.GenerateSuggestions.
|
15983
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
15984
|
+
include Google::Apis::Core::Hashable
|
15985
|
+
|
15986
|
+
# The answers generated for the conversation based on context.
|
15987
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
15988
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
15989
|
+
attr_accessor :generator_suggestion_answers
|
15990
|
+
|
15991
|
+
# The name of the latest conversation message used as context for compiling
|
15992
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
15993
|
+
# Corresponds to the JSON property `latestMessage`
|
15994
|
+
# @return [String]
|
15995
|
+
attr_accessor :latest_message
|
15996
|
+
|
15997
|
+
def initialize(**args)
|
15998
|
+
update!(**args)
|
15999
|
+
end
|
16000
|
+
|
16001
|
+
# Update properties of this object
|
16002
|
+
def update!(**args)
|
16003
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
16004
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
16005
|
+
end
|
16006
|
+
end
|
16007
|
+
|
16008
|
+
# A GeneratorSuggestion answer.
|
16009
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
16010
|
+
include Google::Apis::Core::Hashable
|
16011
|
+
|
16012
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
16013
|
+
# provide suggestion feedback.
|
16014
|
+
# Corresponds to the JSON property `answerRecord`
|
16015
|
+
# @return [String]
|
16016
|
+
attr_accessor :answer_record
|
16017
|
+
|
16018
|
+
# Suggestion generated using a Generator.
|
16019
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
16020
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion]
|
16021
|
+
attr_accessor :generator_suggestion
|
16022
|
+
|
16023
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
16024
|
+
# locations//generators/`.
|
16025
|
+
# Corresponds to the JSON property `sourceGenerator`
|
16026
|
+
# @return [String]
|
16027
|
+
attr_accessor :source_generator
|
16028
|
+
|
16029
|
+
def initialize(**args)
|
16030
|
+
update!(**args)
|
16031
|
+
end
|
16032
|
+
|
16033
|
+
# Update properties of this object
|
16034
|
+
def update!(**args)
|
16035
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
16036
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
16037
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
16038
|
+
end
|
16039
|
+
end
|
16040
|
+
|
16041
|
+
# Suggestion generated using a Generator.
|
16042
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
16043
|
+
include Google::Apis::Core::Hashable
|
16044
|
+
|
16045
|
+
# Suggestion generated using free form generator.
|
16046
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
16047
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion]
|
16048
|
+
attr_accessor :free_form_suggestion
|
16049
|
+
|
16050
|
+
# Suggested summary of the conversation.
|
16051
|
+
# Corresponds to the JSON property `summarySuggestion`
|
16052
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion]
|
16053
|
+
attr_accessor :summary_suggestion
|
16054
|
+
|
16055
|
+
def initialize(**args)
|
16056
|
+
update!(**args)
|
16057
|
+
end
|
16058
|
+
|
16059
|
+
# Update properties of this object
|
16060
|
+
def update!(**args)
|
16061
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
16062
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
16063
|
+
end
|
16064
|
+
end
|
16065
|
+
|
15774
16066
|
# Represents a notification sent to Cloud Pub/Sub subscribers for human agent
|
15775
16067
|
# assistant events in a specific conversation.
|
15776
16068
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
@@ -18173,6 +18465,11 @@ module Google
|
|
18173
18465
|
# @return [Google::Apis::DialogflowV3beta1::GoogleRpcStatus]
|
18174
18466
|
attr_accessor :error
|
18175
18467
|
|
18468
|
+
# The response message for Conversations.GenerateSuggestions.
|
18469
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
18470
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse]
|
18471
|
+
attr_accessor :generate_suggestions_response
|
18472
|
+
|
18176
18473
|
# The response message for Participants.SuggestArticles.
|
18177
18474
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
18178
18475
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse]
|
@@ -18200,6 +18497,7 @@ module Google
|
|
18200
18497
|
# Update properties of this object
|
18201
18498
|
def update!(**args)
|
18202
18499
|
@error = args[:error] if args.key?(:error)
|
18500
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
18203
18501
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
18204
18502
|
@suggest_faq_answers_response = args[:suggest_faq_answers_response] if args.key?(:suggest_faq_answers_response)
|
18205
18503
|
@suggest_knowledge_assist_response = args[:suggest_knowledge_assist_response] if args.key?(:suggest_knowledge_assist_response)
|
@@ -18207,6 +18505,50 @@ module Google
|
|
18207
18505
|
end
|
18208
18506
|
end
|
18209
18507
|
|
18508
|
+
# Suggested summary of the conversation.
|
18509
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
18510
|
+
include Google::Apis::Core::Hashable
|
18511
|
+
|
18512
|
+
# Required. All the parts of generated summary.
|
18513
|
+
# Corresponds to the JSON property `summarySections`
|
18514
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection>]
|
18515
|
+
attr_accessor :summary_sections
|
18516
|
+
|
18517
|
+
def initialize(**args)
|
18518
|
+
update!(**args)
|
18519
|
+
end
|
18520
|
+
|
18521
|
+
# Update properties of this object
|
18522
|
+
def update!(**args)
|
18523
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
18524
|
+
end
|
18525
|
+
end
|
18526
|
+
|
18527
|
+
# A component of the generated summary.
|
18528
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
18529
|
+
include Google::Apis::Core::Hashable
|
18530
|
+
|
18531
|
+
# Required. Name of the section.
|
18532
|
+
# Corresponds to the JSON property `section`
|
18533
|
+
# @return [String]
|
18534
|
+
attr_accessor :section
|
18535
|
+
|
18536
|
+
# Required. Summary text for the section.
|
18537
|
+
# Corresponds to the JSON property `summary`
|
18538
|
+
# @return [String]
|
18539
|
+
attr_accessor :summary
|
18540
|
+
|
18541
|
+
def initialize(**args)
|
18542
|
+
update!(**args)
|
18543
|
+
end
|
18544
|
+
|
18545
|
+
# Update properties of this object
|
18546
|
+
def update!(**args)
|
18547
|
+
@section = args[:section] if args.key?(:section)
|
18548
|
+
@summary = args[:summary] if args.key?(:summary)
|
18549
|
+
end
|
18550
|
+
end
|
18551
|
+
|
18210
18552
|
# Metadata for a ConversationModels.UndeployConversationModel operation.
|
18211
18553
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
18212
18554
|
include Google::Apis::Core::Hashable
|
@@ -18957,6 +19299,25 @@ module Google
|
|
18957
19299
|
end
|
18958
19300
|
end
|
18959
19301
|
|
19302
|
+
# Suggestion generated using free form generator.
|
19303
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
19304
|
+
include Google::Apis::Core::Hashable
|
19305
|
+
|
19306
|
+
# Required. Free form suggestion.
|
19307
|
+
# Corresponds to the JSON property `response`
|
19308
|
+
# @return [String]
|
19309
|
+
attr_accessor :response
|
19310
|
+
|
19311
|
+
def initialize(**args)
|
19312
|
+
update!(**args)
|
19313
|
+
end
|
19314
|
+
|
19315
|
+
# Update properties of this object
|
19316
|
+
def update!(**args)
|
19317
|
+
@response = args[:response] if args.key?(:response)
|
19318
|
+
end
|
19319
|
+
end
|
19320
|
+
|
18960
19321
|
# Google Cloud Storage location for the output.
|
18961
19322
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
18962
19323
|
include Google::Apis::Core::Hashable
|
@@ -18978,6 +19339,90 @@ module Google
|
|
18978
19339
|
end
|
18979
19340
|
end
|
18980
19341
|
|
19342
|
+
# The response message for Conversations.GenerateSuggestions.
|
19343
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
19344
|
+
include Google::Apis::Core::Hashable
|
19345
|
+
|
19346
|
+
# The answers generated for the conversation based on context.
|
19347
|
+
# Corresponds to the JSON property `generatorSuggestionAnswers`
|
19348
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer>]
|
19349
|
+
attr_accessor :generator_suggestion_answers
|
19350
|
+
|
19351
|
+
# The name of the latest conversation message used as context for compiling
|
19352
|
+
# suggestion. Format: `projects//locations//conversations//messages/`.
|
19353
|
+
# Corresponds to the JSON property `latestMessage`
|
19354
|
+
# @return [String]
|
19355
|
+
attr_accessor :latest_message
|
19356
|
+
|
19357
|
+
def initialize(**args)
|
19358
|
+
update!(**args)
|
19359
|
+
end
|
19360
|
+
|
19361
|
+
# Update properties of this object
|
19362
|
+
def update!(**args)
|
19363
|
+
@generator_suggestion_answers = args[:generator_suggestion_answers] if args.key?(:generator_suggestion_answers)
|
19364
|
+
@latest_message = args[:latest_message] if args.key?(:latest_message)
|
19365
|
+
end
|
19366
|
+
end
|
19367
|
+
|
19368
|
+
# A GeneratorSuggestion answer.
|
19369
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
19370
|
+
include Google::Apis::Core::Hashable
|
19371
|
+
|
19372
|
+
# Answer record that uniquely identifies the suggestion. This can be used to
|
19373
|
+
# provide suggestion feedback.
|
19374
|
+
# Corresponds to the JSON property `answerRecord`
|
19375
|
+
# @return [String]
|
19376
|
+
attr_accessor :answer_record
|
19377
|
+
|
19378
|
+
# Suggestion generated using a Generator.
|
19379
|
+
# Corresponds to the JSON property `generatorSuggestion`
|
19380
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion]
|
19381
|
+
attr_accessor :generator_suggestion
|
19382
|
+
|
19383
|
+
# The name of the generator used to generate this suggestion. Format: `projects//
|
19384
|
+
# locations//generators/`.
|
19385
|
+
# Corresponds to the JSON property `sourceGenerator`
|
19386
|
+
# @return [String]
|
19387
|
+
attr_accessor :source_generator
|
19388
|
+
|
19389
|
+
def initialize(**args)
|
19390
|
+
update!(**args)
|
19391
|
+
end
|
19392
|
+
|
19393
|
+
# Update properties of this object
|
19394
|
+
def update!(**args)
|
19395
|
+
@answer_record = args[:answer_record] if args.key?(:answer_record)
|
19396
|
+
@generator_suggestion = args[:generator_suggestion] if args.key?(:generator_suggestion)
|
19397
|
+
@source_generator = args[:source_generator] if args.key?(:source_generator)
|
19398
|
+
end
|
19399
|
+
end
|
19400
|
+
|
19401
|
+
# Suggestion generated using a Generator.
|
19402
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
19403
|
+
include Google::Apis::Core::Hashable
|
19404
|
+
|
19405
|
+
# Suggestion generated using free form generator.
|
19406
|
+
# Corresponds to the JSON property `freeFormSuggestion`
|
19407
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion]
|
19408
|
+
attr_accessor :free_form_suggestion
|
19409
|
+
|
19410
|
+
# Suggested summary of the conversation.
|
19411
|
+
# Corresponds to the JSON property `summarySuggestion`
|
19412
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion]
|
19413
|
+
attr_accessor :summary_suggestion
|
19414
|
+
|
19415
|
+
def initialize(**args)
|
19416
|
+
update!(**args)
|
19417
|
+
end
|
19418
|
+
|
19419
|
+
# Update properties of this object
|
19420
|
+
def update!(**args)
|
19421
|
+
@free_form_suggestion = args[:free_form_suggestion] if args.key?(:free_form_suggestion)
|
19422
|
+
@summary_suggestion = args[:summary_suggestion] if args.key?(:summary_suggestion)
|
19423
|
+
end
|
19424
|
+
end
|
19425
|
+
|
18981
19426
|
# Output only. Represents a notification sent to Pub/Sub subscribers for agent
|
18982
19427
|
# assistant events in a specific conversation.
|
18983
19428
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
@@ -22133,6 +22578,11 @@ module Google
|
|
22133
22578
|
# @return [Google::Apis::DialogflowV3beta1::GoogleRpcStatus]
|
22134
22579
|
attr_accessor :error
|
22135
22580
|
|
22581
|
+
# The response message for Conversations.GenerateSuggestions.
|
22582
|
+
# Corresponds to the JSON property `generateSuggestionsResponse`
|
22583
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse]
|
22584
|
+
attr_accessor :generate_suggestions_response
|
22585
|
+
|
22136
22586
|
# The response message for Participants.SuggestArticles.
|
22137
22587
|
# Corresponds to the JSON property `suggestArticlesResponse`
|
22138
22588
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse]
|
@@ -22170,6 +22620,7 @@ module Google
|
|
22170
22620
|
# Update properties of this object
|
22171
22621
|
def update!(**args)
|
22172
22622
|
@error = args[:error] if args.key?(:error)
|
22623
|
+
@generate_suggestions_response = args[:generate_suggestions_response] if args.key?(:generate_suggestions_response)
|
22173
22624
|
@suggest_articles_response = args[:suggest_articles_response] if args.key?(:suggest_articles_response)
|
22174
22625
|
@suggest_dialogflow_assists_response = args[:suggest_dialogflow_assists_response] if args.key?(:suggest_dialogflow_assists_response)
|
22175
22626
|
@suggest_entity_extraction_response = args[:suggest_entity_extraction_response] if args.key?(:suggest_entity_extraction_response)
|
@@ -22179,6 +22630,50 @@ module Google
|
|
22179
22630
|
end
|
22180
22631
|
end
|
22181
22632
|
|
22633
|
+
# Suggested summary of the conversation.
|
22634
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
22635
|
+
include Google::Apis::Core::Hashable
|
22636
|
+
|
22637
|
+
# Required. All the parts of generated summary.
|
22638
|
+
# Corresponds to the JSON property `summarySections`
|
22639
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection>]
|
22640
|
+
attr_accessor :summary_sections
|
22641
|
+
|
22642
|
+
def initialize(**args)
|
22643
|
+
update!(**args)
|
22644
|
+
end
|
22645
|
+
|
22646
|
+
# Update properties of this object
|
22647
|
+
def update!(**args)
|
22648
|
+
@summary_sections = args[:summary_sections] if args.key?(:summary_sections)
|
22649
|
+
end
|
22650
|
+
end
|
22651
|
+
|
22652
|
+
# A component of the generated summary.
|
22653
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
22654
|
+
include Google::Apis::Core::Hashable
|
22655
|
+
|
22656
|
+
# Required. Name of the section.
|
22657
|
+
# Corresponds to the JSON property `section`
|
22658
|
+
# @return [String]
|
22659
|
+
attr_accessor :section
|
22660
|
+
|
22661
|
+
# Required. Summary text for the section.
|
22662
|
+
# Corresponds to the JSON property `summary`
|
22663
|
+
# @return [String]
|
22664
|
+
attr_accessor :summary
|
22665
|
+
|
22666
|
+
def initialize(**args)
|
22667
|
+
update!(**args)
|
22668
|
+
end
|
22669
|
+
|
22670
|
+
# Update properties of this object
|
22671
|
+
def update!(**args)
|
22672
|
+
@section = args[:section] if args.key?(:section)
|
22673
|
+
@summary = args[:summary] if args.key?(:summary)
|
22674
|
+
end
|
22675
|
+
end
|
22676
|
+
|
22182
22677
|
# A wrapper of repeated TelephonyDtmf digits.
|
22183
22678
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
22184
22679
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module DialogflowV3beta1
|
18
18
|
# Version of the google-apis-dialogflow_v3beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.96.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20250310"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -2134,6 +2134,24 @@ module Google
|
|
2134
2134
|
include Google::Apis::Core::JsonObjectSupport
|
2135
2135
|
end
|
2136
2136
|
|
2137
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
2138
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2139
|
+
|
2140
|
+
include Google::Apis::Core::JsonObjectSupport
|
2141
|
+
end
|
2142
|
+
|
2143
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
2144
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2145
|
+
|
2146
|
+
include Google::Apis::Core::JsonObjectSupport
|
2147
|
+
end
|
2148
|
+
|
2149
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
2150
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2151
|
+
|
2152
|
+
include Google::Apis::Core::JsonObjectSupport
|
2153
|
+
end
|
2154
|
+
|
2137
2155
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
2138
2156
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2139
2157
|
|
@@ -2146,6 +2164,24 @@ module Google
|
|
2146
2164
|
include Google::Apis::Core::JsonObjectSupport
|
2147
2165
|
end
|
2148
2166
|
|
2167
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
2168
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2169
|
+
|
2170
|
+
include Google::Apis::Core::JsonObjectSupport
|
2171
|
+
end
|
2172
|
+
|
2173
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
2174
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2175
|
+
|
2176
|
+
include Google::Apis::Core::JsonObjectSupport
|
2177
|
+
end
|
2178
|
+
|
2179
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
2180
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2181
|
+
|
2182
|
+
include Google::Apis::Core::JsonObjectSupport
|
2183
|
+
end
|
2184
|
+
|
2149
2185
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
2150
2186
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2151
2187
|
|
@@ -2518,12 +2554,36 @@ module Google
|
|
2518
2554
|
include Google::Apis::Core::JsonObjectSupport
|
2519
2555
|
end
|
2520
2556
|
|
2557
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
2558
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2559
|
+
|
2560
|
+
include Google::Apis::Core::JsonObjectSupport
|
2561
|
+
end
|
2562
|
+
|
2521
2563
|
class GoogleCloudDialogflowV2GcsDestination
|
2522
2564
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2523
2565
|
|
2524
2566
|
include Google::Apis::Core::JsonObjectSupport
|
2525
2567
|
end
|
2526
2568
|
|
2569
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
2570
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2571
|
+
|
2572
|
+
include Google::Apis::Core::JsonObjectSupport
|
2573
|
+
end
|
2574
|
+
|
2575
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
2576
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2577
|
+
|
2578
|
+
include Google::Apis::Core::JsonObjectSupport
|
2579
|
+
end
|
2580
|
+
|
2581
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
2582
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2583
|
+
|
2584
|
+
include Google::Apis::Core::JsonObjectSupport
|
2585
|
+
end
|
2586
|
+
|
2527
2587
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
2528
2588
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2529
2589
|
|
@@ -2908,6 +2968,18 @@ module Google
|
|
2908
2968
|
include Google::Apis::Core::JsonObjectSupport
|
2909
2969
|
end
|
2910
2970
|
|
2971
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
2972
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2973
|
+
|
2974
|
+
include Google::Apis::Core::JsonObjectSupport
|
2975
|
+
end
|
2976
|
+
|
2977
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
2978
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2979
|
+
|
2980
|
+
include Google::Apis::Core::JsonObjectSupport
|
2981
|
+
end
|
2982
|
+
|
2911
2983
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
2912
2984
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
2913
2985
|
|
@@ -3016,12 +3088,36 @@ module Google
|
|
3016
3088
|
include Google::Apis::Core::JsonObjectSupport
|
3017
3089
|
end
|
3018
3090
|
|
3091
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
3092
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3093
|
+
|
3094
|
+
include Google::Apis::Core::JsonObjectSupport
|
3095
|
+
end
|
3096
|
+
|
3019
3097
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
3020
3098
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3021
3099
|
|
3022
3100
|
include Google::Apis::Core::JsonObjectSupport
|
3023
3101
|
end
|
3024
3102
|
|
3103
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
3104
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3105
|
+
|
3106
|
+
include Google::Apis::Core::JsonObjectSupport
|
3107
|
+
end
|
3108
|
+
|
3109
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
3110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3111
|
+
|
3112
|
+
include Google::Apis::Core::JsonObjectSupport
|
3113
|
+
end
|
3114
|
+
|
3115
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
3116
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3117
|
+
|
3118
|
+
include Google::Apis::Core::JsonObjectSupport
|
3119
|
+
end
|
3120
|
+
|
3025
3121
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
3026
3122
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3027
3123
|
|
@@ -3532,6 +3628,18 @@ module Google
|
|
3532
3628
|
include Google::Apis::Core::JsonObjectSupport
|
3533
3629
|
end
|
3534
3630
|
|
3631
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
3632
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3633
|
+
|
3634
|
+
include Google::Apis::Core::JsonObjectSupport
|
3635
|
+
end
|
3636
|
+
|
3637
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
3638
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3639
|
+
|
3640
|
+
include Google::Apis::Core::JsonObjectSupport
|
3641
|
+
end
|
3642
|
+
|
3535
3643
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
3536
3644
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
3537
3645
|
|
@@ -7113,6 +7221,8 @@ module Google
|
|
7113
7221
|
class GoogleCloudDialogflowCxV3beta1Tool
|
7114
7222
|
# @private
|
7115
7223
|
class Representation < Google::Apis::Core::JsonRepresentation
|
7224
|
+
property :connector_spec, as: 'connectorSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorTool::Representation
|
7225
|
+
|
7116
7226
|
property :data_store_spec, as: 'dataStoreSpec', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolDataStoreTool, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolDataStoreTool::Representation
|
7117
7227
|
|
7118
7228
|
property :description, as: 'description'
|
@@ -7203,6 +7313,36 @@ module Google
|
|
7203
7313
|
end
|
7204
7314
|
end
|
7205
7315
|
|
7316
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorTool
|
7317
|
+
# @private
|
7318
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7319
|
+
collection :actions, as: 'actions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction::Representation
|
7320
|
+
|
7321
|
+
property :end_user_auth_config, as: 'endUserAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig::Representation
|
7322
|
+
|
7323
|
+
property :name, as: 'name'
|
7324
|
+
end
|
7325
|
+
end
|
7326
|
+
|
7327
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolAction
|
7328
|
+
# @private
|
7329
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7330
|
+
property :connection_action_id, as: 'connectionActionId'
|
7331
|
+
property :entity_operation, as: 'entityOperation', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation::Representation
|
7332
|
+
|
7333
|
+
collection :input_fields, as: 'inputFields'
|
7334
|
+
collection :output_fields, as: 'outputFields'
|
7335
|
+
end
|
7336
|
+
end
|
7337
|
+
|
7338
|
+
class GoogleCloudDialogflowCxV3beta1ToolConnectorToolActionEntityOperation
|
7339
|
+
# @private
|
7340
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7341
|
+
property :entity_id, as: 'entityId'
|
7342
|
+
property :operation, as: 'operation'
|
7343
|
+
end
|
7344
|
+
end
|
7345
|
+
|
7206
7346
|
class GoogleCloudDialogflowCxV3beta1ToolDataStoreTool
|
7207
7347
|
# @private
|
7208
7348
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7219,6 +7359,32 @@ module Google
|
|
7219
7359
|
end
|
7220
7360
|
end
|
7221
7361
|
|
7362
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfig
|
7363
|
+
# @private
|
7364
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7365
|
+
property :oauth2_auth_code_config, as: 'oauth2AuthCodeConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig::Representation
|
7366
|
+
|
7367
|
+
property :oauth2_jwt_bearer_config, as: 'oauth2JwtBearerConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig::Representation
|
7368
|
+
|
7369
|
+
end
|
7370
|
+
end
|
7371
|
+
|
7372
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2AuthCodeConfig
|
7373
|
+
# @private
|
7374
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7375
|
+
property :oauth_token, as: 'oauthToken'
|
7376
|
+
end
|
7377
|
+
end
|
7378
|
+
|
7379
|
+
class GoogleCloudDialogflowCxV3beta1ToolEndUserAuthConfigOauth2JwtBearerConfig
|
7380
|
+
# @private
|
7381
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
7382
|
+
property :client_key, as: 'clientKey'
|
7383
|
+
property :issuer, as: 'issuer'
|
7384
|
+
property :subject, as: 'subject'
|
7385
|
+
end
|
7386
|
+
end
|
7387
|
+
|
7222
7388
|
class GoogleCloudDialogflowCxV3beta1ToolExtensionTool
|
7223
7389
|
# @private
|
7224
7390
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7848,6 +8014,13 @@ module Google
|
|
7848
8014
|
end
|
7849
8015
|
end
|
7850
8016
|
|
8017
|
+
class GoogleCloudDialogflowV2FreeFormSuggestion
|
8018
|
+
# @private
|
8019
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8020
|
+
property :response, as: 'response'
|
8021
|
+
end
|
8022
|
+
end
|
8023
|
+
|
7851
8024
|
class GoogleCloudDialogflowV2GcsDestination
|
7852
8025
|
# @private
|
7853
8026
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -7855,6 +8028,35 @@ module Google
|
|
7855
8028
|
end
|
7856
8029
|
end
|
7857
8030
|
|
8031
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponse
|
8032
|
+
# @private
|
8033
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8034
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
8035
|
+
|
8036
|
+
property :latest_message, as: 'latestMessage'
|
8037
|
+
end
|
8038
|
+
end
|
8039
|
+
|
8040
|
+
class GoogleCloudDialogflowV2GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
8041
|
+
# @private
|
8042
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8043
|
+
property :answer_record, as: 'answerRecord'
|
8044
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GeneratorSuggestion::Representation
|
8045
|
+
|
8046
|
+
property :source_generator, as: 'sourceGenerator'
|
8047
|
+
end
|
8048
|
+
end
|
8049
|
+
|
8050
|
+
class GoogleCloudDialogflowV2GeneratorSuggestion
|
8051
|
+
# @private
|
8052
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8053
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2FreeFormSuggestion::Representation
|
8054
|
+
|
8055
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestion::Representation
|
8056
|
+
|
8057
|
+
end
|
8058
|
+
end
|
8059
|
+
|
7858
8060
|
class GoogleCloudDialogflowV2HumanAgentAssistantEvent
|
7859
8061
|
# @private
|
7860
8062
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8521,6 +8723,8 @@ module Google
|
|
8521
8723
|
class Representation < Google::Apis::Core::JsonRepresentation
|
8522
8724
|
property :error, as: 'error', class: Google::Apis::DialogflowV3beta1::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3beta1::GoogleRpcStatus::Representation
|
8523
8725
|
|
8726
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2GenerateSuggestionsResponse::Representation
|
8727
|
+
|
8524
8728
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestArticlesResponse::Representation
|
8525
8729
|
|
8526
8730
|
property :suggest_faq_answers_response, as: 'suggestFaqAnswersResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SuggestFaqAnswersResponse::Representation
|
@@ -8532,6 +8736,22 @@ module Google
|
|
8532
8736
|
end
|
8533
8737
|
end
|
8534
8738
|
|
8739
|
+
class GoogleCloudDialogflowV2SummarySuggestion
|
8740
|
+
# @private
|
8741
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8742
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2SummarySuggestionSummarySection::Representation
|
8743
|
+
|
8744
|
+
end
|
8745
|
+
end
|
8746
|
+
|
8747
|
+
class GoogleCloudDialogflowV2SummarySuggestionSummarySection
|
8748
|
+
# @private
|
8749
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8750
|
+
property :section, as: 'section'
|
8751
|
+
property :summary, as: 'summary'
|
8752
|
+
end
|
8753
|
+
end
|
8754
|
+
|
8535
8755
|
class GoogleCloudDialogflowV2UndeployConversationModelOperationMetadata
|
8536
8756
|
# @private
|
8537
8757
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8715,6 +8935,13 @@ module Google
|
|
8715
8935
|
end
|
8716
8936
|
end
|
8717
8937
|
|
8938
|
+
class GoogleCloudDialogflowV2beta1FreeFormSuggestion
|
8939
|
+
# @private
|
8940
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8941
|
+
property :response, as: 'response'
|
8942
|
+
end
|
8943
|
+
end
|
8944
|
+
|
8718
8945
|
class GoogleCloudDialogflowV2beta1GcsDestination
|
8719
8946
|
# @private
|
8720
8947
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -8722,6 +8949,35 @@ module Google
|
|
8722
8949
|
end
|
8723
8950
|
end
|
8724
8951
|
|
8952
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse
|
8953
|
+
# @private
|
8954
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8955
|
+
collection :generator_suggestion_answers, as: 'generatorSuggestionAnswers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer::Representation
|
8956
|
+
|
8957
|
+
property :latest_message, as: 'latestMessage'
|
8958
|
+
end
|
8959
|
+
end
|
8960
|
+
|
8961
|
+
class GoogleCloudDialogflowV2beta1GenerateSuggestionsResponseGeneratorSuggestionAnswer
|
8962
|
+
# @private
|
8963
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8964
|
+
property :answer_record, as: 'answerRecord'
|
8965
|
+
property :generator_suggestion, as: 'generatorSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GeneratorSuggestion::Representation
|
8966
|
+
|
8967
|
+
property :source_generator, as: 'sourceGenerator'
|
8968
|
+
end
|
8969
|
+
end
|
8970
|
+
|
8971
|
+
class GoogleCloudDialogflowV2beta1GeneratorSuggestion
|
8972
|
+
# @private
|
8973
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
8974
|
+
property :free_form_suggestion, as: 'freeFormSuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1FreeFormSuggestion::Representation
|
8975
|
+
|
8976
|
+
property :summary_suggestion, as: 'summarySuggestion', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestion::Representation
|
8977
|
+
|
8978
|
+
end
|
8979
|
+
end
|
8980
|
+
|
8725
8981
|
class GoogleCloudDialogflowV2beta1HumanAgentAssistantEvent
|
8726
8982
|
# @private
|
8727
8983
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -9599,6 +9855,8 @@ module Google
|
|
9599
9855
|
class Representation < Google::Apis::Core::JsonRepresentation
|
9600
9856
|
property :error, as: 'error', class: Google::Apis::DialogflowV3beta1::GoogleRpcStatus, decorator: Google::Apis::DialogflowV3beta1::GoogleRpcStatus::Representation
|
9601
9857
|
|
9858
|
+
property :generate_suggestions_response, as: 'generateSuggestionsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1GenerateSuggestionsResponse::Representation
|
9859
|
+
|
9602
9860
|
property :suggest_articles_response, as: 'suggestArticlesResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestArticlesResponse::Representation
|
9603
9861
|
|
9604
9862
|
property :suggest_dialogflow_assists_response, as: 'suggestDialogflowAssistsResponse', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SuggestDialogflowAssistsResponse::Representation
|
@@ -9614,6 +9872,22 @@ module Google
|
|
9614
9872
|
end
|
9615
9873
|
end
|
9616
9874
|
|
9875
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestion
|
9876
|
+
# @private
|
9877
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9878
|
+
collection :summary_sections, as: 'summarySections', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection::Representation
|
9879
|
+
|
9880
|
+
end
|
9881
|
+
end
|
9882
|
+
|
9883
|
+
class GoogleCloudDialogflowV2beta1SummarySuggestionSummarySection
|
9884
|
+
# @private
|
9885
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
9886
|
+
property :section, as: 'section'
|
9887
|
+
property :summary, as: 'summary'
|
9888
|
+
end
|
9889
|
+
end
|
9890
|
+
|
9617
9891
|
class GoogleCloudDialogflowV2beta1TelephonyDtmfEvents
|
9618
9892
|
# @private
|
9619
9893
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-dialogflow_v3beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.96.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
bindir: bin
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-03-
|
10
|
+
date: 2025-03-16 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: google-apis-core
|
@@ -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_v3beta1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3beta1/v0.96.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3beta1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|