Skip to content

Commit 98f2214

Browse files
1 parent 3200dad commit 98f2214

File tree

4 files changed

+36
-12
lines changed

4 files changed

+36
-12
lines changed

clients/google-api-services-pubsub/v1/2.0.0/README.md

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

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

+30-6
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,15 @@
3030
public final class MessageTransform extends com.google.api.client.json.GenericJson {
3131

3232
/**
33-
* Optional. If set to true, the transform is enabled. If false, the transform is disabled and
34-
* will not be applied to messages. Defaults to `true`.
33+
* Optional. If true, the transform is disabled and will not be applied to messages. Defaults to
34+
* `false`.
35+
* The value may be {@code null}.
36+
*/
37+
@com.google.api.client.util.Key
38+
private java.lang.Boolean disabled;
39+
40+
/**
41+
* Optional. This field is deprecated, use the `disabled` field to disable transforms.
3542
* The value may be {@code null}.
3643
*/
3744
@com.google.api.client.util.Key
@@ -46,17 +53,34 @@ public final class MessageTransform extends com.google.api.client.json.GenericJs
4653
private JavaScriptUDF javascriptUdf;
4754

4855
/**
49-
* Optional. If set to true, the transform is enabled. If false, the transform is disabled and
50-
* will not be applied to messages. Defaults to `true`.
56+
* Optional. If true, the transform is disabled and will not be applied to messages. Defaults to
57+
* `false`.
58+
* @return value or {@code null} for none
59+
*/
60+
public java.lang.Boolean getDisabled() {
61+
return disabled;
62+
}
63+
64+
/**
65+
* Optional. If true, the transform is disabled and will not be applied to messages. Defaults to
66+
* `false`.
67+
* @param disabled disabled or {@code null} for none
68+
*/
69+
public MessageTransform setDisabled(java.lang.Boolean disabled) {
70+
this.disabled = disabled;
71+
return this;
72+
}
73+
74+
/**
75+
* Optional. This field is deprecated, use the `disabled` field to disable transforms.
5176
* @return value or {@code null} for none
5277
*/
5378
public java.lang.Boolean getEnabled() {
5479
return enabled;
5580
}
5681

5782
/**
58-
* Optional. If set to true, the transform is enabled. If false, the transform is disabled and
59-
* will not be applied to messages. Defaults to `true`.
83+
* Optional. This field is deprecated, use the `disabled` field to disable transforms.
6084
* @param enabled enabled or {@code null} for none
6185
*/
6286
public MessageTransform setEnabled(java.lang.Boolean enabled) {

clients/google-api-services-pubsub/v1/2.0.0/pom.xml

+2-2
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-rev20250218-2.0.0</version>
12-
<name>Cloud Pub/Sub API v1-rev20250218-2.0.0</name>
11+
<version>v1-rev20250311-2.0.0</version>
12+
<name>Cloud Pub/Sub API v1-rev20250311-2.0.0</name>
1313
<packaging>jar</packaging>
1414

1515
<inceptionYear>2011</inceptionYear>

clients/google-api-services-pubsub/v1/README.md

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

0 commit comments

Comments
 (0)