com.aliyun.arms20190808.models.DeleteSourceMapShrinkRequest 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 DeleteSourceMapShrinkRequest extends TeaModel {
/**
* The IDs of the SourceMap files.
* This parameter is required.
*/
@NameInMap("FidList")
public String fidListShrink;
/**
* The process identifier (PID) of the application.
* This parameter is required.
*
* example:
* atc889zkcf@d8deedfa9bf****
*/
@NameInMap("Pid")
public String pid;
/**
* The ID of the region.
* This parameter is required.
*
* example:
* cn-hangzhou
*/
@NameInMap("RegionId")
public String regionId;
public static DeleteSourceMapShrinkRequest build(java.util.Map map) throws Exception {
DeleteSourceMapShrinkRequest self = new DeleteSourceMapShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteSourceMapShrinkRequest setFidListShrink(String fidListShrink) {
this.fidListShrink = fidListShrink;
return this;
}
public String getFidListShrink() {
return this.fidListShrink;
}
public DeleteSourceMapShrinkRequest setPid(String pid) {
this.pid = pid;
return this;
}
public String getPid() {
return this.pid;
}
public DeleteSourceMapShrinkRequest setRegionId(String regionId) {
this.regionId = regionId;
return this;
}
public String getRegionId() {
return this.regionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy