google-apis-dialogflow_v3 0.116.0 → 0.118.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: 3eba67a33136181db50d673c546f7d964683a91ff80869cf65363cf5a58ae3ee
|
|
4
|
+
data.tar.gz: 3dd4503d1a2bd8ba9087d2a5f1602eac2a22a7aaaac8eb00461e0f9fc9556b6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 903c6611d5629feac94d1040b6030790a50c42fe2d06e61419282a495dedd582b49599e96e0df577daf53abbeb6401c5a574614afbe4e013a5fe89d09bc1dbe1
|
|
7
|
+
data.tar.gz: 4f5ce593735df8a04ea5b217e52faee0951f243c0f8c6cfc096cd2e6030d5dc0e558f1211ade95b7fc087acc2e4399c1d3c14bae7e161a32cb47d426cf79b984
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3
|
|
2
2
|
|
|
3
|
+
### v0.118.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251209
|
|
6
|
+
|
|
7
|
+
### v0.117.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251027
|
|
10
|
+
|
|
3
11
|
### v0.116.0 (2025-10-05)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250929
|
|
@@ -1154,6 +1154,25 @@ module Google
|
|
|
1154
1154
|
end
|
|
1155
1155
|
end
|
|
1156
1156
|
|
|
1157
|
+
# Represents a code block.
|
|
1158
|
+
class GoogleCloudDialogflowCxV3CodeBlock
|
|
1159
|
+
include Google::Apis::Core::Hashable
|
|
1160
|
+
|
|
1161
|
+
# Optional. Source code of the block in Python.
|
|
1162
|
+
# Corresponds to the JSON property `code`
|
|
1163
|
+
# @return [String]
|
|
1164
|
+
attr_accessor :code
|
|
1165
|
+
|
|
1166
|
+
def initialize(**args)
|
|
1167
|
+
update!(**args)
|
|
1168
|
+
end
|
|
1169
|
+
|
|
1170
|
+
# Update properties of this object
|
|
1171
|
+
def update!(**args)
|
|
1172
|
+
@code = args[:code] if args.key?(:code)
|
|
1173
|
+
end
|
|
1174
|
+
end
|
|
1175
|
+
|
|
1157
1176
|
# The request message for Versions.CompareVersions.
|
|
1158
1177
|
class GoogleCloudDialogflowCxV3CompareVersionsRequest
|
|
1159
1178
|
include Google::Apis::Core::Hashable
|
|
@@ -1932,6 +1951,12 @@ module Google
|
|
|
1932
1951
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters]
|
|
1933
1952
|
attr_accessor :query_params
|
|
1934
1953
|
|
|
1954
|
+
# Optional. Specifies which fields in the QueryResult to return. If not set, the
|
|
1955
|
+
# default is DETECT_INTENT_RESPONSE_VIEW_FULL.
|
|
1956
|
+
# Corresponds to the JSON property `responseView`
|
|
1957
|
+
# @return [String]
|
|
1958
|
+
attr_accessor :response_view
|
|
1959
|
+
|
|
1935
1960
|
def initialize(**args)
|
|
1936
1961
|
update!(**args)
|
|
1937
1962
|
end
|
|
@@ -1941,6 +1966,7 @@ module Google
|
|
|
1941
1966
|
@output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config)
|
|
1942
1967
|
@query_input = args[:query_input] if args.key?(:query_input)
|
|
1943
1968
|
@query_params = args[:query_params] if args.key?(:query_params)
|
|
1969
|
+
@response_view = args[:response_view] if args.key?(:response_view)
|
|
1944
1970
|
end
|
|
1945
1971
|
end
|
|
1946
1972
|
|
|
@@ -6587,6 +6613,11 @@ module Google
|
|
|
6587
6613
|
class GoogleCloudDialogflowCxV3Playbook
|
|
6588
6614
|
include Google::Apis::Core::Hashable
|
|
6589
6615
|
|
|
6616
|
+
# Represents a code block.
|
|
6617
|
+
# Corresponds to the JSON property `codeBlock`
|
|
6618
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock]
|
|
6619
|
+
attr_accessor :code_block
|
|
6620
|
+
|
|
6590
6621
|
# Output only. The timestamp of initial playbook creation.
|
|
6591
6622
|
# Corresponds to the JSON property `createTime`
|
|
6592
6623
|
# @return [String]
|
|
@@ -6610,6 +6641,14 @@ module Google
|
|
|
6610
6641
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler>]
|
|
6611
6642
|
attr_accessor :handlers
|
|
6612
6643
|
|
|
6644
|
+
# Optional. Output only. Names of inline actions scoped to this playbook. These
|
|
6645
|
+
# actions are in addition to those belonging to referenced tools, child
|
|
6646
|
+
# playbooks, and flows, e.g. actions that are defined in the playbook's code
|
|
6647
|
+
# block.
|
|
6648
|
+
# Corresponds to the JSON property `inlineActions`
|
|
6649
|
+
# @return [Array<String>]
|
|
6650
|
+
attr_accessor :inline_actions
|
|
6651
|
+
|
|
6613
6652
|
# Optional. Defined structured input parameters for this playbook.
|
|
6614
6653
|
# Corresponds to the JSON property `inputParameterDefinitions`
|
|
6615
6654
|
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition>]
|
|
@@ -6677,10 +6716,12 @@ module Google
|
|
|
6677
6716
|
|
|
6678
6717
|
# Update properties of this object
|
|
6679
6718
|
def update!(**args)
|
|
6719
|
+
@code_block = args[:code_block] if args.key?(:code_block)
|
|
6680
6720
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
6681
6721
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
6682
6722
|
@goal = args[:goal] if args.key?(:goal)
|
|
6683
6723
|
@handlers = args[:handlers] if args.key?(:handlers)
|
|
6724
|
+
@inline_actions = args[:inline_actions] if args.key?(:inline_actions)
|
|
6684
6725
|
@input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
|
|
6685
6726
|
@instruction = args[:instruction] if args.key?(:instruction)
|
|
6686
6727
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
|
@@ -8138,11 +8179,21 @@ module Google
|
|
|
8138
8179
|
# @return [String]
|
|
8139
8180
|
attr_accessor :default_banned_phrase_match_strategy
|
|
8140
8181
|
|
|
8182
|
+
# Settings for Responsible AI.
|
|
8183
|
+
# Corresponds to the JSON property `defaultRaiSettings`
|
|
8184
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings]
|
|
8185
|
+
attr_accessor :default_rai_settings
|
|
8186
|
+
|
|
8141
8187
|
# Settings for prompt security checks.
|
|
8142
8188
|
# Corresponds to the JSON property `promptSecuritySettings`
|
|
8143
8189
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings]
|
|
8144
8190
|
attr_accessor :prompt_security_settings
|
|
8145
8191
|
|
|
8192
|
+
# Settings for Responsible AI.
|
|
8193
|
+
# Corresponds to the JSON property `raiSettings`
|
|
8194
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings]
|
|
8195
|
+
attr_accessor :rai_settings
|
|
8196
|
+
|
|
8146
8197
|
def initialize(**args)
|
|
8147
8198
|
update!(**args)
|
|
8148
8199
|
end
|
|
@@ -8151,7 +8202,9 @@ module Google
|
|
|
8151
8202
|
def update!(**args)
|
|
8152
8203
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
|
8153
8204
|
@default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
|
|
8205
|
+
@default_rai_settings = args[:default_rai_settings] if args.key?(:default_rai_settings)
|
|
8154
8206
|
@prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
|
|
8207
|
+
@rai_settings = args[:rai_settings] if args.key?(:rai_settings)
|
|
8155
8208
|
end
|
|
8156
8209
|
end
|
|
8157
8210
|
|
|
@@ -8200,6 +8253,50 @@ module Google
|
|
|
8200
8253
|
end
|
|
8201
8254
|
end
|
|
8202
8255
|
|
|
8256
|
+
# Settings for Responsible AI.
|
|
8257
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
|
|
8258
|
+
include Google::Apis::Core::Hashable
|
|
8259
|
+
|
|
8260
|
+
# Optional. RAI blocking configurations.
|
|
8261
|
+
# Corresponds to the JSON property `categoryFilters`
|
|
8262
|
+
# @return [Array<Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter>]
|
|
8263
|
+
attr_accessor :category_filters
|
|
8264
|
+
|
|
8265
|
+
def initialize(**args)
|
|
8266
|
+
update!(**args)
|
|
8267
|
+
end
|
|
8268
|
+
|
|
8269
|
+
# Update properties of this object
|
|
8270
|
+
def update!(**args)
|
|
8271
|
+
@category_filters = args[:category_filters] if args.key?(:category_filters)
|
|
8272
|
+
end
|
|
8273
|
+
end
|
|
8274
|
+
|
|
8275
|
+
# Configuration of the sensitivity level for blocking an RAI category.
|
|
8276
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
|
|
8277
|
+
include Google::Apis::Core::Hashable
|
|
8278
|
+
|
|
8279
|
+
# RAI category to configure.
|
|
8280
|
+
# Corresponds to the JSON property `category`
|
|
8281
|
+
# @return [String]
|
|
8282
|
+
attr_accessor :category
|
|
8283
|
+
|
|
8284
|
+
# Blocking sensitivity level to configure for the RAI category.
|
|
8285
|
+
# Corresponds to the JSON property `filterLevel`
|
|
8286
|
+
# @return [String]
|
|
8287
|
+
attr_accessor :filter_level
|
|
8288
|
+
|
|
8289
|
+
def initialize(**args)
|
|
8290
|
+
update!(**args)
|
|
8291
|
+
end
|
|
8292
|
+
|
|
8293
|
+
# Update properties of this object
|
|
8294
|
+
def update!(**args)
|
|
8295
|
+
@category = args[:category] if args.key?(:category)
|
|
8296
|
+
@filter_level = args[:filter_level] if args.key?(:filter_level)
|
|
8297
|
+
end
|
|
8298
|
+
end
|
|
8299
|
+
|
|
8203
8300
|
# Search configuration for UCS search queries.
|
|
8204
8301
|
class GoogleCloudDialogflowCxV3SearchConfig
|
|
8205
8302
|
include Google::Apis::Core::Hashable
|
|
@@ -9020,6 +9117,11 @@ module Google
|
|
|
9020
9117
|
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig]
|
|
9021
9118
|
attr_accessor :oauth_config
|
|
9022
9119
|
|
|
9120
|
+
# Configuration for authentication using a service account.
|
|
9121
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
9122
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig]
|
|
9123
|
+
attr_accessor :service_account_auth_config
|
|
9124
|
+
|
|
9023
9125
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
9024
9126
|
# docs/service-agents#dialogflow-service-agent).
|
|
9025
9127
|
# Corresponds to the JSON property `serviceAgentAuthConfig`
|
|
@@ -9035,6 +9137,7 @@ module Google
|
|
|
9035
9137
|
@api_key_config = args[:api_key_config] if args.key?(:api_key_config)
|
|
9036
9138
|
@bearer_token_config = args[:bearer_token_config] if args.key?(:bearer_token_config)
|
|
9037
9139
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
|
9140
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
9038
9141
|
@service_agent_auth_config = args[:service_agent_auth_config] if args.key?(:service_agent_auth_config)
|
|
9039
9142
|
end
|
|
9040
9143
|
end
|
|
@@ -9164,6 +9267,30 @@ module Google
|
|
|
9164
9267
|
end
|
|
9165
9268
|
end
|
|
9166
9269
|
|
|
9270
|
+
# Configuration for authentication using a service account.
|
|
9271
|
+
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
|
|
9272
|
+
include Google::Apis::Core::Hashable
|
|
9273
|
+
|
|
9274
|
+
# Required. The email address of the service account used to authenticate the
|
|
9275
|
+
# tool call. Dialogflow uses this service account to exchange an access token
|
|
9276
|
+
# and the access token is then sent in the `Authorization` header of the tool
|
|
9277
|
+
# request. The service account must have the `roles/iam.
|
|
9278
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
9279
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
9280
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
9281
|
+
# @return [String]
|
|
9282
|
+
attr_accessor :service_account
|
|
9283
|
+
|
|
9284
|
+
def initialize(**args)
|
|
9285
|
+
update!(**args)
|
|
9286
|
+
end
|
|
9287
|
+
|
|
9288
|
+
# Update properties of this object
|
|
9289
|
+
def update!(**args)
|
|
9290
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
9291
|
+
end
|
|
9292
|
+
end
|
|
9293
|
+
|
|
9167
9294
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
9168
9295
|
# docs/service-agents#dialogflow-service-agent).
|
|
9169
9296
|
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
|
|
@@ -10425,6 +10552,11 @@ module Google
|
|
|
10425
10552
|
# @return [Hash<String,Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue>]
|
|
10426
10553
|
attr_accessor :secret_versions_for_request_headers
|
|
10427
10554
|
|
|
10555
|
+
# Configuration for authentication using a service account.
|
|
10556
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
10557
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig]
|
|
10558
|
+
attr_accessor :service_account_auth_config
|
|
10559
|
+
|
|
10428
10560
|
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
|
10429
10561
|
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
|
10430
10562
|
# agent). The generated token is sent in the Authorization header.
|
|
@@ -10463,6 +10595,7 @@ module Google
|
|
|
10463
10595
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
|
10464
10596
|
@secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
|
|
10465
10597
|
@secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
|
|
10598
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
10466
10599
|
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
|
10467
10600
|
@uri = args[:uri] if args.key?(:uri)
|
|
10468
10601
|
@username = args[:username] if args.key?(:username)
|
|
@@ -10538,6 +10671,30 @@ module Google
|
|
|
10538
10671
|
end
|
|
10539
10672
|
end
|
|
10540
10673
|
|
|
10674
|
+
# Configuration for authentication using a service account.
|
|
10675
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
10676
|
+
include Google::Apis::Core::Hashable
|
|
10677
|
+
|
|
10678
|
+
# Required. The email address of the service account used to authenticate the
|
|
10679
|
+
# webhook call. Dialogflow uses this service account to exchange an access token
|
|
10680
|
+
# and the access token is then sent in the `Authorization` header of the webhook
|
|
10681
|
+
# request. The service account must have the `roles/iam.
|
|
10682
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
10683
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
10684
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
10685
|
+
# @return [String]
|
|
10686
|
+
attr_accessor :service_account
|
|
10687
|
+
|
|
10688
|
+
def initialize(**args)
|
|
10689
|
+
update!(**args)
|
|
10690
|
+
end
|
|
10691
|
+
|
|
10692
|
+
# Update properties of this object
|
|
10693
|
+
def update!(**args)
|
|
10694
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
10695
|
+
end
|
|
10696
|
+
end
|
|
10697
|
+
|
|
10541
10698
|
# The request message for a webhook call. The request is sent as a JSON object
|
|
10542
10699
|
# and the field names will be presented in camel cases. You may see undocumented
|
|
10543
10700
|
# fields in an actual request. These fields are used internally by Dialogflow
|
|
@@ -14350,6 +14507,11 @@ module Google
|
|
|
14350
14507
|
# @return [Hash<String,Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue>]
|
|
14351
14508
|
attr_accessor :secret_versions_for_request_headers
|
|
14352
14509
|
|
|
14510
|
+
# Configuration for authentication using a service account.
|
|
14511
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
14512
|
+
# @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig]
|
|
14513
|
+
attr_accessor :service_account_auth_config
|
|
14514
|
+
|
|
14353
14515
|
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
|
14354
14516
|
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
|
14355
14517
|
# agent). The generated token is sent in the Authorization header.
|
|
@@ -14388,6 +14550,7 @@ module Google
|
|
|
14388
14550
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
|
14389
14551
|
@secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
|
|
14390
14552
|
@secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
|
|
14553
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
14391
14554
|
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
|
14392
14555
|
@uri = args[:uri] if args.key?(:uri)
|
|
14393
14556
|
@username = args[:username] if args.key?(:username)
|
|
@@ -14463,6 +14626,30 @@ module Google
|
|
|
14463
14626
|
end
|
|
14464
14627
|
end
|
|
14465
14628
|
|
|
14629
|
+
# Configuration for authentication using a service account.
|
|
14630
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
14631
|
+
include Google::Apis::Core::Hashable
|
|
14632
|
+
|
|
14633
|
+
# Required. The email address of the service account used to authenticate the
|
|
14634
|
+
# webhook call. Dialogflow uses this service account to exchange an access token
|
|
14635
|
+
# and the access token is then sent in the `Authorization` header of the webhook
|
|
14636
|
+
# request. The service account must have the `roles/iam.
|
|
14637
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
14638
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
14639
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
14640
|
+
# @return [String]
|
|
14641
|
+
attr_accessor :service_account
|
|
14642
|
+
|
|
14643
|
+
def initialize(**args)
|
|
14644
|
+
update!(**args)
|
|
14645
|
+
end
|
|
14646
|
+
|
|
14647
|
+
# Update properties of this object
|
|
14648
|
+
def update!(**args)
|
|
14649
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
14650
|
+
end
|
|
14651
|
+
end
|
|
14652
|
+
|
|
14466
14653
|
# The request message for a webhook call. The request is sent as a JSON object
|
|
14467
14654
|
# and the field names will be presented in camel cases. You may see undocumented
|
|
14468
14655
|
# fields in an actual request. These fields are used internally by Dialogflow
|
|
@@ -23672,8 +23859,9 @@ module Google
|
|
|
23672
23859
|
attr_accessor :operations
|
|
23673
23860
|
|
|
23674
23861
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
23675
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
23676
|
-
# when attempting to list all resources across all supported
|
|
23862
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
23863
|
+
# For example, when attempting to list all resources across all supported
|
|
23864
|
+
# locations.
|
|
23677
23865
|
# Corresponds to the JSON property `unreachable`
|
|
23678
23866
|
# @return [Array<String>]
|
|
23679
23867
|
attr_accessor :unreachable
|
|
@@ -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.118.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 = "20251209"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -196,6 +196,12 @@ module Google
|
|
|
196
196
|
include Google::Apis::Core::JsonObjectSupport
|
|
197
197
|
end
|
|
198
198
|
|
|
199
|
+
class GoogleCloudDialogflowCxV3CodeBlock
|
|
200
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
|
+
|
|
202
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
203
|
+
end
|
|
204
|
+
|
|
199
205
|
class GoogleCloudDialogflowCxV3CompareVersionsRequest
|
|
200
206
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
201
207
|
|
|
@@ -1342,6 +1348,18 @@ module Google
|
|
|
1342
1348
|
include Google::Apis::Core::JsonObjectSupport
|
|
1343
1349
|
end
|
|
1344
1350
|
|
|
1351
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
|
|
1352
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1353
|
+
|
|
1354
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1355
|
+
end
|
|
1356
|
+
|
|
1357
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
|
|
1358
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1359
|
+
|
|
1360
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1361
|
+
end
|
|
1362
|
+
|
|
1345
1363
|
class GoogleCloudDialogflowCxV3SearchConfig
|
|
1346
1364
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1347
1365
|
|
|
@@ -1492,6 +1510,12 @@ module Google
|
|
|
1492
1510
|
include Google::Apis::Core::JsonObjectSupport
|
|
1493
1511
|
end
|
|
1494
1512
|
|
|
1513
|
+
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
|
|
1514
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1515
|
+
|
|
1516
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1517
|
+
end
|
|
1518
|
+
|
|
1495
1519
|
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
|
|
1496
1520
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1497
1521
|
|
|
@@ -1720,6 +1744,12 @@ module Google
|
|
|
1720
1744
|
include Google::Apis::Core::JsonObjectSupport
|
|
1721
1745
|
end
|
|
1722
1746
|
|
|
1747
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
1748
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1749
|
+
|
|
1750
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
1751
|
+
end
|
|
1752
|
+
|
|
1723
1753
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
|
1724
1754
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
1725
1755
|
|
|
@@ -2350,6 +2380,12 @@ module Google
|
|
|
2350
2380
|
include Google::Apis::Core::JsonObjectSupport
|
|
2351
2381
|
end
|
|
2352
2382
|
|
|
2383
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
2384
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2385
|
+
|
|
2386
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2387
|
+
end
|
|
2388
|
+
|
|
2353
2389
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
2354
2390
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2355
2391
|
|
|
@@ -4150,6 +4186,13 @@ module Google
|
|
|
4150
4186
|
end
|
|
4151
4187
|
end
|
|
4152
4188
|
|
|
4189
|
+
class GoogleCloudDialogflowCxV3CodeBlock
|
|
4190
|
+
# @private
|
|
4191
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
4192
|
+
property :code, as: 'code'
|
|
4193
|
+
end
|
|
4194
|
+
end
|
|
4195
|
+
|
|
4153
4196
|
class GoogleCloudDialogflowCxV3CompareVersionsRequest
|
|
4154
4197
|
# @private
|
|
4155
4198
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -4378,6 +4421,7 @@ module Google
|
|
|
4378
4421
|
|
|
4379
4422
|
property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3QueryParameters::Representation
|
|
4380
4423
|
|
|
4424
|
+
property :response_view, as: 'responseView'
|
|
4381
4425
|
end
|
|
4382
4426
|
end
|
|
4383
4427
|
|
|
@@ -5640,11 +5684,14 @@ module Google
|
|
|
5640
5684
|
class GoogleCloudDialogflowCxV3Playbook
|
|
5641
5685
|
# @private
|
|
5642
5686
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5687
|
+
property :code_block, as: 'codeBlock', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3CodeBlock::Representation
|
|
5688
|
+
|
|
5643
5689
|
property :create_time, as: 'createTime'
|
|
5644
5690
|
property :display_name, as: 'displayName'
|
|
5645
5691
|
property :goal, as: 'goal'
|
|
5646
5692
|
collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3Handler::Representation
|
|
5647
5693
|
|
|
5694
|
+
collection :inline_actions, as: 'inlineActions'
|
|
5648
5695
|
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ParameterDefinition::Representation
|
|
5649
5696
|
|
|
5650
5697
|
property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3PlaybookInstruction::Representation
|
|
@@ -6054,8 +6101,12 @@ module Google
|
|
|
6054
6101
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPhrase::Representation
|
|
6055
6102
|
|
|
6056
6103
|
property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
|
|
6104
|
+
property :default_rai_settings, as: 'defaultRaiSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings::Representation
|
|
6105
|
+
|
|
6057
6106
|
property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsPromptSecuritySettings::Representation
|
|
6058
6107
|
|
|
6108
|
+
property :rai_settings, as: 'raiSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettings::Representation
|
|
6109
|
+
|
|
6059
6110
|
end
|
|
6060
6111
|
end
|
|
6061
6112
|
|
|
@@ -6074,6 +6125,22 @@ module Google
|
|
|
6074
6125
|
end
|
|
6075
6126
|
end
|
|
6076
6127
|
|
|
6128
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettings
|
|
6129
|
+
# @private
|
|
6130
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6131
|
+
collection :category_filters, as: 'categoryFilters', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter::Representation
|
|
6132
|
+
|
|
6133
|
+
end
|
|
6134
|
+
end
|
|
6135
|
+
|
|
6136
|
+
class GoogleCloudDialogflowCxV3SafetySettingsRaiSettingsCategoryFilter
|
|
6137
|
+
# @private
|
|
6138
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6139
|
+
property :category, as: 'category'
|
|
6140
|
+
property :filter_level, as: 'filterLevel'
|
|
6141
|
+
end
|
|
6142
|
+
end
|
|
6143
|
+
|
|
6077
6144
|
class GoogleCloudDialogflowCxV3SearchConfig
|
|
6078
6145
|
# @private
|
|
6079
6146
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -6294,6 +6361,8 @@ module Google
|
|
|
6294
6361
|
|
|
6295
6362
|
property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationOAuthConfig::Representation
|
|
6296
6363
|
|
|
6364
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig::Representation
|
|
6365
|
+
|
|
6297
6366
|
property :service_agent_auth_config, as: 'serviceAgentAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig::Representation
|
|
6298
6367
|
|
|
6299
6368
|
end
|
|
@@ -6329,6 +6398,13 @@ module Google
|
|
|
6329
6398
|
end
|
|
6330
6399
|
end
|
|
6331
6400
|
|
|
6401
|
+
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAccountAuthConfig
|
|
6402
|
+
# @private
|
|
6403
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6404
|
+
property :service_account, as: 'serviceAccount'
|
|
6405
|
+
end
|
|
6406
|
+
end
|
|
6407
|
+
|
|
6332
6408
|
class GoogleCloudDialogflowCxV3ToolAuthenticationServiceAgentAuthConfig
|
|
6333
6409
|
# @private
|
|
6334
6410
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -6682,6 +6758,8 @@ module Google
|
|
|
6682
6758
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
6683
6759
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
6684
6760
|
|
|
6761
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
6762
|
+
|
|
6685
6763
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
6686
6764
|
property :uri, as: 'uri'
|
|
6687
6765
|
property :username, as: 'username'
|
|
@@ -6707,6 +6785,13 @@ module Google
|
|
|
6707
6785
|
end
|
|
6708
6786
|
end
|
|
6709
6787
|
|
|
6788
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
6789
|
+
# @private
|
|
6790
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
6791
|
+
property :service_account, as: 'serviceAccount'
|
|
6792
|
+
end
|
|
6793
|
+
end
|
|
6794
|
+
|
|
6710
6795
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
|
6711
6796
|
# @private
|
|
6712
6797
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7736,6 +7821,8 @@ module Google
|
|
|
7736
7821
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
7737
7822
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
7738
7823
|
|
|
7824
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
7825
|
+
|
|
7739
7826
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
7740
7827
|
property :uri, as: 'uri'
|
|
7741
7828
|
property :username, as: 'username'
|
|
@@ -7761,6 +7848,13 @@ module Google
|
|
|
7761
7848
|
end
|
|
7762
7849
|
end
|
|
7763
7850
|
|
|
7851
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
7852
|
+
# @private
|
|
7853
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7854
|
+
property :service_account, as: 'serviceAccount'
|
|
7855
|
+
end
|
|
7856
|
+
end
|
|
7857
|
+
|
|
7764
7858
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
7765
7859
|
# @private
|
|
7766
7860
|
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
|
|
@@ -5756,11 +5756,12 @@ module Google
|
|
|
5756
5756
|
# The standard list page token.
|
|
5757
5757
|
# @param [Boolean] return_partial_success
|
|
5758
5758
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
5759
|
-
# those that are unreachable are returned in the
|
|
5760
|
-
# unreachable
|
|
5761
|
-
#
|
|
5762
|
-
# by default
|
|
5763
|
-
# explicitly documented otherwise in service or product specific
|
|
5759
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
5760
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
5761
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
5762
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
5763
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
5764
|
+
# documentation.
|
|
5764
5765
|
# @param [String] fields
|
|
5765
5766
|
# Selector specifying which fields to include in a partial response.
|
|
5766
5767
|
# @param [String] quota_user
|
|
@@ -6047,11 +6048,12 @@ module Google
|
|
|
6047
6048
|
# The standard list page token.
|
|
6048
6049
|
# @param [Boolean] return_partial_success
|
|
6049
6050
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
6050
|
-
# those that are unreachable are returned in the
|
|
6051
|
-
# unreachable
|
|
6052
|
-
#
|
|
6053
|
-
# by default
|
|
6054
|
-
# explicitly documented otherwise in service or product specific
|
|
6051
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
6052
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
6053
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
6054
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
6055
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
6056
|
+
# documentation.
|
|
6055
6057
|
# @param [String] fields
|
|
6056
6058
|
# Selector specifying which fields to include in a partial response.
|
|
6057
6059
|
# @param [String] quota_user
|
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.118.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.118.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:
|