Skip to content

Commit

Permalink
Merge pull request #99 from ucloud-bot/codegen/1734421142
Browse files Browse the repository at this point in the history
sdk: rolling update for 1.2.34-release
  • Loading branch information
ucloud-bot authored Dec 17, 2024
2 parents 75beebd + 6cc7b7d commit e43d66f
Show file tree
Hide file tree
Showing 2 changed files with 549 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/**
* 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
*
* 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
* 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;

public class GetUFileDailyBillRequest extends Request {



/**
* 地域。 参见 [地域和可用区列表](https://docs.ucloud.cn/api/summary/regionlist)
*/
@NotEmpty
@UCloudParam("Region")
private String region;



/**
* 项目ID。不填写为默认项目,子帐号必须填写。 请参考[GetProjectList接口](https://docs.ucloud.cn/api/summary/get_project_list)
*/
@UCloudParam("ProjectId")
private String projectId;



/**
* 查询开始时间;unix时间戳,单位s
*/
@NotEmpty
@UCloudParam("StartTime")
private Integer startTime;



/**
* 查询结束时间;unix时间戳,单位s
*/
@NotEmpty
@UCloudParam("EndTime")
private Integer endTime;



/**
* 空间名称。此字段不为空,返回此Bucket日账单,否则,返回这个项目的日账单
*/
@UCloudParam("BucketName")
private String bucketName;


public String getRegion() {
return region;
}

public void setRegion(String region) {
this.region = region;
}

public String getProjectId() {
return projectId;
}

public void setProjectId(String projectId) {
this.projectId = projectId;
}

public Integer getStartTime() {
return startTime;
}

public void setStartTime(Integer startTime) {
this.startTime = startTime;
}

public Integer getEndTime() {
return endTime;
}

public void setEndTime(Integer endTime) {
this.endTime = endTime;
}

public String getBucketName() {
return bucketName;
}

public void setBucketName(String bucketName) {
this.bucketName = bucketName;
}

}









Loading

0 comments on commit e43d66f

Please sign in to comment.