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

Skip to content

Commit 9dfe861

Browse files
committed
OPENANALYTICS SDK Auto Released By shenshi,Version:1.0.1
发布日志: 1, Update Dependency
1 parent 760ee4b commit 9dfe861

28 files changed

+888
-149
lines changed

aliyun-java-sdk-openanalytics/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-03-15 Version: 1.0.1
2+
1, Update Dependency
3+
14
2018-08-31 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-openanalytics/pom.xml

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-openanalytics</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.0</version>
6+
<version>1.0.1</version>
77
<name>aliyun-java-sdk-openanalytics</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -14,12 +14,24 @@ All rights reserved.
1414
版权所有 (C)阿里云计算有限公司
1515

1616
http://www.aliyun.com</description>
17+
18+
<distributionManagement>
19+
<snapshotRepository>
20+
<id>sonatype-nexus-snapshots</id>
21+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
22+
</snapshotRepository>
23+
<repository>
24+
<id>sonatype-nexus-staging</id>
25+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
26+
</repository>
27+
</distributionManagement>
28+
1729
<dependencies>
1830
<dependency>
1931
<groupId>com.aliyun</groupId>
2032
<artifactId>aliyun-java-sdk-core</artifactId>
2133
<optional>true</optional>
22-
<version>3.7.1</version>
34+
<version>[4.3.2,5.0.0)</version>
2335
</dependency>
2436
</dependencies>
2537
<licenses>
@@ -77,6 +89,31 @@ http://www.aliyun.com</description>
7789
<encoding>UTF-8</encoding>
7890
</configuration>
7991
</plugin>
92+
<plugin>
93+
<groupId>org.apache.maven.plugins</groupId>
94+
<artifactId>maven-gpg-plugin</artifactId>
95+
<version>1.5</version>
96+
<executions>
97+
<execution>
98+
<id>sign-artifacts</id>
99+
<phase>verify</phase>
100+
<goals>
101+
<goal>sign</goal>
102+
</goals>
103+
</execution>
104+
</executions>
105+
</plugin>
106+
<plugin>
107+
<groupId>org.sonatype.plugins</groupId>
108+
<artifactId>nexus-staging-maven-plugin</artifactId>
109+
<version>1.6.3</version>
110+
<extensions>true</extensions>
111+
<configuration>
112+
<serverId>sonatype-nexus-staging</serverId>
113+
<nexusUrl>https://oss.sonatype.org/</nexusUrl>
114+
<autoReleaseAfterClose>true</autoReleaseAfterClose>
115+
</configuration>
116+
</plugin>
80117
</plugins>
81118
</build>
82-
</project>
119+
</project>
Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
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.openanalytics.model.v20180301;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class CloseProductAccountRequest extends RpcAcsRequest<CloseProductAccountResponse> {
24+
25+
public CloseProductAccountRequest() {
26+
super("openanalytics", "2018-03-01", "CloseProductAccount", "openanalytics");
27+
}
28+
29+
private String productCode;
30+
31+
private String productAccessKey;
32+
33+
private String targetUid;
34+
35+
private String targetArnRole;
36+
37+
public String getProductCode() {
38+
return this.productCode;
39+
}
40+
41+
public void setProductCode(String productCode) {
42+
this.productCode = productCode;
43+
if(productCode != null){
44+
putBodyParameter("ProductCode", productCode);
45+
}
46+
}
47+
48+
public String getProductAccessKey() {
49+
return this.productAccessKey;
50+
}
51+
52+
public void setProductAccessKey(String productAccessKey) {
53+
this.productAccessKey = productAccessKey;
54+
if(productAccessKey != null){
55+
putBodyParameter("ProductAccessKey", productAccessKey);
56+
}
57+
}
58+
59+
public String getTargetUid() {
60+
return this.targetUid;
61+
}
62+
63+
public void setTargetUid(String targetUid) {
64+
this.targetUid = targetUid;
65+
if(targetUid != null){
66+
putBodyParameter("TargetUid", targetUid);
67+
}
68+
}
69+
70+
public String getTargetArnRole() {
71+
return this.targetArnRole;
72+
}
73+
74+
public void setTargetArnRole(String targetArnRole) {
75+
this.targetArnRole = targetArnRole;
76+
if(targetArnRole != null){
77+
putBodyParameter("TargetArnRole", targetArnRole);
78+
}
79+
}
80+
81+
@Override
82+
public Class<CloseProductAccountResponse> getResponseClass() {
83+
return CloseProductAccountResponse.class;
84+
}
85+
86+
}
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
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.openanalytics.model.v20180301;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.openanalytics.transform.v20180301.CloseProductAccountResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CloseProductAccountResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String regionId;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public String getBizRegionId() {
40+
return this.regionId;
41+
}
42+
43+
public void setBizRegionId(String regionId) {
44+
this.regionId = regionId;
45+
}
46+
47+
/**
48+
* @deprecated use getBizRegionId instead of this.
49+
*/
50+
@Deprecated
51+
public String getRegionId() {
52+
return this.regionId;
53+
}
54+
55+
/**
56+
* @deprecated use setBizRegionId instead of this.
57+
*/
58+
@Deprecated
59+
public void setRegionId(String regionId) {
60+
this.regionId = regionId;
61+
}
62+
63+
@Override
64+
public CloseProductAccountResponse getInstance(UnmarshallerContext context) {
65+
return CloseProductAccountResponseUnmarshaller.unmarshall(this, context);
66+
}
67+
68+
@Override
69+
public boolean checkShowJsonItemName() {
70+
return false;
71+
}
72+
}

