com.aliyun.eds_aic20230930.models.UpgradeAndroidInstanceGroupRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eds_aic20230930 Show documentation
Show all versions of eds_aic20230930 Show documentation
Alibaba Cloud eds-aic (20230930) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eds_aic20230930.models;
import com.aliyun.tea.*;
public class UpgradeAndroidInstanceGroupRequest extends TeaModel {
/**
* example:
* true
*/
@NameInMap("AutoPay")
public Boolean autoPay;
/**
* example:
* 10
*/
@NameInMap("IncreaseNumberOfInstance")
public Integer increaseNumberOfInstance;
/**
* example:
* ag-asguicdjh****
*/
@NameInMap("InstanceGroupId")
public String instanceGroupId;
public static UpgradeAndroidInstanceGroupRequest build(java.util.Map map) throws Exception {
UpgradeAndroidInstanceGroupRequest self = new UpgradeAndroidInstanceGroupRequest();
return TeaModel.build(map, self);
}
public UpgradeAndroidInstanceGroupRequest setAutoPay(Boolean autoPay) {
this.autoPay = autoPay;
return this;
}
public Boolean getAutoPay() {
return this.autoPay;
}
public UpgradeAndroidInstanceGroupRequest setIncreaseNumberOfInstance(Integer increaseNumberOfInstance) {
this.increaseNumberOfInstance = increaseNumberOfInstance;
return this;
}
public Integer getIncreaseNumberOfInstance() {
return this.increaseNumberOfInstance;
}
public UpgradeAndroidInstanceGroupRequest setInstanceGroupId(String instanceGroupId) {
this.instanceGroupId = instanceGroupId;
return this;
}
public String getInstanceGroupId() {
return this.instanceGroupId;
}
}