Skip to content

Commit d4c16f8

Browse files
1 parent 3611db7 commit d4c16f8

File tree

5 files changed

+23
-20
lines changed

5 files changed

+23
-20
lines changed

clients/google-api-services-workflowexecutions/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-workflowexecutions</artifactId>
25-
<version>v1-rev20240827-2.0.0</version>
25+
<version>v1-rev20240916-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-workflowexecutions:v1-rev20240827-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workflowexecutions:v1-rev20240916-2.0.0'
3939
}
4040
```
4141

clients/google-api-services-workflowexecutions/v1/2.0.0/com/google/api/services/workflowexecutions/v1/WorkflowExecutions.java

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,19 +1256,19 @@ public List setParent(java.lang.String parent) {
12561256
/**
12571257
* Optional. Filters applied to the `[Executions.ListExecutions]` results. The following
12581258
* fields are supported for filtering: `executionId`, `state`, `createTime`,
1259-
* `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `label`.
1260-
* For details, see AIP-160. For more information, see Filter executions. For example,
1261-
* if you are using the Google APIs Explorer: `state="SUCCEEDED"` or
1262-
* `startTime>"2023-08-01" AND state="FAILED"`
1259+
* `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, `label`, and
1260+
* `disableConcurrencyQuotaOverflowBuffering`. For details, see AIP-160. For more
1261+
* information, see Filter executions. For example, if you are using the Google APIs
1262+
* Explorer: `state="SUCCEEDED"` or `startTime>"2023-08-01" AND state="FAILED"`
12631263
*/
12641264
@com.google.api.client.util.Key
12651265
private java.lang.String filter;
12661266

12671267
/** Optional. Filters applied to the `[Executions.ListExecutions]` results. The following fields are
12681268
supported for filtering: `executionId`, `state`, `createTime`, `startTime`, `endTime`, `duration`,
1269-
`workflowRevisionId`, `stepName`, and `label`. For details, see AIP-160. For more information, see
1270-
Filter executions. For example, if you are using the Google APIs Explorer: `state="SUCCEEDED"` or
1271-
`startTime>"2023-08-01" AND state="FAILED"`
1269+
`workflowRevisionId`, `stepName`, `label`, and `disableConcurrencyQuotaOverflowBuffering`. For
1270+
details, see AIP-160. For more information, see Filter executions. For example, if you are using
1271+
the Google APIs Explorer: `state="SUCCEEDED"` or `startTime>"2023-08-01" AND state="FAILED"`
12721272
*/
12731273
public java.lang.String getFilter() {
12741274
return filter;
@@ -1277,10 +1277,10 @@ public java.lang.String getFilter() {
12771277
/**
12781278
* Optional. Filters applied to the `[Executions.ListExecutions]` results. The following
12791279
* fields are supported for filtering: `executionId`, `state`, `createTime`,
1280-
* `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, and `label`.
1281-
* For details, see AIP-160. For more information, see Filter executions. For example,
1282-
* if you are using the Google APIs Explorer: `state="SUCCEEDED"` or
1283-
* `startTime>"2023-08-01" AND state="FAILED"`
1280+
* `startTime`, `endTime`, `duration`, `workflowRevisionId`, `stepName`, `label`, and
1281+
* `disableConcurrencyQuotaOverflowBuffering`. For details, see AIP-160. For more
1282+
* information, see Filter executions. For example, if you are using the Google APIs
1283+
* Explorer: `state="SUCCEEDED"` or `startTime>"2023-08-01" AND state="FAILED"`
12841284
*/
12851285
public List setFilter(java.lang.String filter) {
12861286
this.filter = filter;

clients/google-api-services-workflowexecutions/v1/2.0.0/com/google/api/services/workflowexecutions/v1/model/Execution.java

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,8 @@ public final class Execution extends com.google.api.client.json.GenericJson {
123123
private java.lang.String result;
124124

125125
/**
126-
* Output only. Marks the beginning of execution.
126+
* Output only. Marks the beginning of execution. Note that this will be the same as `createTime`
127+
* for executions that start immediately.
127128
* The value may be {@code null}.
128129
*/
129130
@com.google.api.client.util.Key
@@ -374,15 +375,17 @@ public Execution setResult(java.lang.String result) {
374375
}
375376

376377
/**
377-
* Output only. Marks the beginning of execution.
378+
* Output only. Marks the beginning of execution. Note that this will be the same as `createTime`
379+
* for executions that start immediately.
378380
* @return value or {@code null} for none
379381
*/
380382
public String getStartTime() {
381383
return startTime;
382384
}
383385

384386
/**
385-
* Output only. Marks the beginning of execution.
387+
* Output only. Marks the beginning of execution. Note that this will be the same as `createTime`
388+
* for executions that start immediately.
386389
* @param startTime startTime or {@code null} for none
387390
*/
388391
public Execution setStartTime(String startTime) {

clients/google-api-services-workflowexecutions/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-workflowexecutions</artifactId>
11-
<version>v1-rev20240827-2.0.0</version>
12-
<name>Workflow Executions API v1-rev20240827-2.0.0</name>
11+
<version>v1-rev20240916-2.0.0</version>
12+
<name>Workflow Executions API v1-rev20240916-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-workflowexecutions/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-workflowexecutions</artifactId>
25-
<version>v1-rev20240827-2.0.0</version>
25+
<version>v1-rev20240916-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-workflowexecutions:v1-rev20240827-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workflowexecutions:v1-rev20240916-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)