diff --git a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClient.java b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClient.java
index c3d65a11..d3544710 100644
--- a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClient.java
+++ b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClient.java
@@ -41,6 +41,8 @@
import cn.ucloud.ufile.models.DescribeUFileLifeCycleResponse;
import cn.ucloud.ufile.models.DescribeUFileTokenRequest;
import cn.ucloud.ufile.models.DescribeUFileTokenResponse;
+import cn.ucloud.ufile.models.GetUFileDailyBillRequest;
+import cn.ucloud.ufile.models.GetUFileDailyBillResponse;
import cn.ucloud.ufile.models.GetUFileDailyReportRequest;
import cn.ucloud.ufile.models.GetUFileDailyReportResponse;
import cn.ucloud.ufile.models.GetUFileQuotaInfoRequest;
@@ -214,6 +216,18 @@ public DescribeUFileTokenResponse describeUFileToken(DescribeUFileTokenRequest r
return (DescribeUFileTokenResponse) this.invoke(request, DescribeUFileTokenResponse.class);
}
+ /**
+ * GetUFileDailyBill - 获取bucket每日账单
+ *
+ * @param request Request object
+ * @throws UCloudException Exception
+ */
+ public GetUFileDailyBillResponse getUFileDailyBill(GetUFileDailyBillRequest request)
+ throws UCloudException {
+ request.setAction("GetUFileDailyBill");
+ return (GetUFileDailyBillResponse) this.invoke(request, GetUFileDailyBillResponse.class);
+ }
+
/**
* GetUFileDailyReport - 查看日消费报表
*
diff --git a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClientInterface.java b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClientInterface.java
index 583b5819..91a0fb0e 100644
--- a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClientInterface.java
+++ b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/client/UFileClientInterface.java
@@ -39,6 +39,8 @@
import cn.ucloud.ufile.models.DescribeUFileLifeCycleResponse;
import cn.ucloud.ufile.models.DescribeUFileTokenRequest;
import cn.ucloud.ufile.models.DescribeUFileTokenResponse;
+import cn.ucloud.ufile.models.GetUFileDailyBillRequest;
+import cn.ucloud.ufile.models.GetUFileDailyBillResponse;
import cn.ucloud.ufile.models.GetUFileDailyReportRequest;
import cn.ucloud.ufile.models.GetUFileDailyReportResponse;
import cn.ucloud.ufile.models.GetUFileQuotaInfoRequest;
@@ -170,6 +172,15 @@ public DescribeUFileLifeCycleResponse describeUFileLifeCycle(
public DescribeUFileTokenResponse describeUFileToken(DescribeUFileTokenRequest request)
throws UCloudException;
+ /**
+ * GetUFileDailyBill - 获取bucket每日账单
+ *
+ * @param request Request object
+ * @throws UCloudException Exception
+ */
+ public GetUFileDailyBillResponse getUFileDailyBill(GetUFileDailyBillRequest request)
+ throws UCloudException;
+
/**
* GetUFileDailyReport - 查看日消费报表
*
diff --git a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillRequest.java b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillRequest.java
index da10bbfb..d722b947 100644
--- a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillRequest.java
+++ b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillRequest.java
@@ -1,74 +1,51 @@
/**
* Copyright 2021 UCloud Technology Co., Ltd.
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ *
http://www.apache.org/licenses/LICENSE-2.0
*
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package cn.ucloud.ufile.models;
-import java.util.List;
-
-import cn.ucloud.common.request.Request;
import cn.ucloud.common.annotation.NotEmpty;
import cn.ucloud.common.annotation.UCloudParam;
+import cn.ucloud.common.request.Request;
public class GetUFileDailyBillRequest extends Request {
-
-
- /**
- * 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
- */
+ /** 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist) */
@NotEmpty
@UCloudParam("Region")
private String region;
-
-
-
+
/**
- * 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
+ * 项目ID。不填写为默认项目,子帐号必须填写。
+ * 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*/
@UCloudParam("ProjectId")
private String projectId;
-
-
-
- /**
- * 查询开始时间;unix时间戳,单位s
- */
+
+ /** 查询开始时间;unix时间戳,单位s */
@NotEmpty
@UCloudParam("StartTime")
private Integer startTime;
-
-
-
- /**
- * 查询结束时间;unix时间戳,单位s
- */
+
+ /** 查询结束时间;unix时间戳,单位s */
@NotEmpty
@UCloudParam("EndTime")
private Integer endTime;
-
-
-
- /**
- * 空间名称。此字段不为空,返回此Bucket日账单,否则,返回这个项目的日账单
- */
+
+ /** 空间名称。此字段不为空,返回此Bucket日账单,否则,返回这个项目的日账单 */
@UCloudParam("BucketName")
private String bucketName;
-
-
+
public String getRegion() {
return region;
}
@@ -76,7 +53,7 @@ public String getRegion() {
public void setRegion(String region) {
this.region = region;
}
-
+
public String getProjectId() {
return projectId;
}
@@ -84,7 +61,7 @@ public String getProjectId() {
public void setProjectId(String projectId) {
this.projectId = projectId;
}
-
+
public Integer getStartTime() {
return startTime;
}
@@ -92,7 +69,7 @@ public Integer getStartTime() {
public void setStartTime(Integer startTime) {
this.startTime = startTime;
}
-
+
public Integer getEndTime() {
return endTime;
}
@@ -100,7 +77,7 @@ public Integer getEndTime() {
public void setEndTime(Integer endTime) {
this.endTime = endTime;
}
-
+
public String getBucketName() {
return bucketName;
}
@@ -108,14 +85,4 @@ public String getBucketName() {
public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}
-
}
-
-
-
-
-
-
-
-
-
diff --git a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillResponse.java b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillResponse.java
index a194b416..9ff6903a 100644
--- a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillResponse.java
+++ b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillResponse.java
@@ -1,39 +1,30 @@
/**
* Copyright 2021 UCloud Technology Co., Ltd.
*
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
+ *
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
*
- * http://www.apache.org/licenses/LICENSE-2.0
+ *
http://www.apache.org/licenses/LICENSE-2.0
*
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
+ *
Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
+ * express or implied. See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package cn.ucloud.ufile.models;
-import java.util.List;
-
+import cn.ucloud.common.response.Response;
import com.google.gson.annotations.SerializedName;
-import cn.ucloud.common.response.Response;
+import java.util.List;
public class GetUFileDailyBillResponse extends Response {
-
-
- /**
- * 消费情况
- */
+ /** 消费情况 */
@SerializedName("DataSet")
private List dataSet;
-
-
+
public List getDataSet() {
return dataSet;
}
@@ -41,388 +32,286 @@ public List getDataSet() {
public void setDataSet(List dataSet) {
this.dataSet = dataSet;
}
-
- public static class BucketBills extends Response {
-
-
- /**
- *
- */
- @SerializedName("BucketBills")
- private List bucketBills;
-
-
- public List getBucketBills() {
- return bucketBills;
- }
- public void setBucketBills(List bucketBills) {
- this.bucketBills = bucketBills;
- }
-
- }
- public static class UFileDailyBillItem extends Response {
-
-
- /**
- * 下载低频存储次数费用;分
- */
- @SerializedName("GetCountIaBill")
- private Double getCountIaBill;
-
-
-
- /**
- * 下载标准存储次数费用;分
- */
- @SerializedName("GetCountBill")
- private Double getCountBill;
-
-
-
- /**
- * 上传归档存储次数费用;分
- */
- @SerializedName("PutCountAcBill")
- private Double putCountAcBill;
-
-
-
- /**
- * 上传低频存储次数费用;分
- */
- @SerializedName("PutCountIaBill")
- private Double putCountIaBill;
-
-
-
- /**
- * 上传标准存储次数费用;分
- */
- @SerializedName("PutCountBill")
- private Double putCountBill;
-
-
-
- /**
- * 对象标签费用: 分
- */
- @SerializedName("ObjectTagCountBill")
- private Double objectTagCountBill;
-
-
-
- /**
- * 标准-存储总容量费用;分
- */
- @SerializedName("StorageBill")
- private Double storageBill;
-
-
-
- /**
- * 低频-存储总容量费用;分
- */
- @SerializedName("IaStorageBill")
- private Double iaStorageBill;
-
-
-
- /**
- * 归档-存储总容量费用;分
- */
- @SerializedName("AcStorageBill")
- private Double acStorageBill;
-
-
-
- /**
- * 低频-数据取回量,即低频文件的数据取回量费用;分
- */
- @SerializedName("IaGetSizeBill")
- private Double iaGetSizeBill;
-
-
-
- /**
- * 归档-标准解冻量,即归档文件的解冻类型为标准(Strandard)的解冻量费用; 分
- */
- @SerializedName("AcRestoreBill")
- private Double acRestoreBill;
-
-
-
- /**
- * 归档-高优先级解冻量,即归档文件的解冻类型为高优先级(Expedited)的解冻量费用; 分
- */
- @SerializedName("AcExpeditedRetrievalBill")
- private Double acExpeditedRetrievalBill;
-
-
-
- /**
- * 低频-短期存储量,即补足未满最短存储期限的剩余天数的存储量费用;分
- */
- @SerializedName("IaShortStorageBill")
- private Double iaShortStorageBill;
-
-
-
- /**
- * 归档-短期存储量,即补足未满最短存储期限的剩余天数的存储量费用;分
- */
- @SerializedName("AcShortStorageBill")
- private Double acShortStorageBill;
-
-
-
- /**
- * 基础图片处理量费用;分
- */
- @SerializedName("ImageHandleFlowBill")
- private Double imageHandleFlowBill;
-
-
-
- /**
- * 图片高级压缩次数费用;分
- */
- @SerializedName("ImageCompressCountBill")
- private Double imageCompressCountBill;
-
-
-
- /**
- * 忙时流量费用;分;海外无此字段
- */
- @SerializedName("BusyFlowBill")
- private Double busyFlowBill;
-
-
-
- /**
- * 闲时流量费用;分;海外无此字段
- */
- @SerializedName("IdleFlowBill")
- private Double idleFlowBill;
-
-
-
- /**
- * cdn回源流量费用;分
- */
- @SerializedName("CdnFlowBill")
- private Double cdnFlowBill;
-
-
-
- /**
- * 下载流量费用:分;国内无此字段
- */
- @SerializedName("FlowBill")
- private Double flowBill;
-
-
-
- /**
- * 配额消费时间,unix时间戳;单位s,精确到日期
- */
- @SerializedName("Date")
- private Integer date;
-
-
-
- /**
- * 下载归档存储次数费用;分
- */
- @SerializedName("GetCountAcBill")
- private Double getCountAcBill;
-
-
- public Double getGetCountIaBill() {
- return getCountIaBill;
- }
+ public static class BucketBills extends Response {
- public void setGetCountIaBill(Double getCountIaBill) {
- this.getCountIaBill = getCountIaBill;
- }
-
- public Double getGetCountBill() {
- return getCountBill;
- }
+ /** */
+ @SerializedName("BucketBills")
+ private List bucketBills;
- public void setGetCountBill(Double getCountBill) {
- this.getCountBill = getCountBill;
- }
-
- public Double getPutCountAcBill() {
- return putCountAcBill;
- }
+ public List getBucketBills() {
+ return bucketBills;
+ }
- public void setPutCountAcBill(Double putCountAcBill) {
- this.putCountAcBill = putCountAcBill;
- }
-
- public Double getPutCountIaBill() {
- return putCountIaBill;
+ public void setBucketBills(List bucketBills) {
+ this.bucketBills = bucketBills;
+ }
}
- public void setPutCountIaBill(Double putCountIaBill) {
- this.putCountIaBill = putCountIaBill;
- }
-
- public Double getPutCountBill() {
- return putCountBill;
- }
+ public static class UFileDailyBillItem extends Response {
- public void setPutCountBill(Double putCountBill) {
- this.putCountBill = putCountBill;
- }
-
- public Double getObjectTagCountBill() {
- return objectTagCountBill;
- }
+ /** 下载低频存储次数费用;分 */
+ @SerializedName("GetCountIaBill")
+ private Double getCountIaBill;
- public void setObjectTagCountBill(Double objectTagCountBill) {
- this.objectTagCountBill = objectTagCountBill;
- }
-
- public Double getStorageBill() {
- return storageBill;
- }
+ /** 下载标准存储次数费用;分 */
+ @SerializedName("GetCountBill")
+ private Double getCountBill;
- public void setStorageBill(Double storageBill) {
- this.storageBill = storageBill;
- }
-
- public Double getIaStorageBill() {
- return iaStorageBill;
- }
+ /** 上传归档存储次数费用;分 */
+ @SerializedName("PutCountAcBill")
+ private Double putCountAcBill;
- public void setIaStorageBill(Double iaStorageBill) {
- this.iaStorageBill = iaStorageBill;
- }
-
- public Double getAcStorageBill() {
- return acStorageBill;
- }
+ /** 上传低频存储次数费用;分 */
+ @SerializedName("PutCountIaBill")
+ private Double putCountIaBill;
- public void setAcStorageBill(Double acStorageBill) {
- this.acStorageBill = acStorageBill;
- }
-
- public Double getIaGetSizeBill() {
- return iaGetSizeBill;
- }
+ /** 上传标准存储次数费用;分 */
+ @SerializedName("PutCountBill")
+ private Double putCountBill;
- public void setIaGetSizeBill(Double iaGetSizeBill) {
- this.iaGetSizeBill = iaGetSizeBill;
- }
-
- public Double getAcRestoreBill() {
- return acRestoreBill;
- }
+ /** 对象标签费用: 分 */
+ @SerializedName("ObjectTagCountBill")
+ private Double objectTagCountBill;
- public void setAcRestoreBill(Double acRestoreBill) {
- this.acRestoreBill = acRestoreBill;
- }
-
- public Double getAcExpeditedRetrievalBill() {
- return acExpeditedRetrievalBill;
- }
+ /** 标准-存储总容量费用;分 */
+ @SerializedName("StorageBill")
+ private Double storageBill;
- public void setAcExpeditedRetrievalBill(Double acExpeditedRetrievalBill) {
- this.acExpeditedRetrievalBill = acExpeditedRetrievalBill;
- }
-
- public Double getIaShortStorageBill() {
- return iaShortStorageBill;
- }
+ /** 低频-存储总容量费用;分 */
+ @SerializedName("IaStorageBill")
+ private Double iaStorageBill;
- public void setIaShortStorageBill(Double iaShortStorageBill) {
- this.iaShortStorageBill = iaShortStorageBill;
- }
-
- public Double getAcShortStorageBill() {
- return acShortStorageBill;
- }
+ /** 归档-存储总容量费用;分 */
+ @SerializedName("AcStorageBill")
+ private Double acStorageBill;
- public void setAcShortStorageBill(Double acShortStorageBill) {
- this.acShortStorageBill = acShortStorageBill;
- }
-
- public Double getImageHandleFlowBill() {
- return imageHandleFlowBill;
- }
+ /** 低频-数据取回量,即低频文件的数据取回量费用;分 */
+ @SerializedName("IaGetSizeBill")
+ private Double iaGetSizeBill;
- public void setImageHandleFlowBill(Double imageHandleFlowBill) {
- this.imageHandleFlowBill = imageHandleFlowBill;
- }
-
- public Double getImageCompressCountBill() {
- return imageCompressCountBill;
- }
+ /** 归档-标准解冻量,即归档文件的解冻类型为标准(Strandard)的解冻量费用; 分 */
+ @SerializedName("AcRestoreBill")
+ private Double acRestoreBill;
- public void setImageCompressCountBill(Double imageCompressCountBill) {
- this.imageCompressCountBill = imageCompressCountBill;
- }
-
- public Double getBusyFlowBill() {
- return busyFlowBill;
- }
+ /** 归档-高优先级解冻量,即归档文件的解冻类型为高优先级(Expedited)的解冻量费用; 分 */
+ @SerializedName("AcExpeditedRetrievalBill")
+ private Double acExpeditedRetrievalBill;
- public void setBusyFlowBill(Double busyFlowBill) {
- this.busyFlowBill = busyFlowBill;
- }
-
- public Double getIdleFlowBill() {
- return idleFlowBill;
- }
+ /** 低频-短期存储量,即补足未满最短存储期限的剩余天数的存储量费用;分 */
+ @SerializedName("IaShortStorageBill")
+ private Double iaShortStorageBill;
- public void setIdleFlowBill(Double idleFlowBill) {
- this.idleFlowBill = idleFlowBill;
- }
-
- public Double getCdnFlowBill() {
- return cdnFlowBill;
- }
+ /** 归档-短期存储量,即补足未满最短存储期限的剩余天数的存储量费用;分 */
+ @SerializedName("AcShortStorageBill")
+ private Double acShortStorageBill;
- public void setCdnFlowBill(Double cdnFlowBill) {
- this.cdnFlowBill = cdnFlowBill;
- }
-
- public Double getFlowBill() {
- return flowBill;
- }
+ /** 基础图片处理量费用;分 */
+ @SerializedName("ImageHandleFlowBill")
+ private Double imageHandleFlowBill;
- public void setFlowBill(Double flowBill) {
- this.flowBill = flowBill;
- }
-
- public Integer getDate() {
- return date;
- }
+ /** 图片高级压缩次数费用;分 */
+ @SerializedName("ImageCompressCountBill")
+ private Double imageCompressCountBill;
- public void setDate(Integer date) {
- this.date = date;
- }
-
- public Double getGetCountAcBill() {
- return getCountAcBill;
- }
+ /** 忙时流量费用;分;海外无此字段 */
+ @SerializedName("BusyFlowBill")
+ private Double busyFlowBill;
- public void setGetCountAcBill(Double getCountAcBill) {
- this.getCountAcBill = getCountAcBill;
- }
-
+ /** 闲时流量费用;分;海外无此字段 */
+ @SerializedName("IdleFlowBill")
+ private Double idleFlowBill;
+
+ /** cdn回源流量费用;分 */
+ @SerializedName("CdnFlowBill")
+ private Double cdnFlowBill;
+
+ /** 下载流量费用:分;国内无此字段 */
+ @SerializedName("FlowBill")
+ private Double flowBill;
+
+ /** 配额消费时间,unix时间戳;单位s,精确到日期 */
+ @SerializedName("Date")
+ private Integer date;
+
+ /** 下载归档存储次数费用;分 */
+ @SerializedName("GetCountAcBill")
+ private Double getCountAcBill;
+
+ public Double getGetCountIaBill() {
+ return getCountIaBill;
}
-}
+ public void setGetCountIaBill(Double getCountIaBill) {
+ this.getCountIaBill = getCountIaBill;
+ }
+ public Double getGetCountBill() {
+ return getCountBill;
+ }
+ public void setGetCountBill(Double getCountBill) {
+ this.getCountBill = getCountBill;
+ }
+
+ public Double getPutCountAcBill() {
+ return putCountAcBill;
+ }
+ public void setPutCountAcBill(Double putCountAcBill) {
+ this.putCountAcBill = putCountAcBill;
+ }
+ public Double getPutCountIaBill() {
+ return putCountIaBill;
+ }
+ public void setPutCountIaBill(Double putCountIaBill) {
+ this.putCountIaBill = putCountIaBill;
+ }
+ public Double getPutCountBill() {
+ return putCountBill;
+ }
+ public void setPutCountBill(Double putCountBill) {
+ this.putCountBill = putCountBill;
+ }
+ public Double getObjectTagCountBill() {
+ return objectTagCountBill;
+ }
+
+ public void setObjectTagCountBill(Double objectTagCountBill) {
+ this.objectTagCountBill = objectTagCountBill;
+ }
+
+ public Double getStorageBill() {
+ return storageBill;
+ }
+
+ public void setStorageBill(Double storageBill) {
+ this.storageBill = storageBill;
+ }
+
+ public Double getIaStorageBill() {
+ return iaStorageBill;
+ }
+
+ public void setIaStorageBill(Double iaStorageBill) {
+ this.iaStorageBill = iaStorageBill;
+ }
+
+ public Double getAcStorageBill() {
+ return acStorageBill;
+ }
+
+ public void setAcStorageBill(Double acStorageBill) {
+ this.acStorageBill = acStorageBill;
+ }
+
+ public Double getIaGetSizeBill() {
+ return iaGetSizeBill;
+ }
+
+ public void setIaGetSizeBill(Double iaGetSizeBill) {
+ this.iaGetSizeBill = iaGetSizeBill;
+ }
+
+ public Double getAcRestoreBill() {
+ return acRestoreBill;
+ }
+
+ public void setAcRestoreBill(Double acRestoreBill) {
+ this.acRestoreBill = acRestoreBill;
+ }
+
+ public Double getAcExpeditedRetrievalBill() {
+ return acExpeditedRetrievalBill;
+ }
+
+ public void setAcExpeditedRetrievalBill(Double acExpeditedRetrievalBill) {
+ this.acExpeditedRetrievalBill = acExpeditedRetrievalBill;
+ }
+
+ public Double getIaShortStorageBill() {
+ return iaShortStorageBill;
+ }
+
+ public void setIaShortStorageBill(Double iaShortStorageBill) {
+ this.iaShortStorageBill = iaShortStorageBill;
+ }
+
+ public Double getAcShortStorageBill() {
+ return acShortStorageBill;
+ }
+
+ public void setAcShortStorageBill(Double acShortStorageBill) {
+ this.acShortStorageBill = acShortStorageBill;
+ }
+
+ public Double getImageHandleFlowBill() {
+ return imageHandleFlowBill;
+ }
+
+ public void setImageHandleFlowBill(Double imageHandleFlowBill) {
+ this.imageHandleFlowBill = imageHandleFlowBill;
+ }
+
+ public Double getImageCompressCountBill() {
+ return imageCompressCountBill;
+ }
+
+ public void setImageCompressCountBill(Double imageCompressCountBill) {
+ this.imageCompressCountBill = imageCompressCountBill;
+ }
+
+ public Double getBusyFlowBill() {
+ return busyFlowBill;
+ }
+
+ public void setBusyFlowBill(Double busyFlowBill) {
+ this.busyFlowBill = busyFlowBill;
+ }
+
+ public Double getIdleFlowBill() {
+ return idleFlowBill;
+ }
+
+ public void setIdleFlowBill(Double idleFlowBill) {
+ this.idleFlowBill = idleFlowBill;
+ }
+
+ public Double getCdnFlowBill() {
+ return cdnFlowBill;
+ }
+
+ public void setCdnFlowBill(Double cdnFlowBill) {
+ this.cdnFlowBill = cdnFlowBill;
+ }
+
+ public Double getFlowBill() {
+ return flowBill;
+ }
+
+ public void setFlowBill(Double flowBill) {
+ this.flowBill = flowBill;
+ }
+
+ public Integer getDate() {
+ return date;
+ }
+
+ public void setDate(Integer date) {
+ this.date = date;
+ }
+
+ public Double getGetCountAcBill() {
+ return getCountAcBill;
+ }
+
+ public void setGetCountAcBill(Double getCountAcBill) {
+ this.getCountAcBill = getCountAcBill;
+ }
+ }
+}
diff --git a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyReportResponse.java b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyReportResponse.java
index b16a2cea..19c55eef 100644
--- a/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyReportResponse.java
+++ b/ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyReportResponse.java
@@ -99,6 +99,10 @@ public static class UFileDailyReportItem extends Response {
@SerializedName("ApiTimes")
private Double apiTimes;
+ /** 对象标签个数; 单位万个 */
+ @SerializedName("ObjectTagCount")
+ private Double objectTagCount;
+
public Double getStorage() {
return storage;
}
@@ -226,6 +230,14 @@ public Double getApiTimes() {
public void setApiTimes(Double apiTimes) {
this.apiTimes = apiTimes;
}
+
+ public Double getObjectTagCount() {
+ return objectTagCount;
+ }
+
+ public void setObjectTagCount(Double objectTagCount) {
+ this.objectTagCount = objectTagCount;
+ }
}
public static class UFileReportItem extends Response {
diff --git a/ucloud-sdk-java-ufs/pom.xml b/ucloud-sdk-java-ufs/pom.xml
index 6be5738d..389cdd86 100644
--- a/ucloud-sdk-java-ufs/pom.xml
+++ b/ucloud-sdk-java-ufs/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-ufs
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uhost/pom.xml b/ucloud-sdk-java-uhost/pom.xml
index b77598aa..20fc13f3 100644
--- a/ucloud-sdk-java-uhost/pom.xml
+++ b/ucloud-sdk-java-uhost/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uhost
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uk8s/pom.xml b/ucloud-sdk-java-uk8s/pom.xml
index 8280b766..28ffaa40 100644
--- a/ucloud-sdk-java-uk8s/pom.xml
+++ b/ucloud-sdk-java-uk8s/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uk8s
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-ulb/pom.xml b/ucloud-sdk-java-ulb/pom.xml
index 214f60c9..fef08ecb 100644
--- a/ucloud-sdk-java-ulb/pom.xml
+++ b/ucloud-sdk-java-ulb/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-ulb
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-ulog/pom.xml b/ucloud-sdk-java-ulog/pom.xml
index 6585285f..369ce076 100644
--- a/ucloud-sdk-java-ulog/pom.xml
+++ b/ucloud-sdk-java-ulog/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-ulog
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-umem/pom.xml b/ucloud-sdk-java-umem/pom.xml
index 041a2dea..4de3d59e 100644
--- a/ucloud-sdk-java-umem/pom.xml
+++ b/ucloud-sdk-java-umem/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-umem
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-umongodb/pom.xml b/ucloud-sdk-java-umongodb/pom.xml
index 1673ab69..cbf60411 100644
--- a/ucloud-sdk-java-umongodb/pom.xml
+++ b/ucloud-sdk-java-umongodb/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-umongodb
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-unet/pom.xml b/ucloud-sdk-java-unet/pom.xml
index dc76e3e0..347d7c17 100644
--- a/ucloud-sdk-java-unet/pom.xml
+++ b/ucloud-sdk-java-unet/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-unet
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-upgsql/pom.xml b/ucloud-sdk-java-upgsql/pom.xml
index 95dff868..71945277 100644
--- a/ucloud-sdk-java-upgsql/pom.xml
+++ b/ucloud-sdk-java-upgsql/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-upgsql
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uphone/pom.xml b/ucloud-sdk-java-uphone/pom.xml
index b02391c3..7d12cc24 100644
--- a/ucloud-sdk-java-uphone/pom.xml
+++ b/ucloud-sdk-java-uphone/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uphone
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uphost/pom.xml b/ucloud-sdk-java-uphost/pom.xml
index 51e3f415..1e0942f5 100644
--- a/ucloud-sdk-java-uphost/pom.xml
+++ b/ucloud-sdk-java-uphost/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uphost
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uslk/pom.xml b/ucloud-sdk-java-uslk/pom.xml
index 47f4a4d1..d75a37ae 100644
--- a/ucloud-sdk-java-uslk/pom.xml
+++ b/ucloud-sdk-java-uslk/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uslk
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-usms/pom.xml b/ucloud-sdk-java-usms/pom.xml
index 793ec335..b9adf990 100644
--- a/ucloud-sdk-java-usms/pom.xml
+++ b/ucloud-sdk-java-usms/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-usms
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-usnap/pom.xml b/ucloud-sdk-java-usnap/pom.xml
index fe2f862c..1f22286e 100644
--- a/ucloud-sdk-java-usnap/pom.xml
+++ b/ucloud-sdk-java-usnap/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-usnap
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-uvms/pom.xml b/ucloud-sdk-java-uvms/pom.xml
index 66539138..0a03d588 100644
--- a/ucloud-sdk-java-uvms/pom.xml
+++ b/ucloud-sdk-java-uvms/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-uvms
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release
diff --git a/ucloud-sdk-java-vpc/pom.xml b/ucloud-sdk-java-vpc/pom.xml
index be680848..ce980d3c 100644
--- a/ucloud-sdk-java-vpc/pom.xml
+++ b/ucloud-sdk-java-vpc/pom.xml
@@ -6,18 +6,18 @@
ucloud-sdk-java
cn.ucloud
- 1.2.34-release
+ 1.2.35-release
4.0.0
ucloud-sdk-java-vpc
- 1.2.34-release
+ 1.2.35-release
cn.ucloud
ucloud-sdk-java-common
- 1.2.34-release
+ 1.2.35-release