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

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

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 ExportImageResponseBody} extends {@link TeaModel}
 *
 * 

ExportImageResponseBody

*/ public class ExportImageResponseBody extends TeaModel { @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 ExportImageResponseBody(Builder builder) { this.regionId = builder.regionId; this.requestId = builder.requestId; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static ExportImageResponseBody create() { return builder().build(); } /** * @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 regionId; private String requestId; private String taskId; /** *

The region ID.

* * example: *

cn-hangzhou

*/ public Builder regionId(String regionId) { this.regionId = regionId; return this; } /** *

The request ID.

* * example: *

C8B26B44-0189-443E-9816-D951F596****

*/ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** *

The ID of the task that is used to export the custom image.

* * example: *

tsk-bp67acfmxazb4p****

*/ public Builder taskId(String taskId) { this.taskId = taskId; return this; } public ExportImageResponseBody build() { return new ExportImageResponseBody(this); } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy