-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #99 from ucloud-bot/codegen/1734421142
sdk: rolling update for 1.2.34-release
- Loading branch information
Showing
2 changed files
with
549 additions
and
0 deletions.
There are no files selected for viewing
121 changes: 121 additions & 0 deletions
121
ucloud-sdk-java-ufile/src/main/java/cn/ucloud/ufile/models/GetUFileDailyBillRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
|
||
} | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
Oops, something went wrong.