com.aliyun.arms20190808.models.DeleteRumUploadFileRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DeleteRumUploadFileRequest extends TeaModel {
/**
* Information of files to be deleted in JSON array format. If a single file needs to be deleted, this field should be left empty. If multiple files need to be deleted, just fill in this field.
*
* example:
* [{
* "fileName" : "test.js.map",
* "version" : "1.0.0"
* },
* {
* "fileName" : "test.dSYM",
* "version" : "1.20.1",
* "uuid" : "xxxx-xxxx-xxxx-xxxx"
* }]
*/
@NameInMap("BatchItems")
public String batchItems;
/**
* The file name, with the extension.
*
* example:
* test.js.map
*/
@NameInMap("FileName")
public String fileName;
/**
* The application ID.
* This parameter is required.
*
* example:
* atc889zkcf@d8deedfa9bf****
*/
@NameInMap("Pid")
public String pid;
/**
* The region ID.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
/**
* The file ID.
*
* example:
* MS4wLjAtbWFpbi4wZjM0NzRlOSxxxxxx
*/
@NameInMap("Uuid")
public String uuid;
/**
* The version number of the file.
*
* example:
* 1.0.0
*/
@NameInMap("VersionId")
public String versionId;
public static DeleteRumUploadFileRequest build(java.util.Map map) throws Exception {
DeleteRumUploadFileRequest self = new DeleteRumUploadFileRequest();
return TeaModel.build(map, self);
}
public DeleteRumUploadFileRequest setBatchItems(String batchItems) {
this.batchItems = batchItems;
return this;
}
public String getBatchItems() {
return this.batchItems;
}
public DeleteRumUploadFileRequest setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public DeleteRumUploadFileRequest setPid(String pid) {
this.pid = pid;
return this;
}
public String getPid() {
return this.pid;
}
public DeleteRumUploadFileRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
public DeleteRumUploadFileRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
public DeleteRumUploadFileRequest setVersionId(String versionId) {
this.versionId = versionId;
return this;
}
public String getVersionId() {
return this.versionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy