com.aliyun.eas20210701.models.UpdateServiceInstanceRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class UpdateServiceInstanceRequest extends TeaModel {
/**
* Specifies whether to isolate the service instance. Valid values:
*
* - true
* - false
*
*
* example:
* true
*/
@NameInMap("Isolate")
public Boolean isolate;
public static UpdateServiceInstanceRequest build(java.util.Map map) throws Exception {
UpdateServiceInstanceRequest self = new UpdateServiceInstanceRequest();
return TeaModel.build(map, self);
}
public UpdateServiceInstanceRequest setIsolate(Boolean isolate) {
this.isolate = isolate;
return this;
}
public Boolean getIsolate() {
return this.isolate;
}
}