com.aliyun.sdk.service.ens20171110.models.CreateSnapshotResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ens20171110 Show documentation
Show all versions of alibabacloud-ens20171110 Show documentation
Alibaba Cloud Ens (20171110) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ens20171110.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 CreateSnapshotResponseBody} extends {@link TeaModel}
*
* CreateSnapshotResponseBody
*/
public class CreateSnapshotResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("OrderId")
private String orderId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("SnapShotId")
private java.util.List snapShotId;
private CreateSnapshotResponseBody(Builder builder) {
this.orderId = builder.orderId;
this.requestId = builder.requestId;
this.snapShotId = builder.snapShotId;
}
public static Builder builder() {
return new Builder();
}
public static CreateSnapshotResponseBody create() {
return builder().build();
}
/**
* @return orderId
*/
public String getOrderId() {
return this.orderId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return snapShotId
*/
public java.util.List getSnapShotId() {
return this.snapShotId;
}
public static final class Builder {
private String orderId;
private String requestId;
private java.util.List snapShotId;
/**
* The ID of the order.
*
* example:
* 21969183547****
*/
public Builder orderId(String orderId) {
this.orderId = orderId;
return this;
}
/**
* The request ID.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The IDs of the snapshots.
*
* example:
* s-bp17441ohwka0yuh****
*/
public Builder snapShotId(java.util.List snapShotId) {
this.snapShotId = snapShotId;
return this;
}
public CreateSnapshotResponseBody build() {
return new CreateSnapshotResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy