com.aliyun.ens20171110.models.CreateStorageVolumeResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class CreateStorageVolumeResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* 7030AB96-57CF-1C68-9FEE-D60E547FD79C
*/
@NameInMap("RequestId")
public String requestId;
/**
* An array of volume IDs.
*/
@NameInMap("VolumeId")
public java.util.List volumeId;
public static CreateStorageVolumeResponseBody build(java.util.Map map) throws Exception {
CreateStorageVolumeResponseBody self = new CreateStorageVolumeResponseBody();
return TeaModel.build(map, self);
}
public CreateStorageVolumeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateStorageVolumeResponseBody setVolumeId(java.util.List volumeId) {
this.volumeId = volumeId;
return this;
}
public java.util.List getVolumeId() {
return this.volumeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy