Skip to content

Commit

Permalink
Support kibana Pvl private link operation.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 22, 2024
1 parent 75fc8c2 commit ea315c3
Show file tree
Hide file tree
Showing 42 changed files with 1,947 additions and 482 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-elasticsearch/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-22 Version: 3.1.2
- Support kibana Pvl private link operation.

2022-10-27 Version: 3.1.1
- Complete Request Body.

Expand Down
7 changes: 3 additions & 4 deletions aliyun-java-sdk-elasticsearch/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-elasticsearch</artifactId>
<packaging>jar</packaging>
<version>3.1.1</version>
<version>3.1.2</version>
<name>aliyun-java-sdk-elasticsearch</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down Expand Up @@ -37,9 +37,8 @@ http://www.aliyun.com</description>
</dependencies>
<licenses>
<license>
<name/>
<url/>
<distribution/>
<name>The Apache License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<scm>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -24,39 +24,6 @@
*/
public class CreateInstanceResponse extends AcsResponse {

private String requestId;

private Result result;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Result getResult() {
return this.result;
}

public void setResult(Result result) {
this.result = result;
}

public static class Result {

private String instanceId;

public String getInstanceId() {
return this.instanceId;
}

public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
}

@Override
public CreateInstanceResponse getInstance(UnmarshallerContext context) {
return CreateInstanceResponseUnmarshaller.unmarshall(this, context);
Expand Down
Loading

0 comments on commit ea315c3

Please sign in to comment.