com.aliyun.sdk.service.ecs20140526.models.ImportImageResponseBody 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 darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ImportImageResponseBody} extends {@link TeaModel}
*
* ImportImageResponseBody
*/
public class ImportImageResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("ImageId")
private String imageId;
@com.aliyun.core.annotation.NameInMap("RegionId")
private String regionId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("TaskId")
private String taskId;
private ImportImageResponseBody(Builder builder) {
this.imageId = builder.imageId;
this.regionId = builder.regionId;
this.requestId = builder.requestId;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static ImportImageResponseBody create() {
return builder().build();
}
/**
* @return imageId
*/
public String getImageId() {
return this.imageId;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
public static final class Builder {
private String imageId;
private String regionId;
private String requestId;
private String taskId;
/**
* The image ID.
*/
public Builder imageId(String imageId) {
this.imageId = imageId;
return this;
}
/**
* The region ID.
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The image import task ID.
*/
public Builder taskId(String taskId) {
this.taskId = taskId;
return this;
}
public ImportImageResponseBody build() {
return new ImportImageResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy