Skip to content

Commit aeeafd4

Browse files
author
BitsAdmin
committed
Merge branch 'graph-Java-2018-01-01-online-1758-2025_10_29_16_42_03' into 'integration_2025-10-30_1075115650562'
feat: [development task] graph-1758-Java (1783270) See merge request iaasng/volcengine-java-sdk!715
2 parents ffe1071 + a86e4a5 commit aeeafd4

12 files changed

+2082
-0
lines changed

volcengine-java-sdk-graph/src/main/java/com/volcengine/graph/GraphApi.java

Lines changed: 630 additions & 0 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+
* graph
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.graph.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+
* DescribeVegraphConfigInK8sRequest
28+
*/
29+
30+
31+
32+
public class DescribeVegraphConfigInK8sRequest {
33+
@SerializedName("instanceId")
34+
private String instanceId = null;
35+
36+
public DescribeVegraphConfigInK8sRequest instanceId(String instanceId) {
37+
this.instanceId = instanceId;
38+
return this;
39+
}
40+
41+
/**
42+
* Get instanceId
43+
* @return instanceId
44+
**/
45+
@NotNull
46+
@Schema(required = true, description = "")
47+
public String getInstanceId() {
48+
return instanceId;
49+
}
50+
51+
public void setInstanceId(String instanceId) {
52+
this.instanceId = instanceId;
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+
DescribeVegraphConfigInK8sRequest describeVegraphConfigInK8sRequest = (DescribeVegraphConfigInK8sRequest) o;
65+
return Objects.equals(this.instanceId, describeVegraphConfigInK8sRequest.instanceId);
66+
}
67+
68+
@Override
69+
public int hashCode() {
70+
return Objects.hash(instanceId);
71+
}
72+
73+
74+
@Override
75+
public String toString() {
76+
StringBuilder sb = new StringBuilder();
77+
sb.append("class DescribeVegraphConfigInK8sRequest {\n");
78+
79+
sb.append(" instanceId: ").append(toIndentedString(instanceId)).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: 163 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,163 @@
1+
/*
2+
* graph
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.graph.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+
* DescribeVegraphConfigInK8sResponse
28+
*/
29+
30+
31+
32+
public class DescribeVegraphConfigInK8sResponse extends com.volcengine.model.AbstractResponse {
33+
@SerializedName("bg3CanaryConfig")
34+
private String bg3CanaryConfig = null;
35+
36+
@SerializedName("bg3Config")
37+
private String bg3Config = null;
38+
39+
@SerializedName("msCanaryConfig")
40+
private String msCanaryConfig = null;
41+
42+
@SerializedName("msConfig")
43+
private String msConfig = null;
44+
45+
public DescribeVegraphConfigInK8sResponse bg3CanaryConfig(String bg3CanaryConfig) {
46+
this.bg3CanaryConfig = bg3CanaryConfig;
47+
return this;
48+
}
49+
50+
/**
51+
* Get bg3CanaryConfig
52+
* @return bg3CanaryConfig
53+
**/
54+
@Schema(description = "")
55+
public String getBg3CanaryConfig() {
56+
return bg3CanaryConfig;
57+
}
58+
59+
public void setBg3CanaryConfig(String bg3CanaryConfig) {
60+
this.bg3CanaryConfig = bg3CanaryConfig;
61+
}
62+
63+
public DescribeVegraphConfigInK8sResponse bg3Config(String bg3Config) {
64+
this.bg3Config = bg3Config;
65+
return this;
66+
}
67+
68+
/**
69+
* Get bg3Config
70+
* @return bg3Config
71+
**/
72+
@Schema(description = "")
73+
public String getBg3Config() {
74+
return bg3Config;
75+
}
76+
77+
public void setBg3Config(String bg3Config) {
78+
this.bg3Config = bg3Config;
79+
}
80+
81+
public DescribeVegraphConfigInK8sResponse msCanaryConfig(String msCanaryConfig) {
82+
this.msCanaryConfig = msCanaryConfig;
83+
return this;
84+
}
85+
86+
/**
87+
* Get msCanaryConfig
88+
* @return msCanaryConfig
89+
**/
90+
@Schema(description = "")
91+
public String getMsCanaryConfig() {
92+
return msCanaryConfig;
93+
}
94+
95+
public void setMsCanaryConfig(String msCanaryConfig) {
96+
this.msCanaryConfig = msCanaryConfig;
97+
}
98+
99+
public DescribeVegraphConfigInK8sResponse msConfig(String msConfig) {
100+
this.msConfig = msConfig;
101+
return this;
102+
}
103+
104+
/**
105+
* Get msConfig
106+
* @return msConfig
107+
**/
108+
@Schema(description = "")
109+
public String getMsConfig() {
110+
return msConfig;
111+
}
112+
113+
public void setMsConfig(String msConfig) {
114+
this.msConfig = msConfig;
115+
}
116+
117+
118+
@Override
119+
public boolean equals(java.lang.Object o) {
120+
if (this == o) {
121+
return true;
122+
}
123+
if (o == null || getClass() != o.getClass()) {
124+
return false;
125+
}
126+
DescribeVegraphConfigInK8sResponse describeVegraphConfigInK8sResponse = (DescribeVegraphConfigInK8sResponse) o;
127+
return Objects.equals(this.bg3CanaryConfig, describeVegraphConfigInK8sResponse.bg3CanaryConfig) &&
128+
Objects.equals(this.bg3Config, describeVegraphConfigInK8sResponse.bg3Config) &&
129+
Objects.equals(this.msCanaryConfig, describeVegraphConfigInK8sResponse.msCanaryConfig) &&
130+
Objects.equals(this.msConfig, describeVegraphConfigInK8sResponse.msConfig);
131+
}
132+
133+
@Override
134+
public int hashCode() {
135+
return Objects.hash(bg3CanaryConfig, bg3Config, msCanaryConfig, msConfig);
136+
}
137+
138+
139+
@Override
140+
public String toString() {
141+
StringBuilder sb = new StringBuilder();
142+
sb.append("class DescribeVegraphConfigInK8sResponse {\n");
143+
144+
sb.append(" bg3CanaryConfig: ").append(toIndentedString(bg3CanaryConfig)).append("\n");
145+
sb.append(" bg3Config: ").append(toIndentedString(bg3Config)).append("\n");
146+
sb.append(" msCanaryConfig: ").append(toIndentedString(msCanaryConfig)).append("\n");
147+
sb.append(" msConfig: ").append(toIndentedString(msConfig)).append("\n");
148+
sb.append("}");
149+
return sb.toString();
150+
}
151+
152+
/**
153+
* Convert the given object to string with each line indented by 4 spaces
154+
* (except the first line).
155+
*/
156+
private String toIndentedString(java.lang.Object o) {
157+
if (o == null) {
158+
return "null";
159+
}
160+
return o.toString().replace("\n", "\n ");
161+
}
162+
163+
}

0 commit comments

Comments
 (0)