All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dms_enterprise20181101.models.DeleteProxyAccessRequest Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy