com.aliyun.ens20171110.models.DescribeSDGsShrinkRequest 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 DescribeSDGsShrinkRequest extends TeaModel {
/**
* The AIC instance ID to be queried.
*/
@NameInMap("InstanceIds")
public String instanceIdsShrink;
/**
* The IDs of SDGs that you want to query. By default, all SDGs are queried.
*/
@NameInMap("SDGIds")
public String SDGIdsShrink;
public static DescribeSDGsShrinkRequest build(java.util.Map map) throws Exception {
DescribeSDGsShrinkRequest self = new DescribeSDGsShrinkRequest();
return TeaModel.build(map, self);
}
public DescribeSDGsShrinkRequest setInstanceIdsShrink(String instanceIdsShrink) {
this.instanceIdsShrink = instanceIdsShrink;
return this;
}
public String getInstanceIdsShrink() {
return this.instanceIdsShrink;
}
public DescribeSDGsShrinkRequest setSDGIdsShrink(String SDGIdsShrink) {
this.SDGIdsShrink = SDGIdsShrink;
return this;
}
public String getSDGIdsShrink() {
return this.SDGIdsShrink;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy