Skip to content

Commit af56e36

Browse files
author
BitsAdmin
committed
Merge 'cloud_detect-Java-2023-08-31-online-2210-2026_01_22_13_50_53' into 'integration_2026-01-22_1106838080770'
feat: [development task] cloud_detect-2210-Java (2054022) See merge request: !862
2 parents d0acd32 + aa2776d commit af56e36

137 files changed

Lines changed: 22676 additions & 742 deletions

File tree

Some content is hidden

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

volcengine-java-sdk-clouddetect/src/main/java/com/volcengine/clouddetect/CloudDetectApi.java

Lines changed: 50 additions & 50 deletions
Large diffs are not rendered by default.
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
/*
2+
* cloud_detect
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.clouddetect.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+
* AlarmListForGetTaskOutput
28+
*/
29+
30+
31+
32+
public class AlarmListForGetTaskOutput {
33+
@SerializedName("ID")
34+
private Long ID = null;
35+
36+
@SerializedName("Name")
37+
private String name = null;
38+
39+
@SerializedName("Status")
40+
private Integer status = null;
41+
42+
public AlarmListForGetTaskOutput ID(Long ID) {
43+
this.ID = ID;
44+
return this;
45+
}
46+
47+
/**
48+
* Get ID
49+
* @return ID
50+
**/
51+
@Schema(description = "")
52+
public Long getID() {
53+
return ID;
54+
}
55+
56+
public void setID(Long ID) {
57+
this.ID = ID;
58+
}
59+
60+
public AlarmListForGetTaskOutput name(String name) {
61+
this.name = name;
62+
return this;
63+
}
64+
65+
/**
66+
* Get name
67+
* @return name
68+
**/
69+
@Schema(description = "")
70+
public String getName() {
71+
return name;
72+
}
73+
74+
public void setName(String name) {
75+
this.name = name;
76+
}
77+
78+
public AlarmListForGetTaskOutput status(Integer status) {
79+
this.status = status;
80+
return this;
81+
}
82+
83+
/**
84+
* Get status
85+
* @return status
86+
**/
87+
@Schema(description = "")
88+
public Integer getStatus() {
89+
return status;
90+
}
91+
92+
public void setStatus(Integer status) {
93+
this.status = status;
94+
}
95+
96+
97+
@Override
98+
public boolean equals(java.lang.Object o) {
99+
if (this == o) {
100+
return true;
101+
}
102+
if (o == null || getClass() != o.getClass()) {
103+
return false;
104+
}
105+
AlarmListForGetTaskOutput alarmListForGetTaskOutput = (AlarmListForGetTaskOutput) o;
106+
return Objects.equals(this.ID, alarmListForGetTaskOutput.ID) &&
107+
Objects.equals(this.name, alarmListForGetTaskOutput.name) &&
108+
Objects.equals(this.status, alarmListForGetTaskOutput.status);
109+
}
110+
111+
@Override
112+
public int hashCode() {
113+
return Objects.hash(ID, name, status);
114+
}
115+
116+
117+
@Override
118+
public String toString() {
119+
StringBuilder sb = new StringBuilder();
120+
sb.append("class AlarmListForGetTaskOutput {\n");
121+
122+
sb.append(" ID: ").append(toIndentedString(ID)).append("\n");
123+
sb.append(" name: ").append(toIndentedString(name)).append("\n");
124+
sb.append(" status: ").append(toIndentedString(status)).append("\n");
125+
sb.append("}");
126+
return sb.toString();
127+
}
128+
129+
/**
130+
* Convert the given object to string with each line indented by 4 spaces
131+
* (except the first line).
132+
*/
133+
private String toIndentedString(java.lang.Object o) {
134+
if (o == null) {
135+
return "null";
136+
}
137+
return o.toString().replace("\n", "\n ");
138+
}
139+
140+
}
Lines changed: 140 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
/*
2+
* cloud_detect
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.clouddetect.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+
* AlarmListForListTaskOutput
28+
*/
29+
30+
31+
32+
public class AlarmListForListTaskOutput {
33+
@SerializedName("ID")
34+
private Long ID = null;
35+
36+
@SerializedName("Name")
37+
private String name = null;
38+
39+
@SerializedName("Status")
40+
private Integer status = null;
41+
42+
public AlarmListForListTaskOutput ID(Long ID) {
43+
this.ID = ID;
44+
return this;
45+
}
46+
47+
/**
48+
* Get ID
49+
* @return ID
50+
**/
51+
@Schema(description = "")
52+
public Long getID() {
53+
return ID;
54+
}
55+
56+
public void setID(Long ID) {
57+
this.ID = ID;
58+
}
59+
60+
public AlarmListForListTaskOutput name(String name) {
61+
this.name = name;
62+
return this;
63+
}
64+
65+
/**
66+
* Get name
67+
* @return name
68+
**/
69+
@Schema(description = "")
70+
public String getName() {
71+
return name;
72+
}
73+
74+
public void setName(String name) {
75+
this.name = name;
76+
}
77+
78+
public AlarmListForListTaskOutput status(Integer status) {
79+
this.status = status;
80+
return this;
81+
}
82+
83+
/**
84+
* Get status
85+
* @return status
86+
**/
87+
@Schema(description = "")
88+
public Integer getStatus() {
89+
return status;
90+
}
91+
92+
public void setStatus(Integer status) {
93+
this.status = status;
94+
}
95+
96+
97+
@Override
98+
public boolean equals(java.lang.Object o) {
99+
if (this == o) {
100+
return true;
101+
}
102+
if (o == null || getClass() != o.getClass()) {
103+
return false;
104+
}
105+
AlarmListForListTaskOutput alarmListForListTaskOutput = (AlarmListForListTaskOutput) o;
106+
return Objects.equals(this.ID, alarmListForListTaskOutput.ID) &&
107+
Objects.equals(this.name, alarmListForListTaskOutput.name) &&
108+
Objects.equals(this.status, alarmListForListTaskOutput.status);
109+
}
110+
111+
@Override
112+
public int hashCode() {
113+
return Objects.hash(ID, name, status);
114+
}
115+
116+
117+
@Override
118+
public String toString() {
119+
StringBuilder sb = new StringBuilder();
120+
sb.append("class AlarmListForListTaskOutput {\n");
121+
122+
sb.append(" ID: ").append(toIndentedString(ID)).append("\n");
123+
sb.append(" name: ").append(toIndentedString(name)).append("\n");
124+
sb.append(" status: ").append(toIndentedString(status)).append("\n");
125+
sb.append("}");
126+
return sb.toString();
127+
}
128+
129+
/**
130+
* Convert the given object to string with each line indented by 4 spaces
131+
* (except the first line).
132+
*/
133+
private String toIndentedString(java.lang.Object o) {
134+
if (o == null) {
135+
return "null";
136+
}
137+
return o.toString().replace("\n", "\n ");
138+
}
139+
140+
}

