com.aliyun.ens20171110.models.DescribeServerLoadBalancerMonitorRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DescribeServerLoadBalancerMonitorRequest extends TeaModel {
/**
* The end of the time range to query. The maximum range between StartTime and EndTime is 24 hours.
* This parameter is required.
*
* example:
* 2024-09-15 17:00:00
*/
@NameInMap("EndTime")
public String endTime;
/**
* The ID of the ELB instance.
* This parameter is required.
*
* example:
* lb-5sc1s9zrui8lpb8u7cl4f****
*/
@NameInMap("LoadBalancerId")
public String loadBalancerId;
/**
* The beginning of the time range to query. Specify the time in the yyyy-MM-ddTHH:mm:ssZ format.
* This parameter is required.
*
* example:
* 2024-09-15 16:00:00
*/
@NameInMap("StartTime")
public String startTime;
public static DescribeServerLoadBalancerMonitorRequest build(java.util.Map map) throws Exception {
DescribeServerLoadBalancerMonitorRequest self = new DescribeServerLoadBalancerMonitorRequest();
return TeaModel.build(map, self);
}
public DescribeServerLoadBalancerMonitorRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public DescribeServerLoadBalancerMonitorRequest setLoadBalancerId(String loadBalancerId) {
this.loadBalancerId = loadBalancerId;
return this;
}
public String getLoadBalancerId() {
return this.loadBalancerId;
}
public DescribeServerLoadBalancerMonitorRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy