com.aliyun.sas20181203.models.DescribeAttachRecordsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sas20181203 Show documentation
Show all versions of sas20181203 Show documentation
Alibaba Cloud Threat Detection (20181203) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;
import com.aliyun.tea.*;
public class DescribeAttachRecordsRequest extends TeaModel {
/**
* The application group ID.
* This parameter is required.
*
* example:
* 64b8b994563c306b4fed****
*/
@NameInMap("ApplicationId")
public String applicationId;
/**
* The UUIDs of ECS instances to be queried.
*/
@NameInMap("EcsUUIDList")
public java.util.List ecsUUIDList;
public static DescribeAttachRecordsRequest build(java.util.Map map) throws Exception {
DescribeAttachRecordsRequest self = new DescribeAttachRecordsRequest();
return TeaModel.build(map, self);
}
public DescribeAttachRecordsRequest setApplicationId(String applicationId) {
this.applicationId = applicationId;
return this;
}
public String getApplicationId() {
return this.applicationId;
}
public DescribeAttachRecordsRequest setEcsUUIDList(java.util.List ecsUUIDList) {
this.ecsUUIDList = ecsUUIDList;
return this;
}
public java.util.List getEcsUUIDList() {
return this.ecsUUIDList;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy