Skip to content

Commit c9edf2a

Browse files
1 parent 4b5396c commit c9edf2a

File tree

5 files changed

+60
-6
lines changed

5 files changed

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

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,14 @@ public final class MongodbSourceConfig extends com.google.api.client.json.Generi
4343
@com.google.api.client.util.Key
4444
private MongodbCluster includeObjects;
4545

46+
/**
47+
* Optional. Maximum number of concurrent backfill tasks. The number should be non-negative and
48+
* less than or equal to 50. If not set (or set to 0), the system's default value is used
49+
* The value may be {@code null}.
50+
*/
51+
@com.google.api.client.util.Key
52+
private java.lang.Integer maxConcurrentBackfillTasks;
53+
4654
/**
4755
* MongoDB collections to exclude from the stream.
4856
* @return value or {@code null} for none
@@ -77,6 +85,25 @@ public MongodbSourceConfig setIncludeObjects(MongodbCluster includeObjects) {
7785
return this;
7886
}
7987

88+
/**
89+
* Optional. Maximum number of concurrent backfill tasks. The number should be non-negative and
90+
* less than or equal to 50. If not set (or set to 0), the system's default value is used
91+
* @return value or {@code null} for none
92+
*/
93+
public java.lang.Integer getMaxConcurrentBackfillTasks() {
94+
return maxConcurrentBackfillTasks;
95+
}
96+
97+
/**
98+
* Optional. Maximum number of concurrent backfill tasks. The number should be non-negative and
99+
* less than or equal to 50. If not set (or set to 0), the system's default value is used
100+
* @param maxConcurrentBackfillTasks maxConcurrentBackfillTasks or {@code null} for none
101+
*/
102+
public MongodbSourceConfig setMaxConcurrentBackfillTasks(java.lang.Integer maxConcurrentBackfillTasks) {
103+
this.maxConcurrentBackfillTasks = maxConcurrentBackfillTasks;
104+
return this;
105+
}
106+
80107
@Override
81108
public MongodbSourceConfig set(String fieldName, Object value) {
82109
return (MongodbSourceConfig) super.set(fieldName, value);

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

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,33 @@
2929
@SuppressWarnings("javadoc")
3030
public final class StandardConnectionFormat extends com.google.api.client.json.GenericJson {
3131

32+
/**
33+
* Optional. Specifies whether the client connects directly to the host[:port] in the connection
34+
* URI.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean directConnection;
39+
40+
/**
41+
* Optional. Specifies whether the client connects directly to the host[:port] in the connection
42+
* URI.
43+
* @return value or {@code null} for none
44+
*/
45+
public java.lang.Boolean getDirectConnection() {
46+
return directConnection;
47+
}
48+
49+
/**
50+
* Optional. Specifies whether the client connects directly to the host[:port] in the connection
51+
* URI.
52+
* @param directConnection directConnection or {@code null} for none
53+
*/
54+
public StandardConnectionFormat setDirectConnection(java.lang.Boolean directConnection) {
55+
this.directConnection = directConnection;
56+
return this;
57+
}
58+
3259
@Override
3360
public StandardConnectionFormat set(String fieldName, Object value) {
3461
return (StandardConnectionFormat) 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-rev20250505-2.0.0</version>
12-
<name>Datastream API v1-rev20250505-2.0.0</name>
11+
<version>v1-rev20250511-2.0.0</version>
12+
<name>Datastream API v1-rev20250511-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-rev20250505-2.0.0</version>
25+
<version>v1-rev20250511-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-rev20250505-2.0.0'
38+
implementation 'com.google.apis:google-api-services-datastream:v1-rev20250511-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)