You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-datamigration/v1/2.0.0/com/google/api/services/datamigration/v1/model/ColumnEntity.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -72,6 +72,13 @@ public final class ColumnEntity extends com.google.api.client.json.GenericJson {
72
72
@com.google.api.client.util.Key
73
73
privatejava.lang.Stringcomment;
74
74
75
+
/**
76
+
* Is the column a computed column.
77
+
* The value may be {@code null}.
78
+
*/
79
+
@com.google.api.client.util.Key
80
+
privatejava.lang.Booleancomputed;
81
+
75
82
/**
76
83
* Custom engine specific features.
77
84
* The value may be {@code null}.
@@ -258,6 +265,23 @@ public ColumnEntity setComment(java.lang.String comment) {
258
265
returnthis;
259
266
}
260
267
268
+
/**
269
+
* Is the column a computed column.
270
+
* @return value or {@code null} for none
271
+
*/
272
+
publicjava.lang.BooleangetComputed() {
273
+
returncomputed;
274
+
}
275
+
276
+
/**
277
+
* Is the column a computed column.
278
+
* @param computed computed or {@code null} for none
0 commit comments