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
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import com.aliyun.core.annotation.*;
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 {
@NameInMap("RequestId")
private String requestId;
@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.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The VNC logon address.
*
*
* > **The address returned is valid only for 15 seconds. If a connection is not established within 15 seconds after a successful call, the address expires and you must recall the operation to obtain a new address.
*/
public Builder vncUrl(String vncUrl) {
this.vncUrl = vncUrl;
return this;
}
public DescribeInstanceVncUrlResponseBody build() {
return new DescribeInstanceVncUrlResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy