Skip to content

Commit 15c1f45

Browse files
1 parent 60f7763 commit 15c1f45

File tree

4 files changed

+30
-6
lines changed

4 files changed

+30
-6
lines changed

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

clients/google-api-services-workflows/v1/2.0.0/com/google/api/services/workflows/v1/model/Workflow.java

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,13 @@ public final class Workflow extends com.google.api.client.json.GenericJson {
168168
@com.google.api.client.util.Key
169169
private StateError stateError;
170170

171+
/**
172+
* Optional. Input only. Immutable. Tags associated with this workflow.
173+
* The value may be {@code null}.
174+
*/
175+
@com.google.api.client.util.Key
176+
private java.util.Map<String, java.lang.String> tags;
177+
171178
/**
172179
* Output only. The timestamp for when the workflow was last updated. This is a workflow-wide
173180
* field and is not tied to a specific revision.
@@ -511,6 +518,23 @@ public Workflow setStateError(StateError stateError) {
511518
return this;
512519
}
513520

521+
/**
522+
* Optional. Input only. Immutable. Tags associated with this workflow.
523+
* @return value or {@code null} for none
524+
*/
525+
public java.util.Map<String, java.lang.String> getTags() {
526+
return tags;
527+
}
528+
529+
/**
530+
* Optional. Input only. Immutable. Tags associated with this workflow.
531+
* @param tags tags or {@code null} for none
532+
*/
533+
public Workflow setTags(java.util.Map<String, java.lang.String> tags) {
534+
this.tags = tags;
535+
return this;
536+
}
537+
514538
/**
515539
* Output only. The timestamp for when the workflow was last updated. This is a workflow-wide
516540
* field and is not tied to a specific revision.

clients/google-api-services-workflows/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-workflows</artifactId>
11-
<version>v1-rev20240925-2.0.0</version>
12-
<name>Workflows API v1-rev20240925-2.0.0</name>
11+
<version>v1-rev20241204-2.0.0</version>
12+
<name>Workflows API v1-rev20241204-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)