Skip to content

Commit 70dec2b

Browse files
author
BitsAdmin
committed
Merge 'vepfs-Java-2022-01-01-online-1951-2025_12_17_18_15_15' into 'integration_2025-12-22_1095874065666'
feat: [development task] vepfs-1951-Java (1958916) See merge request: !808
2 parents 7e488cf + 9069932 commit 70dec2b

File tree

66 files changed

+14914
-397
lines changed

Some content is hidden

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

66 files changed

+14914
-397
lines changed

volcengine-java-sdk-vepfs/src/main/java/com/volcengine/vepfs/VepfsApi.java

Lines changed: 1909 additions & 397 deletions
Large diffs are not rendered by default.
Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
/*
2+
* vepfs
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.vepfs.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* CancelLensTaskRequest
28+
*/
29+
30+
31+
32+
public class CancelLensTaskRequest {
33+
@SerializedName("LensTaskId")
34+
private String lensTaskId = null;
35+
36+
public CancelLensTaskRequest lensTaskId(String lensTaskId) {
37+
this.lensTaskId = lensTaskId;
38+
return this;
39+
}
40+
41+
/**
42+
* Get lensTaskId
43+
* @return lensTaskId
44+
**/
45+
@NotNull
46+
@Schema(required = true, description = "")
47+
public String getLensTaskId() {
48+
return lensTaskId;
49+
}
50+
51+
public void setLensTaskId(String lensTaskId) {
52+
this.lensTaskId = lensTaskId;
53+
}
54+
55+
56+
@Override
57+
public boolean equals(java.lang.Object o) {
58+
if (this == o) {
59+
return true;
60+
}
61+
if (o == null || getClass() != o.getClass()) {
62+
return false;
63+
}
64+
CancelLensTaskRequest cancelLensTaskRequest = (CancelLensTaskRequest) o;
65+
return Objects.equals(this.lensTaskId, cancelLensTaskRequest.lensTaskId);
66+
}
67+
68+
@Override
69+
public int hashCode() {
70+
return Objects.hash(lensTaskId);
71+
}
72+
73+
74+
@Override
75+
public String toString() {
76+
StringBuilder sb = new StringBuilder();
77+
sb.append("class CancelLensTaskRequest {\n");
78+
79+
sb.append(" lensTaskId: ").append(toIndentedString(lensTaskId)).append("\n");
80+
sb.append("}");
81+
return sb.toString();
82+
}
83+
84+
/**
85+
* Convert the given object to string with each line indented by 4 spaces
86+
* (except the first line).
87+
*/
88+
private String toIndentedString(java.lang.Object o) {
89+
if (o == null) {
90+
return "null";
91+
}
92+
return o.toString().replace("\n", "\n ");
93+
}
94+
95+
}
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
/*
2+
* vepfs
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.vepfs.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import javax.validation.constraints.*;
18+
import javax.validation.Valid;
19+
/**
20+
* CancelLensTaskResponse
21+
*/
22+
23+
24+
25+
public class CancelLensTaskResponse extends com.volcengine.model.AbstractResponse {
26+
27+
@Override
28+
public boolean equals(java.lang.Object o) {
29+
if (this == o) {
30+
return true;
31+
}
32+
if (o == null || getClass() != o.getClass()) {
33+
return false;
34+
}
35+
return true;
36+
}
37+
38+
@Override
39+
public int hashCode() {
40+
return Objects.hash();
41+
}
42+
43+
44+
@Override
45+
public String toString() {
46+
StringBuilder sb = new StringBuilder();
47+
sb.append("class CancelLensTaskResponse {\n");
48+
49+
sb.append("}");
50+
return sb.toString();
51+
}
52+
53+
/**
54+
* Convert the given object to string with each line indented by 4 spaces
55+
* (except the first line).
56+
*/
57+
private String toIndentedString(java.lang.Object o) {
58+
if (o == null) {
59+
return "null";
60+
}
61+
return o.toString().replace("\n", "\n ");
62+
}
63+
64+
}
Lines changed: 117 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,117 @@
1+
/*
2+
* vepfs
3+
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
4+
*
5+
* OpenAPI spec version: common-version
6+
*
7+
*
8+
* NOTE: This class is auto generated by the swagger code generator program.
9+
* https://github.com/swagger-api/swagger-codegen.git
10+
* Do not edit the class manually.
11+
*/
12+
13+
package com.volcengine.vepfs.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import com.google.gson.TypeAdapter;
18+
import com.google.gson.annotations.JsonAdapter;
19+
import com.google.gson.annotations.SerializedName;
20+
import com.google.gson.stream.JsonReader;
21+
import com.google.gson.stream.JsonWriter;
22+
import io.swagger.v3.oas.annotations.media.Schema;
23+
import java.io.IOException;
24+
import javax.validation.constraints.*;
25+
import javax.validation.Valid;
26+
/**
27+
* CapacityInfoForDescribeLensServicesOutput
28+
*/
29+
30+
31+
32+
public class CapacityInfoForDescribeLensServicesOutput {
33+
@SerializedName("TotalTiB")
34+
private Integer totalTiB = null;
35+
36+
@SerializedName("UsedGiB")
37+
private Integer usedGiB = null;
38+
39+
public CapacityInfoForDescribeLensServicesOutput totalTiB(Integer totalTiB) {
40+
this.totalTiB = totalTiB;
41+
return this;
42+
}
43+
44+
/**
45+
* Get totalTiB
46+
* @return totalTiB
47+
**/
48+
@Schema(description = "")
49+
public Integer getTotalTiB() {
50+
return totalTiB;
51+
}
52+
53+
public void setTotalTiB(Integer totalTiB) {
54+
this.totalTiB = totalTiB;
55+
}
56+
57+
public CapacityInfoForDescribeLensServicesOutput usedGiB(Integer usedGiB) {
58+
this.usedGiB = usedGiB;
59+
return this;
60+
}
61+
62+
/**
63+
* Get usedGiB
64+
* @return usedGiB
65+
**/
66+
@Schema(description = "")
67+
public Integer getUsedGiB() {
68+
return usedGiB;
69+
}
70+
71+
public void setUsedGiB(Integer usedGiB) {
72+
this.usedGiB = usedGiB;
73+
}
74+
75+
76+
@Override
77+
public boolean equals(java.lang.Object o) {
78+
if (this == o) {
79+
return true;
80+
}
81+
if (o == null || getClass() != o.getClass()) {
82+
return false;
83+
}
84+
CapacityInfoForDescribeLensServicesOutput capacityInfoForDescribeLensServicesOutput = (CapacityInfoForDescribeLensServicesOutput) o;
85+
return Objects.equals(this.totalTiB, capacityInfoForDescribeLensServicesOutput.totalTiB) &&
86+
Objects.equals(this.usedGiB, capacityInfoForDescribeLensServicesOutput.usedGiB);
87+
}
88+
89+
@Override
90+
public int hashCode() {
91+
return Objects.hash(totalTiB, usedGiB);
92+
}
93+
94+
95+
@Override
96+
public String toString() {
97+
StringBuilder sb = new StringBuilder();
98+
sb.append("class CapacityInfoForDescribeLensServicesOutput {\n");
99+
100+
sb.append(" totalTiB: ").append(toIndentedString(totalTiB)).append("\n");
101+
sb.append(" usedGiB: ").append(toIndentedString(usedGiB)).append("\n");
102+
sb.append("}");
103+
return sb.toString();
104+
}
105+
106+
/**
107+
* Convert the given object to string with each line indented by 4 spaces
108+
* (except the first line).
109+
*/
110+
private String toIndentedString(java.lang.Object o) {
111+
if (o == null) {
112+
return "null";
113+
}
114+
return o.toString().replace("\n", "\n ");
115+
}
116+
117+
}

0 commit comments

Comments
 (0)