Skip to content

Commit 9d85088

Browse files
author
ci_volc_sdk_gen
committed
feat: auto generate for vke_2.10
1 parent dd8c64d commit 9d85088

File tree

2 files changed

+26
-3
lines changed

2 files changed

+26
-3
lines changed

meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"lasted": "0.1.38",
3-
"meta_commit": "870b62936081f9712f3550f99389d28e53907c32"
3+
"meta_commit": "d886ed91af2c429606e9232b9f6a8a62fe68892f"
44
}

volcengine-java-sdk-vke/src/main/java/com/volcengine/vke/model/PublicAccessNetworkConfigForCreateClusterInput.java

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ public class PublicAccessNetworkConfigForCreateClusterInput {
3232
@SerializedName("Bandwidth")
3333
private Integer bandwidth = null;
3434

35+
@SerializedName("BillingType")
36+
private Integer billingType = null;
37+
3538
public PublicAccessNetworkConfigForCreateClusterInput bandwidth(Integer bandwidth) {
3639
this.bandwidth = bandwidth;
3740
return this;
@@ -50,6 +53,24 @@ public void setBandwidth(Integer bandwidth) {
5053
this.bandwidth = bandwidth;
5154
}
5255

56+
public PublicAccessNetworkConfigForCreateClusterInput billingType(Integer billingType) {
57+
this.billingType = billingType;
58+
return this;
59+
}
60+
61+
/**
62+
* Get billingType
63+
* @return billingType
64+
**/
65+
@Schema(description = "")
66+
public Integer getBillingType() {
67+
return billingType;
68+
}
69+
70+
public void setBillingType(Integer billingType) {
71+
this.billingType = billingType;
72+
}
73+
5374

5475
@Override
5576
public boolean equals(java.lang.Object o) {
@@ -60,12 +81,13 @@ public boolean equals(java.lang.Object o) {
6081
return false;
6182
}
6283
PublicAccessNetworkConfigForCreateClusterInput publicAccessNetworkConfigForCreateClusterInput = (PublicAccessNetworkConfigForCreateClusterInput) o;
63-
return Objects.equals(this.bandwidth, publicAccessNetworkConfigForCreateClusterInput.bandwidth);
84+
return Objects.equals(this.bandwidth, publicAccessNetworkConfigForCreateClusterInput.bandwidth) &&
85+
Objects.equals(this.billingType, publicAccessNetworkConfigForCreateClusterInput.billingType);
6486
}
6587

6688
@Override
6789
public int hashCode() {
68-
return Objects.hash(bandwidth);
90+
return Objects.hash(bandwidth, billingType);
6991
}
7092

7193

@@ -75,6 +97,7 @@ public String toString() {
7597
sb.append("class PublicAccessNetworkConfigForCreateClusterInput {\n");
7698

7799
sb.append(" bandwidth: ").append(toIndentedString(bandwidth)).append("\n");
100+
sb.append(" billingType: ").append(toIndentedString(billingType)).append("\n");
78101
sb.append("}");
79102
return sb.toString();
80103
}

0 commit comments

Comments
 (0)