Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c5e0c72

Browse files
committed
OTS SDK Auto Released By shenshi,Version:4.0.1
发布日志: 1, Update Dependency
1 parent dec5bd7 commit c5e0c72

18 files changed

+120
-76
lines changed

aliyun-java-sdk-ots/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: 4.0.1
2+
1, Update Dependency
3+
14
2018-08-08 Version: 4.0.0
25
1, The official release 4.0.0
36

aliyun-java-sdk-ots/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ots</artifactId>
55
<packaging>jar</packaging>
6-
<version>4.0.0</version>
6+
<version>4.0.1</version>
77
<name>aliyun-java-sdk-ots</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.7.1</version>
34+
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
3636
</dependencies>
3737
<licenses>

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/BindInstance2VpcResponse.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,26 @@ public void setEndpoint(String endpoint) {
4646
this.endpoint = endpoint;
4747
}
4848

49+
public String getBizDomain() {
50+
return this.domain;
51+
}
52+
53+
public void setBizDomain(String domain) {
54+
this.domain = domain;
55+
}
56+
57+
/**
58+
* @deprecated use getBizDomain instead of this.
59+
*/
60+
@Deprecated
4961
public String getDomain() {
5062
return this.domain;
5163
}
5264

65+
/**
66+
* @deprecated use setBizDomain instead of this.
67+
*/
68+
@Deprecated
5369
public void setDomain(String domain) {
5470
this.domain = domain;
5571
}

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/DeleteTagsRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,25 +78,17 @@ public void setTagInfos(List<TagInfo> tagInfos) {
7878
this.tagInfos = tagInfos;
7979
if (tagInfos != null) {
8080
for (int depth1 = 0; depth1 < tagInfos.size(); depth1++) {
81-
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
8281
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagValue" , tagInfos.get(depth1).getTagValue());
82+
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
8383
}
8484
}
8585
}
8686

8787
public static class TagInfo {
8888

89-
private String tagKey;
90-
9189
private String tagValue;
9290

93-
public String getTagKey() {
94-
return this.tagKey;
95-
}
96-
97-
public void setTagKey(String tagKey) {
98-
this.tagKey = tagKey;
99-
}
91+
private String tagKey;
10092

10193
public String getTagValue() {
10294
return this.tagValue;
@@ -105,6 +97,14 @@ public String getTagValue() {
10597
public void setTagValue(String tagValue) {
10698
this.tagValue = tagValue;
10799
}
100+
101+
public String getTagKey() {
102+
return this.tagKey;
103+
}
104+
105+
public void setTagKey(String tagKey) {
106+
this.tagKey = tagKey;
107+
}
108108
}
109109

110110
@Override

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/GetInstanceResponse.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@
1414

1515
package com.aliyuncs.ots.model.v20160620;
1616

17-
import java.util.List;
18-
import java.util.Map;
17+
import java.util.List;
1918
import com.aliyuncs.AcsResponse;
2019
import com.aliyuncs.ots.transform.v20160620.GetInstanceResponseUnmarshaller;
2120
import com.aliyuncs.transform.UnmarshallerContext;

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/InsertInstanceRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -106,8 +106,8 @@ public void setTagInfos(List<TagInfo> tagInfos) {
106106
this.tagInfos = tagInfos;
107107
if (tagInfos != null) {
108108
for (int depth1 = 0; depth1 < tagInfos.size(); depth1++) {
109-
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
110109
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagValue" , tagInfos.get(depth1).getTagValue());
110+
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
111111
}
112112
}
113113
}
@@ -125,17 +125,9 @@ public void setNetwork(String network) {
125125

126126
public static class TagInfo {
127127

128-
private String tagKey;
129-
130128
private String tagValue;
131129

132-
public String getTagKey() {
133-
return this.tagKey;
134-
}
135-
136-
public void setTagKey(String tagKey) {
137-
this.tagKey = tagKey;
138-
}
130+
private String tagKey;
139131

140132
public String getTagValue() {
141133
return this.tagValue;
@@ -144,6 +136,14 @@ public String getTagValue() {
144136
public void setTagValue(String tagValue) {
145137
this.tagValue = tagValue;
146138
}
139+
140+
public String getTagKey() {
141+
return this.tagKey;
142+
}
143+
144+
public void setTagKey(String tagKey) {
145+
this.tagKey = tagKey;
146+
}
147147
}
148148

149149
@Override

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/InsertTagsRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,25 +78,17 @@ public void setTagInfos(List<TagInfo> tagInfos) {
7878
this.tagInfos = tagInfos;
7979
if (tagInfos != null) {
8080
for (int depth1 = 0; depth1 < tagInfos.size(); depth1++) {
81-
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
8281
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagValue" , tagInfos.get(depth1).getTagValue());
82+
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
8383
}
8484
}
8585
}
8686

8787
public static class TagInfo {
8888

89-
private String tagKey;
90-
9189
private String tagValue;
9290

93-
public String getTagKey() {
94-
return this.tagKey;
95-
}
96-
97-
public void setTagKey(String tagKey) {
98-
this.tagKey = tagKey;
99-
}
91+
private String tagKey;
10092

10193
public String getTagValue() {
10294
return this.tagValue;
@@ -105,6 +97,14 @@ public String getTagValue() {
10597
public void setTagValue(String tagValue) {
10698
this.tagValue = tagValue;
10799
}
100+
101+
public String getTagKey() {
102+
return this.tagKey;
103+
}
104+
105+
public void setTagKey(String tagKey) {
106+
this.tagKey = tagKey;
107+
}
108108
}
109109

110110
@Override

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/ListInstanceRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -89,25 +89,17 @@ public void setTagInfos(List<TagInfo> tagInfos) {
8989
this.tagInfos = tagInfos;
9090
if (tagInfos != null) {
9191
for (int depth1 = 0; depth1 < tagInfos.size(); depth1++) {
92-
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
9392
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagValue" , tagInfos.get(depth1).getTagValue());
93+
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
9494
}
9595
}
9696
}
9797

9898
public static class TagInfo {
9999

100-
private String tagKey;
101-
102100
private String tagValue;
103101

104-
public String getTagKey() {
105-
return this.tagKey;
106-
}
107-
108-
public void setTagKey(String tagKey) {
109-
this.tagKey = tagKey;
110-
}
102+
private String tagKey;
111103

112104
public String getTagValue() {
113105
return this.tagValue;
@@ -116,6 +108,14 @@ public String getTagValue() {
116108
public void setTagValue(String tagValue) {
117109
this.tagValue = tagValue;
118110
}
111+
112+
public String getTagKey() {
113+
return this.tagKey;
114+
}
115+
116+
public void setTagKey(String tagKey) {
117+
this.tagKey = tagKey;
118+
}
119119
}
120120

121121
@Override

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/ListTagsRequest.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -104,25 +104,17 @@ public void setTagInfos(List<TagInfo> tagInfos) {
104104
this.tagInfos = tagInfos;
105105
if (tagInfos != null) {
106106
for (int depth1 = 0; depth1 < tagInfos.size(); depth1++) {
107-
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
108107
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagValue" , tagInfos.get(depth1).getTagValue());
108+
putQueryParameter("TagInfo." + (depth1 + 1) + ".TagKey" , tagInfos.get(depth1).getTagKey());
109109
}
110110
}
111111
}
112112

113113
public static class TagInfo {
114114

115-
private String tagKey;
116-
117115
private String tagValue;
118116

119-
public String getTagKey() {
120-
return this.tagKey;
121-
}
122-
123-
public void setTagKey(String tagKey) {
124-
this.tagKey = tagKey;
125-
}
117+
private String tagKey;
126118

127119
public String getTagValue() {
128120
return this.tagValue;
@@ -131,6 +123,14 @@ public String getTagValue() {
131123
public void setTagValue(String tagValue) {
132124
this.tagValue = tagValue;
133125
}
126+
127+
public String getTagKey() {
128+
return this.tagKey;
129+
}
130+
131+
public void setTagKey(String tagKey) {
132+
this.tagKey = tagKey;
133+
}
134134
}
135135

136136
@Override

aliyun-java-sdk-ots/src/main/java/com/aliyuncs/ots/model/v20160620/ListVpcInfoByInstanceResponse.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,26 @@ public void setEndpoint(String endpoint) {
121121
this.endpoint = endpoint;
122122
}
123123

124+
public String getBizDomain() {
125+
return this.domain;
126+
}
127+
128+
public void setBizDomain(String domain) {
129+
this.domain = domain;
130+
}
131+
132+
/**
133+
* @deprecated use getBizDomain instead of this.
134+
*/
135+
@Deprecated
124136
public String getDomain() {
125137
return this.domain;
126138
}
127139

140+
/**
141+
* @deprecated use setBizDomain instead of this.
142+
*/
143+
@Deprecated
128144
public void setDomain(String domain) {
129145
this.domain = domain;
130146
}

0 commit comments

Comments
 (0)