com.aliyun.dms_enterprise20181101.models.DeleteProxyAccessRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms_enterprise20181101 Show documentation
Show all versions of dms_enterprise20181101 Show documentation
Alibaba Cloud dms-enterprise (20181101) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dms_enterprise20181101.models;
import com.aliyun.tea.*;
public class DeleteProxyAccessRequest extends TeaModel {
/**
* The ID of the security protection authorization. After the security protection agent authorizes the target user, the system automatically generates a security protection authorization ID. The ID is globally unique. You can call the ListProxyAccesses operation to obtain this parameter.
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("ProxyAccessId")
public Long proxyAccessId;
/**
* The ID of the tenant. You can call the GetUserActiveTenant or ListUserTenants operation to obtain this parameter.
*
* example:
* 1
*/
@NameInMap("Tid")
public Long tid;
public static DeleteProxyAccessRequest build(java.util.Map map) throws Exception {
DeleteProxyAccessRequest self = new DeleteProxyAccessRequest();
return TeaModel.build(map, self);
}
public DeleteProxyAccessRequest setProxyAccessId(Long proxyAccessId) {
this.proxyAccessId = proxyAccessId;
return this;
}
public Long getProxyAccessId() {
return this.proxyAccessId;
}
public DeleteProxyAccessRequest setTid(Long tid) {
this.tid = tid;
return this;
}
public Long getTid() {
return this.tid;
}
}