volcengine-java-sdk-clouddetect/src/main/java/com/volcengine/clouddetect/model/BasicDetailForGetTaskResultOutput.java

Lines changed: 24 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ public class BasicDetailForGetTaskResultOutput {
4545
@SerializedName("ClientInfo")
4646
private ClientInfoForGetTaskResultOutput clientInfo = null;
4747

48+
@SerializedName("DNSServer")
49+
private String dnSServer = null;
50+
4851
@SerializedName("ErrorMsg")
4952
private String errorMsg = null;
5053

@@ -121,6 +124,24 @@ public void setClientInfo(ClientInfoForGetTaskResultOutput clientInfo) {
121124
this.clientInfo = clientInfo;
122125
}
123126

127+
public BasicDetailForGetTaskResultOutput dnSServer(String dnSServer) {
128+
this.dnSServer = dnSServer;
129+
return this;
130+
}
131+
132+
/**
133+
* Get dnSServer
134+
* @return dnSServer
135+
**/
136+
@Schema(description = "")
137+
public String getDnSServer() {
138+
return dnSServer;
139+
}
140+
141+
public void setDnSServer(String dnSServer) {
142+
this.dnSServer = dnSServer;
143+
}
144+
124145
public BasicDetailForGetTaskResultOutput errorMsg(String errorMsg) {
125146
this.errorMsg = errorMsg;
126147
return this;
@@ -208,6 +229,7 @@ public boolean equals(java.lang.Object o) {
208229
return Objects.equals(this.assertions, basicDetailForGetTaskResultOutput.assertions) &&
209230
Objects.equals(this.chUk, basicDetailForGetTaskResultOutput.chUk) &&
210231
Objects.equals(this.clientInfo, basicDetailForGetTaskResultOutput.clientInfo) &&
232+
Objects.equals(this.dnSServer, basicDetailForGetTaskResultOutput.dnSServer) &&
211233
Objects.equals(this.errorMsg, basicDetailForGetTaskResultOutput.errorMsg) &&
212234
Objects.equals(this.targetInfo, basicDetailForGetTaskResultOutput.targetInfo) &&
213235
Objects.equals(this.timestamp, basicDetailForGetTaskResultOutput.timestamp) &&
@@ -216,7 +238,7 @@ public boolean equals(java.lang.Object o) {
216238

217239
@Override
218240
public int hashCode() {
219-
return Objects.hash(assertions, chUk, clientInfo, errorMsg, targetInfo, timestamp, usabilityInfo);
241+
return Objects.hash(assertions, chUk, clientInfo, dnSServer, errorMsg, targetInfo, timestamp, usabilityInfo);
220242
}
221243

222244

@@ -228,6 +250,7 @@ public String toString() {
228250
sb.append(" assertions: ").append(toIndentedString(assertions)).append("\n");
229251
sb.append(" chUk: ").append(toIndentedString(chUk)).append("\n");
230252
sb.append(" clientInfo: ").append(toIndentedString(clientInfo)).append("\n");
253+
sb.append(" dnSServer: ").append(toIndentedString(dnSServer)).append("\n");
231254
sb.append(" errorMsg: ").append(toIndentedString(errorMsg)).append("\n");
232255
sb.append(" targetInfo: ").append(toIndentedString(targetInfo)).append("\n");
233256
sb.append(" timestamp: ").append(toIndentedString(timestamp)).append("\n");

0 commit comments

Comments
 (0)