2323 PatchTableRequestDataAttributes .JSON_PROPERTY_DESCRIPTION ,
2424 PatchTableRequestDataAttributes .JSON_PROPERTY_FILE_METADATA ,
2525 PatchTableRequestDataAttributes .JSON_PROPERTY_SCHEMA ,
26- PatchTableRequestDataAttributes .JSON_PROPERTY_SYNC_ENABLED ,
2726 PatchTableRequestDataAttributes .JSON_PROPERTY_TAGS
2827})
2928@ jakarta .annotation .Generated (
@@ -39,9 +38,6 @@ public class PatchTableRequestDataAttributes {
3938 public static final String JSON_PROPERTY_SCHEMA = "schema" ;
4039 private PatchTableRequestDataAttributesSchema schema ;
4140
42- public static final String JSON_PROPERTY_SYNC_ENABLED = "sync_enabled" ;
43- private Boolean syncEnabled ;
44-
4541 public static final String JSON_PROPERTY_TAGS = "tags" ;
4642 private List <String > tags = null ;
4743
@@ -112,27 +108,6 @@ public void setSchema(PatchTableRequestDataAttributesSchema schema) {
112108 this .schema = schema ;
113109 }
114110
115- public PatchTableRequestDataAttributes syncEnabled (Boolean syncEnabled ) {
116- this .syncEnabled = syncEnabled ;
117- return this ;
118- }
119-
120- /**
121- * Whether this table is synced automatically.
122- *
123- * @return syncEnabled
124- */
125- @ jakarta .annotation .Nullable
126- @ JsonProperty (JSON_PROPERTY_SYNC_ENABLED )
127- @ JsonInclude (value = JsonInclude .Include .USE_DEFAULTS )
128- public Boolean getSyncEnabled () {
129- return syncEnabled ;
130- }
131-
132- public void setSyncEnabled (Boolean syncEnabled ) {
133- this .syncEnabled = syncEnabled ;
134- }
135-
136111 public PatchTableRequestDataAttributes tags (List <String > tags ) {
137112 this .tags = tags ;
138113 return this ;
@@ -222,15 +197,14 @@ public boolean equals(Object o) {
222197 return Objects .equals (this .description , patchTableRequestDataAttributes .description )
223198 && Objects .equals (this .fileMetadata , patchTableRequestDataAttributes .fileMetadata )
224199 && Objects .equals (this .schema , patchTableRequestDataAttributes .schema )
225- && Objects .equals (this .syncEnabled , patchTableRequestDataAttributes .syncEnabled )
226200 && Objects .equals (this .tags , patchTableRequestDataAttributes .tags )
227201 && Objects .equals (
228202 this .additionalProperties , patchTableRequestDataAttributes .additionalProperties );
229203 }
230204
231205 @ Override
232206 public int hashCode () {
233- return Objects .hash (description , fileMetadata , schema , syncEnabled , tags , additionalProperties );
207+ return Objects .hash (description , fileMetadata , schema , tags , additionalProperties );
234208 }
235209
236210 @ Override
@@ -240,7 +214,6 @@ public String toString() {
240214 sb .append (" description: " ).append (toIndentedString (description )).append ("\n " );
241215 sb .append (" fileMetadata: " ).append (toIndentedString (fileMetadata )).append ("\n " );
242216 sb .append (" schema: " ).append (toIndentedString (schema )).append ("\n " );
243- sb .append (" syncEnabled: " ).append (toIndentedString (syncEnabled )).append ("\n " );
244217 sb .append (" tags: " ).append (toIndentedString (tags )).append ("\n " );
245218 sb .append (" additionalProperties: " )
246219 .append (toIndentedString (additionalProperties ))
0 commit comments