Skip to content

Commit 51d35eb

Browse files
1 parent cf9a7d0 commit 51d35eb

File tree

7 files changed

+288
-27
lines changed

7 files changed

+288
-27
lines changed

clients/google-api-services-dataflow/v1b3/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-dataflow</artifactId>
25-
<version>v1b3-rev20240415-2.0.0</version>
25+
<version>v1b3-rev20240430-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-dataflow:v1b3-rev20240415-2.0.0'
38+
implementation 'com.google.apis:google-api-services-dataflow:v1b3-rev20240430-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Environment.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public final class Environment extends com.google.api.client.json.GenericJson {
102102
private java.lang.String serviceKmsKeyName;
103103

104104
/**
105-
* The list of service options to enable. This field should be used for service related
105+
* Optional. The list of service options to enable. This field should be used for service related
106106
* experiments only. These experiments, when graduating to GA, should be replaced by dedicated
107107
* fields or become default (i.e. always on).
108108
* The value may be {@code null}.
@@ -361,7 +361,7 @@ public Environment setServiceKmsKeyName(java.lang.String serviceKmsKeyName) {
361361
}
362362

363363
/**
364-
* The list of service options to enable. This field should be used for service related
364+
* Optional. The list of service options to enable. This field should be used for service related
365365
* experiments only. These experiments, when graduating to GA, should be replaced by dedicated
366366
* fields or become default (i.e. always on).
367367
* @return value or {@code null} for none
@@ -371,7 +371,7 @@ public java.util.List<java.lang.String> getServiceOptions() {
371371
}
372372

373373
/**
374-
* The list of service options to enable. This field should be used for service related
374+
* Optional. The list of service options to enable. This field should be used for service related
375375
* experiments only. These experiments, when graduating to GA, should be replaced by dedicated
376376
* fields or become default (i.e. always on).
377377
* @param serviceOptions serviceOptions or {@code null} for none

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/Job.java

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public final class Job extends com.google.api.client.json.GenericJson {
7474
private String currentStateTime;
7575

7676
/**
77-
* The environment for the job.
77+
* Optional. The environment for the job.
7878
* The value may be {@code null}.
7979
*/
8080
@com.google.api.client.util.Key
@@ -123,10 +123,10 @@ public final class Job extends com.google.api.client.json.GenericJson {
123123
private java.lang.String location;
124124

125125
/**
126-
* The user-specified Dataflow job name. Only one active job with a given name can exist in a
127-
* project within one region at any given time. Jobs in different regions can have the same name.
128-
* If a caller attempts to create a job with the same name as an active job that already exists,
129-
* the attempt returns the existing job. The name must match the regular expression
126+
* Optional. The user-specified Dataflow job name. Only one active job with a given name can exist
127+
* in a project within one region at any given time. Jobs in different regions can have the same
128+
* name. If a caller attempts to create a job with the same name as an active job that already
129+
* exists, the attempt returns the existing job. The name must match the regular expression
130130
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
131131
* The value may be {@code null}.
132132
*/
@@ -259,7 +259,7 @@ public final class Job extends com.google.api.client.json.GenericJson {
259259
private java.util.Map<String, java.lang.String> transformNameMapping;
260260

261261
/**
262-
* The type of Dataflow job.
262+
* Optional. The type of Dataflow job.
263263
* The value may be {@code null}.
264264
*/
265265
@com.google.api.client.util.Key
@@ -367,15 +367,15 @@ public Job setCurrentStateTime(String currentStateTime) {
367367
}
368368

369369
/**
370-
* The environment for the job.
370+
* Optional. The environment for the job.
371371
* @return value or {@code null} for none
372372
*/
373373
public Environment getEnvironment() {
374374
return environment;
375375
}
376376

377377
/**
378-
* The environment for the job.
378+
* Optional. The environment for the job.
379379
* @param environment environment or {@code null} for none
380380
*/
381381
public Job setEnvironment(Environment environment) {
@@ -483,10 +483,10 @@ public Job setLocation(java.lang.String location) {
483483
}
484484

485485
/**
486-
* The user-specified Dataflow job name. Only one active job with a given name can exist in a
487-
* project within one region at any given time. Jobs in different regions can have the same name.
488-
* If a caller attempts to create a job with the same name as an active job that already exists,
489-
* the attempt returns the existing job. The name must match the regular expression
486+
* Optional. The user-specified Dataflow job name. Only one active job with a given name can exist
487+
* in a project within one region at any given time. Jobs in different regions can have the same
488+
* name. If a caller attempts to create a job with the same name as an active job that already
489+
* exists, the attempt returns the existing job. The name must match the regular expression
490490
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
491491
* @return value or {@code null} for none
492492
*/
@@ -495,10 +495,10 @@ public java.lang.String getName() {
495495
}
496496

497497
/**
498-
* The user-specified Dataflow job name. Only one active job with a given name can exist in a
499-
* project within one region at any given time. Jobs in different regions can have the same name.
500-
* If a caller attempts to create a job with the same name as an active job that already exists,
501-
* the attempt returns the existing job. The name must match the regular expression
498+
* Optional. The user-specified Dataflow job name. Only one active job with a given name can exist
499+
* in a project within one region at any given time. Jobs in different regions can have the same
500+
* name. If a caller attempts to create a job with the same name as an active job that already
501+
* exists, the attempt returns the existing job. The name must match the regular expression
502502
* `[a-z]([-a-z0-9]{0,1022}[a-z0-9])?`
503503
* @param name name or {@code null} for none
504504
*/
@@ -788,15 +788,15 @@ public Job setTransformNameMapping(java.util.Map<String, java.lang.String> trans
788788
}
789789

790790
/**
791-
* The type of Dataflow job.
791+
* Optional. The type of Dataflow job.
792792
* @return value or {@code null} for none
793793
*/
794794
public java.lang.String getType() {
795795
return type;
796796
}
797797

798798
/**
799-
* The type of Dataflow job.
799+
* Optional. The type of Dataflow job.
800800
* @param type type or {@code null} for none
801801
*/
802802
public Job setType(java.lang.String type) {

clients/google-api-services-dataflow/v1b3/2.0.0/com/google/api/services/dataflow/model/StreamingConfigTask.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,14 @@ public final class StreamingConfigTask extends com.google.api.client.json.Generi
5050
@com.google.api.client.util.Key @com.google.api.client.json.JsonString
5151
private java.lang.Long maxWorkItemCommitBytes;
5252

53+
/**
54+
* Operational limits for the streaming job. Can be used by the worker to validate outputs sent to
55+
* the backend.
56+
* The value may be {@code null}.
57+
*/
58+
@com.google.api.client.util.Key
59+
private StreamingOperationalLimits operationalLimits;
60+
5361
/**
5462
* Set of computation configuration information.
5563
* The value may be {@code null}.
@@ -137,6 +145,25 @@ public StreamingConfigTask setMaxWorkItemCommitBytes(java.lang.Long maxWorkItemC
137145
return this;
138146
}
139147

148+
/**
149+
* Operational limits for the streaming job. Can be used by the worker to validate outputs sent to
150+
* the backend.
151+
* @return value or {@code null} for none
152+
*/
153+
public StreamingOperationalLimits getOperationalLimits() {
154+
return operationalLimits;
155+
}
156+
157+
/**
158+
* Operational limits for the streaming job. Can be used by the worker to validate outputs sent to
159+
* the backend.
160+
* @param operationalLimits operationalLimits or {@code null} for none
161+
*/
162+
public StreamingConfigTask setOperationalLimits(StreamingOperationalLimits operationalLimits) {
163+
this.operationalLimits = operationalLimits;
164+
return this;
165+
}
166+
140167
/**
141168
* Set of computation configuration information.
142169
* @return value or {@code null} for none

0 commit comments

Comments
 (0)