Skip to content

Commit fac641f

Browse files
1 parent f7a5bf0 commit fac641f

6 files changed

Lines changed: 36 additions & 18 deletions

File tree

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-rev20260310-2.0.0</version>
25+
<version>v1-rev20260421-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-rev20260310-2.0.0'
38+
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260421-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: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ public final class CreateSnapshotRequest extends com.google.api.client.json.Gene
5050

5151
/**
5252
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
53-
* "123/environment": "production", "123/costCenter": "marketing"
53+
* "123/environment": "production", "123/costCenter": "marketing" See
54+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
55+
* on using tags with Pub/Sub resources.
5456
* The value may be {@code null}.
5557
*/
5658
@com.google.api.client.util.Key
@@ -102,7 +104,9 @@ public CreateSnapshotRequest setSubscription(java.lang.String subscription) {
102104

103105
/**
104106
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
105-
* "123/environment": "production", "123/costCenter": "marketing"
107+
* "123/environment": "production", "123/costCenter": "marketing" See
108+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
109+
* on using tags with Pub/Sub resources.
106110
* @return value or {@code null} for none
107111
*/
108112
public java.util.Map<String, java.lang.String> getTags() {
@@ -111,7 +115,9 @@ public java.util.Map<String, java.lang.String> getTags() {
111115

112116
/**
113117
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
114-
* "123/environment": "production", "123/costCenter": "marketing"
118+
* "123/environment": "production", "123/costCenter": "marketing" See
119+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
120+
* on using tags with Pub/Sub resources.
115121
* @param tags tags or {@code null} for none
116122
*/
117123
public CreateSnapshotRequest setTags(java.util.Map<String, java.lang.String> tags) {

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
package com.google.api.services.pubsub.model;
1818

1919
/**
20-
* A subscription resource. If none of `push_config`, `bigquery_config`, or `cloud_storage_config`
21-
* is set, then the subscriber will pull and ack messages using API methods. At most one of these
22-
* fields may be set.
20+
* A subscription resource. If none of `push_config`, `bigquery_config`, `cloud_storage_config`, or
21+
* `bigtable_config` is set, then the subscriber will pull and ack messages using API methods. At
22+
* most one of these fields may be set.
2323
*
2424
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
2525
* transmitted over HTTP when working with the Cloud Pub/Sub API. For a detailed explanation see:
@@ -226,7 +226,9 @@ public final class Subscription extends com.google.api.client.json.GenericJson {
226226

227227
/**
228228
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
229-
* "123/environment": "production", "123/costCenter": "marketing"
229+
* "123/environment": "production", "123/costCenter": "marketing" See
230+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
231+
* on using tags with Pub/Sub resources.
230232
* The value may be {@code null}.
231233
*/
232234
@com.google.api.client.util.Key
@@ -685,7 +687,9 @@ public Subscription setState(java.lang.String state) {
685687

686688
/**
687689
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
688-
* "123/environment": "production", "123/costCenter": "marketing"
690+
* "123/environment": "production", "123/costCenter": "marketing" See
691+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
692+
* on using tags with Pub/Sub resources.
689693
* @return value or {@code null} for none
690694
*/
691695
public java.util.Map<String, java.lang.String> getTags() {
@@ -694,7 +698,9 @@ public java.util.Map<String, java.lang.String> getTags() {
694698

695699
/**
696700
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
697-
* "123/environment": "production", "123/costCenter": "marketing"
701+
* "123/environment": "production", "123/costCenter": "marketing" See
702+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
703+
* on using tags with Pub/Sub resources.
698704
* @param tags tags or {@code null} for none
699705
*/
700706
public Subscription setTags(java.util.Map<String, java.lang.String> tags) {

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

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,9 @@ public final class Topic extends com.google.api.client.json.GenericJson {
121121

122122
/**
123123
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
124-
* "123/environment": "production", "123/costCenter": "marketing"
124+
* "123/environment": "production", "123/costCenter": "marketing" See
125+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
126+
* on using tags with Pub/Sub resources.
125127
* The value may be {@code null}.
126128
*/
127129
@com.google.api.client.util.Key
@@ -327,7 +329,9 @@ public Topic setState(java.lang.String state) {
327329

328330
/**
329331
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
330-
* "123/environment": "production", "123/costCenter": "marketing"
332+
* "123/environment": "production", "123/costCenter": "marketing" See
333+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
334+
* on using tags with Pub/Sub resources.
331335
* @return value or {@code null} for none
332336
*/
333337
public java.util.Map<String, java.lang.String> getTags() {
@@ -336,7 +340,9 @@ public java.util.Map<String, java.lang.String> getTags() {
336340

337341
/**
338342
* Optional. Input only. Immutable. Tag keys/values directly bound to this resource. For example:
339-
* "123/environment": "production", "123/costCenter": "marketing"
343+
* "123/environment": "production", "123/costCenter": "marketing" See
344+
* https://{$universe.dns_names.final_documentation_domain}/pubsub/docs/tags for more information
345+
* on using tags with Pub/Sub resources.
340346
* @param tags tags or {@code null} for none
341347
*/
342348
public Topic setTags(java.util.Map<String, java.lang.String> tags) {

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-rev20260310-2.0.0</version>
12-
<name>Cloud Pub/Sub API v1-rev20260310-2.0.0</name>
11+
<version>v1-rev20260421-2.0.0</version>
12+
<name>Cloud Pub/Sub API v1-rev20260421-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-rev20260310-2.0.0</version>
25+
<version>v1-rev20260421-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-rev20260310-2.0.0'
38+
implementation 'com.google.apis:google-api-services-pubsub:v1-rev20260421-2.0.0'
3939
}
4040
```
4141

0 commit comments

Comments
 (0)