Skip to content

Commit 9bb8a4e

Browse files
committed
update
2 parents acc67c1 + 70f0137 commit 9bb8a4e

File tree

272 files changed

+26723
-1570
lines changed

Some content is hidden

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

272 files changed

+26723
-1570
lines changed

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,5 +250,6 @@
250250
<module>volcengine-java-sdk-nta</module>
251251
<module>volcengine-java-sdk-rocketmq</module>
252252
<module>volcengine-java-sdk-dms</module>
253+
<module>volcengine-java-sdk-rabbitmq</module>
253254
</modules>
254255
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -259,6 +259,12 @@
259259
<optional>false</optional>
260260
<version>${project.version}</version>
261261
</dependency>
262+
<dependency>
263+
<groupId>com.volcengine</groupId>
264+
<artifactId>volcengine-java-sdk-rabbitmq</artifactId>
265+
<optional>false</optional>
266+
<version>${project.version}</version>
267+
</dependency>
262268
<dependency>
263269
<groupId>com.volcengine</groupId>
264270
<artifactId>volcengine-java-sdk-dms</artifactId>

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/AclPolicyForGetPublicEndpointOutput.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 AclPolicyForGetPublicEndpointOutput {
3233
@SerializedName("Description")
3334
private String description = null;

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/ChartAttributeForListTagsOutput.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 ChartAttributeForListTagsOutput {
3233
@SerializedName("ApiVersion")
3334
private String apiVersion = null;

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateEndpointAclPoliciesRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
*/
3131

3232

33+
3334
public class CreateEndpointAclPoliciesRequest {
3435
@SerializedName("Description")
3536
private String description = null;
@@ -97,7 +98,7 @@ public CreateEndpointAclPoliciesRequest registry(String registry) {
9798
* @return registry
9899
**/
99100
@NotNull
100-
@Schema(required = true, description = "")
101+
@Size(min=3,max=30) @Schema(required = true, description = "")
101102
public String getRegistry() {
102103
return registry;
103104
}

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateEndpointAclPoliciesResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222

2323

24+
2425
public class CreateEndpointAclPoliciesResponse extends com.volcengine.model.AbstractResponse {
2526

2627
@Override

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateNamespaceRequest.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
*/
2929

3030

31+
3132
public class CreateNamespaceRequest {
3233
@SerializedName("ClientToken")
3334
private String clientToken = null;
@@ -106,7 +107,7 @@ public CreateNamespaceRequest registry(String registry) {
106107
* @return registry
107108
**/
108109
@NotNull
109-
@Schema(required = true, description = "")
110+
@Size(min=3,max=30) @Schema(required = true, description = "")
110111
public String getRegistry() {
111112
return registry;
112113
}

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateNamespaceResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222

2323

24+
2425
public class CreateNamespaceResponse extends com.volcengine.model.AbstractResponse {
2526

2627
@Override

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateRegistryRequest.java

Lines changed: 84 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,22 +19,35 @@
1919
import com.google.gson.annotations.SerializedName;
2020
import com.google.gson.stream.JsonReader;
2121
import com.google.gson.stream.JsonWriter;
22+
import com.volcengine.cr.model.ResourceTagForCreateRegistryInput;
2223
import io.swagger.v3.oas.annotations.media.Schema;
2324
import java.io.IOException;
25+
import java.util.ArrayList;
26+
import java.util.List;
2427
import javax.validation.constraints.*;
2528
import javax.validation.Valid;
2629
/**
2730
* CreateRegistryRequest
2831
*/
2932

3033

34+
3135
public class CreateRegistryRequest {
3236
@SerializedName("ClientToken")
3337
private String clientToken = null;
3438

3539
@SerializedName("Name")
3640
private String name = null;
3741

42+
@SerializedName("Project")
43+
private String project = null;
44+
45+
@SerializedName("ResourceTags")
46+
private List<ResourceTagForCreateRegistryInput> resourceTags = null;
47+
48+
@SerializedName("Type")
49+
private String type = null;
50+
3851
public CreateRegistryRequest clientToken(String clientToken) {
3952
this.clientToken = clientToken;
4053
return this;
@@ -72,6 +85,69 @@ public void setName(String name) {
7285
this.name = name;
7386
}
7487

88+
public CreateRegistryRequest project(String project) {
89+
this.project = project;
90+
return this;
91+
}
92+
93+
/**
94+
* Get project
95+
* @return project
96+
**/
97+
@Schema(description = "")
98+
public String getProject() {
99+
return project;
100+
}
101+
102+
public void setProject(String project) {
103+
this.project = project;
104+
}
105+
106+
public CreateRegistryRequest resourceTags(List<ResourceTagForCreateRegistryInput> resourceTags) {
107+
this.resourceTags = resourceTags;
108+
return this;
109+
}
110+
111+
public CreateRegistryRequest addResourceTagsItem(ResourceTagForCreateRegistryInput resourceTagsItem) {
112+
if (this.resourceTags == null) {
113+
this.resourceTags = new ArrayList<ResourceTagForCreateRegistryInput>();
114+
}
115+
this.resourceTags.add(resourceTagsItem);
116+
return this;
117+
}
118+
119+
/**
120+
* Get resourceTags
121+
* @return resourceTags
122+
**/
123+
@Valid
124+
@Schema(description = "")
125+
public List<ResourceTagForCreateRegistryInput> getResourceTags() {
126+
return resourceTags;
127+
}
128+
129+
public void setResourceTags(List<ResourceTagForCreateRegistryInput> resourceTags) {
130+
this.resourceTags = resourceTags;
131+
}
132+
133+
public CreateRegistryRequest type(String type) {
134+
this.type = type;
135+
return this;
136+
}
137+
138+
/**
139+
* Get type
140+
* @return type
141+
**/
142+
@Schema(description = "")
143+
public String getType() {
144+
return type;
145+
}
146+
147+
public void setType(String type) {
148+
this.type = type;
149+
}
150+
75151

76152
@Override
77153
public boolean equals(java.lang.Object o) {
@@ -83,12 +159,15 @@ public boolean equals(java.lang.Object o) {
83159
}
84160
CreateRegistryRequest createRegistryRequest = (CreateRegistryRequest) o;
85161
return Objects.equals(this.clientToken, createRegistryRequest.clientToken) &&
86-
Objects.equals(this.name, createRegistryRequest.name);
162+
Objects.equals(this.name, createRegistryRequest.name) &&
163+
Objects.equals(this.project, createRegistryRequest.project) &&
164+
Objects.equals(this.resourceTags, createRegistryRequest.resourceTags) &&
165+
Objects.equals(this.type, createRegistryRequest.type);
87166
}
88167

89168
@Override
90169
public int hashCode() {
91-
return Objects.hash(clientToken, name);
170+
return Objects.hash(clientToken, name, project, resourceTags, type);
92171
}
93172

94173

@@ -99,6 +178,9 @@ public String toString() {
99178

100179
sb.append(" clientToken: ").append(toIndentedString(clientToken)).append("\n");
101180
sb.append(" name: ").append(toIndentedString(name)).append("\n");
181+
sb.append(" project: ").append(toIndentedString(project)).append("\n");
182+
sb.append(" resourceTags: ").append(toIndentedString(resourceTags)).append("\n");
183+
sb.append(" type: ").append(toIndentedString(type)).append("\n");
102184
sb.append("}");
103185
return sb.toString();
104186
}

volcengine-java-sdk-cr/src/main/java/com/volcengine/cr/model/CreateRegistryResponse.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
*/
2222

2323

24+
2425
public class CreateRegistryResponse extends com.volcengine.model.AbstractResponse {
2526

2627
@Override

0 commit comments

Comments
 (0)