com.aliyun.sas20181203.models.DescribeWebLockProcessListResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeWebLockProcessListResponseBody extends TeaModel {
/**
* The page number of the returned page.
*
* example:
* 1
*/
@NameInMap("CurrentPage")
public Integer currentPage;
/**
* An array that consists of details about the process.
*/
@NameInMap("List")
public java.util.List list;
/**
* The number of entries returned per page.
*
* example:
* 20
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* The ID of the request, which is used to locate and troubleshoot issues.
*
* example:
* 028CF634-5268-5660-9575-48C9ED6BF880
*/
@NameInMap("RequestId")
public String requestId;
/**
* The total number of processes.
*
* example:
* 200
*/
@NameInMap("TotalCount")
public Integer totalCount;
public static DescribeWebLockProcessListResponseBody build(java.util.Map map) throws Exception {
DescribeWebLockProcessListResponseBody self = new DescribeWebLockProcessListResponseBody();
return TeaModel.build(map, self);
}
public DescribeWebLockProcessListResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public DescribeWebLockProcessListResponseBody setList(java.util.List list) {
this.list = list;
return this;
}
public java.util.List getList() {
return this.list;
}
public DescribeWebLockProcessListResponseBody setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public DescribeWebLockProcessListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeWebLockProcessListResponseBody setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
public static class DescribeWebLockProcessListResponseBodyList extends TeaModel {
/**
* The number of entries returned on the current page.
*
* example:
* 33
*/
@NameInMap("Count")
public String count;
/**
* The name of the server.
*
* example:
* test_ecs
*/
@NameInMap("InstanceName")
public String instanceName;
/**
* The public IP address of the server.
*
* example:
* 8.210.XX.XX
*/
@NameInMap("InternetIp")
public String internetIp;
/**
* The private IP address of the server.
*
* example:
* 172.25.XX.XX
*/
@NameInMap("IntranetIp")
public String intranetIp;
/**
* The name of the process.
*
* example:
* cron
*/
@NameInMap("ProcessName")
public String processName;
/**
* The path to the process.
*
* example:
* /usr/sbin/cron
*/
@NameInMap("ProcessPath")
public String processPath;
/**
* Indicates whether the process is added to the process whitelist. Valid values:
*
* - 1: The process is added to the process whitelist.
* - 0: The process is not added to the process whitelist.
*
*
* example:
* 0
*/
@NameInMap("Status")
public Integer status;
/**
* The UUID of the server.
*
* example:
* 49e25e0f-bb51-4a5a-a1b3-13a4ddaa****
*/
@NameInMap("Uuid")
public String uuid;
public static DescribeWebLockProcessListResponseBodyList build(java.util.Map map) throws Exception {
DescribeWebLockProcessListResponseBodyList self = new DescribeWebLockProcessListResponseBodyList();
return TeaModel.build(map, self);
}
public DescribeWebLockProcessListResponseBodyList setCount(String count) {
this.count = count;
return this;
}
public String getCount() {
return this.count;
}
public DescribeWebLockProcessListResponseBodyList setInstanceName(String instanceName) {
this.instanceName = instanceName;
return this;
}
public String getInstanceName() {
return this.instanceName;
}
public DescribeWebLockProcessListResponseBodyList setInternetIp(String internetIp) {
this.internetIp = internetIp;
return this;
}
public String getInternetIp() {
return this.internetIp;
}
public DescribeWebLockProcessListResponseBodyList setIntranetIp(String intranetIp) {
this.intranetIp = intranetIp;
return this;
}
public String getIntranetIp() {
return this.intranetIp;
}
public DescribeWebLockProcessListResponseBodyList setProcessName(String processName) {
this.processName = processName;
return this;
}
public String getProcessName() {
return this.processName;
}
public DescribeWebLockProcessListResponseBodyList setProcessPath(String processPath) {
this.processPath = processPath;
return this;
}
public String getProcessPath() {
return this.processPath;
}
public DescribeWebLockProcessListResponseBodyList setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public DescribeWebLockProcessListResponseBodyList setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy