com.aliyun.sdk.service.ecs20140526.models.GetInstanceScreenshotResponseBody 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 GetInstanceScreenshotResponseBody} extends {@link TeaModel}
*
* GetInstanceScreenshotResponseBody
*/
public class GetInstanceScreenshotResponseBody extends TeaModel {
@NameInMap("InstanceId")
private String instanceId;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Screenshot")
private String screenshot;
private GetInstanceScreenshotResponseBody(Builder builder) {
this.instanceId = builder.instanceId;
this.requestId = builder.requestId;
this.screenshot = builder.screenshot;
}
public static Builder builder() {
return new Builder();
}
public static GetInstanceScreenshotResponseBody create() {
return builder().build();
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return screenshot
*/
public String getScreenshot() {
return this.screenshot;
}
public static final class Builder {
private String instanceId;
private String requestId;
private String screenshot;
/**
* The instance ID.
*/
public Builder instanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The Base64-encoded instance screenshot in the JPG format.
*/
public Builder screenshot(String screenshot) {
this.screenshot = screenshot;
return this;
}
public GetInstanceScreenshotResponseBody build() {
return new GetInstanceScreenshotResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy