google-apis-datastream_v1 0.52.0 → 0.53.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: 51f821c6dd3f05e319784d6a1ba11d5f04e4faeceec3404c0034de60dfcec458
4
- data.tar.gz: 1031b066eddac9d3a520c629ddfcc7c7a134b0a811b928b884da45449ebccc64
3
+ metadata.gz: f9f142eae446e59f672a8219a593439c23ff81c1c31ba50f668af41d96a09206
4
+ data.tar.gz: eaf43d9edfe4cba41a531c2dcfb75d5ce3210f699edd24f6a3f60152da8f06fd
5
5
  SHA512:
6
- metadata.gz: ccffbc1854c8d7106417edf4a47fe8ac408b2b4a2474084bdd9c766aa6cabfdf2bfbc0d9e0a409585bfe706000600297a92bc0ed8e148e0ee70391188c99a897
7
- data.tar.gz: fc5162215d61523017142c4257a5e4f35678dfbe9f62f18e73ad9aa43e7db655cbae4f0919a49824a1e5c1dea8cf8008616b6ea2f17b5b436c388c9904d094f9
6
+ metadata.gz: '0209bcaef258808098e654b30d5ef8cae172f10afe451addfe241fe3769e372fe943dc9e7a381f0c2db03b36e859340f777db074ead50957878d6e679414801a'
7
+ data.tar.gz: 778cbaf438d5b361c8c24ecc582598e88c19a07eecc467ee1181027dc942023ebe3a6df4e04dc3530b02c940e6abbe6fab5c986dcf642a4e1b59c9a109c721ad
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-datastream_v1
2
2
 
3
+ ### v0.53.0 (2025-07-20)
4
+
5
+ * Regenerated from discovery document revision 20250714
6
+
3
7
  ### v0.52.0 (2025-07-06)
4
8
 
5
9
  * Regenerated from discovery document revision 20250627
@@ -2485,6 +2485,15 @@ module Google
2485
2485
  attr_accessor :ca_certificate_set
2486
2486
  alias_method :ca_certificate_set?, :ca_certificate_set
2487
2487
 
2488
+ # Optional. The distinguished name (DN) mentioned in the server certificate.
2489
+ # This corresponds to SSL_SERVER_CERT_DN sqlnet parameter. Refer https://docs.
2490
+ # oracle.com/en/database/oracle/oracle-database/19/netrf/local-naming-parameters-
2491
+ # in-tns-ora-file.html#GUID-70AB0695-A9AA-4A94-B141-4C605236EEB7 If this field
2492
+ # is not provided, the DN matching is not enforced.
2493
+ # Corresponds to the JSON property `serverCertificateDistinguishedName`
2494
+ # @return [String]
2495
+ attr_accessor :server_certificate_distinguished_name
2496
+
2488
2497
  def initialize(**args)
2489
2498
  update!(**args)
2490
2499
  end
@@ -2493,6 +2502,7 @@ module Google
2493
2502
  def update!(**args)
2494
2503
  @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
2495
2504
  @ca_certificate_set = args[:ca_certificate_set] if args.key?(:ca_certificate_set)
2505
+ @server_certificate_distinguished_name = args[:server_certificate_distinguished_name] if args.key?(:server_certificate_distinguished_name)
2496
2506
  end
2497
2507
  end
2498
2508
 
@@ -3210,6 +3220,13 @@ module Google
3210
3220
  # @return [String]
3211
3221
  attr_accessor :client_key
3212
3222
 
3223
+ # Optional. The hostname mentioned in the Subject or SAN extension of the server
3224
+ # certificate. If this field is not provided, the hostname in the server
3225
+ # certificate is not validated.
3226
+ # Corresponds to the JSON property `serverCertificateHostname`
3227
+ # @return [String]
3228
+ attr_accessor :server_certificate_hostname
3229
+
3213
3230
  def initialize(**args)
3214
3231
  update!(**args)
3215
3232
  end
@@ -3219,6 +3236,7 @@ module Google
3219
3236
  @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
3220
3237
  @client_certificate = args[:client_certificate] if args.key?(:client_certificate)
3221
3238
  @client_key = args[:client_key] if args.key?(:client_key)
3239
+ @server_certificate_hostname = args[:server_certificate_hostname] if args.key?(:server_certificate_hostname)
3222
3240
  end
3223
3241
  end
3224
3242
 
@@ -3233,6 +3251,13 @@ module Google
3233
3251
  # @return [String]
3234
3252
  attr_accessor :ca_certificate
3235
3253
 
3254
+ # Optional. The hostname mentioned in the Subject or SAN extension of the server
3255
+ # certificate. If this field is not provided, the hostname in the server
3256
+ # certificate is not validated.
3257
+ # Corresponds to the JSON property `serverCertificateHostname`
3258
+ # @return [String]
3259
+ attr_accessor :server_certificate_hostname
3260
+
3236
3261
  def initialize(**args)
3237
3262
  update!(**args)
3238
3263
  end
@@ -3240,6 +3265,7 @@ module Google
3240
3265
  # Update properties of this object
3241
3266
  def update!(**args)
3242
3267
  @ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
3268
+ @server_certificate_hostname = args[:server_certificate_hostname] if args.key?(:server_certificate_hostname)
3243
3269
  end
3244
3270
  end
3245
3271
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DatastreamV1
18
18
  # Version of the google-apis-datastream_v1 gem
19
- GEM_VERSION = "0.52.0"
19
+ GEM_VERSION = "0.53.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 = "20250627"
25
+ REVISION = "20250714"
26
26
  end
27
27
  end
28
28
  end
@@ -1521,6 +1521,7 @@ module Google
1521
1521
  class Representation < Google::Apis::Core::JsonRepresentation
1522
1522
  property :ca_certificate, as: 'caCertificate'
1523
1523
  property :ca_certificate_set, as: 'caCertificateSet'
1524
+ property :server_certificate_distinguished_name, as: 'serverCertificateDistinguishedName'
1524
1525
  end
1525
1526
  end
1526
1527
 
@@ -1735,6 +1736,7 @@ module Google
1735
1736
  property :ca_certificate, as: 'caCertificate'
1736
1737
  property :client_certificate, as: 'clientCertificate'
1737
1738
  property :client_key, as: 'clientKey'
1739
+ property :server_certificate_hostname, as: 'serverCertificateHostname'
1738
1740
  end
1739
1741
  end
1740
1742
 
@@ -1742,6 +1744,7 @@ module Google
1742
1744
  # @private
1743
1745
  class Representation < Google::Apis::Core::JsonRepresentation
1744
1746
  property :ca_certificate, as: 'caCertificate'
1747
+ property :server_certificate_hostname, as: 'serverCertificateHostname'
1745
1748
  end
1746
1749
  end
1747
1750
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-datastream_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.53.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-datastream_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.52.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-datastream_v1/v0.53.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-datastream_v1
62
62
  rdoc_options: []
63
63
  require_paths: