com.aliyun.datalake20200710.models.GetMetaDataStorageUsagesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class GetMetaDataStorageUsagesRequest extends TeaModel {
@NameInMap("Months")
public String months;
public static GetMetaDataStorageUsagesRequest build(java.util.Map map) throws Exception {
GetMetaDataStorageUsagesRequest self = new GetMetaDataStorageUsagesRequest();
return TeaModel.build(map, self);
}
public GetMetaDataStorageUsagesRequest setMonths(String months) {
this.months = months;
return this;
}
public String getMonths() {
return this.months;
}
}