com.aliyun.sdk.service.ens20171110.models.CreateFileSystemResponseBody 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 CreateFileSystemResponseBody} extends {@link TeaModel}
*
* CreateFileSystemResponseBody
*/
public class CreateFileSystemResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("AllocationId")
private java.util.List allocationId;
@com.aliyun.core.annotation.NameInMap("BizStatusCode")
private String bizStatusCode;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("UnAllocationId")
private java.util.List unAllocationId;
private CreateFileSystemResponseBody(Builder builder) {
this.allocationId = builder.allocationId;
this.bizStatusCode = builder.bizStatusCode;
this.requestId = builder.requestId;
this.unAllocationId = builder.unAllocationId;
}
public static Builder builder() {
return new Builder();
}
public static CreateFileSystemResponseBody create() {
return builder().build();
}
/**
* @return allocationId
*/
public java.util.List getAllocationId() {
return this.allocationId;
}
/**
* @return bizStatusCode
*/
public String getBizStatusCode() {
return this.bizStatusCode;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return unAllocationId
*/
public java.util.List getUnAllocationId() {
return this.unAllocationId;
}
public static final class Builder {
private java.util.List allocationId;
private String bizStatusCode;
private String requestId;
private java.util.List unAllocationId;
/**
* The information about the file system that was created.
*/
public Builder allocationId(java.util.List allocationId) {
this.allocationId = allocationId;
return this;
}
/**
* The status code for successful operations. Valid values:
*
* - PartSuccess: The operation is partially successful.
* - AllSuccess: The operation is successful.
*
*
* example:
* PartSuccess
*/
public Builder bizStatusCode(String bizStatusCode) {
this.bizStatusCode = bizStatusCode;
return this;
}
/**
* The ID of the request.
*
* example:
* 4EC47282-1B74-4534-BD0E-403F3EE64CAF
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* The information about the file system that failed to be created.
*/
public Builder unAllocationId(java.util.List unAllocationId) {
this.unAllocationId = unAllocationId;
return this;
}
public CreateFileSystemResponseBody build() {
return new CreateFileSystemResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy