Skip to content

Commit 14f8e80

Browse files
1 parent 8229f35 commit 14f8e80

File tree

7 files changed

+165
-18
lines changed

7 files changed

+165
-18
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-rev20250108-2.0.0</version>
25+
<version>v1-rev20250115-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-rev20250108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250115-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,20 @@ public final class ConnectionProfile extends com.google.api.client.json.GenericJ
106106
@com.google.api.client.util.Key
107107
private PrivateConnectivity privateConnectivity;
108108

109+
/**
110+
* Output only. Reserved for future use.
111+
* The value may be {@code null}.
112+
*/
113+
@com.google.api.client.util.Key
114+
private java.lang.Boolean satisfiesPzi;
115+
116+
/**
117+
* Output only. Reserved for future use.
118+
* The value may be {@code null}.
119+
*/
120+
@com.google.api.client.util.Key
121+
private java.lang.Boolean satisfiesPzs;
122+
109123
/**
110124
* SQLServer Connection Profile configuration.
111125
* The value may be {@code null}.
@@ -314,6 +328,40 @@ public ConnectionProfile setPrivateConnectivity(PrivateConnectivity privateConne
314328
return this;
315329
}
316330

331+
/**
332+
* Output only. Reserved for future use.
333+
* @return value or {@code null} for none
334+
*/
335+
public java.lang.Boolean getSatisfiesPzi() {
336+
return satisfiesPzi;
337+
}
338+
339+
/**
340+
* Output only. Reserved for future use.
341+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
342+
*/
343+
public ConnectionProfile setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
344+
this.satisfiesPzi = satisfiesPzi;
345+
return this;
346+
}
347+
348+
/**
349+
* Output only. Reserved for future use.
350+
* @return value or {@code null} for none
351+
*/
352+
public java.lang.Boolean getSatisfiesPzs() {
353+
return satisfiesPzs;
354+
}
355+
356+
/**
357+
* Output only. Reserved for future use.
358+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
359+
*/
360+
public ConnectionProfile setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
361+
this.satisfiesPzs = satisfiesPzs;
362+
return this;
363+
}
364+
317365
/**
318366
* SQLServer Connection Profile configuration.
319367
* @return value or {@code null} for none

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

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ public final class MysqlSslConfig extends com.google.api.client.json.GenericJson
4545
private java.lang.Boolean caCertificateSet;
4646

4747
/**
48-
* Input only. PEM-encoded certificate that will be used by the replica to authenticate against
49-
* the source database server. If this field is used then the 'client_key' and the
48+
* Optional. Input only. PEM-encoded certificate that will be used by the replica to authenticate
49+
* against the source database server. If this field is used then the 'client_key' and the
5050
* 'ca_certificate' fields are mandatory.
5151
* The value may be {@code null}.
5252
*/
@@ -61,8 +61,9 @@ public final class MysqlSslConfig extends com.google.api.client.json.GenericJson
6161
private java.lang.Boolean clientCertificateSet;
6262

6363
/**
64-
* Input only. PEM-encoded private key associated with the Client Certificate. If this field is
65-
* used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
64+
* Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this
65+
* field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
66+
* Mutually exclusive with the `secret_manager_stored_client_key` field.
6667
* The value may be {@code null}.
6768
*/
6869
@com.google.api.client.util.Key
@@ -112,8 +113,8 @@ public MysqlSslConfig setCaCertificateSet(java.lang.Boolean caCertificateSet) {
112113
}
113114

114115
/**
115-
* Input only. PEM-encoded certificate that will be used by the replica to authenticate against
116-
* the source database server. If this field is used then the 'client_key' and the
116+
* Optional. Input only. PEM-encoded certificate that will be used by the replica to authenticate
117+
* against the source database server. If this field is used then the 'client_key' and the
117118
* 'ca_certificate' fields are mandatory.
118119
* @return value or {@code null} for none
119120
*/
@@ -122,8 +123,8 @@ public java.lang.String getClientCertificate() {
122123
}
123124

124125
/**
125-
* Input only. PEM-encoded certificate that will be used by the replica to authenticate against
126-
* the source database server. If this field is used then the 'client_key' and the
126+
* Optional. Input only. PEM-encoded certificate that will be used by the replica to authenticate
127+
* against the source database server. If this field is used then the 'client_key' and the
127128
* 'ca_certificate' fields are mandatory.
128129
* @param clientCertificate clientCertificate or {@code null} for none
129130
*/
@@ -150,17 +151,19 @@ public MysqlSslConfig setClientCertificateSet(java.lang.Boolean clientCertificat
150151
}
151152

152153
/**
153-
* Input only. PEM-encoded private key associated with the Client Certificate. If this field is
154-
* used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
154+
* Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this
155+
* field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
156+
* Mutually exclusive with the `secret_manager_stored_client_key` field.
155157
* @return value or {@code null} for none
156158
*/
157159
public java.lang.String getClientKey() {
158160
return clientKey;
159161
}
160162