aliyun-java-sdk-openanalytics/src/main/java/com/aliyuncs/openanalytics/model/v20180301/CreateInstanceResponse.java

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

aliyun-java-sdk-openanalytics/src/main/java/com/aliyuncs/openanalytics/model/v20180301/DescribeRegionListRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
public class DescribeRegionListRequest extends RpcAcsRequest<DescribeRegionListResponse> {
2424

2525
public DescribeRegionListRequest() {
26-
super("openanalytics", "2018-03-01", "DescribeRegionList", "openanalytics", "innerAPI");
26+
super("openanalytics", "2018-03-01", "DescribeRegionList", "openanalytics");
2727
}
2828

2929
@Override

aliyun-java-sdk-openanalytics/src/main/java/com/aliyuncs/openanalytics/model/v20180301/DescribeRegionListResponse.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,26 @@ public void setRequestId(String requestId) {
3939
this.requestId = requestId;
4040
}
4141

42+
public String getBizRegionId() {
43+
return this.regionId;
44+
}
45+
46+
public void setBizRegionId(String regionId) {
47+
this.regionId = regionId;
48+
}
49+
50+
/**
51+
* @deprecated use getBizRegionId instead of this.
52+
*/
53+
@Deprecated
4254
public String getRegionId() {
4355
return this.regionId;
4456
}
4557

58+
/**
59+
* @deprecated use setBizRegionId instead of this.
60+
*/
61+
@Deprecated
4662
public void setRegionId(String regionId) {
4763
this.regionId = regionId;
4864
}

aliyun-java-sdk-openanalytics/src/main/java/com/aliyuncs/openanalytics/model/v20180301/GetAllowIPRequest.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,24 @@
2323
public class GetAllowIPRequest extends RpcAcsRequest<GetAllowIPResponse> {
2424

2525
public GetAllowIPRequest() {
26-
super("openanalytics", "2018-03-01", "GetAllowIP", "openanalytics", "innerAPI");
26+
super("openanalytics", "2018-03-01", "GetAllowIP", "openanalytics");
2727
}
2828

29+
private Long userID;
30+
2931
private String networkType;
3032

33+
public Long getUserID() {
34+
return this.userID;
35+
}
36+
37+
public void setUserID(Long userID) {
38+
this.userID = userID;
39+
if(userID != null){
40+
putBodyParameter("UserID", userID.toString());
41+
}
42+
}
43+
3144
public String getNetworkType() {
3245
return this.networkType;
3346
}

0 commit comments

Comments
 (0)