google-apis-dialogflow_v3 0.92.0 → 0.93.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: b1b0ff79082a94cccc373a97405ca931cf1282101090ddb3998c19824b7c20e4
4
- data.tar.gz: 657083b2c1df42046080fba4acb1b997250719a91e2339071ded75e45ccfa3e9
3
+ metadata.gz: 96d7b8695a4be97a5b83490f5156e38f79d68e9174ba01fdc966f87f4bcc5749
4
+ data.tar.gz: e14f2affb995693dc0b12787c26e175d0a9fca825319ab9436e26854c52381b7
5
5
  SHA512:
6
- metadata.gz: 9ce55d1e87144c13f7c181515568f53944d4608336538ae4289a7bceeef264e5c8c16153b9150bbf960ed118fc6c1e25e7f31cc4c4aebeff7a32f35004f9e286
7
- data.tar.gz: fc8e0510e12c03827875e7496038020d83ab84bbaf68124ee6408ee57c9953ddd29845625a8f149022be045a80d5d1f420fabc3873659990eb77bbf7a16f7413
6
+ metadata.gz: 23366e3797b567e60d7514c5da0bd1a02249162bd523ff6086bcb61e92d86b038183341ae6528f86eaab3a9532cf356406eaffcdffe4a85a88e2d183a0beabef
7
+ data.tar.gz: 69b1a2f0b87580819c90fa2616c395e1d39fcfc1b683054f4c80791596d2777c846a1b1a544e9efa88d2f1523e7fb67c95a02ba1d2f32e5e6f5771b308622c03
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dialogflow_v3
2
2
 
3
+ ### v0.93.0 (2024-08-25)
4
+
5
+ * Regenerated from discovery document revision 20240822
6
+
3
7
  ### v0.92.0 (2024-08-18)
4
8
 
5
9
  * Regenerated from discovery document revision 20240812
@@ -227,6 +227,11 @@ module Google
227
227
  # @return [String]
228
228
  attr_accessor :avatar_uri
229
229
 
230
+ # Settings for custom client certificates.
231
+ # Corresponds to the JSON property `clientCertificateSettings`
232
+ # @return [Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentClientCertificateSettings]
233
+ attr_accessor :client_certificate_settings
234
+
230
235
  # Required. Immutable. The default language of the agent as a language tag. See [
231
236
  # Language Support](https://cloud.google.com/dialogflow/cx/docs/reference/
232
237
  # language) for a list of the currently supported language codes. This field
@@ -339,6 +344,7 @@ module Google
339
344
  @advanced_settings = args[:advanced_settings] if args.key?(:advanced_settings)
340
345
  @answer_feedback_settings = args[:answer_feedback_settings] if args.key?(:answer_feedback_settings)
341
346
  @avatar_uri = args[:avatar_uri] if args.key?(:avatar_uri)
347
+ @client_certificate_settings = args[:client_certificate_settings] if args.key?(:client_certificate_settings)
342
348
  @default_language_code = args[:default_language_code] if args.key?(:default_language_code)
343
349
  @description = args[:description] if args.key?(:description)
344
350
  @display_name = args[:display_name] if args.key?(:display_name)
@@ -381,6 +387,42 @@ module Google
381
387
  end
382
388
  end
383
389
 
390
+ # Settings for custom client certificates.
391
+ class GoogleCloudDialogflowCxV3AgentClientCertificateSettings
392
+ include Google::Apis::Core::Hashable
393
+
394
+ # Optional. The name of the SecretManager secret version resource storing the
395
+ # passphrase. 'passphrase' should be left unset if the private key is not
396
+ # encrypted. Format: `projects/`project`/secrets/`secret`/versions/`version``
397
+ # Corresponds to the JSON property `passphrase`
398
+ # @return [String]
399
+ attr_accessor :passphrase
400
+
401
+ # Required. The name of the SecretManager secret version resource storing the
402
+ # private key encoded in PEM format. Format: `projects/`project`/secrets/`secret`
403
+ # /versions/`version``
404
+ # Corresponds to the JSON property `privateKey`
405
+ # @return [String]
406
+ attr_accessor :private_key
407
+
408
+ # Required. The ssl certificate encoded in PEM format. This string must include
409
+ # the begin header and end footer lines.
410
+ # Corresponds to the JSON property `sslCertificate`
411
+ # @return [String]
412
+ attr_accessor :ssl_certificate
413
+
414
+ def initialize(**args)
415
+ update!(**args)
416
+ end
417
+
418
+ # Update properties of this object
419
+ def update!(**args)
420
+ @passphrase = args[:passphrase] if args.key?(:passphrase)
421
+ @private_key = args[:private_key] if args.key?(:private_key)
422
+ @ssl_certificate = args[:ssl_certificate] if args.key?(:ssl_certificate)
423
+ end
424
+ end
425
+
384
426
  # Settings for Gen App Builder.
385
427
  class GoogleCloudDialogflowCxV3AgentGenAppBuilderSettings
386
428
  include Google::Apis::Core::Hashable
@@ -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.92.0"
19
+ GEM_VERSION = "0.93.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20240812"
25
+ REVISION = "20240822"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class GoogleCloudDialogflowCxV3AgentClientCertificateSettings
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class GoogleCloudDialogflowCxV3AgentGenAppBuilderSettings
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -3284,6 +3290,8 @@ module Google
3284
3290
  property :answer_feedback_settings, as: 'answerFeedbackSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentAnswerFeedbackSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentAnswerFeedbackSettings::Representation
3285
3291
 
3286
3292
  property :avatar_uri, as: 'avatarUri'
3293
+ property :client_certificate_settings, as: 'clientCertificateSettings', class: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentClientCertificateSettings, decorator: Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3AgentClientCertificateSettings::Representation
3294
+
3287
3295
  property :default_language_code, as: 'defaultLanguageCode'
3288
3296
  property :description, as: 'description'
3289
3297
  property :display_name, as: 'displayName'
@@ -3316,6 +3324,15 @@ module Google
3316
3324
  end
3317
3325
  end
3318
3326
 
3327
+ class GoogleCloudDialogflowCxV3AgentClientCertificateSettings
3328
+ # @private
3329
+ class Representation < Google::Apis::Core::JsonRepresentation
3330
+ property :passphrase, as: 'passphrase'
3331
+ property :private_key, as: 'privateKey'
3332
+ property :ssl_certificate, as: 'sslCertificate'
3333
+ end
3334
+ end
3335
+
3319
3336
  class GoogleCloudDialogflowCxV3AgentGenAppBuilderSettings
3320
3337
  # @private
3321
3338
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dialogflow_v3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.92.0
4
+ version: 0.93.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-18 00:00:00.000000000 Z
11
+ date: 2024-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.92.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dialogflow_v3/v0.93.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dialogflow_v3
63
63
  post_install_message:
64
64
  rdoc_options: []