com.aliyun.sas20181203.models.GetAppNetworkRequest 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 GetAppNetworkRequest extends TeaModel {
/**
* The ID of the cluster to which the container belongs.
*
* You can call the DescribeGroupedContainerInstances operation to query the IDs of container clusters.
*
*
* example:
* cf77xxx
*/
@NameInMap("ClusterId")
public String clusterId;
/**
* The end timestamp of the query. Unit: milliseconds.
*
* The days between the start timestamp and the end timestamp cannot exceed seven days.
*
*
* example:
* 1650470399999
*/
@NameInMap("EndTime")
public Long endTime;
/**
* The start timestamp of the query. Unit: milliseconds.
*
* The days between the start timestamp and the end timestamp cannot exceed seven days.
*
*
* example:
* 1649260800000
*/
@NameInMap("StartTime")
public Long startTime;
public static GetAppNetworkRequest build(java.util.Map map) throws Exception {
GetAppNetworkRequest self = new GetAppNetworkRequest();
return TeaModel.build(map, self);
}
public GetAppNetworkRequest setClusterId(String clusterId) {
this.clusterId = clusterId;
return this;
}
public String getClusterId() {
return this.clusterId;
}
public GetAppNetworkRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetAppNetworkRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy