All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.ecs20140526.models.DescribeInstanceVncUrlResponseBody Maven / Gradle / Ivy

There is a newer version: 5.0.29
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;

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. */ 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