Skip to content

Commit 7be3d24

Browse files
committed
UIS SDK Auto Released By hejian.hj,Version:1.3.0
发布日志: 1, Add accesslog feature
1 parent fd92acb commit 7be3d24

11 files changed

+675
-1
lines changed

aliyun-java-sdk-uis/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2019-05-09 Version: 1.3.0
2+
1, Add accesslog feature
3+
14
2019-04-03 Version: 1.2.0
25
1, Support DNAT/ENI/Online user count features.
36

aliyun-java-sdk-uis/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-uis</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.2.0</version>
6+
<version>1.3.0</version>
77
<name>aliyun-java-sdk-uis</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
@@ -33,6 +33,11 @@ http://www.aliyun.com</description>
3333
<optional>true</optional>
3434
<version>[4.3.2,5.0.0)</version>
3535
</dependency>
36+
<dependency>
37+
<groupId>com.google.code.gson</groupId>
38+
<artifactId>gson</artifactId>
39+
<version>2.8.5</version>
40+
</dependency>
3641
</dependencies>
3742
<licenses>
3843
<license>
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
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.uis.model.v20180821;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DeleteAccessLogRequest extends RpcAcsRequest<DeleteAccessLogResponse> {
24+
25+
public DeleteAccessLogRequest() {
26+
super("Uis", "2018-08-21", "DeleteAccessLog", "uis");
27+
}
28+
29+
private Long resourceOwnerId;
30+
31+
private String areaId;
32+
33+
private String resourceOwnerAccount;
34+
35+
private String ownerAccount;
36+
37+
private String uisId;
38+
39+
private Long ownerId;
40+
41+
public Long getResourceOwnerId() {
42+
return this.resourceOwnerId;
43+
}
44+
45+
public void setResourceOwnerId(Long resourceOwnerId) {
46+
this.resourceOwnerId = resourceOwnerId;
47+
if(resourceOwnerId != null){
48+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
49+
}
50+
}
51+
52+
public String getAreaId() {
53+
return this.areaId;
54+
}
55+
56+
public void setAreaId(String areaId) {
57+
this.areaId = areaId;
58+
if(areaId != null){
59+
putQueryParameter("AreaId", areaId);
60+
}
61+
}
62+
63+
public String getResourceOwnerAccount() {
64+
return this.resourceOwnerAccount;
65+
}
66+
67+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
68+
this.resourceOwnerAccount = resourceOwnerAccount;
69+
if(resourceOwnerAccount != null){
70+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
71+
}
72+
}
73+
74+
public String getOwnerAccount() {
75+
return this.ownerAccount;
76+
}
77+
78+
public void setOwnerAccount(String ownerAccount) {
79+
this.ownerAccount = ownerAccount;
80+
if(ownerAccount != null){
81+
putQueryParameter("OwnerAccount", ownerAccount);
82+
}
83+
}
84+
85+
public String getUisId() {
86+
return this.uisId;
87+
}
88+
89+
public void setUisId(String uisId) {
90+
this.uisId = uisId;
91+
if(uisId != null){
92+
putQueryParameter("UisId", uisId);
93+
}
94+
}
95+
96+
public Long getOwnerId() {
97+
return this.ownerId;
98+
}
99+
100+
public void setOwnerId(Long ownerId) {
101+
this.ownerId = ownerId;
102+
if(ownerId != null){
103+
putQueryParameter("OwnerId", ownerId.toString());
104+
}
105+
}
106+
107+
@Override
108+
public Class<DeleteAccessLogResponse> getResponseClass() {
109+
return DeleteAccessLogResponse.class;
110+
}
111+
112+
}
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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.uis.model.v20180821;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.uis.transform.v20180821.DeleteAccessLogResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DeleteAccessLogResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
public String getRequestId() {
30+
return this.requestId;
31+
}
32+
33+
public void setRequestId(String requestId) {
34+
this.requestId = requestId;
35+
}
36+
37+
@Override
38+
public DeleteAccessLogResponse getInstance(UnmarshallerContext context) {
39+
return DeleteAccessLogResponseUnmarshaller.unmarshall(this, context);
40+
}
41+
}
Lines changed: 125 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,125 @@
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.uis.model.v20180821;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DescribeHighPriorityIpsRequest extends RpcAcsRequest<DescribeHighPriorityIpsResponse> {
24+
25+
public DescribeHighPriorityIpsRequest() {
26+
super("Uis", "2018-08-21", "DescribeHighPriorityIps", "uis");
27+
}
28+
29+
private Long resourceOwnerId;
30+
31+
private String resourceOwnerAccount;
32+
33+
private String ownerAccount;
34+
35+
private String uisId;
36+
37+
private Integer pageSize;
38+
39+
private Long ownerId;
40+
41+
private Integer pageNumber;
42+
43+
public Long getResourceOwnerId() {
44+
return this.resourceOwnerId;
45+
}
46+
47+
public void setResourceOwnerId(Long resourceOwnerId) {
48+
this.resourceOwnerId = resourceOwnerId;
49+
if(resourceOwnerId != null){
50+
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
51+
}
52+
}
53+
54+
public String getResourceOwnerAccount() {
55+
return this.resourceOwnerAccount;
56+
}
57+
58+
public void setResourceOwnerAccount(String resourceOwnerAccount) {
59+
this.resourceOwnerAccount = resourceOwnerAccount;
60+
if(resourceOwnerAccount != null){
61+
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
62+
}
63+
}
64+
65+
public String getOwnerAccount() {
66+
return this.ownerAccount;
67+
}
68+
69+
public void setOwnerAccount(String ownerAccount) {
70+
this.ownerAccount = ownerAccount;
71+
if(ownerAccount != null){
72+
putQueryParameter("OwnerAccount", ownerAccount);
73+
}
74+
}
75+
76+
public String getUisId() {
77+
return this.uisId;
78+
}
79+
80+
public void setUisId(String uisId) {
81+
this.uisId = uisId;
82+
if(uisId != null){
83+
putQueryParameter("UisId", uisId);
84+
}
85+
}
86+
87+
public Integer getPageSize() {
88+
return this.pageSize;
89+
}
90+
91+
public void setPageSize(Integer pageSize) {
92+
this.pageSize = pageSize;
93+
if(pageSize != null){
94+
putQueryParameter("PageSize", pageSize.toString());
95+
}
96+
}
97+
98+
public Long getOwnerId() {
99+
return this.ownerId;
100+
}
101+
102+
public void setOwnerId(Long ownerId) {
103+
this.ownerId = ownerId;
104+
if(ownerId != null){
105+
putQueryParameter("OwnerId", ownerId.toString());
106+
}
107+
}
108+
109+
public Integer getPageNumber() {
110+
return this.pageNumber;
111+
}
112+
113+
public void setPageNumber(Integer pageNumber) {
114+
this.pageNumber = pageNumber;
115+
if(pageNumber != null){
116+
putQueryParameter("PageNumber", pageNumber.toString());
117+
}
118+
}
119+
120+
@Override
121+
public Class<DescribeHighPriorityIpsResponse> getResponseClass() {
122+
return DescribeHighPriorityIpsResponse.class;
123+
}
124+
125+
}

0 commit comments

Comments
 (0)