161163
/**
162-
* Input only. PEM-encoded private key associated with the Client Certificate. If this field is
163-
* used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
164+
* Optional. Input only. PEM-encoded private key associated with the Client Certificate. If this
165+
* field is used then the 'client_certificate' and the 'ca_certificate' fields are mandatory.
166+
* Mutually exclusive with the `secret_manager_stored_client_key` field.
164167
* @param clientKey clientKey or {@code null} for none
165168
*/
166169
public MysqlSslConfig setClientKey(java.lang.String clientKey) {

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,20 @@ public final class PrivateConnection extends com.google.api.client.json.GenericJ
6565
@com.google.api.client.util.Key
6666
private java.lang.String name;
6767

68+
/**
69+
* Output only. Reserved for future use.
70+
* The value may be {@code null}.
71+
*/
72+
@com.google.api.client.util.Key
73+
private java.lang.Boolean satisfiesPzi;
74+
75+
/**
76+
* Output only. Reserved for future use.
77+
* The value may be {@code null}.
78+
*/
79+
@com.google.api.client.util.Key
80+
private java.lang.Boolean satisfiesPzs;
81+
6882
/**
6983
* Output only. The state of the Private Connection.
7084
* The value may be {@code null}.
@@ -171,6 +185,40 @@ public PrivateConnection setName(java.lang.String name) {
171185
return this;
172186
}
173187

188+
/**
189+
* Output only. Reserved for future use.
190+
* @return value or {@code null} for none
191+
*/
192+
public java.lang.Boolean getSatisfiesPzi() {
193+
return satisfiesPzi;
194+
}
195+
196+
/**
197+
* Output only. Reserved for future use.
198+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
199+
*/
200+
public PrivateConnection setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
201+
this.satisfiesPzi = satisfiesPzi;
202+
return this;
203+
}
204+
205+
/**
206+
* Output only. Reserved for future use.
207+
* @return value or {@code null} for none
208+
*/
209+
public java.lang.Boolean getSatisfiesPzs() {
210+
return satisfiesPzs;
211+
}
212+
213+
/**
214+
* Output only. Reserved for future use.
215+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
216+
*/
217+
public PrivateConnection setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
218+
this.satisfiesPzs = satisfiesPzs;
219+
return this;
220+
}
221+
174222
/**
175223
* Output only. The state of the Private Connection.
176224
* @return value or {@code null} for none

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

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,20 @@ public final class Stream extends com.google.api.client.json.GenericJson {
109109
@com.google.api.client.util.Key
110110
private java.lang.String name;
111111

112+
/**
113+
* Output only. Reserved for future use.
114+
* The value may be {@code null}.
115+
*/
116+
@com.google.api.client.util.Key
117+
private java.lang.Boolean satisfiesPzi;
118+
119+
/**
120+
* Output only. Reserved for future use.
121+
* The value may be {@code null}.
122+
*/
123+
@com.google.api.client.util.Key
124+
private java.lang.Boolean satisfiesPzs;
125+
112126
/**
113127
* Required. Source connection profile configuration.
114128
* The value may be {@code null}.
@@ -308,6 +322,40 @@ public Stream setName(java.lang.String name) {
308322
return this;
309323
}
310324

325+
/**
326+
* Output only. Reserved for future use.
327+
* @return value or {@code null} for none
328+
*/
329+
public java.lang.Boolean getSatisfiesPzi() {
330+
return satisfiesPzi;
331+
}
332+
333+
/**
334+
* Output only. Reserved for future use.
335+
* @param satisfiesPzi satisfiesPzi or {@code null} for none
336+
*/
337+
public Stream setSatisfiesPzi(java.lang.Boolean satisfiesPzi) {
338+
this.satisfiesPzi = satisfiesPzi;
339+
return this;
340+
}
341+
342+
/**
343+
* Output only. Reserved for future use.
344+
* @return value or {@code null} for none
345+
*/
346+
public java.lang.Boolean getSatisfiesPzs() {
347+
return satisfiesPzs;
348+
}
349+
350+
/**
351+
* Output only. Reserved for future use.
352+
* @param satisfiesPzs satisfiesPzs or {@code null} for none
353+
*/
354+
public Stream setSatisfiesPzs(java.lang.Boolean satisfiesPzs) {
355+
this.satisfiesPzs = satisfiesPzs;
356+
return this;
357+
}
358+
311359
/**
312360
* Required. Source connection profile configuration.
313361
* @return value or {@code null} for none

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-rev20250108-2.0.0</version>
12-
<name>Datastream API v1-rev20250108-2.0.0</name>
11+
<version>v1-rev20250115-2.0.0</version>
12+
<name>Datastream API v1-rev20250115-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-rev20250108-2.0.0</version>
25+
<version>v1-rev20250115-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-rev20250108-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250115-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)