Skip to content

Commit

Permalink
UIS SDK Auto Released By hejian.hj,Version:1.3.0
Browse files Browse the repository at this point in the history
发布日志:
1, Add accesslog feature
  • Loading branch information
Qingtang-SDK committed May 9, 2019
1 parent fd92acb commit 7be3d24
Show file tree
Hide file tree
Showing 11 changed files with 675 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-uis/ChangeLog.txt
@@ -1,3 +1,6 @@
2019-05-09 Version: 1.3.0
1, Add accesslog feature

2019-04-03 Version: 1.2.0
1, Support DNAT/ENI/Online user count features.

Expand Down
7 changes: 6 additions & 1 deletion aliyun-java-sdk-uis/pom.xml
Expand Up @@ -3,7 +3,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-uis</artifactId>
<packaging>jar</packaging>
<version>1.2.0</version>
<version>1.3.0</version>
<name>aliyun-java-sdk-uis</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down Expand Up @@ -33,6 +33,11 @@ http://www.aliyun.com</description>
<optional>true</optional>
<version>[4.3.2,5.0.0)</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.5</version>
</dependency>
</dependencies>
<licenses>
<license>
Expand Down
@@ -0,0 +1,112 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.uis.model.v20180821;

import com.aliyuncs.RpcAcsRequest;

/**
* @author auto create
* @version
*/
public class DeleteAccessLogRequest extends RpcAcsRequest<DeleteAccessLogResponse> {

public DeleteAccessLogRequest() {
super("Uis", "2018-08-21", "DeleteAccessLog", "uis");
}

private Long resourceOwnerId;

private String areaId;

private String resourceOwnerAccount;

private String ownerAccount;

private String uisId;

private Long ownerId;

public Long getResourceOwnerId() {
return this.resourceOwnerId;
}

public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}

public String getAreaId() {
return this.areaId;
}

public void setAreaId(String areaId) {
this.areaId = areaId;
if(areaId != null){
putQueryParameter("AreaId", areaId);
}
}

public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}

public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}

public String getOwnerAccount() {
return this.ownerAccount;
}

public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}

public String getUisId() {
return this.uisId;
}

public void setUisId(String uisId) {
this.uisId = uisId;
if(uisId != null){
putQueryParameter("UisId", uisId);
}
}

public Long getOwnerId() {
return this.ownerId;
}

public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}

@Override
public Class<DeleteAccessLogResponse> getResponseClass() {
return DeleteAccessLogResponse.class;
}

}
@@ -0,0 +1,41 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.uis.model.v20180821;

import com.aliyuncs.AcsResponse;
import com.aliyuncs.uis.transform.v20180821.DeleteAccessLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class DeleteAccessLogResponse extends AcsResponse {

private String requestId;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

@Override
public DeleteAccessLogResponse getInstance(UnmarshallerContext context) {
return DeleteAccessLogResponseUnmarshaller.unmarshall(this, context);
}
}
@@ -0,0 +1,125 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.uis.model.v20180821;

import com.aliyuncs.RpcAcsRequest;

/**
* @author auto create
* @version
*/
public class DescribeHighPriorityIpsRequest extends RpcAcsRequest<DescribeHighPriorityIpsResponse> {

public DescribeHighPriorityIpsRequest() {
super("Uis", "2018-08-21", "DescribeHighPriorityIps", "uis");
}

private Long resourceOwnerId;

private String resourceOwnerAccount;

private String ownerAccount;

private String uisId;

private Integer pageSize;

private Long ownerId;

private Integer pageNumber;

public Long getResourceOwnerId() {
return this.resourceOwnerId;
}

public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}

public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}

public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}

public String getOwnerAccount() {
return this.ownerAccount;
}

public void setOwnerAccount(String ownerAccount) {
this.ownerAccount = ownerAccount;
if(ownerAccount != null){
putQueryParameter("OwnerAccount", ownerAccount);
}
}

public String getUisId() {
return this.uisId;
}

public void setUisId(String uisId) {
this.uisId = uisId;
if(uisId != null){
putQueryParameter("UisId", uisId);
}
}

public Integer getPageSize() {
return this.pageSize;
}

public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}

public Long getOwnerId() {
return this.ownerId;
}

public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}

public Integer getPageNumber() {
return this.pageNumber;
}

public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}

@Override
public Class<DescribeHighPriorityIpsResponse> getResponseClass() {
return DescribeHighPriorityIpsResponse.class;
}

}

0 comments on commit 7be3d24

Please sign in to comment.