-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
101 changed files
with
18,757 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"lasted": "0.1.108", | ||
"meta_commit": "7e428aa5aa264557457ef8e49eed3e051775d6a6" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<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"> | ||
<parent> | ||
<artifactId>volcengine-java-sdk</artifactId> | ||
<groupId>com.volcengine</groupId> | ||
<version>0.1.108</version> | ||
<relativePath>../pom.xml</relativePath> | ||
</parent> | ||
<modelVersion>4.0.0</modelVersion> | ||
<artifactId>volcengine-java-sdk-organization</artifactId> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.volcengine</groupId> | ||
<artifactId>volcengine-java-sdk-core</artifactId> | ||
<version>${project.version}</version> | ||
</dependency> | ||
</dependencies> | ||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>com/volcengine/organization/examples/**</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<configuration> | ||
<excludes> | ||
<exclude>com/volcengine/organization/examples/**</exclude> | ||
</excludes> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
</project> |
5,348 changes: 5,348 additions & 0 deletions
5,348
...gine-java-sdk-organization/src/main/java/com/volcengine/organization/OrganizationApi.java
Large diffs are not rendered by default.
Oops, something went wrong.
118 changes: 118 additions & 0 deletions
118
...organization/src/main/java/com/volcengine/organization/model/AcceptInvitationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* organization | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* OpenAPI spec version: common-version | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package com.volcengine.organization.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import com.google.gson.TypeAdapter; | ||
import com.google.gson.annotations.JsonAdapter; | ||
import com.google.gson.annotations.SerializedName; | ||
import com.google.gson.stream.JsonReader; | ||
import com.google.gson.stream.JsonWriter; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import java.io.IOException; | ||
import javax.validation.constraints.*; | ||
import javax.validation.Valid; | ||
/** | ||
* AcceptInvitationRequest | ||
*/ | ||
|
||
|
||
public class AcceptInvitationRequest { | ||
@SerializedName("InviteId") | ||
private String inviteId = null; | ||
|
||
@SerializedName("LinkId") | ||
private String linkId = null; | ||
|
||
public AcceptInvitationRequest inviteId(String inviteId) { | ||
this.inviteId = inviteId; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get inviteId | ||
* @return inviteId | ||
**/ | ||
@NotNull | ||
@Schema(required = true, description = "") | ||
public String getInviteId() { | ||
return inviteId; | ||
} | ||
|
||
public void setInviteId(String inviteId) { | ||
this.inviteId = inviteId; | ||
} | ||
|
||
public AcceptInvitationRequest linkId(String linkId) { | ||
this.linkId = linkId; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get linkId | ||
* @return linkId | ||
**/ | ||
@NotNull | ||
@Schema(required = true, description = "") | ||
public String getLinkId() { | ||
return linkId; | ||
} | ||
|
||
public void setLinkId(String linkId) { | ||
this.linkId = linkId; | ||
} | ||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
AcceptInvitationRequest acceptInvitationRequest = (AcceptInvitationRequest) o; | ||
return Objects.equals(this.inviteId, acceptInvitationRequest.inviteId) && | ||
Objects.equals(this.linkId, acceptInvitationRequest.linkId); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(inviteId, linkId); | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class AcceptInvitationRequest {\n"); | ||
|
||
sb.append(" inviteId: ").append(toIndentedString(inviteId)).append("\n"); | ||
sb.append(" linkId: ").append(toIndentedString(linkId)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n "); | ||
} | ||
|
||
} |
63 changes: 63 additions & 0 deletions
63
...rganization/src/main/java/com/volcengine/organization/model/AcceptInvitationResponse.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* organization | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* OpenAPI spec version: common-version | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package com.volcengine.organization.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import javax.validation.constraints.*; | ||
import javax.validation.Valid; | ||
/** | ||
* AcceptInvitationResponse | ||
*/ | ||
|
||
|
||
public class AcceptInvitationResponse extends com.volcengine.model.AbstractResponse { | ||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
return true; | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(); | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class AcceptInvitationResponse {\n"); | ||
|
||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n "); | ||
} | ||
|
||
} |
141 changes: 141 additions & 0 deletions
141
...ization/src/main/java/com/volcengine/organization/model/AcceptQuitApplicationRequest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,141 @@ | ||
/* | ||
* organization | ||
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen) | ||
* | ||
* OpenAPI spec version: common-version | ||
* | ||
* | ||
* NOTE: This class is auto generated by the swagger code generator program. | ||
* https://github.com/swagger-api/swagger-codegen.git | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
package com.volcengine.organization.model; | ||
|
||
import java.util.Objects; | ||
import java.util.Arrays; | ||
import com.google.gson.TypeAdapter; | ||
import com.google.gson.annotations.JsonAdapter; | ||
import com.google.gson.annotations.SerializedName; | ||
import com.google.gson.stream.JsonReader; | ||
import com.google.gson.stream.JsonWriter; | ||
import io.swagger.v3.oas.annotations.media.Schema; | ||
import java.io.IOException; | ||
import javax.validation.constraints.*; | ||
import javax.validation.Valid; | ||
/** | ||
* AcceptQuitApplicationRequest | ||
*/ | ||
|
||
|
||
public class AcceptQuitApplicationRequest { | ||
@SerializedName("AccountId") | ||
private String accountId = null; | ||
|
||
@SerializedName("ApplicationId") | ||
private String applicationId = null; | ||
|
||
@SerializedName("Reason") | ||
private String reason = null; | ||
|
||
public AcceptQuitApplicationRequest accountId(String accountId) { | ||
this.accountId = accountId; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get accountId | ||
* @return accountId | ||
**/ | ||
@NotNull | ||
@Schema(required = true, description = "") | ||
public String getAccountId() { | ||
return accountId; | ||
} | ||
|
||
public void setAccountId(String accountId) { | ||
this.accountId = accountId; | ||
} | ||
|
||
public AcceptQuitApplicationRequest applicationId(String applicationId) { | ||
this.applicationId = applicationId; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get applicationId | ||
* @return applicationId | ||
**/ | ||
@NotNull | ||
@Schema(required = true, description = "") | ||
public String getApplicationId() { | ||
return applicationId; | ||
} | ||
|
||
public void setApplicationId(String applicationId) { | ||
this.applicationId = applicationId; | ||
} | ||
|
||
public AcceptQuitApplicationRequest reason(String reason) { | ||
this.reason = reason; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get reason | ||
* @return reason | ||
**/ | ||
@Schema(description = "") | ||
public String getReason() { | ||
return reason; | ||
} | ||
|
||
public void setReason(String reason) { | ||
this.reason = reason; | ||
} | ||
|
||
|
||
@Override | ||
public boolean equals(java.lang.Object o) { | ||
if (this == o) { | ||
return true; | ||
} | ||
if (o == null || getClass() != o.getClass()) { | ||
return false; | ||
} | ||
AcceptQuitApplicationRequest acceptQuitApplicationRequest = (AcceptQuitApplicationRequest) o; | ||
return Objects.equals(this.accountId, acceptQuitApplicationRequest.accountId) && | ||
Objects.equals(this.applicationId, acceptQuitApplicationRequest.applicationId) && | ||
Objects.equals(this.reason, acceptQuitApplicationRequest.reason); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(accountId, applicationId, reason); | ||
} | ||
|
||
|
||
@Override | ||
public String toString() { | ||
StringBuilder sb = new StringBuilder(); | ||
sb.append("class AcceptQuitApplicationRequest {\n"); | ||
|
||
sb.append(" accountId: ").append(toIndentedString(accountId)).append("\n"); | ||
sb.append(" applicationId: ").append(toIndentedString(applicationId)).append("\n"); | ||
sb.append(" reason: ").append(toIndentedString(reason)).append("\n"); | ||
sb.append("}"); | ||
return sb.toString(); | ||
} | ||
|
||
/** | ||
* Convert the given object to string with each line indented by 4 spaces | ||
* (except the first line). | ||
*/ | ||
private String toIndentedString(java.lang.Object o) { | ||
if (o == null) { | ||
return "null"; | ||
} | ||
return o.toString().replace("\n", "\n "); | ||
} | ||
|
||
} |
Oops, something went wrong.