google-apis-dialogflow_v3beta1 0.112.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d663f5700cfbc9c499bcd9ec43262842d4d2abd19a1cb3f1b7dbd88958a37223
4
- data.tar.gz: 6692b311f2de158a4fe30feb3b105cec015be6599f532e6967cc4cce6f1255bc
3
+ metadata.gz: ef57cb317cf7aa817215b729864c2aa736aa70fe4e60c197425df86dabb363c0
4
+ data.tar.gz: a84bb949f77eb6ef89f6bf7a692a7bd3e08bca61cbaff5a09f9c3f0e500d7c86
5
5
  SHA512:
6
- metadata.gz: d25020a0427e12a03adec58c5124fa47d3e7466f4084043239b7df296c890259e0b68f99850e64e187f58364863f9652c32f088c7ef170f6f38e9dbf59b68b82
7
- data.tar.gz: a8c1541168aee7174e1508f5a84f91886db4b29d21dcc957c7f579ce9051d8fe94df89db7e73fb8a63662e35542fd9862b5a088ab03375658709da2dd4629940
6
+ metadata.gz: cf10ac4dff80f2f7351525ae9e9248ff66b0f1845c431eb8caa64ecf9cd2360cf66e646111bdbb99a20c295b3f7e43923bace04265cd43f36d73de2551972dec
7
+ data.tar.gz: cf8ed50a340f73241e32f4eefd5889950ac76cc514f9278f1a3272bda869a38ee7ffde3d25d0eef63e99cfbe336d9660ad3f4fe6bf780837280ad485ba629fe7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.112.0 (2025-10-19)
4
8
 
5
9
  * 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
@@ -11618,6 +11667,11 @@ module Google
11618
11667
  class GoogleCloudDialogflowCxV3beta1Playbook
11619
11668
  include Google::Apis::Core::Hashable
11620
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
+
11621
11675
  # Output only. The timestamp of initial playbook creation.
11622
11676
  # Corresponds to the JSON property `createTime`
11623
11677
  # @return [String]
@@ -11641,6 +11695,14 @@ module Google
11641
11695
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler>]
11642
11696
  attr_accessor :handlers
11643
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
+
11644
11706
  # Optional. Defined structured input parameters for this playbook.
11645
11707
  # Corresponds to the JSON property `inputParameterDefinitions`
11646
11708
  # @return [Array<Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition>]
@@ -11713,10 +11775,12 @@ module Google
11713
11775
 
11714
11776
  # Update properties of this object
11715
11777
  def update!(**args)
11778
+ @code_block = args[:code_block] if args.key?(:code_block)
11716
11779
  @create_time = args[:create_time] if args.key?(:create_time)
11717
11780
  @display_name = args[:display_name] if args.key?(:display_name)
11718
11781
  @goal = args[:goal] if args.key?(:goal)
11719
11782
  @handlers = args[:handlers] if args.key?(:handlers)
11783
+ @inline_actions = args[:inline_actions] if args.key?(:inline_actions)
11720
11784
  @input_parameter_definitions = args[:input_parameter_definitions] if args.key?(:input_parameter_definitions)
11721
11785
  @instruction = args[:instruction] if args.key?(:instruction)
11722
11786
  @llm_model_settings = args[:llm_model_settings] if args.key?(:llm_model_settings)
@@ -14197,6 +14261,11 @@ module Google
14197
14261
  # @return [Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig]
14198
14262
  attr_accessor :oauth_config
14199
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
+
14200
14269
  # Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
14201
14270
  # docs/service-agents#dialogflow-service-agent).
14202
14271
  # Corresponds to the JSON property `serviceAgentAuthConfig`
@@ -14212,6 +14281,7 @@ module Google
14212
14281
  @api_key_config = args[:api_key_config] if args.key?(:api_key_config)
14213
14282
  @bearer_token_config = args[:bearer_token_config] if args.key?(:bearer_token_config)
14214
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)
14215
14285
  @service_agent_auth_config = args[:service_agent_auth_config] if args.key?(:service_agent_auth_config)
14216
14286
  end
14217
14287
  end
@@ -14341,6 +14411,30 @@ module Google
14341
14411
  end
14342
14412
  end
14343
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
+
14344
14438
  # Config for auth using [Diglogflow service agent](https://cloud.google.com/iam/
14345
14439
  # docs/service-agents#dialogflow-service-agent).
14346
14440
  class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
@@ -15878,6 +15972,11 @@ module Google
15878
15972
  # @return [Hash<String,Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue>]
15879
15973
  attr_accessor :secret_versions_for_request_headers
15880
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
+
15881
15980
  # Optional. Indicate the auth token type generated from the [Diglogflow service
15882
15981
  # agent](https://cloud.google.com/iam/docs/service-agents#dialogflow-service-
15883
15982
  # agent). The generated token is sent in the Authorization header.
@@ -15916,6 +16015,7 @@ module Google
15916
16015
  @request_headers = args[:request_headers] if args.key?(:request_headers)
15917
16016
  @secret_version_for_username_password = args[:secret_version_for_username_password] if args.key?(:secret_version_for_username_password)
15918
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)
15919
16019
  @service_agent_auth = args[:service_agent_auth] if args.key?(:service_agent_auth)
15920
16020
  @uri = args[:uri] if args.key?(:uri)
15921
16021
  @username = args[:username] if args.key?(:username)
@@ -15991,6 +16091,30 @@ module Google
15991
16091
  end
15992
16092
  end
15993
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
+
15994
16118
  # The request message for a webhook call. The request is sent as a JSON object
