Skip to content

Commit b74c689

Browse files
ci_volc_sdk_genvolc-sdk-team
authored andcommitted
feat: auto generate for filenas-Java-2022-01-01-online-545-2024_06_12_14_55_34
1 parent da903a6 commit b74c689

File tree

70 files changed

+293
-14
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

70 files changed

+293
-14
lines changed

volcengine-java-sdk-billing/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="UTF-8"?>
1+
se <?xml version="1.0" encoding="UTF-8"?>
22
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
33
<parent>
44
<artifactId>volcengine-java-sdk</artifactId>

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CapacityForDescribeFileSystemsOutput.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CapacityForDescribeFileSystemsOutput {
3233
@SerializedName("Total")
3334
private Long total = null;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CommonCapacityForDescribeFileSystemStatisticsOutput.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CommonCapacityForDescribeFileSystemStatisticsOutput {
3233
@SerializedName("Total")
3334
private Long total = null;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/ConvertMountPointForDescribeMountPointsOutput.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
*/
3030

3131

32+
3233
public class ConvertMountPointForDescribeMountPointsOutput {
3334
@SerializedName("CreateTime")
3435
private String createTime = null;
@@ -53,14 +54,23 @@ public class ConvertMountPointForDescribeMountPointsOutput {
5354
*/
5455
@JsonAdapter(StatusEnum.Adapter.class)
5556
public enum StatusEnum {
57+
@SerializedName("Unknown")
5658
UNKNOWN("Unknown"),
59+
@SerializedName("Creating")
5760
CREATING("Creating"),
61+
@SerializedName("Running")
5862
RUNNING("Running"),
63+
@SerializedName("Updating")
5964
UPDATING("Updating"),
65+
@SerializedName("Error")
6066
ERROR("Error"),
67+
@SerializedName("Deleting")
6168
DELETING("Deleting"),
69+
@SerializedName("DeleteError")
6270
DELETEERROR("DeleteError"),
71+
@SerializedName("Deleted")
6372
DELETED("Deleted"),
73+
@SerializedName("Stopped")
6474
STOPPED("Stopped");
6575

6676
private String value;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreateFileSystemRequest.java

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
*/
3232

3333

34+
3435
public class CreateFileSystemRequest {
3536
@SerializedName("Capacity")
3637
private Integer capacity = null;
@@ -40,6 +41,7 @@ public class CreateFileSystemRequest {
4041
*/
4142
@JsonAdapter(ChargeTypeEnum.Adapter.class)
4243
public enum ChargeTypeEnum {
44+
@SerializedName("PayAsYouGo")
4345
PAYASYOUGO("PayAsYouGo");
4446

4547
private String value;
@@ -92,7 +94,12 @@ public ChargeTypeEnum read(final JsonReader jsonReader) throws IOException {
9294
*/
9395
@JsonAdapter(FileSystemTypeEnum.Adapter.class)
9496
public enum FileSystemTypeEnum {
95-
EXTREME("Extreme");
97+
@SerializedName("Extreme")
98+
EXTREME("Extreme"),
99+
@SerializedName("Capacity")
100+
CAPACITY("Capacity"),
101+
@SerializedName("Cache")
102+
CACHE("Cache");
96103

97104
private String value;
98105

@@ -138,6 +145,7 @@ public FileSystemTypeEnum read(final JsonReader jsonReader) throws IOException {
138145
*/
139146
@JsonAdapter(ProtocolTypeEnum.Adapter.class)
140147
public enum ProtocolTypeEnum {
148+
@SerializedName("NFS")
141149
NFS("NFS");
142150

143151
private String value;
@@ -184,6 +192,7 @@ public ProtocolTypeEnum read(final JsonReader jsonReader) throws IOException {
184192
*/
185193
@JsonAdapter(StorageTypeEnum.Adapter.class)
186194
public enum StorageTypeEnum {
195+
@SerializedName("Standard")
187196
STANDARD("Standard");
188197

189198
private String value;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreateFileSystemResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreateFileSystemResponse extends com.volcengine.model.AbstractResponse {
3233
@SerializedName("FileSystemId")
3334
private String fileSystemId = null;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreateMountPointRequest.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreateMountPointRequest {
3233
@SerializedName("FileSystemId")
3334
private String fileSystemId = null;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreateMountPointResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreateMountPointResponse extends com.volcengine.model.AbstractResponse {
3233
@SerializedName("MountPointId")
3334
private String mountPointId = null;

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreatePermissionGroupRequest.java

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreatePermissionGroupRequest {
3233
@SerializedName("Description")
3334
private String description = null;
@@ -37,7 +38,12 @@ public class CreatePermissionGroupRequest {
3738
*/
3839
@JsonAdapter(FileSystemTypeEnum.Adapter.class)
3940
public enum FileSystemTypeEnum {
40-
EXTREME("Extreme");
41+
@SerializedName("Extreme")
42+
EXTREME("Extreme"),
43+
@SerializedName("Capacity")
44+
CAPACITY("Capacity"),
45+
@SerializedName("Cache")
46+
CACHE("Cache");
4147

4248
private String value;
4349

@@ -105,8 +111,7 @@ public CreatePermissionGroupRequest fileSystemType(FileSystemTypeEnum fileSystem
105111
* Get fileSystemType
106112
* @return fileSystemType
107113
**/
108-
@NotNull
109-
@Schema(required = true, description = "")
114+
@Schema(description = "")
110115
public FileSystemTypeEnum getFileSystemType() {
111116
return fileSystemType;
112117
}

volcengine-java-sdk-filenas/src/main/java/com/volcengine/filenas/model/CreatePermissionGroupResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreatePermissionGroupResponse extends com.volcengine.model.AbstractResponse {
3233
@SerializedName("PermissionGroupId")
3334
private String permissionGroupId = null;

0 commit comments

Comments
 (0)