You need to enable JavaScript to run this app.
导航
CreateListener
最近更新时间:2024.06.04 19:30:06首次发布时间:2021.08.31 10:37:27

调用 CreateListener 接口,为指定负载均衡实例添加一个监听器。

调试

请求参数

名称
类型
是否必选
示例值
描述
ActionStringCreateListener要执行的操作,取值为CreateListener。
VersionString2020-04-01API版本信息,当前版本为:2020-04-01。

LoadBalancerId

String

clb-bp1o94dp5i6ea****

CLB实例的ID。
您可以调用DescribeLoadBalancers接口,查询CLB实例ID。

ListenerName

String

mylistener

监听器的名称。

  • 必须以字母、数字或中文开头,可包含字母、数字、中文及以下特殊字符:点号(.)、下划线(_)和中划线(-)。
  • 长度限制在1~128字符之间。
  • 不填则默认将“协议-端口”作为监听器名称。

Description

String

This is a listener.

监听器的描述。

  • 必须以字母、数字或中文开头,可包含字母、数字、中文及以下特殊字符:英文逗号(,)、点号(.)、下划线(_)、空格( )、等号(=)、中划线(-)、中文逗号(,)、中文句号(。)。
  • 长度限制为0 ~ 255个字符。
  • 不填则默认值为空字符串。。

Protocol

String

TCP

监听器的协议。取值如下:

  • TCP
  • UDP
  • HTTP
  • HTTPS
PortInteger80监听器的监听端口,取值范围为1-65535。

Scheduler

String

wrr

监听器使用的调度算法。取值如下:

  • wrr(默认值):加权轮询。即权重值越高的后端服务器,被轮询到的次数(概率)越高。
  • wlc:加权最小连接数。即在最少连接数的基础上,根据服务器的不同处理能力,给每个服务器分配不同的权重,使其能够接受相应权值数的服务请求。
  • sh:源地址哈希。即基于源IP地址的一致性哈希,相同的源地址会调度到相同的后端服务器。

Bandwidth

Integer

10

监听器的带宽上限,单位为Mbps。

  • 默认值为-1,表示监听器不指定限速。此时监听器的带宽上限默认为CLB实例规格的剩余带宽。
  • 监听器带宽上限最大不能超过所属CLB实例的规格带宽,CLB实例的规格带宽请参见产品规格

ServerGroupId

String

rsp-bp1o94dp5i6ea****

监听器关联的后端服务器组 ID。
您可以调用DescribeServerGroups接口,查询后端服务器组ID。

CertificateId

String

cert-bp1o94dp5i6ea****

HTTPS监听器关联的证书ID。

  • 仅参数Protocol取HTTPS时,本参数有效且必须传入。
  • 您可以调用DescribeCertificates接口,查询证书ID。

HealthCheck.Enabled

String

on

监听器是否开启健康检查功能。

  • on(默认值):开启。
  • off:不开启。

说明

仅当本参数的值为 on 时,参数HealthCheck.****有效。

HealthCheck.IntervalInteger2执行健康检查的时间间隔,取值范围为1 ~ 300 ,默认值为2,单位为秒。

HealthCheck.Timeout

Integer

2

健康检查的响应超时时间,表示如果后端服务器在指定的时间内没有正确响应,则判定为健康检查“异常”。
取值范围为1 ~ 60,默认值为2,单位为秒。

说明

响应超时时间需小于等于检查时间间隔。

HealthCheck.HealthyThreshold

Integer

3

健康检查的健康阈值,表示连续执行指定次数的健康检查,结果均为“正常”的后端服务器将被判定为健康检查“正常”。
取值范围为2 ~ 10,默认值为3,单位为次。

HealthCheck.UnhealthyThreshold

Integer

3

健康检查的不健康阈值,表示连续执行指定次数的健康检查,结果均为“异常”的后端服务器将被判定为健康检查异常。
取值范围为2 ~ 10,默认值为3,单位为次。

