Skip to content

Commit c9771b2

Browse files
1 parent a9132f0 commit c9771b2

File tree

6 files changed

+96
-6
lines changed

6 files changed

+96
-6
lines changed

clients/google-api-services-datastream/v1/2.0.0/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1-rev20250627-2.0.0</version>
25+
<version>v1-rev20250714-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250627-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250714-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/OracleSslConfig.java

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ public final class OracleSslConfig extends com.google.api.client.json.GenericJso
4545
@com.google.api.client.util.Key
4646
private java.lang.Boolean caCertificateSet;
4747

48+
/**
49+
* Optional. The distinguished name (DN) mentioned in the server certificate. This corresponds to
50+
* SSL_SERVER_CERT_DN sqlnet parameter. Refer https://docs.oracle.com/en/database/oracle/oracle-
51+
* database/19/netrf/local-naming-parameters-in-tns-ora-
52+
* file.html#GUID-70AB0695-A9AA-4A94-B141-4C605236EEB7 If this field is not provided, the DN
53+
* matching is not enforced.
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.lang.String serverCertificateDistinguishedName;
58+
4859
/**
4960
* Input only. PEM-encoded certificate of the CA that signed the source database server's
5061
* certificate.
@@ -83,6 +94,31 @@ public OracleSslConfig setCaCertificateSet(java.lang.Boolean caCertificateSet) {
8394
return this;
8495
}
8596

97+
/**
98+
* Optional. The distinguished name (DN) mentioned in the server certificate. This corresponds to
99+
* SSL_SERVER_CERT_DN sqlnet parameter. Refer https://docs.oracle.com/en/database/oracle/oracle-
100+
* database/19/netrf/local-naming-parameters-in-tns-ora-
101+
* file.html#GUID-70AB0695-A9AA-4A94-B141-4C605236EEB7 If this field is not provided, the DN
102+
* matching is not enforced.
103+
* @return value or {@code null} for none
104+
*/
105+
public java.lang.String getServerCertificateDistinguishedName() {
106+
return serverCertificateDistinguishedName;
107+
}
108+
109+
/**
110+
* Optional. The distinguished name (DN) mentioned in the server certificate. This corresponds to
111+
* SSL_SERVER_CERT_DN sqlnet parameter. Refer https://docs.oracle.com/en/database/oracle/oracle-
112+
* database/19/netrf/local-naming-parameters-in-tns-ora-
113+
* file.html#GUID-70AB0695-A9AA-4A94-B141-4C605236EEB7 If this field is not provided, the DN
114+
* matching is not enforced.
115+
* @param serverCertificateDistinguishedName serverCertificateDistinguishedName or {@code null} for none
116+
*/
117+
public OracleSslConfig setServerCertificateDistinguishedName(java.lang.String serverCertificateDistinguishedName) {
118+
this.serverCertificateDistinguishedName = serverCertificateDistinguishedName;
119+
return this;
120+
}
121+
86122
@Override
87123
public OracleSslConfig set(String fieldName, Object value) {
88124
return (OracleSslConfig) super.set(fieldName, value);

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/ServerAndClientVerification.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,14 @@ public final class ServerAndClientVerification extends com.google.api.client.jso
5757
@com.google.api.client.util.Key
5858
private java.lang.String clientKey;
5959

60+
/**
61+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
62+
* this field is not provided, the hostname in the server certificate is not validated.
63+
* The value may be {@code null}.
64+
*/
65+
@com.google.api.client.util.Key
66+
private java.lang.String serverCertificateHostname;
67+
6068
/**
6169
* Required. Input only. PEM-encoded server root CA certificate.
6270
* @return value or {@code null} for none
@@ -118,6 +126,25 @@ public ServerAndClientVerification setClientKey(java.lang.String clientKey) {
118126
return this;
119127
}
120128

129+
/**
130+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
131+
* this field is not provided, the hostname in the server certificate is not validated.
132+
* @return value or {@code null} for none
133+
*/
134+
public java.lang.String getServerCertificateHostname() {
135+
return serverCertificateHostname;
136+
}
137+
138+
/**
139+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
140+
* this field is not provided, the hostname in the server certificate is not validated.
141+
* @param serverCertificateHostname serverCertificateHostname or {@code null} for none
142+
*/
143+
public ServerAndClientVerification setServerCertificateHostname(java.lang.String serverCertificateHostname) {
144+
this.serverCertificateHostname = serverCertificateHostname;
145+
return this;
146+
}
147+
121148
@Override
122149
public ServerAndClientVerification set(String fieldName, Object value) {
123150
return (ServerAndClientVerification) super.set(fieldName, value);

clients/google-api-services-datastream/v1/2.0.0/com/google/api/services/datastream/v1/model/ServerVerification.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ public final class ServerVerification extends com.google.api.client.json.Generic
3737
@com.google.api.client.util.Key
3838
private java.lang.String caCertificate;
3939

40+
/**
41+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
42+
* this field is not provided, the hostname in the server certificate is not validated.
43+
* The value may be {@code null}.
44+
*/
45+
@com.google.api.client.util.Key
46+
private java.lang.String serverCertificateHostname;
47+
4048
/**
4149
* Required. Input only. PEM-encoded server root CA certificate.
4250
* @return value or {@code null} for none
@@ -54,6 +62,25 @@ public ServerVerification setCaCertificate(java.lang.String caCertificate) {
5462
return this;
5563
}
5664

65+
/**
66+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
67+
* this field is not provided, the hostname in the server certificate is not validated.
68+
* @return value or {@code null} for none
69+
*/
70+
public java.lang.String getServerCertificateHostname() {
71+
return serverCertificateHostname;
72+
}
73+
74+
/**
75+
* Optional. The hostname mentioned in the Subject or SAN extension of the server certificate. If
76+
* this field is not provided, the hostname in the server certificate is not validated.
77+
* @param serverCertificateHostname serverCertificateHostname or {@code null} for none
78+
*/
79+
public ServerVerification setServerCertificateHostname(java.lang.String serverCertificateHostname) {
80+
this.serverCertificateHostname = serverCertificateHostname;
81+
return this;
82+
}
83+
5784
@Override
5885
public ServerVerification set(String fieldName, Object value) {
5986
return (ServerVerification) super.set(fieldName, value);

clients/google-api-services-datastream/v1/2.0.0/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88

99
<groupId>com.google.apis</groupId>
1010
<artifactId>google-api-services-datastream</artifactId>
11-
<version>v1-rev20250627-2.0.0</version>
12-
<name>Datastream API v1-rev20250627-2.0.0</name>
11+
<version>v1-rev20250714-2.0.0</version>
12+
<name>Datastream API v1-rev20250714-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-datastream/v1/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.google.apis</groupId>
2424
<artifactId>google-api-services-datastream</artifactId>
25-
<version>v1-rev20250627-2.0.0</version>
25+
<version>v1-rev20250714-2.0.0</version>
2626
</dependency>
2727
</dependencies>
2828
</project>
@@ -35,7 +35,7 @@ repositories {
3535
mavenCentral()
3636
}
3737
dependencies {
38-
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250627-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250714-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)