tencentcloud-sdk-nodejs-clb 4.0.681 → 4.0.683
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +407 -0
- package/SERVICE_CHANGELOG.md +553 -81
- package/package.json +1 -1
- package/products.md +38 -38
- package/src/services/clb/v20180317/clb_models.ts +88 -68
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +88 -68
@@ -926,37 +926,42 @@ export interface ZoneResource {
|
|
926
926
|
/**
|
927
927
|
* 主可用区,如"ap-guangzhou-1"。
|
928
928
|
*/
|
929
|
-
MasterZone
|
929
|
+
MasterZone?: string
|
930
930
|
/**
|
931
931
|
* 资源列表。
|
932
932
|
注意:此字段可能返回 null,表示取不到有效值。
|
933
933
|
*/
|
934
|
-
ResourceSet
|
934
|
+
ResourceSet?: Array<Resource>
|
935
935
|
/**
|
936
936
|
* 备可用区,如"ap-guangzhou-2",单可用区时,备可用区为null。
|
937
937
|
注意:此字段可能返回 null,表示取不到有效值。
|
938
938
|
*/
|
939
|
-
SlaveZone
|
939
|
+
SlaveZone?: string
|
940
940
|
/**
|
941
941
|
* IP版本,如IPv4,IPv6,IPv6_Nat。
|
942
942
|
*/
|
943
|
-
IPVersion
|
943
|
+
IPVersion?: string
|
944
944
|
/**
|
945
945
|
* 可用区所属地域,如:ap-guangzhou
|
946
946
|
*/
|
947
|
-
ZoneRegion
|
947
|
+
ZoneRegion?: string
|
948
948
|
/**
|
949
949
|
* 可用区是否是LocalZone可用区,如:false
|
950
950
|
*/
|
951
|
-
LocalZone
|
951
|
+
LocalZone?: boolean
|
952
952
|
/**
|
953
953
|
* 可用区资源的类型,SHARED表示共享资源,EXCLUSIVE表示独占资源。
|
954
954
|
*/
|
955
|
-
ZoneResourceType
|
955
|
+
ZoneResourceType?: string
|
956
956
|
/**
|
957
957
|
* 可用区是否是EdgeZone可用区,如:false
|
958
958
|
*/
|
959
|
-
EdgeZone
|
959
|
+
EdgeZone?: boolean
|
960
|
+
/**
|
961
|
+
* 网络出口
|
962
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
963
|
+
*/
|
964
|
+
Egress?: string
|
960
965
|
}
|
961
966
|
|
962
967
|
/**
|
@@ -3703,112 +3708,117 @@ export interface Cluster {
|
|
3703
3708
|
/**
|
3704
3709
|
* 集群唯一ID
|
3705
3710
|
*/
|
3706
|
-
ClusterId
|
3711
|
+
ClusterId?: string
|
3707
3712
|
/**
|
3708
3713
|
* 集群名称
|
3709
3714
|
*/
|
3710
|
-
ClusterName
|
3715
|
+
ClusterName?: string
|
3711
3716
|
/**
|
3712
3717
|
* 集群类型,如TGW,STGW,VPCGW
|
3713
3718
|
*/
|
3714
|
-
ClusterType
|
3719
|
+
ClusterType?: string
|
3715
3720
|
/**
|
3716
3721
|
* 集群标签,只有STGW集群有标签
|
3717
3722
|
注意:此字段可能返回 null,表示取不到有效值。
|
3718
3723
|
*/
|
3719
|
-
ClusterTag
|
3724
|
+
ClusterTag?: string
|
3720
3725
|
/**
|
3721
3726
|
* 集群所在可用区,如ap-guangzhou-1
|
3722
3727
|
*/
|
3723
|
-
Zone
|
3728
|
+
Zone?: string
|
3724
3729
|
/**
|
3725
3730
|
* 集群网络类型,如Public,Private
|
3726
3731
|
*/
|
3727
|
-
Network
|
3732
|
+
Network?: string
|
3728
3733
|
/**
|
3729
3734
|
* 最大连接数
|
3730
3735
|
注意:此字段可能返回 null,表示取不到有效值。
|
3731
3736
|
*/
|
3732
|
-
MaxConn
|
3737
|
+
MaxConn?: number
|
3733
3738
|
/**
|
3734
3739
|
* 最大入带宽
|
3735
3740
|
注意:此字段可能返回 null,表示取不到有效值。
|
3736
3741
|
*/
|
3737
|
-
MaxInFlow
|
3742
|
+
MaxInFlow?: number
|
3738
3743
|
/**
|
3739
3744
|
* 最大入包量
|
3740
3745
|
注意:此字段可能返回 null,表示取不到有效值。
|
3741
3746
|
*/
|
3742
|
-
MaxInPkg
|
3747
|
+
MaxInPkg?: number
|
3743
3748
|
/**
|
3744
3749
|
* 最大出带宽
|
3745
3750
|
注意:此字段可能返回 null,表示取不到有效值。
|
3746
3751
|
*/
|
3747
|
-
MaxOutFlow
|
3752
|
+
MaxOutFlow?: number
|
3748
3753
|
/**
|
3749
3754
|
* 最大出包量
|
3750
3755
|
注意:此字段可能返回 null,表示取不到有效值。
|
3751
3756
|
*/
|
3752
|
-
MaxOutPkg
|
3757
|
+
MaxOutPkg?: number
|
3753
3758
|
/**
|
3754
3759
|
* 最大新建连接数
|
3755
3760
|
注意:此字段可能返回 null,表示取不到有效值。
|
3756
3761
|
*/
|
3757
|
-
MaxNewConn
|
3762
|
+
MaxNewConn?: number
|
3758
3763
|
/**
|
3759
3764
|
* http最大新建连接数
|
3760
3765
|
注意:此字段可能返回 null,表示取不到有效值。
|
3761
3766
|
*/
|
3762
|
-
HTTPMaxNewConn
|
3767
|
+
HTTPMaxNewConn?: number
|
3763
3768
|
/**
|
3764
3769
|
* https最大新建连接数
|
3765
3770
|
注意:此字段可能返回 null,表示取不到有效值。
|
3766
3771
|
*/
|
3767
|
-
HTTPSMaxNewConn
|
3772
|
+
HTTPSMaxNewConn?: number
|
3768
3773
|
/**
|
3769
3774
|
* http QPS
|
3770
3775
|
注意:此字段可能返回 null,表示取不到有效值。
|
3771
3776
|
*/
|
3772
|
-
HTTPQps
|
3777
|
+
HTTPQps?: number
|
3773
3778
|
/**
|
3774
3779
|
* https QPS
|
3775
3780
|
注意:此字段可能返回 null,表示取不到有效值。
|
3776
3781
|
*/
|
3777
|
-
HTTPSQps
|
3782
|
+
HTTPSQps?: number
|
3778
3783
|
/**
|
3779
3784
|
* 集群内资源总数目
|
3780
3785
|
*/
|
3781
|
-
ResourceCount
|
3786
|
+
ResourceCount?: number
|
3782
3787
|
/**
|
3783
3788
|
* 集群内空闲资源数目
|
3784
3789
|
注意:此字段可能返回 null,表示取不到有效值。
|
3785
3790
|
*/
|
3786
|
-
IdleResourceCount
|
3791
|
+
IdleResourceCount?: number
|
3787
3792
|
/**
|
3788
3793
|
* 集群内转发机的数目
|
3789
3794
|
注意:此字段可能返回 null,表示取不到有效值。
|
3790
3795
|
*/
|
3791
|
-
LoadBalanceDirectorCount
|
3796
|
+
LoadBalanceDirectorCount?: number
|
3792
3797
|
/**
|
3793
3798
|
* 集群的Isp属性,如:"BGP","CMCC","CUCC","CTCC","INTERNAL"。
|
3794
3799
|
注意:此字段可能返回 null,表示取不到有效值。
|
3795
3800
|
*/
|
3796
|
-
Isp
|
3801
|
+
Isp?: string
|
3797
3802
|
/**
|
3798
3803
|
* 集群所在的可用区
|
3799
3804
|
注意:此字段可能返回 null,表示取不到有效值。
|
3800
3805
|
*/
|
3801
|
-
ClustersZone
|
3806
|
+
ClustersZone?: ClustersZone
|
3802
3807
|
/**
|
3803
3808
|
* 集群版本
|
3804
3809
|
注意:此字段可能返回 null,表示取不到有效值。
|
3805
3810
|
*/
|
3806
|
-
ClustersVersion
|
3811
|
+
ClustersVersion?: string
|
3807
3812
|
/**
|
3808
3813
|
* 集群容灾类型,如SINGLE-ZONE,DISASTER-RECOVERY,MUTUAL-DISASTER-RECOVERY
|
3809
3814
|
注意:此字段可能返回 null,表示取不到有效值。
|
3810
3815
|
*/
|
3811
|
-
DisasterRecoveryType
|
3816
|
+
DisasterRecoveryType?: string
|
3817
|
+
/**
|
3818
|
+
* 网络出口
|
3819
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3820
|
+
*/
|
3821
|
+
Egress?: string
|
3812
3822
|
}
|
3813
3823
|
|
3814
3824
|
/**
|
@@ -3871,193 +3881,198 @@ export interface LoadBalancerDetail {
|
|
3871
3881
|
/**
|
3872
3882
|
* 负载均衡实例 ID。
|
3873
3883
|
*/
|
3874
|
-
LoadBalancerId
|
3884
|
+
LoadBalancerId?: string
|
3875
3885
|
/**
|
3876
3886
|
* 负载均衡实例的名称。
|
3877
3887
|
*/
|
3878
|
-
LoadBalancerName
|
3888
|
+
LoadBalancerName?: string
|
3879
3889
|
/**
|
3880
3890
|
* 负载均衡实例的网络类型:
|
3881
3891
|
Public:公网属性, Private:内网属性。
|
3882
3892
|
注意:此字段可能返回 null,表示取不到有效值。
|
3883
3893
|
*/
|
3884
|
-
LoadBalancerType
|
3894
|
+
LoadBalancerType?: string
|
3885
3895
|
/**
|
3886
3896
|
* 负载均衡实例的状态,包括
|
3887
3897
|
0:创建中,1:正常运行。
|
3888
3898
|
注意:此字段可能返回 null,表示取不到有效值。
|
3889
3899
|
*/
|
3890
|
-
Status
|
3900
|
+
Status?: number
|
3891
3901
|
/**
|
3892
3902
|
* 负载均衡实例的 VIP 。
|
3893
3903
|
注意:此字段可能返回 null,表示取不到有效值。
|
3894
3904
|
*/
|
3895
|
-
Address
|
3905
|
+
Address?: string
|
3896
3906
|
/**
|
3897
3907
|
* 负载均衡实例 VIP 的IPv6地址。
|
3898
3908
|
注意:此字段可能返回 null,表示取不到有效值。
|
3899
3909
|
*/
|
3900
|
-
AddressIPv6
|
3910
|
+
AddressIPv6?: string
|
3901
3911
|
/**
|
3902
3912
|
* 负载均衡实例IP版本,IPv4 | IPv6。
|
3903
3913
|
注意:此字段可能返回 null,表示取不到有效值。
|
3904
3914
|
*/
|
3905
|
-
AddressIPVersion
|
3915
|
+
AddressIPVersion?: string
|
3906
3916
|
/**
|
3907
3917
|
* 负载均衡实例IPv6地址类型,IPv6Nat64 | IPv6FullChain。
|
3908
3918
|
注意:此字段可能返回 null,表示取不到有效值。
|
3909
3919
|
*/
|
3910
|
-
IPv6Mode
|
3920
|
+
IPv6Mode?: string
|
3911
3921
|
/**
|
3912
3922
|
* 负载均衡实例所在可用区。
|
3913
3923
|
注意:此字段可能返回 null,表示取不到有效值。
|
3914
3924
|
*/
|
3915
|
-
Zone
|
3925
|
+
Zone?: string
|
3916
3926
|
/**
|
3917
3927
|
* 负载均衡实例IP地址所属的ISP。
|
3918
3928
|
注意:此字段可能返回 null,表示取不到有效值。
|
3919
3929
|
*/
|
3920
|
-
AddressIsp
|
3930
|
+
AddressIsp?: string
|
3921
3931
|
/**
|
3922
3932
|
* 负载均衡实例所属私有网络的 ID。
|
3923
3933
|
注意:此字段可能返回 null,表示取不到有效值。
|
3924
3934
|
*/
|
3925
|
-
VpcId
|
3935
|
+
VpcId?: string
|
3926
3936
|
/**
|
3927
3937
|
* 负载均衡实例所属的项目 ID, 0 表示默认项目。
|
3928
3938
|
注意:此字段可能返回 null,表示取不到有效值。
|
3929
3939
|
*/
|
3930
|
-
ProjectId
|
3940
|
+
ProjectId?: number
|
3931
3941
|
/**
|
3932
3942
|
* 负载均衡实例的创建时间。
|
3933
3943
|
注意:此字段可能返回 null,表示取不到有效值。
|
3934
3944
|
*/
|
3935
|
-
CreateTime
|
3945
|
+
CreateTime?: string
|
3936
3946
|
/**
|
3937
3947
|
* 负载均衡实例的计费类型。
|
3938
3948
|
注意:此字段可能返回 null,表示取不到有效值。
|
3939
3949
|
*/
|
3940
|
-
ChargeType
|
3950
|
+
ChargeType?: string
|
3941
3951
|
/**
|
3942
3952
|
* 负载均衡实例的网络属性。
|
3943
3953
|
注意:此字段可能返回 null,表示取不到有效值。
|
3944
3954
|
*/
|
3945
|
-
NetworkAttributes
|
3955
|
+
NetworkAttributes?: InternetAccessible
|
3946
3956
|
/**
|
3947
3957
|
* 负载均衡实例的预付费相关属性。
|
3948
3958
|
注意:此字段可能返回 null,表示取不到有效值。
|
3949
3959
|
*/
|
3950
|
-
PrepaidAttributes
|
3960
|
+
PrepaidAttributes?: LBChargePrepaid
|
3951
3961
|
/**
|
3952
3962
|
* 暂做保留,一般用户无需关注。
|
3953
3963
|
注意:此字段可能返回 null,表示取不到有效值。
|
3954
3964
|
*/
|
3955
|
-
ExtraInfo
|
3965
|
+
ExtraInfo?: ExtraInfo
|
3956
3966
|
/**
|
3957
3967
|
* 负载均衡维度的个性化配置ID,多个配置用逗号隔开。
|
3958
3968
|
注意:此字段可能返回 null,表示取不到有效值。
|
3959
3969
|
*/
|
3960
|
-
ConfigId
|
3970
|
+
ConfigId?: string
|
3961
3971
|
/**
|
3962
3972
|
* 负载均衡实例的标签信息。
|
3963
3973
|
注意:此字段可能返回 null,表示取不到有效值。
|
3964
3974
|
*/
|
3965
|
-
Tags
|
3975
|
+
Tags?: Array<TagInfo>
|
3966
3976
|
/**
|
3967
3977
|
* 负载均衡监听器 ID。
|
3968
3978
|
注意:此字段可能返回 null,表示取不到有效值。
|
3969
3979
|
*/
|
3970
|
-
ListenerId
|
3980
|
+
ListenerId?: string
|
3971
3981
|
/**
|
3972
3982
|
* 监听器协议。
|
3973
3983
|
注意:此字段可能返回 null,表示取不到有效值。
|
3974
3984
|
*/
|
3975
|
-
Protocol
|
3985
|
+
Protocol?: string
|
3976
3986
|
/**
|
3977
3987
|
* 监听器端口。
|
3978
3988
|
注意:此字段可能返回 null,表示取不到有效值。
|
3979
3989
|
*/
|
3980
|
-
Port
|
3990
|
+
Port?: number
|
3981
3991
|
/**
|
3982
3992
|
* 转发规则的 ID。
|
3983
3993
|
注意:此字段可能返回 null,表示取不到有效值。
|
3984
3994
|
*/
|
3985
|
-
LocationId
|
3995
|
+
LocationId?: string
|
3986
3996
|
/**
|
3987
3997
|
* 转发规则的域名。
|
3988
3998
|
注意:此字段可能返回 null,表示取不到有效值。
|
3989
3999
|
*/
|
3990
|
-
Domain
|
4000
|
+
Domain?: string
|
3991
4001
|
/**
|
3992
4002
|
* 转发规则的路径。
|
3993
4003
|
注意:此字段可能返回 null,表示取不到有效值。
|
3994
4004
|
*/
|
3995
|
-
Url
|
4005
|
+
Url?: string
|
3996
4006
|
/**
|
3997
4007
|
* 后端目标ID。
|
3998
4008
|
注意:此字段可能返回 null,表示取不到有效值。
|
3999
4009
|
*/
|
4000
|
-
TargetId
|
4010
|
+
TargetId?: string
|
4001
4011
|
/**
|
4002
4012
|
* 后端目标的IP地址。
|
4003
4013
|
注意:此字段可能返回 null,表示取不到有效值。
|
4004
4014
|
*/
|
4005
|
-
TargetAddress
|
4015
|
+
TargetAddress?: string
|
4006
4016
|
/**
|
4007
4017
|
* 后端目标监听端口。
|
4008
4018
|
注意:此字段可能返回 null,表示取不到有效值。
|
4009
4019
|
*/
|
4010
|
-
TargetPort
|
4020
|
+
TargetPort?: number
|
4011
4021
|
/**
|
4012
4022
|
* 后端目标转发权重。
|
4013
4023
|
注意:此字段可能返回 null,表示取不到有效值。
|
4014
4024
|
*/
|
4015
|
-
TargetWeight
|
4025
|
+
TargetWeight?: number
|
4016
4026
|
/**
|
4017
4027
|
* 0:表示未被隔离,1:表示被隔离。
|
4018
4028
|
注意:此字段可能返回 null,表示取不到有效值。
|
4019
4029
|
*/
|
4020
|
-
Isolation
|
4030
|
+
Isolation?: number
|
4021
4031
|
/**
|
4022
4032
|
* 负载均衡绑定的安全组列表。
|
4023
4033
|
注意:此字段可能返回 null,表示取不到有效值。
|
4024
4034
|
*/
|
4025
|
-
SecurityGroup
|
4035
|
+
SecurityGroup?: Array<string>
|
4026
4036
|
/**
|
4027
4037
|
* 负载均衡安全组上移特性是否开启标识。
|
4028
4038
|
注意:此字段可能返回 null,表示取不到有效值。
|
4029
4039
|
*/
|
4030
|
-
LoadBalancerPassToTarget
|
4040
|
+
LoadBalancerPassToTarget?: number
|
4031
4041
|
/**
|
4032
4042
|
* 后端目标健康状态。
|
4033
4043
|
注意:此字段可能返回 null,表示取不到有效值。
|
4034
4044
|
*/
|
4035
|
-
TargetHealth
|
4045
|
+
TargetHealth?: string
|
4036
4046
|
/**
|
4037
4047
|
* 转发规则的域名列表。
|
4038
4048
|
注意:此字段可能返回 null,表示取不到有效值。
|
4039
4049
|
*/
|
4040
|
-
Domains
|
4050
|
+
Domains?: string
|
4041
4051
|
/**
|
4042
4052
|
* 多可用区负载均衡实例所选备区
|
4043
4053
|
注意:此字段可能返回 null,表示取不到有效值。
|
4044
4054
|
*/
|
4045
|
-
SlaveZone
|
4055
|
+
SlaveZone?: Array<string>
|
4046
4056
|
/**
|
4047
4057
|
* 内网负载均衡实例所在可用区,由白名单CLB_Internal_Zone控制
|
4048
4058
|
注意:此字段可能返回 null,表示取不到有效值。
|
4049
4059
|
*/
|
4050
|
-
Zones
|
4060
|
+
Zones?: Array<string>
|
4051
4061
|
/**
|
4052
4062
|
* 是否开启SNI特性(本参数仅对于HTTPS监听器有意义)。
|
4053
4063
|
注意:此字段可能返回 null,表示取不到有效值。
|
4054
4064
|
*/
|
4055
|
-
SniSwitch
|
4065
|
+
SniSwitch?: number
|
4056
4066
|
/**
|
4057
4067
|
* 负载均衡实例的域名。
|
4058
4068
|
注意:此字段可能返回 null,表示取不到有效值。
|
4059
4069
|
*/
|
4060
4070
|
LoadBalancerDomain?: string
|
4071
|
+
/**
|
4072
|
+
* 网络出口
|
4073
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
4074
|
+
*/
|
4075
|
+
Egress?: string
|
4061
4076
|
}
|
4062
4077
|
|
4063
4078
|
/**
|
@@ -5587,4 +5602,9 @@ OPEN:公网属性, INTERNAL:内网属性。
|
|
5587
5602
|
注意:此字段可能返回 null,表示取不到有效值。
|
5588
5603
|
*/
|
5589
5604
|
LoadBalancerDomain?: string
|
5605
|
+
/**
|
5606
|
+
* 网络出口
|
5607
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
5608
|
+
*/
|
5609
|
+
Egress?: string
|
5590
5610
|
}
|