@@ -1819,6 +1819,24 @@ public com.google.bigtable.admin.v2.ModifyColumnFamiliesRequest.Modification get
1819
1819
return modifications_ .get (index );
1820
1820
}
1821
1821
1822
+ public static final int IGNORE_WARNINGS_FIELD_NUMBER = 3 ;
1823
+ private boolean ignoreWarnings_ = false ;
1824
+ /**
1825
+ *
1826
+ *
1827
+ * <pre>
1828
+ * Optional. If true, ignore safety checks when modifying the column families.
1829
+ * </pre>
1830
+ *
1831
+ * <code>bool ignore_warnings = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
1832
+ *
1833
+ * @return The ignoreWarnings.
1834
+ */
1835
+ @ java .lang .Override
1836
+ public boolean getIgnoreWarnings () {
1837
+ return ignoreWarnings_ ;
1838
+ }
1839
+
1822
1840
private byte memoizedIsInitialized = -1 ;
1823
1841
1824
1842
@ java .lang .Override
@@ -1839,6 +1857,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) throws java.io
1839
1857
for (int i = 0 ; i < modifications_ .size (); i ++) {
1840
1858
output .writeMessage (2 , modifications_ .get (i ));
1841
1859
}
1860
+ if (ignoreWarnings_ != false ) {
1861
+ output .writeBool (3 , ignoreWarnings_ );
1862
+ }
1842
1863
getUnknownFields ().writeTo (output );
1843
1864
}
1844
1865
@@ -1854,6 +1875,9 @@ public int getSerializedSize() {
1854
1875
for (int i = 0 ; i < modifications_ .size (); i ++) {
1855
1876
size += com .google .protobuf .CodedOutputStream .computeMessageSize (2 , modifications_ .get (i ));
1856
1877
}
1878
+ if (ignoreWarnings_ != false ) {
1879
+ size += com .google .protobuf .CodedOutputStream .computeBoolSize (3 , ignoreWarnings_ );
1880
+ }
1857
1881
size += getUnknownFields ().getSerializedSize ();
1858
1882
memoizedSize = size ;
1859
1883
return size ;
@@ -1872,6 +1896,7 @@ public boolean equals(final java.lang.Object obj) {
1872
1896
1873
1897
if (!getName ().equals (other .getName ())) return false ;
1874
1898
if (!getModificationsList ().equals (other .getModificationsList ())) return false ;
1899
+ if (getIgnoreWarnings () != other .getIgnoreWarnings ()) return false ;
1875
1900
if (!getUnknownFields ().equals (other .getUnknownFields ())) return false ;
1876
1901
return true ;
1877
1902
}
@@ -1889,6 +1914,8 @@ public int hashCode() {
1889
1914
hash = (37 * hash ) + MODIFICATIONS_FIELD_NUMBER ;
1890
1915
hash = (53 * hash ) + getModificationsList ().hashCode ();
1891
1916
}
1917
+ hash = (37 * hash ) + IGNORE_WARNINGS_FIELD_NUMBER ;
1918
+ hash = (53 * hash ) + com .google .protobuf .Internal .hashBoolean (getIgnoreWarnings ());
1892
1919
hash = (29 * hash ) + getUnknownFields ().hashCode ();
1893
1920
memoizedHashCode = hash ;
1894
1921
return hash ;
@@ -2038,6 +2065,7 @@ public Builder clear() {
2038
2065
modificationsBuilder_ .clear ();
2039
2066
}
2040
2067
bitField0_ = (bitField0_ & ~0x00000002 );
2068
+ ignoreWarnings_ = false ;
2041
2069
return this ;
2042
2070
}
2043
2071
@@ -2091,6 +2119,9 @@ private void buildPartial0(com.google.bigtable.admin.v2.ModifyColumnFamiliesRequ
2091
2119
if (((from_bitField0_ & 0x00000001 ) != 0 )) {
2092
2120
result .name_ = name_ ;
2093
2121
}
2122
+ if (((from_bitField0_ & 0x00000004 ) != 0 )) {
2123
+ result .ignoreWarnings_ = ignoreWarnings_ ;
2124
+ }
2094
2125
}
2095
2126
2096
2127
@ java .lang .Override
@@ -2171,6 +2202,9 @@ public Builder mergeFrom(com.google.bigtable.admin.v2.ModifyColumnFamiliesReques
2171
2202
}
2172
2203
}
2173
2204
}
2205
+ if (other .getIgnoreWarnings () != false ) {
2206
+ setIgnoreWarnings (other .getIgnoreWarnings ());
2207
+ }
2174
2208
this .mergeUnknownFields (other .getUnknownFields ());
2175
2209
onChanged ();
2176
2210
return this ;
@@ -2218,6 +2252,12 @@ public Builder mergeFrom(
2218
2252
}
2219
2253
break ;
2220
2254
} // case 18
2255
+ case 24 :
2256
+ {
2257
+ ignoreWarnings_ = input .readBool ();
2258
+ bitField0_ |= 0x00000004 ;
2259
+ break ;
2260
+ } // case 24
2221
2261
default :
2222
2262
{
2223
2263
if (!super .parseUnknownField (input , extensionRegistry , tag )) {
@@ -2833,6 +2873,59 @@ public Builder removeModifications(int index) {
2833
2873
return modificationsBuilder_ ;
2834
2874
}
2835
2875
2876
+ private boolean ignoreWarnings_ ;
2877
+ /**
2878
+ *
2879
+ *
2880
+ * <pre>
2881
+ * Optional. If true, ignore safety checks when modifying the column families.
2882
+ * </pre>
2883
+ *
2884
+ * <code>bool ignore_warnings = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
2885
+ *
2886
+ * @return The ignoreWarnings.
2887
+ */
2888
+ @ java .lang .Override
2889
+ public boolean getIgnoreWarnings () {
2890
+ return ignoreWarnings_ ;
2891
+ }
2892
+ /**
2893
+ *
2894
+ *
2895
+ * <pre>
2896
+ * Optional. If true, ignore safety checks when modifying the column families.
2897
+ * </pre>
2898
+ *
2899
+ * <code>bool ignore_warnings = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
2900
+ *
2901
+ * @param value The ignoreWarnings to set.
2902
+ * @return This builder for chaining.
2903
+ */
2904
+ public Builder setIgnoreWarnings (boolean value ) {
2905
+
2906
+ ignoreWarnings_ = value ;
2907
+ bitField0_ |= 0x00000004 ;
2908
+ onChanged ();
2909
+ return this ;
2910
+ }
2911
+ /**
2912
+ *
2913
+ *
2914
+ * <pre>
2915
+ * Optional. If true, ignore safety checks when modifying the column families.
2916
+ * </pre>
2917
+ *
2918
+ * <code>bool ignore_warnings = 3 [(.google.api.field_behavior) = OPTIONAL];</code>
2919
+ *
2920
+ * @return This builder for chaining.
2921
+ */
2922
+ public Builder clearIgnoreWarnings () {
2923
+ bitField0_ = (bitField0_ & ~0x00000004 );
2924
+ ignoreWarnings_ = false ;
2925
+ onChanged ();
2926
+ return this ;
2927
+ }
2928
+
2836
2929
@ java .lang .Override
2837
2930
public final Builder setUnknownFields (final com .google .protobuf .UnknownFieldSet unknownFields ) {
2838
2931
return super .setUnknownFields (unknownFields );
0 commit comments