com.aliyun.ens20171110.models.RevokeSecurityGroupEgressResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ens20171110 Show documentation
Show all versions of ens20171110 Show documentation
Alibaba Cloud edge node service (20171110) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class RevokeSecurityGroupEgressResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* CEF72CEB-54B6-4AE8-B225-F876FF7BA984
*/
@NameInMap("RequestId")
public String requestId;
public static RevokeSecurityGroupEgressResponseBody build(java.util.Map map) throws Exception {
RevokeSecurityGroupEgressResponseBody self = new RevokeSecurityGroupEgressResponseBody();
return TeaModel.build(map, self);
}
public RevokeSecurityGroupEgressResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy