com.aliyun.edas20170801.models.UnbindSlbRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of edas20170801 Show documentation
Show all versions of edas20170801 Show documentation
Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.edas20170801.models;
import com.aliyun.tea.*;
public class UnbindSlbRequest extends TeaModel {
/**
* The ID of the application.
*/
@NameInMap("AppId")
public String appId;
/**
* Specifies whether to remove the configured listeners. Valid values:
*
* * true: removes the configured listeners.
* * false: does not remove the configured listeners.
*/
@NameInMap("DeleteListener")
public String deleteListener;
/**
* The ID of the SLB instance.
*/
@NameInMap("SlbId")
public String slbId;
/**
* The network type of the SLB instance. Valid values:
*
* * **internet**: Internet-facing SLB instance
* * **intranet**: internal-facing SLB instance
*/
@NameInMap("Type")
public String type;
public static UnbindSlbRequest build(java.util.Map map) throws Exception {
UnbindSlbRequest self = new UnbindSlbRequest();
return TeaModel.build(map, self);
}
public UnbindSlbRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
public UnbindSlbRequest setDeleteListener(String deleteListener) {
this.deleteListener = deleteListener;
return this;
}
public String getDeleteListener() {
return this.deleteListener;
}
public UnbindSlbRequest setSlbId(String slbId) {
this.slbId = slbId;
return this;
}
public String getSlbId() {
return this.slbId;
}
public UnbindSlbRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}