30
30
public final class MessageTransform extends com .google .api .client .json .GenericJson {
31
31
32
32
/**
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.
35
42
* The value may be {@code null}.
36
43
*/
37
44
@ com .google .api .client .util .Key
@@ -46,17 +53,34 @@ public final class MessageTransform extends com.google.api.client.json.GenericJs
46
53
private JavaScriptUDF javascriptUdf ;
47
54
48
55
/**
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.
51
76
* @return value or {@code null} for none
52
77
*/
53
78
public java .lang .Boolean getEnabled () {
54
79
return enabled ;
55
80
}
56
81
57
82
/**
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.
60
84
* @param enabled enabled or {@code null} for none
61
85
*/
62
86
public MessageTransform setEnabled (java .lang .Boolean enabled ) {
0 commit comments