HealthCheck.UdpRequest

String

Request123

健康检查的请求字符串。

  • 只允许包含字母和数字,最大长度限制为64个字符。
  • 当参数Protocol配置为UDP,且参数HealthCheck.Enabled配置为on时,该参数生效。
  • 参数HealthCheck.UdpRequestHealthCheck.UdpExpect的取值只能同时为空或同时不为空。

HealthCheck.UdpExpect

String

Expect123

健康检查的预期响应字符串。

  • 只允许包含字母和数字,最大长度限制为64个字符。
  • 当参数Protocol配置为UDP,且参数HealthCheck.Enabled配置为on时,该参数生效。
  • 参数HealthCheck.UdpRequestHealthCheck.UdpExpect的取值只能同时为空或同时不为空。

HealthCheck.Method

String

HEAD

监听器健康检查的方法。
当参数Protocol取HTTP或HTTPS,且HealthCheck.Enabled取on时,本参数生效。取值如下:

  • GET(默认值):服务器需支持GET方法。
  • HEAD:服务器仅返回HEAD头部信息,可以降低后端开销,但要求服务器支持HEAD方法。

HealthCheck.Domain

String

www.test.com

健康检查的域名,需配置为后端服务器上真实对外提供服务的地址。

  • 当参数Protocol取HTTP或HTTPS,且HealthCheck.Enabled取on时,本参数生效。
  • 需至少包含一个点号(.),且不允许以点号(.)开头或结尾。
  • 单个字符串由字母、数字、中划线(-)、点号(.)字符组成,中划线(-)不得出现在字符串的头部或尾部。
  • 长度限制为1 ~ 128个字符。
  • 不传入该参数或该参数不传入数值时,默认为空,表示负载均衡使用各后端服务器的私网IP地址进行健康检查。

HealthCheck.URI

String

/test

健康检查的路径,需配置为后端服务器上真实对外提供服务的地址。

  • 当参数Protocol取HTTP或HTTPS,且HealthCheck.Enabled取on时,本参数生效。
  • 必须以字符‘/’开头。
  • 仅包含字母、数字、中划线(-)、下划线(_)、斜线(/)、点号(.)、百分号(%)、英文问号(?)、#、&、等号(=)字符。
  • 长度限制为1 ~ 128个字符。
  • 不传入该参数或该参数不传入数值时,默认为“/”。

HealthCheck.HttpCode

String

"http_2xx,http_3xx"

健康检查正常的HTTP状态码。
当参数Protocol取HTTP或HTTPS,且HealthCheck.Enabled取on时,本参数生效。取值如下:

  • http_2xx (默认值)
  • http_3xx
  • http_4xx
  • http_5xx
多个状态码间用半角逗号“,”分隔。

EstablishedTimeout

Integer

800

监听器的连接超时时间。
仅参数Protocol取TCP或UDP时,本参数有效。取值如下:

  • TCP协议:10-900秒,默认为900秒。
  • UDP协议:1-300秒,默认为90秒。

ClientHeaderTimeout

Integer

60

读取客户端请求头的超时时间。客户端向CLB发起请求,若在超时时间内客户端没有传输整个报头,CLB将返回408错误码给客户端,表示请求超时。

  • 取值范围为30-120秒。默认为60秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

ClientBodyTimeout

Integer

60

读取客户端请求正文的超时时间。客户端向CLB发起请求,若在超时时间内客户端没有发送任何请求体,CLB将返回408错误码给客户端,表示请求超时。

  • 此超时时间仅针对两个连续的读操作之间设置,而非整个请求的传输过程。

  • 取值范围为 30-120秒,默认为60秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

KeepaliveTimeout

Integer

60

客户端与CLB之间的长连接超时时间。若在超时时间内一直没有访问请求,CLB会中断当前连接,直到下一次请求到来时重新建立新的连接。

  • 取值范围为 0-900秒,默认为75秒。

  • 0表示禁用长连接。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

ProxyConnectTimeout

Integer

60

CLB与后端服务器之间的连接建立超时时间。若超时时间内CLB与后端服务器连接未建立,则终止建立连接操作。

  • 建议大于健康检查超时时间。

  • 取值范围为 4-120秒,默认为4秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

ProxySendTimeout

Integer

60

CLB将请求传输到后端服务器的超时时间。CLB向后端服务器发起请求,若后端服务器在超时时间内未收到任何内容,则会关闭此连接。

  • 此超时仅针对两个连续的写操作之间设置,而非整个请求的传输过程。

  • 取值范围为30-3600秒,默认为60秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

ProxyReadTimeout

Integer

60

CLB从后端服务器读取响应的超时时间。CLB向后端服务器发起请求,若超时时间内接收请求的后端服务器无响应,则会关闭此连接。

  • 此超时时间仅针对两个连续的读操作之间设置,而非整个响应的传输过程。

  • 取值范围为30-3600秒,默认为60秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

SendTimeout

Integer

60

CLB向客户端发送响应的超时时间。CLB向客户端发送响应,若客户端在超时时间内未收到任何内容,则连接会被关闭。

  • 此超时仅针对两个连续的写操作之间设置,而非整响应的传输过程。

  • 取值范围为 1-3600秒,默认为60秒。

  • 仅参数Protocol取HTTP或HTTPS时,本参数有效。

SecurityPolicyId

String

default_policy

HTTPS监听器的TLS安全策略。

  • 仅参数Protocol取HTTPS时,本参数有效。 取值如下:

  • default_policy(默认值):支持SSL v3、TLS v1.0、TLS v1.1、TLS v1.2。

  • tls_cipher_policy_1_0:支持TLS v1.0、TLS v1.1、TLS v1.2。

  • tls_cipher_policy_1_1:支持TLS v1.1、TLS v1.2。

  • tls_cipher_policy_1_2:支持TLS v1.2。

  • tls_cipher_policy_1_2_strict:支持TLS v1.2。

说明

  • 以上TLS安全策略支持的加密套件详情请参见创建HTTPS协议监听器

  • 不填则默认按照ECDH+AESGCM:DH+AESGCM:ECDH+AES256:DH+AES256:ECDH+AES128:DH+AES:ECDH+3DES:DH+3DES:RSA+AESGCM:RSA+AES:RSA+3DES:!aNULL:!MD5配置生效。

AclStatus

String

off

是否开启访问控制功能。取值如下:

  • on:开启。
  • off(默认值):不开启。

AclType

String

black

访问控制的方式。取值如下:

  • white:白名单。监听器监听CLB的流量时,CLB仅转发其白名单关联访问控制策略组中IP地址的请求。
  • black(默认值):黑名单。监听器监听CLB的流量时,对于白名单关联访问控制策略组中IP地址的请求,CLB拒绝转发。

说明

当参数AclStatus on 时,AclTypeAclIds.N为必填。

AclIds.N

String

AclIds.1=acl-3cj44nv0jhhxc6c6rrtet****&AclIds.2=acl-2febxt4pu0zy85oxruw0t****

监听器绑定的访问控制策略组ID。
您可以调用DescribeAcls接口获取访问控制策略组ID。

  • 参数 - N:表示访问控制策略组的序号,数量上限为5个。
  • 多个访问控制策略组ID间使用“&”分隔。

说明

当参数AclStatus on 时,AclTypeAclIds.N为必填。

ProxyProtocolType

String

off

是否启用PP协议。
仅参数Protocol取TCP或UDP时,本参数有效。取值如下:

  • off(默认值):关闭。
  • standard:开启。

PersistenceType

String

off

会话保持的类型。取值如下:

  • off(默认值):不启用会话保持。
  • source_ip:源地址IP,仅参数Protocol取TCP或UDP时,本取值有效。
  • insert:植入Cookie,仅参数Protocol取HTTP或HTTPS且Scheduler取wrr时,本取值生效。
  • server:重写Cookie,仅参数Protocol取HTTP或HTTPS且Scheduler取wrr时,本取值生效。。

PersistenceTimeout

Integer

10

会话保持的超时时间。单位为秒。默认值为1000秒,取值范围根据参数PersistenceType取值有所不同。

  • PersistenceType配置为source_ip时,取值范围为1~3600。
  • PersistenceType配置为insert时,取值范围为1~86400。

说明

参数PersistenceType配置为source_ip或insert时,本参数有效。

Cookie

String

cookie123

后端服务器配置的会话保持的Cookie名称。

  • 仅参数PersistenceType取server时,本参数有效且必填。
  • 只能包含字母、数字、下划线(_)和中划线(-)。
  • 长度限制在1~200字符之间。

Http2Enabled

String

off

监听器是否开启前端HTTP 2.0协议。
仅参数`Protocol取HTTPS时,本参数有效。取值如下:|

  • on:开启。
  • off(默认值):不开启。

ConnectionDrainEnabled

String

on

监听器是否开启连接优雅中断功能。
仅参数Protocol取TCP或UDP时,本参数有效。取值如下:

  • on:开启。
  • off(默认值):不开启。

ConnectionDrainTimeout

Integer

2

连接优雅中断的超时时间。取值范围为0~900,单位为秒。

  • 参数ConnectionDrainEnabled取on时,本参数为必填。
  • 参数ConnectionDrainEnabled取off时,本参数默认为0。

Enabled

String

on

是否启用监听器。取值如下:

  • on(默认值):开启。
  • off:不开启。

Tags.N.Key

String

Tags.1.Key=key1&Tags.2.Key=key2

用户标签的标签键。

  • 参数 - N:表示标签键的序号,取值范围:1~20。
  • 多个标签键之间用&分隔。
  • 不能以 volc:sys:开头,包括任意大小写形式。
  • 长度取值范围为1~128字符,允许输入各国语言文字、数字、空格( )、下划线(_)、点号(.)、半角冒号(:)、斜杠(/)、等号(=)、加号(+)、中划线(-)和@(@)。
  • 若标签键开头或结尾存在空格,系统会自动为其去除。

说明

同一资源的标签键不允许重复。

Tags.N.Value

String

Tags.1.Value=value1&Tags.2.Value=value2

用户标签的标签值。

  • 参数 - N:表示标签值的序号,取值范围:1~20。
  • 多个标签值之间用&分隔。
  • 长度取值范围为0~256字符,不填默认为空。
  • 允许输入各国语言文字、数字、空格( )、下划线(_)、点号(.)、半角冒号(:)、斜杠(/)、等号(=)、加号(+)、中划线(-)和@(@)。
  • 大小写敏感。
  • 若标签值开头或结尾存在空格,系统会自动为其去除。

说明

若传入该参数,则必须先传入Tags.N.Key

返回参数

名称
类型
示例值
描述
RequestIdString20210811152539010225146063030****请求ID。
ListenerIdStringlsn-2fek3rgsxhrsw5oxruwec****监听器ID。

请求示例

GET /?Action=CreateListener&Version=2020-04-01&AclIds.1=acl-3cj44nv0jhhxc6c6rrtet****&AclStatus=on&AclType=black&Enabled=on&EstablishedTimeout=122&ListenerName=mylistener&LoadBalancerId=clb-bp1o94dp5i6ea****&Port=12&Protocol=TCP&Scheduler=wrr&ServerGroupId=rsp-bp1o94dp5i6ea**** HTTP/1.1
Host: open.volcengineapi.com
Region: cn-beijing
Service: clb

返回示例

{
    "ResponseMetadata": {
        "RequestId": "20210811152539010225146063030****",
        "Action": "CreateListener",
        "Version": "2020-04-01",
        "Service": "clb",
        "Region": "cn-beijing"
    },
    "Result": {
        "RequestId": "20210811152539010225146063030****",
        "ListenerId": "lsn-2fek3rgsxhrsw5oxruwec****"
    }
}

错误码

下表为您列举了该接口与业务逻辑相关的错误码。公共错误码请参见公共错误码文档。

HttpCode
错误码
错误信息
描述

400

MissingParameter

The request is missing a required parameter. Ensure that you have supplied all the required parameters for the request; for example, the 'XXX'.

该请求缺少必要参数。请确保发起请求已提供全部必要参数,比如XXX

说明

其中,XXX表示缺少的参数名称。

400InvalidName.MalformedThe specified Name is malformed.指定的 Name 参数格式不合法。
400InvalidAclStatus.MalformedThe specified AclStatus is malformed.指定的 AclStatus 参数格式不合法。
400InvalidAclType.MalformedThe specified AclType is malformed.指定的 AclType 参数格式不合法。
400InvalidDescription.MalformedThe specified Description is malformed.指定的 Description 参数格式不合法。
400InvalidEnabled.MalformedThe specified Enabled is malformed.指定的 Enabled 参数格式不合法。
400InvalidEstablishedTimeout.MalformedThe specified EstablishedTimeout is malformed.指定的 EstablishedTimeout 参数格式不合法。
400InvalidHealthCheck.Domain.MalformedThe specified HealthCheck.Domain is malformed.指定的 HealthCheck.Domain 参数格式不合法。
400InvalidHealthCheck.Enabled.MalformedThe specified HealthCheck.Enabled is malformed.指定的 HealthCheck.Enabled 参数格式不合法。
400InvalidHealthCheck.HealthyThreshold.MalformedThe specified HealthCheck.HealthyThreshold is malformed.指定的 HealthCheck.HealthyThreshold 参数格式不合法。
400InvalidHealthCheck.HttpCode.MalformedThe specified HealthCheck.HttpCode is malformed.指定的 HealthCheck.HttpCode 参数格式不合法。
400InvalidHealthCheck.Interval.MalformedThe specified HealthCheck.Interval is malformed.指定的 HealthCheck.Interval 参数格式不合法。
400InvalidHealthCheck.Method.MalformedThe specified HealthCheck.Method is malformed.指定的 HealthCheck.Method 参数格式不合法。
400InvalidHealthCheck.Timeout.MalformedThe specified HealthCheck.Timeout is malformed.指定的 HealthCheck.Timeout 参数格式不合法。
400InvalidHealthCheck.URI.MalformedThe specified HealthCheck.URI is malformed.指定的 HealthCheck.URI 参数格式不合法。
400InvalidHealthCheck.UdpExpect.MalformedThe specified HealthCheck.UdpExpect is malformed.指定的 HealthCheck.UdpExpect 参数格式不合法。
400InvalidHealthCheck.UdpRequest.MalformedThe specified HealthCheck.UdpRequest is malformed.指定的 HealthCheck.UdpRequest 参数格式不合法。
400InvalidHealthCheck.UnhealthyThreshold.MalformedThe specified HealthCheck.UnhealthyThreshold is malformed.指定的 HealthCheck.UnhealthyThreshold 参数格式不合法。
400InvalidPort.MalformedThe specified Port is malformed.指定的 Port 参数格式不合法。
400InvalidProtocol.MalformedThe specified Protocol is malformed.指定的 Protocol 参数格式不合法。
400InvalidScheduler.MalformedThe specified Scheduler is malformed.指定的 Scheduler 参数格式不合法。
400InvalidPersistenceTimeout.MalformedThe specified PersistenceTimeout is malformed.指定的 PersistenceTimeout 参数格式不合法。
400InvalidPersistenceType.MalformedThe specified PersistenceType is malformed.指定的 PersistenceType 参数格式不合法。
400InvalidProxyProtocolType.MalformedThe specified ProxyProtocolType is malformed.指定的 ProxyProtocolType 参数格式不合法。
400InvalidBandwidth.MalformedThe specified Bandwidth is malformed.指定的 Bandwidth 参数格式不合法。
400InvalidLoadBalancer.InvalidStatusThe specified LoadBalancer is not in the correct status for the request.指定的负载均衡所处状态无法响应该请求。
400UnsupportedOperation.AccountArrearsThe request on the specified instance is denied due to the account in arrears status.因账户处于欠费状态,对于该实例的操作请求被拒绝。
400QuotaExceed.ListenerNumberEachAclYou've reached the limit on the number of listeners that you can associate.已达到 ACL 可关联的监听器的数量的配额上限。
400QuotaExceed.ListenerNumberEachInstanceYou've reached the limit on the number of listeners that you can create.已达到可创建监听器的数量的配额上限。
400LimitExceeded.AclNumbersYou've reached the limit on the number of ACL that you can associate.已达到可关联的 ACL 的数量上限。
400InvalidServerGroup.LoadBalancerMismatchThe specified ServerGroup and LoadBalancer are not matched.指定的后端服务器组与负载均衡不匹配。
400InvalidLoadBalancerOrAcl.UnSupportActionThe specified LoadBalancer or Acl status does not support this action.指定的负载均衡或者 ACL 状态不支持当前操作。
400InvalidLoadBalancer.UnSupportActionThe specified LoadBalancer does not support this action.指定的负载均衡不支持当前操作。
400InvalidProtocol.ServerGroupIpVersionMismatchThe specified Protocol and ServerGroup IpVersion are not matched.指定的协议与服务器组 IP 版本不匹配。
400InvalidPort.NotAllowedThe specified Port is not allowed.指定的监听器端口不在实例的允许使用范围内。
400InvalidConnectionDrainEnabled.MalformedThe specified ConnectionDrainEnabled is malformed.指定的 ConnectionDrainEnabled 参数格式不合法。
400InvalidConnectionDrainTimeout.MalformedThe specified ConnectionDrainTimeout is malformed.指定的 ConnectionDrainTimeout 参数格式不合法。
400InvalidParameter.ProtocolConflictsToaTypeThe specified Protocol and ToaType conflict.指定的 Protocol 和 ToaType 参数冲突。
400InvalidProject.MalformedThe specified Project is malformed.指定的 Project 参数格式不合法。
400InvalidCookie.MalformedThe specified Cookie is malformed.指定的 Cookie 参数格式不合法。
400InvalidPersistenceType.ProtocolMismatchThe specified PersistenceType and Protocol are not matched.指定的会话保持类型与协议不匹配。
400InvalidPersistenceType.SchedulerMismatchThe specified PersistenceType and Scheduler are not matched.指定的会话保持类型与调度算法不匹配。
400InvalidHttp2Enabled.MalformedThe specified Http2Enabled is malformed.指定的 Http2Enabled 参数格式不合法。
400InvalidHttp2Enabled.ProtocolMismatchThe specified Http2Enabled not match with Protocol.指定的 HTTP2.0 开关与监听器协议类型不一致。
400InvalidIncorrectOrder.MalformedThe specified index order is malformed.指定的索引顺序参数格式不合法。
400InvalidTagKey.MalformedThe specified TagKey is malformed.指定的 TagKey 参数格式不合法。
400InvalidTagValue.MalformedThe specified TagValue is malformed.指定的 TagValue 参数格式不合法。
400LimitExceeded.ServiceManagedTagYou've reached the limit on the number of service managed tags that you can create.已达到单次可创建受管资源标签键值数量的上限。
400LimitExceeded.TagOperationYou've reached the limit on the number of tags that you can operate at a time.已达到单次可操作的标签条目数量上限。
403ForbiddenYou are not authorized to perform operations on the service managed tag.无权限对指定资源打上受管标签。
400InvalidClientBodyTimeout.MalformedThe specified ClientBodyTimeout is malformed.指定的 ClientBodyTimeout 参数格式不合法。
400InvalidClientBodyTimeout.ProtocolMismatchThe specified ClientBodyTimeout not match with Protocol.指定的客户端请求正文超时时间与监听器协议类型不一致。
400InvalidClientHeaderTimeout.MalformedThe specified ClientHeaderTimeout is malformed.指定的 ClientHeaderTimeout 参数格式不合法。
400InvalidClientHeaderTimeout.ProtocolMismatchThe specified ClientHeaderTimeout not match with Protocol.指定的客户端请求头超时时间与监听器协议类型不一致。
400InvalidHealthCheck.Port.MalformedThe specified HealthCheck.Port is malformed.指定的 HealthCheck.Port 参数格式不合法。
400InvalidKeepaliveTimeout.MalformedThe specified KeepaliveTimeout is malformed.指定的 KeepaliveTimeout 参数格式不合法。
400InvalidKeepaliveTimeout.ProtocolMismatchThe specified KeepaliveTimeout not match with Protocol.指定的客户端连接空闲超时时间与监听器协议类型不一致。
400InvalidProxyConnectTimeout.MalformedThe specified ProxyConnectTimeout is malformed.指定的 ProxyConnectTimeout 参数格式不合法。
400InvalidProxyConnectTimeout.ProtocolMismatchThe specified ProxyConnectTimeout not match with Protocol.指定的后端建连超时时间与监听器协议类型不一致。
400InvalidProxyReadTimeout.MalformedThe specified ProxyReadTimeout is malformed.指定的 ProxyReadTimeout 参数格式不合法。
400InvalidProxyReadTimeout.ProtocolMismatchThe specified ProxyReadTimeout not match with Protocol.指定的后端响应超时时间与监听器协议类型不一致。
400InvalidProxySendTimeout.MalformedThe specified ProxySendTimeout is malformed.指定的 ProxySendTimeout 参数格式不合法。
400InvalidProxySendTimeout.ProtocolMismatchThe specified ProxySendTimeout not match with Protocol.指定的后端转发请求超时时间与监听器协议类型不一致。
400InvalidSecurityPolicyId.MalformedThe specified SecurityPolicyId is malformed.指定的 SecurityPolicyId 参数格式不合法。
400InvalidSecurityPolicyId.ProtocolMismatchThe specified SecurityPolicyId not match with Protocol.指定的安全策略 ID 与监听器协议类型不一致。
400InvalidSendTimeout.MalformedThe specified SendTimeout is malformed.指定的 SendTimeout 参数格式不合法。
400InvalidSendTimeout.ProtocolMismatchThe specified SendTimeout not match with Protocol.指定的客户端转发响应超时时间与监听器协议类型不一致。
403InvalidResourceType.ServcieManagedThe specified ResourceType is managed by a service.指定的资源是服务托管资源。
404InvalidLoadBalancer.NotFoundThe specified LoadBalancer does not exist.指定的负载均衡不存在。
404InvalidServerGroup.NotFoundThe specified ServerGroup does not exist.指定的后端服务器组不存在。
404InvalidAcl.NotFoundThe specified ACL does not exist.指定的 ACL 不存在。
404InvalidCertificate.NotFoundThe specified Certificate does not exist.指定的证书不存在。
404InvalidExclusiveCluster.NotFoundThe specified ExclusiveCluster does not exist.指定的独占集群不存在。
409InvalidPort.ConflictThe specified Port already exists.指定的端口已存在。
409InvalidAclId.ConflictThe specified AclId already exists.指定的 ACL 已存在。
412InvalidLoadBalancer.ExpiredThe specified LoadBalancer has expired.指定的负载均衡已过期。
412InvalidExclusiveCluster.ExpiredThe specified ExclusiveCluster has expired.指定的独占集群已过期。
412InvalidExclusiveCluster.UnPurchasedThe specified ExclusiveCluster is not purchased.指定的独占集群未购买。