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

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

There is a newer version: 5.0.29
Show newest version
// 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 CreateStorageSetResponseBody} extends {@link TeaModel}
 *
 * 

CreateStorageSetResponseBody

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

The request ID.

* * example: *

473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E

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

The ID of the storage set.

* * example: *

ss-bp67acfmxazb4p****

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy