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

com.aliyun.ens20171110.models.AddBackendServersShrinkRequest Maven / Gradle / Ivy

There is a newer version: 7.4.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class AddBackendServersShrinkRequest extends TeaModel {
    /**
     * 

The list of backend servers that you want to add to the Edge Load Balancer (ELB) instance. You can add up to 20 backend servers at a time.

*
*

Only Edge Node Service (ENS) instances that are in the running state can be added to the ELB instance as backend servers.

*
*

This parameter is required.

*/ @NameInMap("BackendServers") public String backendServersShrink; /** *

The frontend port that is used by the Edge Load Balance (ELB) instance. Valid values: 1 to 65535.

*

This parameter is required.

* * example: *

lb-5qzdmxefgrpxd7oz2mefonvtx

*/ @NameInMap("LoadBalancerId") public String loadBalancerId; public static AddBackendServersShrinkRequest build(java.util.Map map) throws Exception { AddBackendServersShrinkRequest self = new AddBackendServersShrinkRequest(); return TeaModel.build(map, self); } public AddBackendServersShrinkRequest setBackendServersShrink(String backendServersShrink) { this.backendServersShrink = backendServersShrink; return this; } public String getBackendServersShrink() { return this.backendServersShrink; } public AddBackendServersShrinkRequest setLoadBalancerId(String loadBalancerId) { this.loadBalancerId = loadBalancerId; return this; } public String getLoadBalancerId() { return this.loadBalancerId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy