Skip to content

Commit 1fa90a1

Browse files
committed
IDST SDK Auto Released By shenshi,Version:1.0.1
发布日志: 1, Update Dependency
1 parent 32e94a8 commit 1fa90a1

32 files changed

+877
-24
lines changed

aliyun-java-sdk-idst/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-18 Version: 1.0.1
2+
1, Update Dependency
3+
14
2018-01-09 Version: 1.0.0
25
1, This is an example of release-log.
36
2, Please strictly follow this format to edit in English.

aliyun-java-sdk-idst/pom.xml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-idst</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<name>aliyun-java-sdk-idst</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -31,7 +31,7 @@ http://www.aliyun.com</description>
3131
<groupId>com.aliyun</groupId>
3232
<artifactId>aliyun-java-sdk-core</artifactId>
3333
<optional>true</optional>
34-
<version>3.2.8</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>
@@ -42,8 +42,9 @@ http://www.aliyun.com</description>
4242
</license>
4343
</licenses>
4444
<scm>
45-
<url></url>
46-
<connection></connection>
45+
<connection>scm:git:git://github.com/aliyun/aliyun-openapi-java-sdk.git</connection>
46+
<developerConnection>scm:git:git@github.com:aliyun/aliyun-openapi-java-sdk.git</developerConnection>
47+
<url>https://github.com/aliyun/aliyun-openapi-java-sdk</url>
4748
</scm>
4849
<developers>
4950
<developer>
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.RoaAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class DescribeRegionsRequest extends RoaAcsRequest<DescribeRegionsResponse> {
25+
26+
public DescribeRegionsRequest() {
27+
super("IDST", "2018-01-08", "DescribeRegions", "idst");
28+
setUriPattern("/console/region/describe");
29+
setMethod(MethodType.POST);
30+
}
31+
32+
@Override
33+
public Class<DescribeRegionsResponse> getResponseClass() {
34+
return DescribeRegionsResponse.class;
35+
}
36+
37+
}
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.idst.transform.v20180108.DescribeRegionsResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class DescribeRegionsResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private List<Region> regions;
31+
32+
public String getRequestId() {
33+
return this.requestId;
34+
}
35+
36+
public void setRequestId(String requestId) {
37+
this.requestId = requestId;
38+
}
39+
40+
public List<Region> getRegions() {
41+
return this.regions;
42+
}
43+
44+
public void setRegions(List<Region> regions) {
45+
this.regions = regions;
46+
}
47+
48+
public static class Region {
49+
50+
private String regionId;
51+
52+
private String localName;
53+
54+
public String getBizRegionId() {
55+
return this.regionId;
56+
}
57+
58+
public void setBizRegionId(String regionId) {
59+
this.regionId = regionId;
60+
}
61+
62+
/**
63+
* @deprecated use getBizRegionId instead of this.
64+
*/
65+
@Deprecated
66+
public String getRegionId() {
67+
return this.regionId;
68+
}
69+
70+
/**
71+
* @deprecated use setBizRegionId instead of this.
72+
*/
73+
@Deprecated
74+
public void setRegionId(String regionId) {
75+
this.regionId = regionId;
76+
}
77+
78+
public String getLocalName() {
79+
return this.localName;
80+
}
81+
82+
public void setLocalName(String localName) {
83+
this.localName = localName;
84+
}
85+
}
86+
87+
@Override
88+
public DescribeRegionsResponse getInstance(UnmarshallerContext context) {
89+
return DescribeRegionsResponseUnmarshaller.unmarshall(this, context);
90+
}
91+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.RoaAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class InstanceAddItemRequest extends RoaAcsRequest<InstanceAddItemResponse> {
25+
26+
public InstanceAddItemRequest() {
27+
super("IDST", "2018-01-08", "InstanceAddItem", "idst");
28+
setUriPattern("/console/instance/add-item");
29+
setMethod(MethodType.POST);
30+
}
31+
32+
@Override
33+
public Class<InstanceAddItemResponse> getResponseClass() {
34+
return InstanceAddItemResponse.class;
35+
}
36+
37+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.idst.transform.v20180108.InstanceAddItemResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class InstanceAddItemResponse extends AcsResponse {
26+
27+
@Override
28+
public InstanceAddItemResponse getInstance(UnmarshallerContext context) {
29+
return InstanceAddItemResponseUnmarshaller.unmarshall(this, context);
30+
}
31+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.RoaAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class InstanceClearRequest extends RoaAcsRequest<InstanceClearResponse> {
25+
26+
public InstanceClearRequest() {
27+
super("IDST", "2018-01-08", "InstanceClear", "idst");
28+
setUriPattern("/console/instance/clear");
29+
setMethod(MethodType.POST);
30+
}
31+
32+
@Override
33+
public Class<InstanceClearResponse> getResponseClass() {
34+
return InstanceClearResponse.class;
35+
}
36+
37+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.idst.transform.v20180108.InstanceClearResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class InstanceClearResponse extends AcsResponse {
26+
27+
@Override
28+
public InstanceClearResponse getInstance(UnmarshallerContext context) {
29+
return InstanceClearResponseUnmarshaller.unmarshall(this, context);
30+
}
31+
}
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.RoaAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
20+
/**
21+
* @author auto create
22+
* @version
23+
*/
24+
public class InstanceDeleteItemRequest extends RoaAcsRequest<InstanceDeleteItemResponse> {
25+
26+
public InstanceDeleteItemRequest() {
27+
super("IDST", "2018-01-08", "InstanceDeleteItem", "idst");
28+
setUriPattern("/console/instance/delete-item");
29+
setMethod(MethodType.POST);
30+
}
31+
32+
@Override
33+
public Class<InstanceDeleteItemResponse> getResponseClass() {
34+
return InstanceDeleteItemResponse.class;
35+
}
36+
37+
}
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.idst.model.v20180108;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.idst.transform.v20180108.InstanceDeleteItemResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class InstanceDeleteItemResponse extends AcsResponse {
26+
27+
@Override
28+
public InstanceDeleteItemResponse getInstance(UnmarshallerContext context) {
29+
return InstanceDeleteItemResponseUnmarshaller.unmarshall(this, context);
30+
}
31+
}

0 commit comments

Comments
 (0)