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

com.aliyun.sas20181203.models.DescribeAttachRecordsRequest Maven / Gradle / Ivy

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