google-apis-dialogflow_v3beta1 0.112.0 → 0.114.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 +190 -2
- data/lib/google/apis/dialogflow_v3beta1/gem_version.rb +2 -2
- data/lib/google/apis/dialogflow_v3beta1/representations.rb +94 -0
- data/lib/google/apis/dialogflow_v3beta1/service.rb +14 -12
- 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: 984b65fa408f1c12733f0836dbdcd50ad0a805de8f60c18a933b90b5439ea592
|
|
4
|
+
data.tar.gz: 5753558a517bec56b2f77232e0883c27f8755acc97a1f6fd2e7732057826bf5c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4eb6200c5d32c7d7bb592d4f56178f91b8bdef27ee12eadcd5484707c81728143eb432eee1b3da402bd30b6ddb1ebcaeb5e3d65f8e79b69c1a29d2af956b7fbc
|
|
7
|
+
data.tar.gz: 31b0f575426c7f315c43bc4d6912b27a7ade662bb989fb541747a91c3c6d32afc00a6f444fa5dc014a141a0059712d6c1aa7c2b792becec8d2b130dc99c3c37b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-dialogflow_v3beta1
|
|
2
2
|
|
|
3
|
+
### v0.114.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251209
|
|
6
|
+
|
|
7
|
+
### v0.113.0 (2025-11-02)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251027
|
|
10
|
+
|
|
3
11
|
### v0.112.0 (2025-10-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20251013
|
|
@@ -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
|
|
@@ -6599,6 +6648,12 @@ module Google
|
|
|
6599
6648
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters]
|
|
6600
6649
|
attr_accessor :query_params
|
|
6601
6650
|
|
|
6651
|
+
# Optional. Specifies which fields in the QueryResult to return. If not set, the
|
|
6652
|
+
# default is DETECT_INTENT_RESPONSE_VIEW_FULL.
|
|
6653
|
+
# Corresponds to the JSON property `responseView`
|
|
6654
|
+
# @return [String]
|
|
6655
|
+
attr_accessor :response_view
|
|
6656
|
+
|
|
6602
6657
|
# Required. The name of the session this query is sent to. Format: `projects//
|
|
6603
6658
|
# locations//agents//sessions/` or `projects//locations//agents//environments//
|
|
6604
6659
|
# sessions/`. If `Environment ID` is not specified, we assume default 'draft'
|
|
@@ -6622,6 +6677,7 @@ module Google
|
|
|
6622
6677
|
@output_audio_config = args[:output_audio_config] if args.key?(:output_audio_config)
|
|
6623
6678
|
@query_input = args[:query_input] if args.key?(:query_input)
|
|
6624
6679
|
@query_params = args[:query_params] if args.key?(:query_params)
|
|
6680
|
+
@response_view = args[:response_view] if args.key?(:response_view)
|
|
6625
6681
|
@session = args[:session] if args.key?(:session)
|
|
6626
6682
|
end
|
|
6627
6683
|
end
|
|
@@ -11618,6 +11674,11 @@ module Google
|
|
|
11618
11674
|
class GoogleCloudDialogflowCxV3beta1Playbook
|
|
11619
11675
|
include Google::Apis::Core::Hashable
|
|
11620
11676
|
|
|
11677
|
+
# Represents a code block.
|
|
11678
|
+
# Corresponds to the JSON property `codeBlock`
|
|
11679
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock]
|
|
11680
|
+
attr_accessor :code_block
|
|
11681
|
+
|
|
11621
11682
|
# Output only. The timestamp of initial playbook creation.
|
|
11622
11683
|
# Corresponds to the JSON property `createTime`
|
|
11623
11684
|
# @return [String]
|
|
@@ -11641,6 +11702,14 @@ module Google
|
|
|
11641
11702
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler>]
|
|
11642
11703
|
attr_accessor :handlers
|
|
11643
11704
|
|
|
11705
|
+
# Optional. Output only. Names of inline actions scoped to this playbook. These
|
|
11706
|
+
# actions are in addition to those belonging to referenced tools, child
|
|
11707
|
+
# playbooks, and flows, e.g. actions that are defined in the playbook's code
|
|
11708
|
+
# block.
|
|
11709
|
+
# Corresponds to the JSON property `inlineActions`
|
|
11710
|
+
# @return [Array<String>]
|
|
11711
|
+
attr_accessor :inline_actions
|
|
11712
|
+
|
|
11644
11713
|
# Optional. Defined structured input parameters for this playbook.
|
|
11645
11714
|
# Corresponds to the JSON property `inputParameterDefinitions`
|
|
11646
11715
|
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
|
|
@@ -11713,10 +11782,12 @@ module Google
|
|
|
11713
11782
|
|
|
11714
11783
|
# Update properties of this object
|
|
11715
11784
|
def update!(**args)
|
|
11785
|
+
@code_block = args[:code_block] if args.key?(:code_block)
|
|
11716
11786
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
11717
11787
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
11718
11788
|
@goal = args[:goal] if args.key?(:goal)
|
|
11719
11789
|
@handlers = args[:handlers] if args.key?(:handlers)
|
|
11790
|
+
@inline_actions = args[:inline_actions] if args.key?(:inline_actions)
|
|
11720
11791
|
@input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
|
|
11721
11792
|
@instruction = args[:instruction] if args.key?(:instruction)
|
|
11722
11793
|
@llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
|
|
@@ -13240,11 +13311,21 @@ module Google
|
|
|
13240
13311
|
# @return [String]
|
|
13241
13312
|
attr_accessor :default_banned_phrase_match_strategy
|
|
13242
13313
|
|
|
13314
|
+
# Settings for Responsible AI.
|
|
13315
|
+
# Corresponds to the JSON property `defaultRaiSettings`
|
|
13316
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings]
|
|
13317
|
+
attr_accessor :default_rai_settings
|
|
13318
|
+
|
|
13243
13319
|
# Settings for prompt security checks.
|
|
13244
13320
|
# Corresponds to the JSON property `promptSecuritySettings`
|
|
13245
13321
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings]
|
|
13246
13322
|
attr_accessor :prompt_security_settings
|
|
13247
13323
|
|
|
13324
|
+
# Settings for Responsible AI.
|
|
13325
|
+
# Corresponds to the JSON property `raiSettings`
|
|
13326
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings]
|
|
13327
|
+
attr_accessor :rai_settings
|
|
13328
|
+
|
|
13248
13329
|
def initialize(**args)
|
|
13249
13330
|
update!(**args)
|
|
13250
13331
|
end
|
|
@@ -13253,7 +13334,9 @@ module Google
|
|
|
13253
13334
|
def update!(**args)
|
|
13254
13335
|
@banned_phrases = args[:banned_phrases] if args.key?(:banned_phrases)
|
|
13255
13336
|
@default_banned_phrase_match_strategy = args[:default_banned_phrase_match_strategy] if args.key?(:default_banned_phrase_match_strategy)
|
|
13337
|
+
@default_rai_settings = args[:default_rai_settings] if args.key?(:default_rai_settings)
|
|
13256
13338
|
@prompt_security_settings = args[:prompt_security_settings] if args.key?(:prompt_security_settings)
|
|
13339
|
+
@rai_settings = args[:rai_settings] if args.key?(:rai_settings)
|
|
13257
13340
|
end
|
|
13258
13341
|
end
|
|
13259
13342
|
|
|
@@ -13302,6 +13385,50 @@ module Google
|
|
|
13302
13385
|
end
|
|
13303
13386
|
end
|
|
13304
13387
|
|
|
13388
|
+
# Settings for Responsible AI.
|
|
13389
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings
|
|
13390
|
+
include Google::Apis::Core::Hashable
|
|
13391
|
+
|
|
13392
|
+
# Optional. RAI blocking configurations.
|
|
13393
|
+
# Corresponds to the JSON property `categoryFilters`
|
|
13394
|
+
# @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter>]
|
|
13395
|
+
attr_accessor :category_filters
|
|
13396
|
+
|
|
13397
|
+
def initialize(**args)
|
|
13398
|
+
update!(**args)
|
|
13399
|
+
end
|
|
13400
|
+
|
|
13401
|
+
# Update properties of this object
|
|
13402
|
+
def update!(**args)
|
|
13403
|
+
@category_filters = args[:category_filters] if args.key?(:category_filters)
|
|
13404
|
+
end
|
|
13405
|
+
end
|
|
13406
|
+
|
|
13407
|
+
# Configuration of the sensitivity level for blocking an RAI category.
|
|
13408
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter
|
|
13409
|
+
include Google::Apis::Core::Hashable
|
|
13410
|
+
|
|
13411
|
+
# RAI category to configure.
|
|
13412
|
+
# Corresponds to the JSON property `category`
|
|
13413
|
+
# @return [String]
|
|
13414
|
+
attr_accessor :category
|
|
13415
|
+
|
|
13416
|
+
# Blocking sensitivity level to configure for the RAI category.
|
|
13417
|
+
# Corresponds to the JSON property `filterLevel`
|
|
13418
|
+
# @return [String]
|
|
13419
|
+
attr_accessor :filter_level
|
|
13420
|
+
|
|
13421
|
+
def initialize(**args)
|
|
13422
|
+
update!(**args)
|
|
13423
|
+
end
|
|
13424
|
+
|
|
13425
|
+
# Update properties of this object
|
|
13426
|
+
def update!(**args)
|
|
13427
|
+
@category = args[:category] if args.key?(:category)
|
|
13428
|
+
@filter_level = args[:filter_level] if args.key?(:filter_level)
|
|
13429
|
+
end
|
|
13430
|
+
end
|
|
13431
|
+
|
|
13305
13432
|
# Search configuration for UCS search queries.
|
|
13306
13433
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
|
13307
13434
|
include Google::Apis::Core::Hashable
|
|
@@ -14197,6 +14324,11 @@ module Google
|
|
|
14197
14324
|
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig]
|
|
14198
14325
|
attr_accessor :oauth_config
|
|
14199
14326
|
|
|
14327
|
+
# Configuration for authentication using a service account.
|
|
14328
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
14329
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig]
|
|
14330
|
+
attr_accessor :service_account_auth_config
|
|
14331
|
+
|
|
14200
14332
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
14201
14333
|
# docs/service-agents#dialogflow-service-agent).
|
|
14202
14334
|
# Corresponds to the JSON property `serviceAgentAuthConfig`
|
|
@@ -14212,6 +14344,7 @@ module Google
|
|
|
14212
14344
|
@api_key_config = args[:api_key_config] if args.key?(:api_key_config)
|
|
14213
14345
|
@bearer_token_config = args[:bearer_token_config] if args.key?(:bearer_token_config)
|
|
14214
14346
|
@oauth_config = args[:oauth_config] if args.key?(:oauth_config)
|
|
14347
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
14215
14348
|
@service_agent_auth_config = args[:service_agent_auth_config] if args.key?(:service_agent_auth_config)
|
|
14216
14349
|
end
|
|
14217
14350
|
end
|
|
@@ -14341,6 +14474,30 @@ module Google
|
|
|
14341
14474
|
end
|
|
14342
14475
|
end
|
|
14343
14476
|
|
|
14477
|
+
# Configuration for authentication using a service account.
|
|
14478
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
14479
|
+
include Google::Apis::Core::Hashable
|
|
14480
|
+
|
|
14481
|
+
# Required. The email address of the service account used to authenticate the
|
|
14482
|
+
# tool call. Dialogflow uses this service account to exchange an access token
|
|
14483
|
+
# and the access token is then sent in the `Authorization` header of the tool
|
|
14484
|
+
# request. The service account must have the `roles/iam.
|
|
14485
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
14486
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
14487
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
14488
|
+
# @return [String]
|
|
14489
|
+
attr_accessor :service_account
|
|
14490
|
+
|
|
14491
|
+
def initialize(**args)
|
|
14492
|
+
update!(**args)
|
|
14493
|
+
end
|
|
14494
|
+
|
|
14495
|
+
# Update properties of this object
|
|
14496
|
+
def update!(**args)
|
|
14497
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
14498
|
+
end
|
|
14499
|
+
end
|
|
14500
|
+
|
|
14344
14501
|
# Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
|
|
14345
14502
|
# docs/service-agents#dialogflow-service-agent).
|
|
14346
14503
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
@@ -15878,6 +16035,11 @@ module Google
|
|
|
15878
16035
|
# @return [Hash<String,Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue>]
|
|
15879
16036
|
attr_accessor :secret_versions_for_request_headers
|
|
15880
16037
|
|
|
16038
|
+
# Configuration for authentication using a service account.
|
|
16039
|
+
# Corresponds to the JSON property `serviceAccountAuthConfig`
|
|
16040
|
+
# @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig]
|
|
16041
|
+
attr_accessor :service_account_auth_config
|
|
16042
|
+
|
|
15881
16043
|
# Optional. Indicate the auth token type generated from the [Diglogflow service
|
|
15882
16044
|
# agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
|
|
15883
16045
|
# agent). The generated token is sent in the Authorization header.
|
|
@@ -15916,6 +16078,7 @@ module Google
|
|
|
15916
16078
|
@request_headers = args[:request_headers] if args.key?(:request_headers)
|
|
15917
16079
|
@secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
|
|
15918
16080
|
@secret_versions_for_request_headers = args[:secret_versions_for_request_headers] if args.key?(:secret_versions_for_request_headers)
|
|
16081
|
+
@service_account_auth_config = args[:service_account_auth_config] if args.key?(:service_account_auth_config)
|
|
15919
16082
|
@service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
|
|
15920
16083
|
@uri = args[:uri] if args.key?(:uri)
|
|
15921
16084
|
@username = args[:username] if args.key?(:username)
|
|
@@ -15991,6 +16154,30 @@ module Google
|
|
|
15991
16154
|
end
|
|
15992
16155
|
end
|
|
15993
16156
|
|
|
16157
|
+
# Configuration for authentication using a service account.
|
|
16158
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
16159
|
+
include Google::Apis::Core::Hashable
|
|
16160
|
+
|
|
16161
|
+
# Required. The email address of the service account used to authenticate the
|
|
16162
|
+
# webhook call. Dialogflow uses this service account to exchange an access token
|
|
16163
|
+
# and the access token is then sent in the `Authorization` header of the webhook
|
|
16164
|
+
# request. The service account must have the `roles/iam.
|
|
16165
|
+
# serviceAccountTokenCreator` role granted to the [Dialogflow service agent](
|
|
16166
|
+
# https://cloud.google.com/iam/docs/service-agents#dialogflow-service-agent).
|
|
16167
|
+
# Corresponds to the JSON property `serviceAccount`
|
|
16168
|
+
# @return [String]
|
|
16169
|
+
attr_accessor :service_account
|
|
16170
|
+
|
|
16171
|
+
def initialize(**args)
|
|
16172
|
+
update!(**args)
|
|
16173
|
+
end
|
|
16174
|
+
|
|
16175
|
+
# Update properties of this object
|
|
16176
|
+
def update!(**args)
|
|
16177
|
+
@service_account = args[:service_account] if args.key?(:service_account)
|
|
16178
|
+
end
|
|
16179
|
+
end
|
|
16180
|
+
|
|
15994
16181
|
# The request message for a webhook call. The request is sent as a JSON object
|
|
15995
16182
|
# and the field names will be presented in camel cases. You may see undocumented
|
|
15996
16183
|
# fields in an actual request. These fields are used internally by Dialogflow
|
|
@@ -25200,8 +25387,9 @@ module Google
|
|
|
25200
25387
|
attr_accessor :operations
|
|
25201
25388
|
|
|
25202
25389
|
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
25203
|
-
# ListOperationsRequest.return_partial_success` and reads across collections
|
|
25204
|
-
# when attempting to list all resources across all supported
|
|
25390
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
25391
|
+
# For example, when attempting to list all resources across all supported
|
|
25392
|
+
# locations.
|
|
25205
25393
|
# Corresponds to the JSON property `unreachable`
|
|
25206
25394
|
# @return [Array<String>]
|
|
25207
25395
|
attr_accessor :unreachable
|
|
@@ -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.114.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
|
|
@@ -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
|
|
|
@@ -2128,6 +2140,18 @@ module Google
|
|
|
2128
2140
|
include Google::Apis::Core::JsonObjectSupport
|
|
2129
2141
|
end
|
|
2130
2142
|
|
|
2143
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings
|
|
2144
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2145
|
+
|
|
2146
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2147
|
+
end
|
|
2148
|
+
|
|
2149
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter
|
|
2150
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2151
|
+
|
|
2152
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2153
|
+
end
|
|
2154
|
+
|
|
2131
2155
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
|
2132
2156
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2133
2157
|
|
|
@@ -2290,6 +2314,12 @@ module Google
|
|
|
2290
2314
|
include Google::Apis::Core::JsonObjectSupport
|
|
2291
2315
|
end
|
|
2292
2316
|
|
|
2317
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
2318
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2319
|
+
|
|
2320
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2321
|
+
end
|
|
2322
|
+
|
|
2293
2323
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
2294
2324
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2295
2325
|
|
|
@@ -2572,6 +2602,12 @@ module Google
|
|
|
2572
2602
|
include Google::Apis::Core::JsonObjectSupport
|
|
2573
2603
|
end
|
|
2574
2604
|
|
|
2605
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
2606
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2607
|
+
|
|
2608
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
2609
|
+
end
|
|
2610
|
+
|
|
2575
2611
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
2576
2612
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
2577
2613
|
|
|
@@ -5001,6 +5037,8 @@ module Google
|
|
|
5001
5037
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
5002
5038
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
5003
5039
|
|
|
5040
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
5041
|
+
|
|
5004
5042
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
5005
5043
|
property :uri, as: 'uri'
|
|
5006
5044
|
property :username, as: 'username'
|
|
@@ -5026,6 +5064,13 @@ module Google
|
|
|
5026
5064
|
end
|
|
5027
5065
|
end
|
|
5028
5066
|
|
|
5067
|
+
class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
|
|
5068
|
+
# @private
|
|
5069
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5070
|
+
property :service_account, as: 'serviceAccount'
|
|
5071
|
+
end
|
|
5072
|
+
end
|
|
5073
|
+
|
|
5029
5074
|
class GoogleCloudDialogflowCxV3WebhookRequest
|
|
5030
5075
|
# @private
|
|
5031
5076
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5529,6 +5574,13 @@ module Google
|
|
|
5529
5574
|
end
|
|
5530
5575
|
end
|
|
5531
5576
|
|
|
5577
|
+
class GoogleCloudDialogflowCxV3beta1CodeBlock
|
|
5578
|
+
# @private
|
|
5579
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
5580
|
+
property :code, as: 'code'
|
|
5581
|
+
end
|
|
5582
|
+
end
|
|
5583
|
+
|
|
5532
5584
|
class GoogleCloudDialogflowCxV3beta1CompareVersionsRequest
|
|
5533
5585
|
# @private
|
|
5534
5586
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -5859,6 +5911,7 @@ module Google
|
|
|
5859
5911
|
|
|
5860
5912
|
property :query_params, as: 'queryParams', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1QueryParameters::Representation
|
|
5861
5913
|
|
|
5914
|
+
property :response_view, as: 'responseView'
|
|
5862
5915
|
property :session, as: 'session'
|
|
5863
5916
|
end
|
|
5864
5917
|
end
|
|
@@ -7220,11 +7273,14 @@ module Google
|
|
|
7220
7273
|
class GoogleCloudDialogflowCxV3beta1Playbook
|
|
7221
7274
|
# @private
|
|
7222
7275
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7276
|
+
property :code_block, as: 'codeBlock', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1CodeBlock::Representation
|
|
7277
|
+
|
|
7223
7278
|
property :create_time, as: 'createTime'
|
|
7224
7279
|
property :display_name, as: 'displayName'
|
|
7225
7280
|
property :goal, as: 'goal'
|
|
7226
7281
|
collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler::Representation
|
|
7227
7282
|
|
|
7283
|
+
collection :inline_actions, as: 'inlineActions'
|
|
7228
7284
|
collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
|
|
7229
7285
|
|
|
7230
7286
|
property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction::Representation
|
|
@@ -7647,8 +7703,12 @@ module Google
|
|
|
7647
7703
|
collection :banned_phrases, as: 'bannedPhrases', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPhrase::Representation
|
|
7648
7704
|
|
|
7649
7705
|
property :default_banned_phrase_match_strategy, as: 'defaultBannedPhraseMatchStrategy'
|
|
7706
|
+
property :default_rai_settings, as: 'defaultRaiSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings::Representation
|
|
7707
|
+
|
|
7650
7708
|
property :prompt_security_settings, as: 'promptSecuritySettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsPromptSecuritySettings::Representation
|
|
7651
7709
|
|
|
7710
|
+
property :rai_settings, as: 'raiSettings', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings::Representation
|
|
7711
|
+
|
|
7652
7712
|
end
|
|
7653
7713
|
end
|
|
7654
7714
|
|
|
@@ -7667,6 +7727,22 @@ module Google
|
|
|
7667
7727
|
end
|
|
7668
7728
|
end
|
|
7669
7729
|
|
|
7730
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettings
|
|
7731
|
+
# @private
|
|
7732
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7733
|
+
collection :category_filters, as: 'categoryFilters', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter::Representation
|
|
7734
|
+
|
|
7735
|
+
end
|
|
7736
|
+
end
|
|
7737
|
+
|
|
7738
|
+
class GoogleCloudDialogflowCxV3beta1SafetySettingsRaiSettingsCategoryFilter
|
|
7739
|
+
# @private
|
|
7740
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
7741
|
+
property :category, as: 'category'
|
|
7742
|
+
property :filter_level, as: 'filterLevel'
|
|
7743
|
+
end
|
|
7744
|
+
end
|
|
7745
|
+
|
|
7670
7746
|
class GoogleCloudDialogflowCxV3beta1SearchConfig
|
|
7671
7747
|
# @private
|
|
7672
7748
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -7911,6 +7987,8 @@ module Google
|
|
|
7911
7987
|
|
|
7912
7988
|
property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig::Representation
|
|
7913
7989
|
|
|
7990
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig::Representation
|
|
7991
|
+
|
|
7914
7992
|
property :service_agent_auth_config, as: 'serviceAgentAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig::Representation
|
|
7915
7993
|
|
|
7916
7994
|
end
|
|
@@ -7946,6 +8024,13 @@ module Google
|
|
|
7946
8024
|
end
|
|
7947
8025
|
end
|
|
7948
8026
|
|
|
8027
|
+
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
|
|
8028
|
+
# @private
|
|
8029
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8030
|
+
property :service_account, as: 'serviceAccount'
|
|
8031
|
+
end
|
|
8032
|
+
end
|
|
8033
|
+
|
|
7949
8034
|
class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
|
|
7950
8035
|
# @private
|
|
7951
8036
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -8384,6 +8469,8 @@ module Google
|
|
|
8384
8469
|
property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
|
|
8385
8470
|
hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::Representation
|
|
8386
8471
|
|
|
8472
|
+
property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig::Representation
|
|
8473
|
+
|
|
8387
8474
|
property :service_agent_auth, as: 'serviceAgentAuth'
|
|
8388
8475
|
property :uri, as: 'uri'
|
|
8389
8476
|
property :username, as: 'username'
|
|
@@ -8409,6 +8496,13 @@ module Google
|
|
|
8409
8496
|
end
|
|
8410
8497
|
end
|
|
8411
8498
|
|
|
8499
|
+
class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
|
|
8500
|
+
# @private
|
|
8501
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
8502
|
+
property :service_account, as: 'serviceAccount'
|
|
8503
|
+
end
|
|
8504
|
+
end
|
|
8505
|
+
|
|
8412
8506
|
class GoogleCloudDialogflowCxV3beta1WebhookRequest
|
|
8413
8507
|
# @private
|
|
8414
8508
|
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
|
|
@@ -5893,11 +5893,12 @@ module Google
|
|
|
5893
5893
|
# The standard list page token.
|
|
5894
5894
|
# @param [Boolean] return_partial_success
|
|
5895
5895
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
5896
|
-
# those that are unreachable are returned in the
|
|
5897
|
-
# unreachable
|
|
5898
|
-
#
|
|
5899
|
-
# by default
|
|
5900
|
-
# explicitly documented otherwise in service or product specific
|
|
5896
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
5897
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
5898
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
5899
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
5900
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
5901
|
+
# documentation.
|
|
5901
5902
|
# @param [String] fields
|
|
5902
5903
|
# Selector specifying which fields to include in a partial response.
|
|
5903
5904
|
# @param [String] quota_user
|
|
@@ -6184,11 +6185,12 @@ module Google
|
|
|
6184
6185
|
# The standard list page token.
|
|
6185
6186
|
# @param [Boolean] return_partial_success
|
|
6186
6187
|
# When set to `true`, operations that are reachable are returned as normal, and
|
|
6187
|
-
# those that are unreachable are returned in the
|
|
6188
|
-
# unreachable
|
|
6189
|
-
#
|
|
6190
|
-
# by default
|
|
6191
|
-
# explicitly documented otherwise in service or product specific
|
|
6188
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
6189
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
6190
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
6191
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
6192
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
6193
|
+
# documentation.
|
|
6192
6194
|
# @param [String] fields
|
|
6193
6195
|
# Selector specifying which fields to include in a partial response.
|
|
6194
6196
|
# @param [String] quota_user
|
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.114.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.114.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:
|