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

com.aliyun.sdk.service.ecs20140526.models.CreateSnapshotResponseBody 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 CreateSnapshotResponseBody} extends {@link TeaModel}
 *
 * 

CreateSnapshotResponseBody

*/ public class CreateSnapshotResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SnapshotId") private String snapshotId; private CreateSnapshotResponseBody(Builder builder) { this.requestId = builder.requestId; this.snapshotId = builder.snapshotId; } public static Builder builder() { return new Builder(); } public static CreateSnapshotResponseBody create() { return builder().build(); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return snapshotId */ public String getSnapshotId() { return this.snapshotId; } public static final class Builder { private String requestId; private String snapshotId; /** *

The ID of the request.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

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

The ID of the snapshot.

* * example: *

s-bp17441ohwka0yuh****

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy