Skip to content

Commit 31e4471

Browse files
committed
update
2 parents ff9f073 + d54c4ad commit 31e4471

File tree

101 files changed

+18757
-1
lines changed

Some content is hidden

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

101 files changed

+18757
-1
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.108",
33
"meta_commit": "7e428aa5aa264557457ef8e49eed3e051775d6a6"
4-
}
4+
}

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -237,5 +237,6 @@
237237
<module>volcengine-java-sdk-veiapi</module>
238238
<module>volcengine-java-sdk-privatelink</module>
239239
<module>volcengine-java-sdk-dcdn</module>
240+
<module>volcengine-java-sdk-organization</module>
240241
</modules>
241242
</project>

volcengine-java-sdk-bom/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,12 @@
187187
<optional>false</optional>
188188
<version>${project.version}</version>
189189
</dependency>
190+
<dependency>
191+
<groupId>com.volcengine</groupId>
192+
<artifactId>volcengine-java-sdk-organization</artifactId>
193+
<optional>false</optional>
194+
<version>${project.version}</version>
195+
</dependency>
190196
</dependencies>
191197
</dependencyManagement>
192198
</project>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3+
<parent>
4+
<artifactId>volcengine-java-sdk</artifactId>
5+
<groupId>com.volcengine</groupId>
6+
<version>0.1.108</version>
7+
<relativePath>../pom.xml</relativePath>
8+
</parent>
9+
<modelVersion>4.0.0</modelVersion>
10+
<artifactId>volcengine-java-sdk-organization</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>com.volcengine</groupId>
14+
<artifactId>volcengine-java-sdk-core</artifactId>
15+
<version>${project.version}</version>
16+
</dependency>
17+
</dependencies>
18+
<build>
19+
<plugins>
20+
<plugin>
21+
<groupId>org.apache.maven.plugins</groupId>
22+
<artifactId>maven-source-plugin</artifactId>
23+
<configuration>
24+
<excludes>
25+
<exclude>com/volcengine/organization/examples/**</exclude>
26+
</excludes>
27+
</configuration>
28+
</plugin>
29+
<plugin>
30+
<groupId>org.apache.maven.plugins</groupId>
31+
<artifactId>maven-jar-plugin</artifactId>
32+
<configuration>
33+
<excludes>
34+
<exclude>com/volcengine/organization/examples/**</exclude>
35+
</excludes>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
40+
</project>

volcengine-java-sdk-organization/src/main/java/com/volcengine/organization/OrganizationApi.java

Lines changed: 5348 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 118 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,118 @@
1+
/*
2+
* organization
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.organization.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+
* AcceptInvitationRequest
28+
*/
29+
30+
31+
public class AcceptInvitationRequest {
32+
@SerializedName("InviteId")
33+
private String inviteId = null;
34+
35+
@SerializedName("LinkId")
36+
private String linkId = null;
37+
38+
public AcceptInvitationRequest inviteId(String inviteId) {
39+
this.inviteId = inviteId;
40+
return this;
41+
}
42+
43+
/**
44+
* Get inviteId
45+
* @return inviteId
46+
**/
47+
@NotNull
48+
@Schema(required = true, description = "")
49+
public String getInviteId() {
50+
return inviteId;
51+
}
52+
53+
public void setInviteId(String inviteId) {
54+
this.inviteId = inviteId;
55+
}
56+
57+
public AcceptInvitationRequest linkId(String linkId) {
58+
this.linkId = linkId;
59+
return this;
60+
}
61+
62+
/**
63+
* Get linkId
64+
* @return linkId
65+
**/
66+
@NotNull
67+
@Schema(required = true, description = "")
68+
public String getLinkId() {
69+
return linkId;
70+
}
71+
72+
public void setLinkId(String linkId) {
73+
this.linkId = linkId;
74+
}
75+
76+
77+
@Override
78+
public boolean equals(java.lang.Object o) {
79+
if (this == o) {
80+
return true;
81+
}
82+
if (o == null || getClass() != o.getClass()) {
83+
return false;
84+
}
85+
AcceptInvitationRequest acceptInvitationRequest = (AcceptInvitationRequest) o;
86+
return Objects.equals(this.inviteId, acceptInvitationRequest.inviteId) &&
87+
Objects.equals(this.linkId, acceptInvitationRequest.linkId);
88+
}
89+
90+
@Override
91+
public int hashCode() {
92+
return Objects.hash(inviteId, linkId);
93+
}
94+
95+
96+
@Override
97+
public String toString() {
98+
StringBuilder sb = new StringBuilder();
99+
sb.append("class AcceptInvitationRequest {\n");
100+
101+
sb.append(" inviteId: ").append(toIndentedString(inviteId)).append("\n");
102+
sb.append(" linkId: ").append(toIndentedString(linkId)).append("\n");
103+
sb.append("}");
104+
return sb.toString();
105+
}
106+
107+
/**
108+
* Convert the given object to string with each line indented by 4 spaces
109+
* (except the first line).
110+
*/
111+
private String toIndentedString(java.lang.Object o) {
112+
if (o == null) {
113+
return "null";
114+
}
115+
return o.toString().replace("\n", "\n ");
116+
}
117+
118+
}
Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
/*
2+
* organization
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.organization.model;
14+
15+
import java.util.Objects;
16+
import java.util.Arrays;
17+
import javax.validation.constraints.*;
18+
import javax.validation.Valid;
19+
/**
20+
* AcceptInvitationResponse
21+
*/
22+
23+
24+
public class AcceptInvitationResponse extends com.volcengine.model.AbstractResponse {
25+
26+
@Override
27+
public boolean equals(java.lang.Object o) {
28+
if (this == o) {
29+
return true;
30+
}
31+
if (o == null || getClass() != o.getClass()) {
32+
return false;
33+
}
34+
return true;
35+
}
36+
37+
@Override
38+
public int hashCode() {
39+
return Objects.hash();
40+
}
41+
42+
43+
@Override
44+
public String toString() {
45+
StringBuilder sb = new StringBuilder();
46+
sb.append("class AcceptInvitationResponse {\n");
47+
48+
sb.append("}");
49+
return sb.toString();
50+
}
51+
52+
/**
53+
* Convert the given object to string with each line indented by 4 spaces
54+
* (except the first line).
55+
*/
56+
private String toIndentedString(java.lang.Object o) {
57+
if (o == null) {
58+
return "null";
59+
}
60+
return o.toString().replace("\n", "\n ");
61+
}
62+
63+
}
Lines changed: 141 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,141 @@
1+
/*
2+
* organization
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.organization.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+
* AcceptQuitApplicationRequest
28+
*/
29+
30+
31+
public class AcceptQuitApplicationRequest {
32+
@SerializedName("AccountId")
33+
private String accountId = null;
34+
35+
@SerializedName("ApplicationId")
36+
private String applicationId = null;
37+
38+
@SerializedName("Reason")
39+
private String reason = null;
40+
41+
public AcceptQuitApplicationRequest accountId(String accountId) {
42+
this.accountId = accountId;
43+
return this;
44+
}
45+
46+
/**
47+
* Get accountId
48+
* @return accountId
49+
**/
50+
@NotNull
51+
@Schema(required = true, description = "")
52+
public String getAccountId() {
53+
return accountId;
54+
}
55+
56+
public void setAccountId(String accountId) {
57+
this.accountId = accountId;
58+
}
59+
60+
public AcceptQuitApplicationRequest applicationId(String applicationId) {
61+
this.applicationId = applicationId;
62+
return this;
63+
}
64+
65+
/**
66+
* Get applicationId
67+
* @return applicationId
68+
**/
69+
@NotNull
70+
@Schema(required = true, description = "")
71+
public String getApplicationId() {
72+
return applicationId;
73+
}
74+
75+
public void setApplicationId(String applicationId) {
76+
this.applicationId = applicationId;
77+
}
78+
79+
public AcceptQuitApplicationRequest reason(String reason) {
80+
this.reason = reason;
81+
return this;
82+
}
83+
84+
/**
85+
* Get reason
86+
* @return reason
87+
**/
88+
@Schema(description = "")
89+
public String getReason() {
90+
return reason;
91+
}
92+
93+
public void setReason(String reason) {
94+
this.reason = reason;
95+
}
96+
97+
98+
@Override
99+
public boolean equals(java.lang.Object o) {
100+
if (this == o) {
101+
return true;
102+
}
103+
if (o == null || getClass() != o.getClass()) {
104+
return false;
105+
}
106+
AcceptQuitApplicationRequest acceptQuitApplicationRequest = (AcceptQuitApplicationRequest) o;
107+
return Objects.equals(this.accountId, acceptQuitApplicationRequest.accountId) &&
108+
Objects.equals(this.applicationId, acceptQuitApplicationRequest.applicationId) &&
109+
Objects.equals(this.reason, acceptQuitApplicationRequest.reason);
110+
}
111+
112+
@Override
113+
public int hashCode() {
114+
return Objects.hash(accountId, applicationId, reason);
115+
}
116+
117+
118+
@Override
119+
public String toString() {
120+
StringBuilder sb = new StringBuilder();
121+
sb.append("class AcceptQuitApplicationRequest {\n");
122+
123+
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n");
124+
sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n");
125+
sb.append(" reason: ").append(toIndentedString(reason)).append("\n");
126+
sb.append("}");
127+
return sb.toString();
128+
}
129+
130+
/**
131+
* Convert the given object to string with each line indented by 4 spaces
132+
* (except the first line).
133+
*/
134+
private String toIndentedString(java.lang.Object o) {
135+
if (o == null) {
136+
return "null";
137+
}
138+
return o.toString().replace("\n", "\n ");
139+
}
140+
141+
}

0 commit comments

Comments
 (0)