All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.arms20190808.models.DeleteSourceMapShrinkRequest Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 10.0.0
Show newest version
// 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