Skip to content

Commit 96d5b65

Browse files
feat: Automated regeneration of datastream v1 client (googleapis#23713)
Auto-created at 2025-07-20 09:47:25 +0000 using the toys pull request generator.
1 parent af23966 commit 96d5b65

File tree

5 files changed

+38
-2
lines changed

5 files changed

+38
-2
lines changed

api_names_out.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155792,6 +155792,7 @@
155792155792
"/datastream:v1/OracleSslConfig": oracle_ssl_config
155793155793
"/datastream:v1/OracleSslConfig/caCertificate": ca_certificate
155794155794
"/datastream:v1/OracleSslConfig/caCertificateSet": ca_certificate_set
155795+
"/datastream:v1/OracleSslConfig/serverCertificateDistinguishedName": server_certificate_distinguished_name
155795155796
"/datastream:v1/OracleTable": oracle_table
155796155797
"/datastream:v1/OracleTable/oracleColumns": oracle_columns
155797155798
"/datastream:v1/OracleTable/oracleColumns/oracle_column": oracle_column
@@ -155890,8 +155891,10 @@
155890155891
"/datastream:v1/ServerAndClientVerification/caCertificate": ca_certificate
155891155892
"/datastream:v1/ServerAndClientVerification/clientCertificate": client_certificate
155892155893
"/datastream:v1/ServerAndClientVerification/clientKey": client_key
155894+
"/datastream:v1/ServerAndClientVerification/serverCertificateHostname": server_certificate_hostname
155893155895
"/datastream:v1/ServerVerification": server_verification
155894155896
"/datastream:v1/ServerVerification/caCertificate": ca_certificate
155897+
"/datastream:v1/ServerVerification/serverCertificateHostname": server_certificate_hostname
155895155898
"/datastream:v1/SingleTargetDataset": single_target_dataset
155896155899
"/datastream:v1/SingleTargetDataset/datasetId": dataset_id
155897155900
"/datastream:v1/SourceConfig": source_config

generated/google-apis-datastream_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-datastream_v1
22

3+
### v0.53.0 (2025-07-20)
4+
5+
* Regenerated from discovery document revision 20250714
6+
37
### v0.52.0 (2025-07-06)
48

59
* Regenerated from discovery document revision 20250627

generated/google-apis-datastream_v1/lib/google/apis/datastream_v1/classes.rb

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2485,6 +2485,15 @@ class OracleSslConfig
24852485
attr_accessor :ca_certificate_set
24862486
alias_method :ca_certificate_set?, :ca_certificate_set
24872487

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+
24882497
def initialize(**args)
24892498
update!(**args)
24902499
end
@@ -2493,6 +2502,7 @@ def initialize(**args)
24932502
def update!(**args)
24942503
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
24952504
@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)
24962506
end
24972507
end
24982508

@@ -3210,6 +3220,13 @@ class ServerAndClientVerification
32103220
# @return [String]
32113221
attr_accessor :client_key
32123222

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+
32133230
def initialize(**args)
32143231
update!(**args)
32153232
end
@@ -3219,6 +3236,7 @@ def update!(**args)
32193236
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
32203237
@client_certificate = args[:client_certificate] if args.key?(:client_certificate)
32213238
@client_key = args[:client_key] if args.key?(:client_key)
3239+
@server_certificate_hostname = args[:server_certificate_hostname] if args.key?(:server_certificate_hostname)
32223240
end
32233241
end
32243242

@@ -3233,13 +3251,21 @@ class ServerVerification
32333251
# @return [String]
32343252
attr_accessor :ca_certificate
32353253

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+
32363261
def initialize(**args)
32373262
update!(**args)
32383263
end
32393264

32403265
# Update properties of this object
32413266
def update!(**args)
32423267
@ca_certificate = args[:ca_certificate] if args.key?(:ca_certificate)
3268+
@server_certificate_hostname = args[:server_certificate_hostname] if args.key?(:server_certificate_hostname)
32433269
end
32443270
end
32453271

generated/google-apis-datastream_v1/lib/google/apis/datastream_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module DatastreamV1
1818
# Version of the google-apis-datastream_v1 gem
19-
GEM_VERSION = "0.52.0"
19+
GEM_VERSION = "0.53.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250627"
25+
REVISION = "20250714"
2626
end
2727
end
2828
end

generated/google-apis-datastream_v1/lib/google/apis/datastream_v1/representations.rb

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1521,6 +1521,7 @@ class OracleSslConfig
15211521
class Representation < Google::Apis::Core::JsonRepresentation
15221522
property :ca_certificate, as: 'caCertificate'
15231523
property :ca_certificate_set, as: 'caCertificateSet'
1524+
property :server_certificate_distinguished_name, as: 'serverCertificateDistinguishedName'
15241525
end
15251526
end
15261527

@@ -1735,13 +1736,15 @@ class Representation < Google::Apis::Core::JsonRepresentation
17351736
property :ca_certificate, as: 'caCertificate'
17361737
property :client_certificate, as: 'clientCertificate'
17371738
property :client_key, as: 'clientKey'
1739+
property :server_certificate_hostname, as: 'serverCertificateHostname'
17381740
end
17391741
end
17401742

17411743
class ServerVerification
17421744
# @private
17431745
class Representation < Google::Apis::Core::JsonRepresentation
17441746
property :ca_certificate, as: 'caCertificate'
1747+
property :server_certificate_hostname, as: 'serverCertificateHostname'
17451748
end
17461749
end
17471750

0 commit comments

Comments
 (0)