com.aliyun.polardb20170801.models.DescribeDasConfigResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polardb20170801 Show documentation
Show all versions of polardb20170801 Show documentation
Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;
import com.aliyun.tea.*;
public class DescribeDasConfigResponseBody extends TeaModel {
/**
* Id of the request
*
* example:
* 593AE1C5-B70C-463F-9207-074639******
*/
@NameInMap("RequestId")
public String requestId;
/**
* Indicates whether the automatic storage expansion feature is enabled for the standard cluster.
*
* example:
* Enable
*/
@NameInMap("StorageAutoScale")
public String storageAutoScale;
/**
* The maximum storage capacity of the standard cluster that is scaled up. Unit: GB.
*
* This parameter is returned when the StorageAutoScale parameter is set to Enable.
*
*
* example:
* 800
*/
@NameInMap("StorageUpperBound")
public Long storageUpperBound;
public static DescribeDasConfigResponseBody build(java.util.Map map) throws Exception {
DescribeDasConfigResponseBody self = new DescribeDasConfigResponseBody();
return TeaModel.build(map, self);
}
public DescribeDasConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeDasConfigResponseBody setStorageAutoScale(String storageAutoScale) {
this.storageAutoScale = storageAutoScale;
return this;
}
public String getStorageAutoScale() {
return this.storageAutoScale;
}
public DescribeDasConfigResponseBody setStorageUpperBound(Long storageUpperBound) {
this.storageUpperBound = storageUpperBound;
return this;
}
public Long getStorageUpperBound() {
return this.storageUpperBound;
}
}