com.aliyun.ens20171110.models.DeleteSDGRequest 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 DeleteSDGRequest extends TeaModel {
/**
* The IDs of the SDGs that you want to delete.
* This parameter is required.
*/
@NameInMap("SDGId")
public java.util.List SDGId;
public static DeleteSDGRequest build(java.util.Map map) throws Exception {
DeleteSDGRequest self = new DeleteSDGRequest();
return TeaModel.build(map, self);
}
public DeleteSDGRequest setSDGId(java.util.List SDGId) {
this.SDGId = SDGId;
return this;
}
public java.util.List getSDGId() {
return this.SDGId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy