google-apis-dialogflow_v3beta1 0.111.0 → 0.113.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 +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/dialogflow_v3beta1/classes.rb +165 -0
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +78 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ef57cb317cf7aa817215b729864c2aa736aa70fe4e60c197425df86dabb363c0
|
|
4
|
+
data.tar.gz: a84bb949f77eb6ef89f6bf7a692a7bd3e08bca61cbaff5a09f9c3f0e500d7c86
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cf10ac4dff80f2f7351525ae9e9248ff66b0f1845c431eb8caa64ecf9cd2360cf66e646111bdbb99a20c295b3f7e43923bace04265cd43f36d73de2551972dec
|
|
7
|
+
data.tar.gz: cf8ed50a340f73241e32f4eefd5889950ac76cc514f9278f1a3272bda869a38ee7ffde3d25d0eef63e99cfbe336d9660ad3f4fe6bf780837280ad485ba629fe7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
|
2
2
|
|
|
3
|
+
### v0.113.0 (2025-11-02)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251027
|
|
6
|
+
|
|
7
|
+
### v0.112.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251013
|
|
10
|
+
|
|
3
11
|
### v0.111.0 (2025-10-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250929
|
|
@@ -3507,6 +3507,11 @@ module Google
|
|
|
3507
3507
|
# @return [Hash<String,Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue>]
|
|
3508
3508
|
attr_accessor :secret_versions_for_request_headers
|
|
3509
3509
|
|
|
3510
|
+
# Configuration for authentication using a service account.
|
|
3511
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
3512
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig]
|
|
3513
|
+
attr_accessor :service_account_auth_config
|
|
3514
|
+
|
|
3510
3515
|
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
|
3511
3516
|
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
|
3512
3517
|
# agent). The generated token is sent in the Authorization header.
|
|
@@ -3545,6 +3550,7 @@ module Google
|
|
|
3545
3550
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
|
3546
3551
|
@secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
|
|
3547
3552
|
@secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
|
|
3553
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
3548
3554
|
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
|
3549
3555
|
@uri = args[:uri] if args.key?(:uri)
|
|
3550
3556
|
@username = args[:username] if args.key?(:username)
|
|
@@ -3620,6 +3626,30 @@ module Google
|
|
|
3620
3626
|
end
|
|
3621
3627
|
end
|
|
3622
3628
|
|
|
3629
|
+
# Configuration for authentication using a service account.
|
|
3630
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
3631
|
+
include Google::Apis::Core::Hashable
|
|
3632
|
+
|
|
3633
|
+
# Required. The email address of the service account used to authenticate the
|
|
3634
|
+
# webhook call. Dialogflow uses this service account to exchange an access token
|
|
3635
|
+
# and the access token is then sent in the `Authorization` header of the webhook
|
|
3636
|
+
# request. The service account must have the `roles/iam.
|
|
3637
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
3638
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
3639
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
3640
|
+
# @return [String]
|
|
3641
|
+
attr_accessor :service_account
|
|
3642
|
+
|
|
3643
|
+
def initialize(**args)
|
|
3644
|
+
update!(**args)
|
|
3645
|
+
end
|
|
3646
|
+
|
|
3647
|
+
# Update properties of this object
|
|
3648
|
+
def update!(**args)
|
|
3649
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
3650
|
+
end
|
|
3651
|
+
end
|
|
3652
|
+
|
|
3623
3653
|
# The request message for a webhook call. The request is sent as a JSON object
|
|
3624
3654
|
# and the field names will be presented in camel cases. You may see undocumented
|
|
3625
3655
|
# fields in an actual request. These fields are used internally by Dialogflow
|
|
@@ -5424,6 +5454,25 @@ module Google
|
|
|
5424
5454
|
end
|
|
5425
5455
|
end
|
|
5426
5456
|
|
|
5457
|
+
# Represents a code block.
|
|
5458
|
+
class GoogleCloudDialogflowCxV3beta1CodeBlock
|
|
5459
|
+
include Google::Apis::Core::Hashable
|
|
5460
|
+
|
|
5461
|
+
# Optional. Source code of the block in Python.
|
|
5462
|
+
# Corresponds to the JSON property `code`
|
|
5463
|
+
# @return [String]
|
|
5464
|
+
attr_accessor :code
|
|
5465
|
+
|
|
5466
|
+
def initialize(**args)
|
|
5467
|
+
update!(**args)
|
|
5468
|
+
end
|
|
5469
|
+
|
|
5470
|
+
# Update properties of this object
|
|
5471
|
+
def update!(**args)
|
|
5472
|
+
@code = args[:code] if args.key?(:code)
|
|
5473
|
+
end
|
|
5474
|
+
end
|
|
5475
|
+
|
|
5427
5476
|
# The request message for Versions.CompareVersions.
|
|
5428
5477
|
class GoogleCloudDialogflowCxV3beta1CompareVersionsRequest
|
|
5429
5478
|
include Google::Apis::Core::Hashable
|
|
@@ -10939,6 +10988,11 @@ module Google
|
|
|
10939
10988
|
# @return [String]
|
|
10940
10989
|
attr_accessor :model
|
|
10941
10990
|
|
|
10991
|
+
# Generative model parameters to control the model behavior.
|
|
10992
|
+
# Corresponds to the JSON property `parameters`
|
|
10993
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters]
|
|
10994
|
+
attr_accessor :parameters
|
|
10995
|
+
|
|
10942
10996
|
# The custom prompt to use.
|
|
10943
10997
|
# Corresponds to the JSON property `promptText`
|
|
10944
10998
|
# @return [String]
|
|
@@ -10951,10 +11005,46 @@ module Google
|
|
|
10951
11005
|
# Update properties of this object
|
|
10952
11006
|
def update!(**args)
|
|
10953
11007
|
@model = args[:model] if args.key?(:model)
|
|
11008
|
+
@parameters = args[:parameters] if args.key?(:parameters)
|
|
10954
11009
|
@prompt_text = args[:prompt_text] if args.key?(:prompt_text)
|
|
10955
11010
|
end
|
|
10956
11011
|
end
|
|
10957
11012
|
|
|
11013
|
+
# Generative model parameters to control the model behavior.
|
|
11014
|
+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
|
|
11015
|
+
include Google::Apis::Core::Hashable
|
|
11016
|
+
|
|
11017
|
+
# The input token limit. This setting is currently only supported by playbooks.
|
|
11018
|
+
# Corresponds to the JSON property `inputTokenLimit`
|
|
11019
|
+
# @return [String]
|
|
11020
|
+
attr_accessor :input_token_limit
|
|
11021
|
+
|
|
11022
|
+
# The output token limit. This setting is currently only supported by playbooks.
|
|
11023
|
+
# Only one of output_token_limit and max_output_tokens is allowed to be set.
|
|
11024
|
+
# Corresponds to the JSON property `outputTokenLimit`
|
|
11025
|
+
# @return [String]
|
|
11026
|
+
attr_accessor :output_token_limit
|
|
11027
|
+
|
|
11028
|
+
# The temperature used for sampling during response generation. Value ranges
|
|
11029
|
+
# from 0 to 1. Temperature controls the degree of randomness in token selection.
|
|
11030
|
+
# Lower temperature means less randomness, while higher temperature means more
|
|
11031
|
+
# randomness. Valid range: [0.0, 1.0]
|
|
11032
|
+
# Corresponds to the JSON property `temperature`
|
|
11033
|
+
# @return [Float]
|
|
11034
|
+
attr_accessor :temperature
|
|
11035
|
+
|
|
11036
|
+
def initialize(**args)
|
|
11037
|
+
update!(**args)
|
|
11038
|
+
end
|
|
11039
|
+
|
|
11040
|
+
# Update properties of this object
|
|
11041
|
+
def update!(**args)
|
|
11042
|
+
@input_token_limit = args[:input_token_limit] if args.key?(:input_token_limit)
|
|
11043
|
+
@output_token_limit = args[:output_token_limit] if args.key?(:output_token_limit)
|
|
11044
|
+
@temperature = args[:temperature] if args.key?(:temperature)
|
|
11045
|
+
end
|
|
11046
|
+
end
|
|
11047
|
+
|
|
10958
11048
|
# The request message for Versions.LoadVersion.
|
|
10959
11049
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
|
10960
11050
|
include Google::Apis::Core::Hashable
|
|
@@ -11577,6 +11667,11 @@ module Google
|
|
|
11577
11667
|
class GoogleCloudDialogflowCxV3beta1Playbook
|
|
11578
11668
|
include Google::Apis::Core::Hashable
|
|
11579
11669
|
|
|
11670
|
+
# Represents a code block.
|
|
11671
|
+
# Corresponds to the JSON property `codeBlock`
|
|
11672
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock]
|
|
11673
|
+
attr_accessor :code_block
|
|
11674
|
+
|
|
11580
11675
|
# Output only. The timestamp of initial playbook creation.
|
|
11581
11676
|
# Corresponds to the JSON property `createTime`
|
|
11582
11677
|
# @return [String]
|
|
@@ -11600,6 +11695,14 @@ module Google
|
|
|
11600
11695
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler>]
|
|
11601
11696
|
attr_accessor :handlers
|
|
11602
11697
|
|
|
11698
|
+
# Optional. Output only. Names of inline actions scoped to this playbook. These
|
|
11699
|
+
# actions are in addition to those belonging to referenced tools, child
|
|
11700
|
+
# playbooks, and flows, e.g. actions that are defined in the playbook's code
|
|
11701
|
+
# block.
|
|
11702
|
+
# Corresponds to the JSON property `inlineActions`
|
|
11703
|
+
# @return [Array<String>]
|
|
11704
|
+
attr_accessor :inline_actions
|
|
11705
|
+
|
|
11603
11706
|
# Optional. Defined structured input parameters for this playbook.
|
|
11604
11707
|
# Corresponds to the JSON property `inputParameterDefinitions`
|
|
11605
11708
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
|
|
@@ -11672,10 +11775,12 @@ module Google
|
|
|
11672
11775
|
|
|
11673
11776
|
# Update properties of this object
|
|
11674
11777
|
def update!(**args)
|
|
11778
|
+
@code_block = args[:code_block] if args.key?(:code_block)
|
|
11675
11779
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
11676
11780
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
11677
11781
|
@goal = args[:goal] if args.key?(:goal)
|
|
11678
11782
|
@handlers = args[:handlers] if args.key?(:handlers)
|
|
11783
|
+
@inline_actions = args[:inline_actions] if args.key?(:inline_actions)
|
|
11679
11784
|
@input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
|
|
11680
11785
|
@instruction = args[:instruction] if args.key?(:instruction)
|
|
11681
11786
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
|
@@ -14156,6 +14261,11 @@ module Google
|
|
|
14156
14261
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig]
|
|
14157
14262
|
attr_accessor :oauth_config
|
|
14158
14263
|
|
|
14264
|
+
# Configuration for authentication using a service account.
|
|
14265
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
14266
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig]
|
|
14267
|
+
attr_accessor :service_account_auth_config
|
|
14268
|
+
|
|
14159
14269
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
14160
14270
|
# docs/service-agents#dialogflow-service-agent).
|
|
14161
14271
|
# Corresponds to the JSON property `serviceAgentAuthConfig`
|
|
@@ -14171,6 +14281,7 @@ module Google
|
|
|
14171
14281
|
@api_key_config = args[:api_key_config] if args.key?(:api_key_config)
|
|
14172
14282
|
@bearer_token_config = args[:bearer_token_config] if args.key?(:bearer_token_config)
|
|
14173
14283
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
|
14284
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
14174
14285
|
@service_agent_auth_config = args[:service_agent_auth_config] if args.key?(:service_agent_auth_config)
|
|
14175
14286
|
end
|
|
14176
14287
|
end
|
|
@@ -14300,6 +14411,30 @@ module Google
|
|
|
14300
14411
|
end
|
|
14301
14412
|
end
|
|
14302
14413
|
|
|
14414
|
+
# Configuration for authentication using a service account.
|
|
14415
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
14416
|
+
include Google::Apis::Core::Hashable
|
|
14417
|
+
|
|
14418
|
+
# Required. The email address of the service account used to authenticate the
|
|
14419
|
+
# tool call. Dialogflow uses this service account to exchange an access token
|
|
14420
|
+
# and the access token is then sent in the `Authorization` header of the tool
|
|
14421
|
+
# request. The service account must have the `roles/iam.
|
|
14422
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
14423
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
14424
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
14425
|
+
# @return [String]
|
|
14426
|
+
attr_accessor :service_account
|
|
14427
|
+
|
|
14428
|
+
def initialize(**args)
|
|
14429
|
+
update!(**args)
|
|
14430
|
+
end
|
|
14431
|
+
|
|
14432
|
+
# Update properties of this object
|
|
14433
|
+
def update!(**args)
|
|
14434
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
14435
|
+
end
|
|
14436
|
+
end
|
|
14437
|
+
|
|
14303
14438
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
14304
14439
|
# docs/service-agents#dialogflow-service-agent).
|
|
14305
14440
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
@@ -15837,6 +15972,11 @@ module Google
|
|
|
15837
15972
|
# @return [Hash<String,Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue>]
|
|
15838
15973
|
attr_accessor :secret_versions_for_request_headers
|
|
15839
15974
|
|
|
15975
|
+
# Configuration for authentication using a service account.
|
|
15976
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
15977
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig]
|
|
15978
|
+
attr_accessor :service_account_auth_config
|
|
15979
|
+
|
|
15840
15980
|
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
|
15841
15981
|
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
|
15842
15982
|
# agent). The generated token is sent in the Authorization header.
|
|
@@ -15875,6 +16015,7 @@ module Google
|
|
|
15875
16015
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
|
15876
16016
|
@secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
|
|
15877
16017
|
@secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
|
|
16018
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
15878
16019
|
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
|
15879
16020
|
@uri = args[:uri] if args.key?(:uri)
|
|
15880
16021
|
@username = args[:username] if args.key?(:username)
|
|
@@ -15950,6 +16091,30 @@ module Google
|
|
|
15950
16091
|
end
|
|
15951
16092
|
end
|
|
15952
16093
|
|
|
16094
|
+
# Configuration for authentication using a service account.
|
|
16095
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
16096
|
+
include Google::Apis::Core::Hashable
|
|
16097
|
+
|
|
16098
|
+
# Required. The email address of the service account used to authenticate the
|
|
16099
|
+
# webhook call. Dialogflow uses this service account to exchange an access token
|
|
16100
|
+
# and the access token is then sent in the `Authorization` header of the webhook
|
|
16101
|
+
# request. The service account must have the `roles/iam.
|
|
16102
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
16103
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
16104
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
16105
|
+
# @return [String]
|
|
16106
|
+
attr_accessor :service_account
|
|
16107
|
+
|
|
16108
|
+
def initialize(**args)
|
|
16109
|
+
update!(**args)
|
|
16110
|
+
end
|
|
16111
|
+
|
|
16112
|
+
# Update properties of this object
|
|
16113
|
+
def update!(**args)
|
|
16114
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
16115
|
+
end
|
|
16116
|
+
end
|
|
16117
|
+
|
|
15953
16118
|
# The request message for a webhook call. The request is sent as a JSON object
|
|
15954
16119
|
# and the field names will be presented in camel cases. You may see undocumented
|
|
15955
16120
|
# fields in an actual request. These fields are used internally by Dialogflow
|
|
@@ -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.113.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251027"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -604,6 +604,12 @@ module Google
|
|
|
604
604
|
include Google::Apis::Core::JsonObjectSupport
|
|
605
605
|
end
|
|
606
606
|
|
|
607
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
608
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
609
|
+
|
|
610
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
611
|
+
end
|
|
612
|
+
|
|
607
613
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
|
608
614
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
609
615
|
|
|
@@ -880,6 +886,12 @@ module Google
|
|
|
880
886
|
include Google::Apis::Core::JsonObjectSupport
|
|
881
887
|
end
|
|
882
888
|
|
|
889
|
+
class GoogleCloudDialogflowCxV3beta1CodeBlock
|
|
890
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
891
|
+
|
|
892
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
893
|
+
end
|
|
894
|
+
|
|
883
895
|
class GoogleCloudDialogflowCxV3beta1CompareVersionsRequest
|
|
884
896
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
885
897
|
|
|
@@ -1786,6 +1798,12 @@ module Google
|
|
|
1786
1798
|
include Google::Apis::Core::JsonObjectSupport
|
|
1787
1799
|
end
|
|
1788
1800
|
|
|
1801
|
+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
|
|
1802
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1803
|
+
|
|
1804
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1805
|
+
end
|
|
1806
|
+
|
|
1789
1807
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
|
1790
1808
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1791
1809
|
|
|
@@ -2284,6 +2302,12 @@ module Google
|
|
|
2284
2302
|
include Google::Apis::Core::JsonObjectSupport
|
|
2285
2303
|
end
|
|
2286
2304
|
|
|
2305
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
2306
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2307
|
+
|
|
2308
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2309
|
+
end
|
|
2310
|
+
|
|
2287
2311
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
2288
2312
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2289
2313
|
|
|
@@ -2566,6 +2590,12 @@ module Google
|
|
|
2566
2590
|
include Google::Apis::Core::JsonObjectSupport
|
|
2567
2591
|
end
|
|
2568
2592
|
|
|
2593
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
2594
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2595
|
+
|
|
2596
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2597
|
+
end
|
|
2598
|
+
|
|
2569
2599
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
2570
2600
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2571
2601
|
|
|
@@ -4995,6 +5025,8 @@ module Google
|
|
|
4995
5025
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
4996
5026
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
4997
5027
|
|
|
5028
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
5029
|
+
|
|
4998
5030
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
4999
5031
|
property :uri, as: 'uri'
|
|
5000
5032
|
property :username, as: 'username'
|
|
@@ -5020,6 +5052,13 @@ module Google
|
|
|
5020
5052
|
end
|
|
5021
5053
|
end
|
|
5022
5054
|
|
|
5055
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
5056
|
+
# @private
|
|
5057
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5058
|
+
property :service_account, as: 'serviceAccount'
|
|
5059
|
+
end
|
|
5060
|
+
end
|
|
5061
|
+
|
|
5023
5062
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
|
5024
5063
|
# @private
|
|
5025
5064
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5523,6 +5562,13 @@ module Google
|
|
|
5523
5562
|
end
|
|
5524
5563
|
end
|
|
5525
5564
|
|
|
5565
|
+
class GoogleCloudDialogflowCxV3beta1CodeBlock
|
|
5566
|
+
# @private
|
|
5567
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5568
|
+
property :code, as: 'code'
|
|
5569
|
+
end
|
|
5570
|
+
end
|
|
5571
|
+
|
|
5526
5572
|
class GoogleCloudDialogflowCxV3beta1CompareVersionsRequest
|
|
5527
5573
|
# @private
|
|
5528
5574
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7045,10 +7091,21 @@ module Google
|
|
|
7045
7091
|
# @private
|
|
7046
7092
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7047
7093
|
property :model, as: 'model'
|
|
7094
|
+
property :parameters, as: 'parameters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters::Representation
|
|
7095
|
+
|
|
7048
7096
|
property :prompt_text, as: 'promptText'
|
|
7049
7097
|
end
|
|
7050
7098
|
end
|
|
7051
7099
|
|
|
7100
|
+
class GoogleCloudDialogflowCxV3beta1LlmModelSettingsParameters
|
|
7101
|
+
# @private
|
|
7102
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7103
|
+
property :input_token_limit, as: 'inputTokenLimit'
|
|
7104
|
+
property :output_token_limit, as: 'outputTokenLimit'
|
|
7105
|
+
property :temperature, as: 'temperature'
|
|
7106
|
+
end
|
|
7107
|
+
end
|
|
7108
|
+
|
|
7052
7109
|
class GoogleCloudDialogflowCxV3beta1LoadVersionRequest
|
|
7053
7110
|
# @private
|
|
7054
7111
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7203,11 +7260,14 @@ module Google
|
|
|
7203
7260
|
class GoogleCloudDialogflowCxV3beta1Playbook
|
|
7204
7261
|
# @private
|
|
7205
7262
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7263
|
+
property :code_block, as: 'codeBlock', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock::Representation
|
|
7264
|
+
|
|
7206
7265
|
property :create_time, as: 'createTime'
|
|
7207
7266
|
property :display_name, as: 'displayName'
|
|
7208
7267
|
property :goal, as: 'goal'
|
|
7209
7268
|
collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler::Representation
|
|
7210
7269
|
|
|
7270
|
+
collection :inline_actions, as: 'inlineActions'
|
|
7211
7271
|
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
|
|
7212
7272
|
|
|
7213
7273
|
property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction::Representation
|
|
@@ -7894,6 +7954,8 @@ module Google
|
|
|
7894
7954
|
|
|
7895
7955
|
property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig::Representation
|
|
7896
7956
|
|
|
7957
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig::Representation
|
|
7958
|
+
|
|
7897
7959
|
property :service_agent_auth_config, as: 'serviceAgentAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig::Representation
|
|
7898
7960
|
|
|
7899
7961
|
end
|
|
@@ -7929,6 +7991,13 @@ module Google
|
|
|
7929
7991
|
end
|
|
7930
7992
|
end
|
|
7931
7993
|
|
|
7994
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
7995
|
+
# @private
|
|
7996
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7997
|
+
property :service_account, as: 'serviceAccount'
|
|
7998
|
+
end
|
|
7999
|
+
end
|
|
8000
|
+
|
|
7932
8001
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
7933
8002
|
# @private
|
|
7934
8003
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8367,6 +8436,8 @@ module Google
|
|
|
8367
8436
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
8368
8437
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
8369
8438
|
|
|
8439
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
8440
|
+
|
|
8370
8441
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
8371
8442
|
property :uri, as: 'uri'
|
|
8372
8443
|
property :username, as: 'username'
|
|
@@ -8392,6 +8463,13 @@ module Google
|
|
|
8392
8463
|
end
|
|
8393
8464
|
end
|
|
8394
8465
|
|
|
8466
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
8467
|
+
# @private
|
|
8468
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8469
|
+
property :service_account, as: 'serviceAccount'
|
|
8470
|
+
end
|
|
8471
|
+
end
|
|
8472
|
+
|
|
8395
8473
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
8396
8474
|
# @private
|
|
8397
8475
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -86,8 +86,8 @@ module Google
|
|
|
86
86
|
# @param [String] name
|
|
87
87
|
# The resource that owns the locations collection, if applicable.
|
|
88
88
|
# @param [Array<String>, String] extra_location_types
|
|
89
|
-
# Optional.
|
|
90
|
-
#
|
|
89
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
|
90
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
|
91
91
|
# @param [String] filter
|
|
92
92
|
# A filter to narrow down results to a preferred subset. The filtering language
|
|
93
93
|
# accepts strings like `"displayName=tokyo"`, and is documented in more detail
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.113.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_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.113.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:
|