Skip to content

Commit 5f11808

Browse files
1 parent 0f707c3 commit 5f11808

File tree

4 files changed

+39
-6
lines changed

4 files changed

+39
-6
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-rev20240604-2.0.0</version>
25+
<version>v1-rev20240715-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-rev20240604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workflowexecutions:v1-rev20240715-2.0.0'
3939
}
4040
```
4141

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

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,16 @@ public final class Execution extends com.google.api.client.json.GenericJson {
8585
@com.google.api.client.util.Key
8686
private Error error;
8787

88+
/**
89+
* Optional. Describes the level of the execution history feature to apply to this execution. If
90+
* not specified, the level of the execution history feature will be determined by its workflow's
91+
* execution history level. If the value is different from its workflow's value, it will override
92+
* the workflow's execution history level for this exeuction.
93+
* The value may be {@code null}.
94+
*/
95+
@com.google.api.client.util.Key
96+
private java.lang.String executionHistoryLevel;
97+
8898
/**
8999
* Labels associated with this execution. Labels can contain at most 64 entries. Keys and values
90100
* can be no longer than 63 characters and can only contain lowercase letters, numeric characters,
@@ -277,6 +287,29 @@ public Execution setError(Error error) {
277287
return this;
278288
}
279289

290+
/**
291+
* Optional. Describes the level of the execution history feature to apply to this execution. If
292+
* not specified, the level of the execution history feature will be determined by its workflow's
293+
* execution history level. If the value is different from its workflow's value, it will override
294+
* the workflow's execution history level for this exeuction.
295+
* @return value or {@code null} for none
296+
*/
297+
public java.lang.String getExecutionHistoryLevel() {
298+
return executionHistoryLevel;
299+
}
300+
301+
/**
302+
* Optional. Describes the level of the execution history feature to apply to this execution. If
303+
* not specified, the level of the execution history feature will be determined by its workflow's
304+
* execution history level. If the value is different from its workflow's value, it will override
305+
* the workflow's execution history level for this exeuction.
306+
* @param executionHistoryLevel executionHistoryLevel or {@code null} for none
307+
*/
308+
public Execution setExecutionHistoryLevel(java.lang.String executionHistoryLevel) {
309+
this.executionHistoryLevel = executionHistoryLevel;
310+
return this;
311+
}
312+
280313
/**
281314
* Labels associated with this execution. Labels can contain at most 64 entries. Keys and values
282315
* can be no longer than 63 characters and can only contain lowercase letters, numeric characters,

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-rev20240604-2.0.0</version>
12-
<name>Workflow Executions API v1-rev20240604-2.0.0</name>
11+
<version>v1-rev20240715-2.0.0</version>
12+
<name>Workflow Executions API v1-rev20240715-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-rev20240604-2.0.0</version>
25+
<version>v1-rev20240715-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-rev20240604-2.0.0'
38+
implementation 'com.google.apis:google-api-services-workflowexecutions:v1-rev20240715-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)