Skip to content

Commit 7bd2073

Browse files
1 parent 9551629 commit 7bd2073

File tree

6 files changed

+87
-6
lines changed

6 files changed

+87
-6
lines changed

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

clients/google-api-services-pubsub/v1/2.0.0/com/google/api/services/pubsub/model/CreateSnapshotRequest.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ public final class CreateSnapshotRequest extends com.google.api.client.json.Gene
4848
@com.google.api.client.util.Key
4949
private java.lang.String subscription;
5050

51+
/**
52+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
53+
* "123/environment": "production", "123/costCenter": "marketing"
54+
* The value may be {@code null}.
55+
*/
56+
@com.google.api.client.util.Key
57+
private java.util.Map<String, java.lang.String> tags;
58+
5159
/**
5260
* Optional. See [Creating and managing labels](https://cloud.google.com/pubsub/docs/labels).
5361
* @return value or {@code null} for none
@@ -92,6 +100,25 @@ public CreateSnapshotRequest setSubscription(java.lang.String subscription) {
92100
return this;
93101
}
94102

103+
/**
104+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
105+
* "123/environment": "production", "123/costCenter": "marketing"
106+
* @return value or {@code null} for none
107+
*/
108+
public java.util.Map<String, java.lang.String> getTags() {
109+
return tags;
110+
}
111+
112+
/**
113+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
114+
* "123/environment": "production", "123/costCenter": "marketing"
115+
* @param tags tags or {@code null} for none
116+
*/
117+
public CreateSnapshotRequest setTags(java.util.Map<String, java.lang.String> tags) {
118+
this.tags = tags;
119+
return this;
120+
}
121+
95122
@Override
96123
public CreateSnapshotRequest set(String fieldName, Object value) {
97124
return (CreateSnapshotRequest) super.set(fieldName, value);

clients/google-api-services-pubsub/v1/2.0.0/com/google/api/services/pubsub/model/Subscription.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,14 @@ public final class Subscription extends com.google.api.client.json.GenericJson {
216216
@com.google.api.client.util.Key
217217
private java.lang.String state;
218218

219+
/**
220+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
221+
* "123/environment": "production", "123/costCenter": "marketing"
222+
* The value may be {@code null}.
223+
*/
224+
@com.google.api.client.util.Key
225+
private java.util.Map<String, java.lang.String> tags;
226+
219227
/**
220228
* Required. The name of the topic from which this subscription is receiving messages. Format is
221229
* `projects/{project}/topics/{topic}`. The value of this field will be `_deleted-topic_` if the
@@ -648,6 +656,25 @@ public Subscription setState(java.lang.String state) {
648656
return this;
649657
}
650658

659+
/**
660+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
661+
* "123/environment": "production", "123/costCenter": "marketing"
662+
* @return value or {@code null} for none
663+
*/
664+
public java.util.Map<String, java.lang.String> getTags() {
665+
return tags;
666+
}
667+
668+
/**
669+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
670+
* "123/environment": "production", "123/costCenter": "marketing"
671+
* @param tags tags or {@code null} for none
672+
*/
673+
public Subscription setTags(java.util.Map<String, java.lang.String> tags) {
674+
this.tags = tags;
675+
return this;
676+
}
677+
651678
/**
652679
* Required. The name of the topic from which this subscription is receiving messages. Format is
653680
* `projects/{project}/topics/{topic}`. The value of this field will be `_deleted-topic_` if the

clients/google-api-services-pubsub/v1/2.0.0/com/google/api/services/pubsub/model/Topic.java

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,14 @@ public final class Topic extends com.google.api.client.json.GenericJson {
118118
@com.google.api.client.util.Key
119119
private java.lang.String state;
120120

121+
/**
122+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
123+
* "123/environment": "production", "123/costCenter": "marketing"
124+
* The value may be {@code null}.
125+
*/
126+
@com.google.api.client.util.Key
127+
private java.util.Map<String, java.lang.String> tags;
128+
121129
/**
122130
* Optional. Settings for ingestion from a data source into this topic.
123131
* @return value or {@code null} for none
@@ -314,6 +322,25 @@ public Topic setState(java.lang.String state) {
314322
return this;
315323
}
316324

325+
/**
326+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
327+
* "123/environment": "production", "123/costCenter": "marketing"
328+
* @return value or {@code null} for none
329+
*/
330+
public java.util.Map<String, java.lang.String> getTags() {
331+
return tags;
332+
}
333+
334+
/**
335+
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
336+
* "123/environment": "production", "123/costCenter": "marketing"
337+
* @param tags tags or {@code null} for none
338+
*/
339+
public Topic setTags(java.util.Map<String, java.lang.String> tags) {
340+
this.tags = tags;
341+
return this;
342+
}
343+
317344
@Override
318345
public Topic set(String fieldName, Object value) {
319346
return (Topic) super.set(fieldName, value);

clients/google-api-services-pubsub/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-pubsub</artifactId>
11-
<version>v1-rev20250807-2.0.0</version>
12-
<name>Cloud Pub/Sub API v1-rev20250807-2.0.0</name>
11+
<version>v1-rev20251025-2.0.0</version>
12+
<name>Cloud Pub/Sub API v1-rev20251025-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

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

0 commit comments

Comments
 (0)