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

com.aliyun.eas20210701.models.UpdateServiceInstanceRequest Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy