Skip to content

Commit 16ae3a8

Browse files
committed
Add new api DeleteClusterNodes.
1 parent 33973ab commit 16ae3a8

File tree

81 files changed

+209
-2443
lines changed

Some content is hidden

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

81 files changed

+209
-2443
lines changed

aliyun-java-sdk-cs/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-12-05 Version: 4.7.15
2+
- Add new api DeleteClusterNodes.
3+
14
2019-05-16 Version: 4.7.14
25
1, Update SDK Version
36
2, Change api UpgradeClusterAddons, UpgradeClusterComponents, DescribeClusterAddonsVersion to public

aliyun-java-sdk-cs/pom.xml

Lines changed: 102 additions & 106 deletions
Original file line numberDiff line numberDiff line change
@@ -1,124 +1,120 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
12
<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">
23
<modelVersion>4.0.0</modelVersion>
34
<groupId>com.aliyun</groupId>
45
<artifactId>aliyun-java-sdk-cs</artifactId>
56
<packaging>jar</packaging>
6-
<version>4.7.14</version>
7-
<name>aliyun-java-sdk-cs</name>
7+
<version>4.7.15</version>
8+
<name>aliyun-java-sdk-cs</name>
89
<url>http://www.aliyun.com</url>
910
<description>Aliyun Open API SDK for Java
10-
1111
Copyright (C) Alibaba Cloud Computing
1212
All rights reserved.
13-
1413
版权所有 (C)阿里云计算有限公司
15-
1614
http://www.aliyun.com</description>
17-
18-
<distributionManagement>
15+
<distributionManagement>
1916
<snapshotRepository>
20-
<id>sonatype-nexus-snapshots</id>
21-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
17+
<id>sonatype-nexus-snapshots</id>
18+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
2219
</snapshotRepository>
2320
<repository>
24-
<id>sonatype-nexus-staging</id>
25-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
21+
<id>sonatype-nexus-staging</id>
22+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
2623
</repository>
27-
</distributionManagement>
28-
29-
<dependencies>
30-
<dependency>
31-
<groupId>com.aliyun</groupId>
32-
<artifactId>aliyun-java-sdk-core</artifactId>
33-
<optional>true</optional>
34-
<version>[4.3.2,5.0.0)</version>
35-
</dependency>
36-
<dependency>
37-
<groupId>com.google.code.gson</groupId>
38-
<artifactId>gson</artifactId>
39-
<version>2.8.5</version>
24+
</distributionManagement>
25+
<dependencies>
26+
<dependency>
27+
<groupId>com.aliyun</groupId>
28+
<artifactId>aliyun-java-sdk-core</artifactId>
29+
<optional>true</optional>
30+
<version>[4.3.2,5.0.0)</version>
31+
</dependency>
32+
<dependency>
33+
<groupId>com.google.code.gson</groupId>
34+
<artifactId>gson</artifactId>
35+
<version>2.8.5</version>
4036
</dependency>
4137
</dependencies>
42-
<licenses>
43-
<license>
44-
<name></name>
45-
<url></url>
46-
<distribution></distribution>
47-
</license>
48-
</licenses>
49-
<scm>
50-
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
51-
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
52-
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
53-
</scm>
54-
<developers>
55-
<developer>
56-
<id>aliyunproducts</id>
57-
<name>Aliyun SDK</name>
58-
<email>aliyunsdk@aliyun.com</email>
59-
</developer>
60-
</developers>
38+
<licenses>
39+
<license>
40+
<name/>
41+
<url/>
42+
<distribution/>
43+
</license>
44+
</licenses>
45+
<scm>
46+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
47+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
48+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
49+
</scm>
50+
<developers>
51+
<developer>
52+
<id>aliyunproducts</id>
53+
<name>Aliyun SDK</name>
54+
<email>aliyunsdk@aliyun.com</email>
55+
</developer>
56+
</developers>
6157
<build>
62-
<plugins>
63-
<plugin>
64-
<artifactId>maven-compiler-plugin</artifactId>
65-
<version>2.3.2</version>
66-
<configuration>
67-
<source>1.6</source>
68-
<target>1.6</target>
69-
<encoding>UTF-8</encoding>
70-
</configuration>
71-
</plugin>
72-
<plugin>
73-
<groupId>org.apache.maven.plugins</groupId>
74-
<artifactId>maven-jar-plugin</artifactId>
75-
<version>2.3.2</version>
76-
<configuration>
77-
<excludes>
78-
</excludes>
79-
</configuration>
80-
</plugin>
81-
<plugin>
82-
<groupId>org.apache.maven.plugins</groupId>
83-
<artifactId>maven-surefire-plugin</artifactId>
84-
<version>2.10</version>
85-
<configuration>
86-
<argLine>-Dfile.encoding=UTF-8</argLine>
87-
</configuration>
88-
</plugin>
89-
<plugin>
90-
<groupId>org.apache.maven.plugins</groupId>
91-
<artifactId>maven-javadoc-plugin</artifactId>
92-
<version>2.8</version>
93-
<configuration>
94-
<encoding>UTF-8</encoding>
95-
</configuration>
96-
</plugin>
97-
<plugin>
98-
<groupId>org.apache.maven.plugins</groupId>
99-
<artifactId>maven-gpg-plugin</artifactId>
100-
<version>1.5</version>
101-
<executions>
102-
<execution>
103-
<id>sign-artifacts</id>
104-
<phase>verify</phase>
105-
<goals>
106-
<goal>sign</goal>
107-
</goals>
108-
</execution>
109-
</executions>
110-
</plugin>
111-
<plugin>
112-
<groupId>org.sonatype.plugins</groupId>
113-
<artifactId>nexus-staging-maven-plugin</artifactId>
114-
<version>1.6.3</version>
115-
<extensions>true</extensions>
116-
<configuration>
117-
<serverId>sonatype-nexus-staging</serverId>
118-
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
119-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
120-
</configuration>
121-
</plugin>
122-
</plugins>
123-
</build>
124-
</project>
58+
<plugins>
59+
<plugin>
60+
<artifactId>maven-compiler-plugin</artifactId>
61+
<version>2.3.2</version>
62+
<configuration>
63+
<source>1.6</source>
64+
<target>1.6</target>
65+
<encoding>UTF-8</encoding>
66+
</configuration>
67+
</plugin>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-jar-plugin</artifactId>
71+
<version>2.3.2</version>
72+
<configuration>
73+
<excludes/>
74+
</configuration>
75+
</plugin>
76+
<plugin>
77+
<groupId>org.apache.maven.plugins</groupId>
78+
<artifactId>maven-surefire-plugin</artifactId>
79+
<version>2.10</version>
80+
<configuration>
81+
<argLine>-Dfile.encoding=UTF-8</argLine>
82+
</configuration>
83+
</plugin>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-javadoc-plugin</artifactId>
87+
<version>3.1.0</version>
88+
<configuration>
89+
<encoding>UTF-8</encoding>
90+
<doclint>none</doclint>
91+
</configuration>
92+
</plugin>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-gpg-plugin</artifactId>
96+
<version>1.5</version>
97+
<executions>
98+
<execution>
99+
<id>sign-artifacts</id>
100+
<phase>verify</phase>
101+
<goals>
102+
<goal>sign</goal>
103+
</goals>
104+
</execution>
105+
</executions>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.sonatype.plugins</groupId>
109+
<artifactId>nexus-staging-maven-plugin</artifactId>
110+
<version>1.6.3</version>
111+
<extensions>true</extensions>
112+
<configuration>
113+
<serverId>sonatype-nexus-staging</serverId>
114+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
115+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
116+
</configuration>
117+
</plugin>
118+
</plugins>
119+
</build>
120+
</project>

aliyun-java-sdk-cs/src/main/java/com/aliyuncs/cs/model/v20151215/AttachInstancesRequest.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,15 +22,15 @@
2222
* @version
2323
*/
2424
public class AttachInstancesRequest extends RoaAcsRequest<AttachInstancesResponse> {
25-
25+
26+
27+
private String clusterId;
2628
public AttachInstancesRequest() {
2729
super("CS", "2015-12-15", "AttachInstances");
2830
setUriPattern("/clusters/[ClusterId]/attach");
2931
setMethod(MethodType.POST);
3032
}
3133

32-
private String clusterId;
33-
3434
public String getClusterId() {
3535
return this.clusterId;
3636
}

aliyun-java-sdk-cs/src/main/java/com/aliyuncs/cs/model/v20151215/CheckAliyunCSServiceRoleRequest.java

Lines changed: 0 additions & 37 deletions
This file was deleted.

aliyun-java-sdk-cs/src/main/java/com/aliyuncs/cs/model/v20151215/CheckAliyunCSServiceRoleResponse.java

Lines changed: 0 additions & 31 deletions
This file was deleted.

aliyun-java-sdk-cs/src/main/java/com/aliyuncs/cs/model/v20151215/CreateClusterByResourcesGroupRequest.java

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)