com.aliyun.sdk.service.ecs20140526.models.DescribeInstanceVncUrlResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DescribeInstanceVncUrlResponseBody} extends {@link TeaModel}
*
* DescribeInstanceVncUrlResponseBody
*/
public class DescribeInstanceVncUrlResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("VncUrl")
private String vncUrl;
private DescribeInstanceVncUrlResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.vncUrl = builder.vncUrl;
}
public static Builder builder() {
return new Builder();
}
public static DescribeInstanceVncUrlResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return vncUrl
*/
public String getVncUrl() {
return this.vncUrl;
}
public static final class Builder {
private String requestId;
private String vncUrl;
/**
* The ID of the request.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The VNC logon address.
*
* The VNC logon address returned is valid only for 15 seconds. If a connection is not established within 15 seconds after a successful call, the VNC logon address expires and you must call the DescribeInstanceVncUrl operation to obtain a new logon address.
*
*
* example:
* wss%3A%2F%2Fhz01-vncproxy.aliyun.com%2Fwebsockify%2F%3Fs%3DDvh%252FIA%252BYc73gWO48cBx2gBxUDVzaAnSKr74pq30mzqUYgeUMcB%252FbkNixDxdEA996
*/
public Builder vncUrl(String vncUrl) {
this.vncUrl = vncUrl;
return this;
}
public DescribeInstanceVncUrlResponseBody build() {
return new DescribeInstanceVncUrlResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy