@@ -45,19 +45,19 @@ public final class Instance extends com.google.api.client.json.GenericJson {
4545 private java .lang .Long capacityStepSizeGb ;
4646
4747 /**
48- * Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
49- * it using the 'performance_config' field.
48+ * Output only. The time when the instance was created.
5049 * The value may be {@code null}.
5150 */
5251 @ com .google .api .client .util .Key
53- private java . lang . Boolean configurablePerformanceEnabled ;
52+ private String createTime ;
5453
5554 /**
56- * Output only. The time when the instance was created.
55+ * Output only. Indicates whether this instance supports configuring its performance. If true, the
56+ * user can configure the instance's performance by using the 'performance_config' field.
5757 * The value may be {@code null}.
5858 */
5959 @ com .google .api .client .util .Key
60- private String createTime ;
60+ private java . lang . Boolean customPerformanceSupported ;
6161
6262 /**
6363 * Optional. Indicates whether the instance is protected against deletion.
@@ -283,38 +283,38 @@ public Instance setCapacityStepSizeGb(java.lang.Long capacityStepSizeGb) {
283283 }
284284
285285 /**
286- * Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
287- * it using the 'performance_config' field.
286+ * Output only. The time when the instance was created.
288287 * @return value or {@code null} for none
289288 */
290- public java . lang . Boolean getConfigurablePerformanceEnabled () {
291- return configurablePerformanceEnabled ;
289+ public String getCreateTime () {
290+ return createTime ;
292291 }
293292
294293 /**
295- * Output only. Indicates whether this instance's performance is configurable. If enabled, adjust
296- * it using the 'performance_config' field.
297- * @param configurablePerformanceEnabled configurablePerformanceEnabled or {@code null} for none
294+ * Output only. The time when the instance was created.
295+ * @param createTime createTime or {@code null} for none
298296 */
299- public Instance setConfigurablePerformanceEnabled ( java . lang . Boolean configurablePerformanceEnabled ) {
300- this .configurablePerformanceEnabled = configurablePerformanceEnabled ;
297+ public Instance setCreateTime ( String createTime ) {
298+ this .createTime = createTime ;
301299 return this ;
302300 }
303301
304302 /**
305- * Output only. The time when the instance was created.
303+ * Output only. Indicates whether this instance supports configuring its performance. If true, the
304+ * user can configure the instance's performance by using the 'performance_config' field.
306305 * @return value or {@code null} for none
307306 */
308- public String getCreateTime () {
309- return createTime ;
307+ public java . lang . Boolean getCustomPerformanceSupported () {
308+ return customPerformanceSupported ;
310309 }
311310
312311 /**
313- * Output only. The time when the instance was created.
314- * @param createTime createTime or {@code null} for none
312+ * Output only. Indicates whether this instance supports configuring its performance. If true, the
313+ * user can configure the instance's performance by using the 'performance_config' field.
314+ * @param customPerformanceSupported customPerformanceSupported or {@code null} for none
315315 */
316- public Instance setCreateTime ( String createTime ) {
317- this .createTime = createTime ;
316+ public Instance setCustomPerformanceSupported ( java . lang . Boolean customPerformanceSupported ) {
317+ this .customPerformanceSupported = customPerformanceSupported ;
318318 return this ;
319319 }
320320
0 commit comments