com.aliyun.ice20201109.models.DeleteLiveSnapshotFilesRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DeleteLiveSnapshotFilesRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("CreateTimestampList")
public java.util.List createTimestampList;
/**
* example:
* true
*/
@NameInMap("DeleteOriginalFile")
public Boolean deleteOriginalFile;
/**
* This parameter is required.
*
* example:
* a046-263c-3560-978a-fb287782
*/
@NameInMap("JobId")
public String jobId;
public static DeleteLiveSnapshotFilesRequest build(java.util.Map map) throws Exception {
DeleteLiveSnapshotFilesRequest self = new DeleteLiveSnapshotFilesRequest();
return TeaModel.build(map, self);
}
public DeleteLiveSnapshotFilesRequest setCreateTimestampList(java.util.List createTimestampList) {
this.createTimestampList = createTimestampList;
return this;
}
public java.util.List getCreateTimestampList() {
return this.createTimestampList;
}
public DeleteLiveSnapshotFilesRequest setDeleteOriginalFile(Boolean deleteOriginalFile) {
this.deleteOriginalFile = deleteOriginalFile;
return this;
}
public Boolean getDeleteOriginalFile() {
return this.deleteOriginalFile;
}
public DeleteLiveSnapshotFilesRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
}