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

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

Go to download

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

There is a newer version: 9.1.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;

import com.aliyun.tea.*;

public class GetRetcodeLogstoreRequest extends TeaModel {
    /**
     * 

The process identifier (PID) of the application. To obtain the PID of the application, perform the following steps: Log on to the Application Real-Time Monitoring Service (ARMS) console. In the left-side navigation pane, choose Browser Monitoring > Browser Monitoring. On the Browser Monitoring page, click the name of the application. The URL in the address bar contains the PID of the application. The PID is in the pid=xxx format. The PID is usually percent encoded as xxx%40xxx. You must modify this value to remove the percent encoding. For example, if the PID in the URL is xxx%4074xxx, you must replace %40 with the at sign (@) to obtain xxx@74xxx.

*

This parameter is required.

* * example: *

atc889zkcf@d8deedfa9bf****

*/ @NameInMap("Pid") public String pid; /** *

The ID of the region.

* * example: *

cn-hangzhou

*/ @NameInMap("RegionId") public String regionId; public static GetRetcodeLogstoreRequest build(java.util.Map map) throws Exception { GetRetcodeLogstoreRequest self = new GetRetcodeLogstoreRequest(); return TeaModel.build(map, self); } public GetRetcodeLogstoreRequest setPid(String pid) { this.pid = pid; return this; } public String getPid() { return this.pid; } public GetRetcodeLogstoreRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy