com.aliyun.cs20151215.models.DescribeEdgeMachineTunnelConfigDetailResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cs20151215 Show documentation
Show all versions of cs20151215 Show documentation
Alibaba Cloud CS (20151215) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cs20151215.models;
import com.aliyun.tea.*;
public class DescribeEdgeMachineTunnelConfigDetailResponseBody extends TeaModel {
/**
* The device name.
*
* example:
* TEST0621N0FF****
*/
@NameInMap("device_name")
public String deviceName;
/**
* The model of the cloud-native box.
*
* example:
* ACK-A-S001
*/
@NameInMap("model")
public String model;
/**
* Product Key
*
* example:
* a11rXul****
*/
@NameInMap("product_key")
public String productKey;
/**
* Request ID
*
* example:
* bfd12953-31cb-42f1-8a36-7b80ec345094
*/
@NameInMap("request_id")
public String requestId;
/**
* The serial number of the cloud-native box.
*
* example:
* Q2CB5XZAFBFG****
*/
@NameInMap("sn")
public String sn;
/**
* Token
*
* example:
* abcd****
*/
@NameInMap("token")
public String token;
/**
* The tunnel endpoint.
*
* example:
* wss://frontend-iotx-r-debug.aliyun-inc.test
*/
@NameInMap("tunnel_endpoint")
public String tunnelEndpoint;
public static DescribeEdgeMachineTunnelConfigDetailResponseBody build(java.util.Map map) throws Exception {
DescribeEdgeMachineTunnelConfigDetailResponseBody self = new DescribeEdgeMachineTunnelConfigDetailResponseBody();
return TeaModel.build(map, self);
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setModel(String model) {
this.model = model;
return this;
}
public String getModel() {
return this.model;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
public DescribeEdgeMachineTunnelConfigDetailResponseBody setTunnelEndpoint(String tunnelEndpoint) {
this.tunnelEndpoint = tunnelEndpoint;
return this;
}
public String getTunnelEndpoint() {
return this.tunnelEndpoint;
}
}