15995
16119
  # and the field names will be presented in camel cases. You may see undocumented
15996
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.112.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 = "20251013"
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
 
@@ -2290,6 +2302,12 @@ module Google
2290
2302
  include Google::Apis::Core::JsonObjectSupport
2291
2303
  end
2292
2304
 
2305
+ class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
2306
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2307
+
2308
+ include Google::Apis::Core::JsonObjectSupport
2309
+ end
2310
+
2293
2311
  class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
2294
2312
  class Representation < Google::Apis::Core::JsonRepresentation; end
2295
2313
 
@@ -2572,6 +2590,12 @@ module Google
2572
2590
  include Google::Apis::Core::JsonObjectSupport
2573
2591
  end
2574
2592
 
2593
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
2594
+ class Representation < Google::Apis::Core::JsonRepresentation; end
2595
+
2596
+ include Google::Apis::Core::JsonObjectSupport
2597
+ end
2598
+
2575
2599
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
2576
2600
  class Representation < Google::Apis::Core::JsonRepresentation; end
2577
2601
 
@@ -5001,6 +5025,8 @@ module Google
5001
5025
  property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
5002
5026
  hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceSecretVersionHeaderValue::Representation
5003
5027
 
5028
+ property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig::Representation
5029
+
5004
5030
  property :service_agent_auth, as: 'serviceAgentAuth'
5005
5031
  property :uri, as: 'uri'
5006
5032
  property :username, as: 'username'
@@ -5026,6 +5052,13 @@ module Google
5026
5052
  end
5027
5053
  end
5028
5054
 
5055
+ class GoogleCloudDialogflowCxV3WebhookGenericWebServiceServiceAccountAuthConfig
5056
+ # @private
5057
+ class Representation < Google::Apis::Core::JsonRepresentation
5058
+ property :service_account, as: 'serviceAccount'
5059
+ end
5060
+ end
5061
+
5029
5062
  class GoogleCloudDialogflowCxV3WebhookRequest
5030
5063
  # @private
5031
5064
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -5529,6 +5562,13 @@ module Google
5529
5562
  end
5530
5563
  end
5531
5564
 
5565
+ class GoogleCloudDialogflowCxV3beta1CodeBlock
5566
+ # @private
5567
+ class Representation < Google::Apis::Core::JsonRepresentation
5568
+ property :code, as: 'code'
5569
+ end
5570
+ end
5571
+
5532
5572
  class GoogleCloudDialogflowCxV3beta1CompareVersionsRequest
5533
5573
  # @private
5534
5574
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -7220,11 +7260,14 @@ module Google
7220
7260
  class GoogleCloudDialogflowCxV3beta1Playbook
7221
7261
  # @private
7222
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
+
7223
7265
  property :create_time, as: 'createTime'
7224
7266
  property :display_name, as: 'displayName'
7225
7267
  property :goal, as: 'goal'
7226
7268
  collection :handlers, as: 'handlers', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1Handler::Representation
7227
7269
 
7270
+ collection :inline_actions, as: 'inlineActions'
7228
7271
  collection :input_parameter_definitions, as: 'inputParameterDefinitions', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ParameterDefinition::Representation
7229
7272
 
7230
7273
  property :instruction, as: 'instruction', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1PlaybookInstruction::Representation
@@ -7911,6 +7954,8 @@ module Google
7911
7954
 
7912
7955
  property :oauth_config, as: 'oauthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationOAuthConfig::Representation
7913
7956
 
7957
+ property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig::Representation
7958
+
7914
7959
  property :service_agent_auth_config, as: 'serviceAgentAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig::Representation
7915
7960
 
7916
7961
  end
@@ -7946,6 +7991,13 @@ module Google
7946
7991
  end
7947
7992
  end
7948
7993
 
7994
+ class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAccountAuthConfig
7995
+ # @private
7996
+ class Representation < Google::Apis::Core::JsonRepresentation
7997
+ property :service_account, as: 'serviceAccount'
7998
+ end
7999
+ end
8000
+
7949
8001
  class GoogleCloudDialogflowCxV3beta1ToolAuthenticationServiceAgentAuthConfig
7950
8002
  # @private
7951
8003
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -8384,6 +8436,8 @@ module Google
8384
8436
  property :secret_version_for_username_password, as: 'secretVersionForUsernamePassword'
8385
8437
  hash :secret_versions_for_request_headers, as: 'secretVersionsForRequestHeaders', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceSecretVersionHeaderValue::Representation
8386
8438
 
8439
+ property :service_account_auth_config, as: 'serviceAccountAuthConfig', class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig, decorator: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig::Representation
8440
+
8387
8441
  property :service_agent_auth, as: 'serviceAgentAuth'
8388
8442
  property :uri, as: 'uri'
8389
8443
  property :username, as: 'username'
@@ -8409,6 +8463,13 @@ module Google
8409
8463
  end
8410
8464
  end
8411
8465
 
8466
+ class GoogleCloudDialogflowCxV3beta1WebhookGenericWebServiceServiceAccountAuthConfig
8467
+ # @private
8468
+ class Representation < Google::Apis::Core::JsonRepresentation
8469
+ property :service_account, as: 'serviceAccount'
8470
+ end
8471
+ end
8472
+
8412
8473
  class GoogleCloudDialogflowCxV3beta1WebhookRequest
8413
8474
  # @private
8414
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. Unless explicitly documented otherwise, don't use this unsupported
90
- # field which is primarily intended for internal usage.
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.112.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.112.0
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: