tencentcloud-sdk-nodejs 4.0.255 → 4.0.256
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 +341 -27
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/common/sdk_version.ts +1 -1
- package/src/services/as/v20180419/as_client.ts +15 -1
- package/src/services/as/v20180419/as_models.ts +65 -5
- package/src/services/ckafka/v20190819/ckafka_models.ts +14 -2
- package/src/services/clb/v20180317/clb_client.ts +24 -11
- package/src/services/clb/v20180317/clb_models.ts +155 -64
- package/src/services/cme/v20191029/cme_models.ts +10 -10
- package/src/services/eiam/v20210420/eiam_models.ts +30 -0
- package/src/services/mongodb/v20190725/mongodb_client.ts +19 -3
- package/src/services/mongodb/v20190725/mongodb_models.ts +297 -62
- package/src/services/mrs/v20200910/mrs_models.ts +6 -0
- package/src/services/rum/v20210622/rum_models.ts +20 -0
- package/src/services/tcb/v20180608/tcb_models.ts +1 -1
- package/src/services/tdmq/v20200217/tdmq_models.ts +11 -1
- package/src/services/tse/v20201207/tse_models.ts +5 -0
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/as/v20180419/as_client.d.ts +5 -1
- package/tencentcloud/services/as/v20180419/as_client.js +6 -0
- package/tencentcloud/services/as/v20180419/as_models.d.ts +57 -5
- package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +12 -2
- package/tencentcloud/services/clb/v20180317/clb_client.d.ts +9 -5
- package/tencentcloud/services/clb/v20180317/clb_client.js +11 -5
- package/tencentcloud/services/clb/v20180317/clb_models.d.ts +133 -56
- package/tencentcloud/services/cme/v20191029/cme_models.d.ts +8 -9
- package/tencentcloud/services/eiam/v20210420/eiam_models.d.ts +25 -0
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.d.ts +5 -1
- package/tencentcloud/services/mongodb/v20190725/mongodb_client.js +6 -0
- package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +249 -55
- package/tencentcloud/services/mrs/v20200910/mrs_models.d.ts +5 -0
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +16 -0
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +1 -1
- package/tencentcloud/services/tdmq/v20200217/tdmq_models.d.ts +9 -1
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +4 -0
- package/test/as.v20180419.test.js +10 -0
- package/test/clb.v20180317.test.js +12 -2
- package/test/mongodb.v20190725.test.js +10 -0
|
@@ -29,6 +29,7 @@ import {
|
|
|
29
29
|
CreateAutoScalingGroupResponse,
|
|
30
30
|
DescribeAccountLimitsResponse,
|
|
31
31
|
CreateLaunchConfigurationResponse,
|
|
32
|
+
Advice,
|
|
32
33
|
CreateLifecycleHookResponse,
|
|
33
34
|
ClearLaunchConfigurationAttributesResponse,
|
|
34
35
|
DescribeAutoScalingGroupsResponse,
|
|
@@ -48,6 +49,7 @@ import {
|
|
|
48
49
|
CreateScalingPolicyResponse,
|
|
49
50
|
CreateNotificationConfigurationResponse,
|
|
50
51
|
DescribeLaunchConfigurationsResponse,
|
|
52
|
+
RemoveInstancesRequest,
|
|
51
53
|
DeleteScalingPolicyResponse,
|
|
52
54
|
Tag,
|
|
53
55
|
DescribeAutoScalingInstancesRequest,
|
|
@@ -80,6 +82,7 @@ import {
|
|
|
80
82
|
UpgradeLifecycleHookResponse,
|
|
81
83
|
InstanceTag,
|
|
82
84
|
PaiInstance,
|
|
85
|
+
DescribeAutoScalingAdvicesResponse,
|
|
83
86
|
CreateAutoScalingGroupRequest,
|
|
84
87
|
DeleteScheduledActionResponse,
|
|
85
88
|
UpgradeLaunchConfigurationRequest,
|
|
@@ -115,6 +118,7 @@ import {
|
|
|
115
118
|
DescribeLifecycleHooksResponse,
|
|
116
119
|
CreateScalingPolicyRequest,
|
|
117
120
|
ScaleInInstancesResponse,
|
|
121
|
+
DescribeAutoScalingAdvicesRequest,
|
|
118
122
|
DeleteNotificationConfigurationRequest,
|
|
119
123
|
DescribeLaunchConfigurationsRequest,
|
|
120
124
|
NotificationTarget,
|
|
@@ -130,7 +134,7 @@ import {
|
|
|
130
134
|
ClearLaunchConfigurationAttributesRequest,
|
|
131
135
|
PreviewPaiDomainNameResponse,
|
|
132
136
|
DeleteAutoScalingGroupRequest,
|
|
133
|
-
|
|
137
|
+
AutoScalingAdvice,
|
|
134
138
|
StartAutoScalingInstancesRequest,
|
|
135
139
|
AttachInstancesRequest,
|
|
136
140
|
SpotMixedAllocationPolicy,
|
|
@@ -342,6 +346,16 @@ export class Client extends AbstractClient {
|
|
|
342
346
|
return this.request("CreateScheduledAction", req, cb)
|
|
343
347
|
}
|
|
344
348
|
|
|
349
|
+
/**
|
|
350
|
+
* 此接口用于查询伸缩组配置建议。
|
|
351
|
+
*/
|
|
352
|
+
async DescribeAutoScalingAdvices(
|
|
353
|
+
req: DescribeAutoScalingAdvicesRequest,
|
|
354
|
+
cb?: (error: string, rep: DescribeAutoScalingAdvicesResponse) => void
|
|
355
|
+
): Promise<DescribeAutoScalingAdvicesResponse> {
|
|
356
|
+
return this.request("DescribeAutoScalingAdvices", req, cb)
|
|
357
|
+
}
|
|
358
|
+
|
|
345
359
|
/**
|
|
346
360
|
* 本接口(RemoveInstances)用于从伸缩组删除 CVM 实例。根据当前的产品逻辑,如果实例由弹性伸缩自动创建,则实例会被销毁;如果实例系创建后加入伸缩组的,则会从伸缩组中移除,保留实例。
|
|
347
361
|
* 如果删除指定实例后,伸缩组内处于`IN_SERVICE`状态的实例数量小于伸缩组最小值,接口将报错
|
|
@@ -481,6 +481,26 @@ export interface CreateLaunchConfigurationResponse {
|
|
|
481
481
|
RequestId?: string
|
|
482
482
|
}
|
|
483
483
|
|
|
484
|
+
/**
|
|
485
|
+
* 伸缩配置建议。
|
|
486
|
+
*/
|
|
487
|
+
export interface Advice {
|
|
488
|
+
/**
|
|
489
|
+
* 问题描述。
|
|
490
|
+
*/
|
|
491
|
+
Problem: string
|
|
492
|
+
|
|
493
|
+
/**
|
|
494
|
+
* 问题详情。
|
|
495
|
+
*/
|
|
496
|
+
Detail: string
|
|
497
|
+
|
|
498
|
+
/**
|
|
499
|
+
* 建议解决方案。
|
|
500
|
+
*/
|
|
501
|
+
Solution: string
|
|
502
|
+
}
|
|
503
|
+
|
|
484
504
|
/**
|
|
485
505
|
* CreateLifecycleHook返回参数结构体
|
|
486
506
|
*/
|
|
@@ -835,6 +855,21 @@ export interface DescribeLaunchConfigurationsResponse {
|
|
|
835
855
|
RequestId?: string
|
|
836
856
|
}
|
|
837
857
|
|
|
858
|
+
/**
|
|
859
|
+
* RemoveInstances请求参数结构体
|
|
860
|
+
*/
|
|
861
|
+
export interface RemoveInstancesRequest {
|
|
862
|
+
/**
|
|
863
|
+
* 伸缩组ID
|
|
864
|
+
*/
|
|
865
|
+
AutoScalingGroupId: string
|
|
866
|
+
|
|
867
|
+
/**
|
|
868
|
+
* CVM实例ID列表
|
|
869
|
+
*/
|
|
870
|
+
InstanceIds: Array<string>
|
|
871
|
+
}
|
|
872
|
+
|
|
838
873
|
/**
|
|
839
874
|
* DeleteScalingPolicy返回参数结构体
|
|
840
875
|
*/
|
|
@@ -1725,6 +1760,21 @@ export interface PaiInstance {
|
|
|
1725
1760
|
PaiMateUrl: string
|
|
1726
1761
|
}
|
|
1727
1762
|
|
|
1763
|
+
/**
|
|
1764
|
+
* DescribeAutoScalingAdvices返回参数结构体
|
|
1765
|
+
*/
|
|
1766
|
+
export interface DescribeAutoScalingAdvicesResponse {
|
|
1767
|
+
/**
|
|
1768
|
+
* 伸缩组配置建议集合。
|
|
1769
|
+
*/
|
|
1770
|
+
AutoScalingAdviceSet: Array<AutoScalingAdvice>
|
|
1771
|
+
|
|
1772
|
+
/**
|
|
1773
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1774
|
+
*/
|
|
1775
|
+
RequestId?: string
|
|
1776
|
+
}
|
|
1777
|
+
|
|
1728
1778
|
/**
|
|
1729
1779
|
* CreateAutoScalingGroup请求参数结构体
|
|
1730
1780
|
*/
|
|
@@ -2881,6 +2931,16 @@ export interface ScaleInInstancesResponse {
|
|
|
2881
2931
|
RequestId?: string
|
|
2882
2932
|
}
|
|
2883
2933
|
|
|
2934
|
+
/**
|
|
2935
|
+
* DescribeAutoScalingAdvices请求参数结构体
|
|
2936
|
+
*/
|
|
2937
|
+
export interface DescribeAutoScalingAdvicesRequest {
|
|
2938
|
+
/**
|
|
2939
|
+
* 待查询的伸缩组列表,上限100。
|
|
2940
|
+
*/
|
|
2941
|
+
AutoScalingGroupIds: Array<string>
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2884
2944
|
/**
|
|
2885
2945
|
* DeleteNotificationConfiguration请求参数结构体
|
|
2886
2946
|
*/
|
|
@@ -3226,18 +3286,18 @@ export interface DeleteAutoScalingGroupRequest {
|
|
|
3226
3286
|
}
|
|
3227
3287
|
|
|
3228
3288
|
/**
|
|
3229
|
-
*
|
|
3289
|
+
* 伸缩组配置建议。
|
|
3230
3290
|
*/
|
|
3231
|
-
export interface
|
|
3291
|
+
export interface AutoScalingAdvice {
|
|
3232
3292
|
/**
|
|
3233
|
-
* 伸缩组ID
|
|
3293
|
+
* 伸缩组ID。
|
|
3234
3294
|
*/
|
|
3235
3295
|
AutoScalingGroupId: string
|
|
3236
3296
|
|
|
3237
3297
|
/**
|
|
3238
|
-
*
|
|
3298
|
+
* 伸缩组配置建议集合。
|
|
3239
3299
|
*/
|
|
3240
|
-
|
|
3300
|
+
Advices: Array<Advice>
|
|
3241
3301
|
}
|
|
3242
3302
|
|
|
3243
3303
|
/**
|
|
@@ -375,7 +375,7 @@ export interface DescribeInstancesResponse {
|
|
|
375
375
|
/**
|
|
376
376
|
* 返回的结果
|
|
377
377
|
*/
|
|
378
|
-
Result
|
|
378
|
+
Result: InstanceResponse
|
|
379
379
|
|
|
380
380
|
/**
|
|
381
381
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -2207,7 +2207,7 @@ export interface DescribeInstancesRequest {
|
|
|
2207
2207
|
Limit?: number
|
|
2208
2208
|
|
|
2209
2209
|
/**
|
|
2210
|
-
*
|
|
2210
|
+
* 已废弃。匹配标签key值。
|
|
2211
2211
|
*/
|
|
2212
2212
|
TagKey?: string
|
|
2213
2213
|
}
|
|
@@ -2387,6 +2387,18 @@ export interface InstanceAttributesResponse {
|
|
|
2387
2387
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2388
2388
|
*/
|
|
2389
2389
|
DeleteRouteTimestamp: string
|
|
2390
|
+
|
|
2391
|
+
/**
|
|
2392
|
+
* 剩余创建分区数
|
|
2393
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2394
|
+
*/
|
|
2395
|
+
RemainingPartitions: number
|
|
2396
|
+
|
|
2397
|
+
/**
|
|
2398
|
+
* 剩余创建主题数
|
|
2399
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2400
|
+
*/
|
|
2401
|
+
RemainingTopics: number
|
|
2390
2402
|
}
|
|
2391
2403
|
|
|
2392
2404
|
/**
|
|
@@ -55,6 +55,7 @@ import {
|
|
|
55
55
|
TargetGroupInstance,
|
|
56
56
|
DescribeClassicalLBByInstanceIdResponse,
|
|
57
57
|
CreateRuleResponse,
|
|
58
|
+
CrossTargets,
|
|
58
59
|
RuleHealth,
|
|
59
60
|
DescribeExclusiveClustersResponse,
|
|
60
61
|
RegisterTargetGroupInstancesResponse,
|
|
@@ -71,6 +72,7 @@ import {
|
|
|
71
72
|
DescribeClassicalLBTargetsRequest,
|
|
72
73
|
DescribeCustomizedConfigListRequest,
|
|
73
74
|
AutoRewriteRequest,
|
|
75
|
+
DescribeCrossTargetsResponse,
|
|
74
76
|
DescribeLoadBalancerListByCertIdResponse,
|
|
75
77
|
ModifyTargetGroupInstancesWeightResponse,
|
|
76
78
|
DescribeTargetGroupsRequest,
|
|
@@ -115,7 +117,7 @@ import {
|
|
|
115
117
|
DescribeClassicalLBHealthStatusRequest,
|
|
116
118
|
ModifyDomainRequest,
|
|
117
119
|
CreateClsLogSetResponse,
|
|
118
|
-
|
|
120
|
+
DescribeCrossTargetsRequest,
|
|
119
121
|
LBChargePrepaid,
|
|
120
122
|
ClassicalListener,
|
|
121
123
|
DeleteLoadBalancerRequest,
|
|
@@ -206,6 +208,7 @@ import {
|
|
|
206
208
|
ModifyTargetPortRequest,
|
|
207
209
|
DescribeLoadBalancersResponse,
|
|
208
210
|
DescribeLBListenersResponse,
|
|
211
|
+
TargetGroupInfo,
|
|
209
212
|
DeleteListenerResponse,
|
|
210
213
|
DeleteLoadBalancerSnatIpsResponse,
|
|
211
214
|
CertificateOutput,
|
|
@@ -215,7 +218,7 @@ import {
|
|
|
215
218
|
TargetGroupAssociation,
|
|
216
219
|
ListenerHealth,
|
|
217
220
|
AssociationItem,
|
|
218
|
-
|
|
221
|
+
Backend,
|
|
219
222
|
RegisterTargetGroupInstancesRequest,
|
|
220
223
|
LoadBalancer,
|
|
221
224
|
} from "./clb_models"
|
|
@@ -241,7 +244,7 @@ export class Client extends AbstractClient {
|
|
|
241
244
|
}
|
|
242
245
|
|
|
243
246
|
/**
|
|
244
|
-
*
|
|
247
|
+
* 支持共享型clb升级到性能容量型clb(不支持性能保障降级到共享型)。
|
|
245
248
|
*/
|
|
246
249
|
async ModifyLoadBalancerSla(
|
|
247
250
|
req: ModifyLoadBalancerSlaRequest,
|
|
@@ -578,6 +581,17 @@ export class Client extends AbstractClient {
|
|
|
578
581
|
return this.request("DescribeLBListeners", req, cb)
|
|
579
582
|
}
|
|
580
583
|
|
|
584
|
+
/**
|
|
585
|
+
* 批量修改目标组服务器端口。
|
|
586
|
+
本接口为异步接口,本接口返回成功后需以返回的 RequestID 为入参,调用 DescribeTaskStatus 接口查询本次任务是否成功。
|
|
587
|
+
*/
|
|
588
|
+
async ModifyTargetGroupInstancesPort(
|
|
589
|
+
req: ModifyTargetGroupInstancesPortRequest,
|
|
590
|
+
cb?: (error: string, rep: ModifyTargetGroupInstancesPortResponse) => void
|
|
591
|
+
): Promise<ModifyTargetGroupInstancesPortResponse> {
|
|
592
|
+
return this.request("ModifyTargetGroupInstancesPort", req, cb)
|
|
593
|
+
}
|
|
594
|
+
|
|
581
595
|
/**
|
|
582
596
|
* 从目标组中解绑服务器。
|
|
583
597
|
本接口为异步接口,本接口返回成功后需以返回的 RequestID 为入参,调用 DescribeTaskStatus 接口查询本次任务是否成功。
|
|
@@ -918,14 +932,13 @@ export class Client extends AbstractClient {
|
|
|
918
932
|
}
|
|
919
933
|
|
|
920
934
|
/**
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
return this.request("ModifyTargetGroupInstancesPort", req, cb)
|
|
935
|
+
* 查询跨域2.0版本云联网后端子机和网卡信息。
|
|
936
|
+
*/
|
|
937
|
+
async DescribeCrossTargets(
|
|
938
|
+
req: DescribeCrossTargetsRequest,
|
|
939
|
+
cb?: (error: string, rep: DescribeCrossTargetsResponse) => void
|
|
940
|
+
): Promise<DescribeCrossTargetsResponse> {
|
|
941
|
+
return this.request("DescribeCrossTargets", req, cb)
|
|
929
942
|
}
|
|
930
943
|
|
|
931
944
|
/**
|
|
@@ -1047,6 +1047,53 @@ export interface CreateRuleResponse {
|
|
|
1047
1047
|
RequestId?: string
|
|
1048
1048
|
}
|
|
1049
1049
|
|
|
1050
|
+
/**
|
|
1051
|
+
* 跨域2.0云联网下子机和网卡信息
|
|
1052
|
+
*/
|
|
1053
|
+
export interface CrossTargets {
|
|
1054
|
+
/**
|
|
1055
|
+
* 本地私有网络ID,即负载均衡的VpcId。
|
|
1056
|
+
*/
|
|
1057
|
+
LocalVpcId: string
|
|
1058
|
+
|
|
1059
|
+
/**
|
|
1060
|
+
* 子机或网卡所属的私有网络ID。
|
|
1061
|
+
*/
|
|
1062
|
+
VpcId: string
|
|
1063
|
+
|
|
1064
|
+
/**
|
|
1065
|
+
* 子机或网卡的IP地址
|
|
1066
|
+
*/
|
|
1067
|
+
IP: string
|
|
1068
|
+
|
|
1069
|
+
/**
|
|
1070
|
+
* 子机或网卡所属的私有网络名称。
|
|
1071
|
+
*/
|
|
1072
|
+
VpcName: string
|
|
1073
|
+
|
|
1074
|
+
/**
|
|
1075
|
+
* 子机的网卡ID。
|
|
1076
|
+
*/
|
|
1077
|
+
EniId: string
|
|
1078
|
+
|
|
1079
|
+
/**
|
|
1080
|
+
* 子机实例ID。
|
|
1081
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1082
|
+
*/
|
|
1083
|
+
InstanceId: string
|
|
1084
|
+
|
|
1085
|
+
/**
|
|
1086
|
+
* 子机实例名称。
|
|
1087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1088
|
+
*/
|
|
1089
|
+
InstanceName: string
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
* 子机或者网卡所属的地域。
|
|
1093
|
+
*/
|
|
1094
|
+
Region: string
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1050
1097
|
/**
|
|
1051
1098
|
* 一条转发规则的健康检查状态
|
|
1052
1099
|
*/
|
|
@@ -1364,6 +1411,26 @@ export interface AutoRewriteRequest {
|
|
|
1364
1411
|
TakeUrls?: Array<boolean>
|
|
1365
1412
|
}
|
|
1366
1413
|
|
|
1414
|
+
/**
|
|
1415
|
+
* DescribeCrossTargets返回参数结构体
|
|
1416
|
+
*/
|
|
1417
|
+
export interface DescribeCrossTargetsResponse {
|
|
1418
|
+
/**
|
|
1419
|
+
* 后端服务列表总数。
|
|
1420
|
+
*/
|
|
1421
|
+
TotalCount: number
|
|
1422
|
+
|
|
1423
|
+
/**
|
|
1424
|
+
* 后端服务列表。
|
|
1425
|
+
*/
|
|
1426
|
+
CrossTargetSet: Array<CrossTargets>
|
|
1427
|
+
|
|
1428
|
+
/**
|
|
1429
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1430
|
+
*/
|
|
1431
|
+
RequestId?: string
|
|
1432
|
+
}
|
|
1433
|
+
|
|
1367
1434
|
/**
|
|
1368
1435
|
* DescribeLoadBalancerListByCertId返回参数结构体
|
|
1369
1436
|
*/
|
|
@@ -1496,7 +1563,7 @@ export interface DescribeLBListenersRequest {
|
|
|
1496
1563
|
}
|
|
1497
1564
|
|
|
1498
1565
|
/**
|
|
1499
|
-
*
|
|
1566
|
+
* 性能容量型变配参数
|
|
1500
1567
|
*/
|
|
1501
1568
|
export interface SlaUpdateParam {
|
|
1502
1569
|
/**
|
|
@@ -1505,7 +1572,7 @@ export interface SlaUpdateParam {
|
|
|
1505
1572
|
LoadBalancerId: string
|
|
1506
1573
|
|
|
1507
1574
|
/**
|
|
1508
|
-
*
|
|
1575
|
+
* 变更为性能容量型,固定为SLA
|
|
1509
1576
|
*/
|
|
1510
1577
|
SlaType: string
|
|
1511
1578
|
}
|
|
@@ -2501,58 +2568,27 @@ export interface CreateClsLogSetResponse {
|
|
|
2501
2568
|
}
|
|
2502
2569
|
|
|
2503
2570
|
/**
|
|
2504
|
-
*
|
|
2571
|
+
* DescribeCrossTargets请求参数结构体
|
|
2505
2572
|
*/
|
|
2506
|
-
export interface
|
|
2507
|
-
/**
|
|
2508
|
-
* 后端服务的类型,可取:CVM、ENI
|
|
2509
|
-
*/
|
|
2510
|
-
Type: string
|
|
2511
|
-
|
|
2512
|
-
/**
|
|
2513
|
-
* 后端服务的唯一 ID,如 ins-abcd1234
|
|
2514
|
-
*/
|
|
2515
|
-
InstanceId: string
|
|
2516
|
-
|
|
2573
|
+
export interface DescribeCrossTargetsRequest {
|
|
2517
2574
|
/**
|
|
2518
|
-
*
|
|
2575
|
+
* 返回后端服务列表数目,默认20,最大值100。
|
|
2519
2576
|
*/
|
|
2520
|
-
|
|
2577
|
+
Limit?: number
|
|
2521
2578
|
|
|
2522
2579
|
/**
|
|
2523
|
-
*
|
|
2580
|
+
* 返回后端服务列表起始偏移量,默认0。
|
|
2524
2581
|
*/
|
|
2525
|
-
|
|
2526
|
-
|
|
2527
|
-
/**
|
|
2528
|
-
* 后端服务的外网 IP
|
|
2529
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2530
|
-
*/
|
|
2531
|
-
PublicIpAddresses: Array<string>
|
|
2532
|
-
|
|
2533
|
-
/**
|
|
2534
|
-
* 后端服务的内网 IP
|
|
2535
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2536
|
-
*/
|
|
2537
|
-
PrivateIpAddresses: Array<string>
|
|
2538
|
-
|
|
2539
|
-
/**
|
|
2540
|
-
* 后端服务的实例名称
|
|
2541
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2542
|
-
*/
|
|
2543
|
-
InstanceName: string
|
|
2544
|
-
|
|
2545
|
-
/**
|
|
2546
|
-
* 后端服务被绑定的时间
|
|
2547
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2548
|
-
*/
|
|
2549
|
-
RegisteredTime: string
|
|
2582
|
+
Offset?: number
|
|
2550
2583
|
|
|
2551
2584
|
/**
|
|
2552
|
-
*
|
|
2553
|
-
|
|
2585
|
+
* 查询跨域2.0版本云联网后端子机和网卡服务列表条件,详细的过滤条件如下:
|
|
2586
|
+
<li> vpc-id - String - 是否必填:否 - (过滤条件)按照 本地私有网络ID,即负载均衡的VpcId 过滤,如:"vpc-12345678"。</li>
|
|
2587
|
+
<li> ip - String - 是否必填:否 - (过滤条件)按照 后端服务ip 过滤,如:"192.168.0.1"。</li>
|
|
2588
|
+
<li> listener-id - String - 是否必填:否 - (过滤条件)按照 监听器ID 过滤,如:"lbl-12345678"。</li>
|
|
2589
|
+
<li> location-id - String - 是否必填:否 - (过滤条件)按照 七层监听器规则ID 过滤,如:"loc-12345678"。</li>
|
|
2554
2590
|
*/
|
|
2555
|
-
|
|
2591
|
+
Filters?: Array<Filter>
|
|
2556
2592
|
}
|
|
2557
2593
|
|
|
2558
2594
|
/**
|
|
@@ -4528,7 +4564,7 @@ export interface DescribeExclusiveClustersRequest {
|
|
|
4528
4564
|
*/
|
|
4529
4565
|
export interface ModifyLoadBalancerSlaRequest {
|
|
4530
4566
|
/**
|
|
4531
|
-
*
|
|
4567
|
+
* 负载均衡实例信息
|
|
4532
4568
|
*/
|
|
4533
4569
|
LoadBalancerSla: Array<SlaUpdateParam>
|
|
4534
4570
|
}
|
|
@@ -4852,6 +4888,48 @@ export interface DescribeLBListenersResponse {
|
|
|
4852
4888
|
RequestId?: string
|
|
4853
4889
|
}
|
|
4854
4890
|
|
|
4891
|
+
/**
|
|
4892
|
+
* 目标组信息
|
|
4893
|
+
*/
|
|
4894
|
+
export interface TargetGroupInfo {
|
|
4895
|
+
/**
|
|
4896
|
+
* 目标组ID
|
|
4897
|
+
*/
|
|
4898
|
+
TargetGroupId: string
|
|
4899
|
+
|
|
4900
|
+
/**
|
|
4901
|
+
* 目标组的vpcid
|
|
4902
|
+
*/
|
|
4903
|
+
VpcId: string
|
|
4904
|
+
|
|
4905
|
+
/**
|
|
4906
|
+
* 目标组的名字
|
|
4907
|
+
*/
|
|
4908
|
+
TargetGroupName: string
|
|
4909
|
+
|
|
4910
|
+
/**
|
|
4911
|
+
* 目标组的默认端口
|
|
4912
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4913
|
+
*/
|
|
4914
|
+
Port: number
|
|
4915
|
+
|
|
4916
|
+
/**
|
|
4917
|
+
* 目标组的创建时间
|
|
4918
|
+
*/
|
|
4919
|
+
CreatedTime: string
|
|
4920
|
+
|
|
4921
|
+
/**
|
|
4922
|
+
* 目标组的修改时间
|
|
4923
|
+
*/
|
|
4924
|
+
UpdatedTime: string
|
|
4925
|
+
|
|
4926
|
+
/**
|
|
4927
|
+
* 关联到的规则数组
|
|
4928
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4929
|
+
*/
|
|
4930
|
+
AssociatedRule: Array<AssociationItem>
|
|
4931
|
+
}
|
|
4932
|
+
|
|
4855
4933
|
/**
|
|
4856
4934
|
* DeleteListener返回参数结构体
|
|
4857
4935
|
*/
|
|
@@ -5074,45 +5152,58 @@ export interface AssociationItem {
|
|
|
5074
5152
|
}
|
|
5075
5153
|
|
|
5076
5154
|
/**
|
|
5077
|
-
*
|
|
5155
|
+
* 监听器绑定的后端服务的详细信息
|
|
5078
5156
|
*/
|
|
5079
|
-
export interface
|
|
5157
|
+
export interface Backend {
|
|
5080
5158
|
/**
|
|
5081
|
-
*
|
|
5159
|
+
* 后端服务的类型,可取:CVM、ENI
|
|
5082
5160
|
*/
|
|
5083
|
-
|
|
5161
|
+
Type: string
|
|
5084
5162
|
|
|
5085
5163
|
/**
|
|
5086
|
-
*
|
|
5164
|
+
* 后端服务的唯一 ID,如 ins-abcd1234
|
|
5087
5165
|
*/
|
|
5088
|
-
|
|
5166
|
+
InstanceId: string
|
|
5089
5167
|
|
|
5090
5168
|
/**
|
|
5091
|
-
*
|
|
5169
|
+
* 后端服务的监听端口
|
|
5092
5170
|
*/
|
|
5093
|
-
|
|
5171
|
+
Port: number
|
|
5094
5172
|
|
|
5095
5173
|
/**
|
|
5096
|
-
|
|
5174
|
+
* 后端服务的转发权重,取值范围:[0, 100],默认为 10。
|
|
5175
|
+
*/
|
|
5176
|
+
Weight: number
|
|
5177
|
+
|
|
5178
|
+
/**
|
|
5179
|
+
* 后端服务的外网 IP
|
|
5097
5180
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5098
5181
|
*/
|
|
5099
|
-
|
|
5182
|
+
PublicIpAddresses: Array<string>
|
|
5100
5183
|
|
|
5101
5184
|
/**
|
|
5102
|
-
|
|
5103
|
-
|
|
5104
|
-
|
|
5185
|
+
* 后端服务的内网 IP
|
|
5186
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5187
|
+
*/
|
|
5188
|
+
PrivateIpAddresses: Array<string>
|
|
5105
5189
|
|
|
5106
5190
|
/**
|
|
5107
|
-
|
|
5108
|
-
|
|
5109
|
-
|
|
5191
|
+
* 后端服务的实例名称
|
|
5192
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5193
|
+
*/
|
|
5194
|
+
InstanceName: string
|
|
5110
5195
|
|
|
5111
5196
|
/**
|
|
5112
|
-
*
|
|
5197
|
+
* 后端服务被绑定的时间
|
|
5113
5198
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5114
5199
|
*/
|
|
5115
|
-
|
|
5200
|
+
RegisteredTime: string
|
|
5201
|
+
|
|
5202
|
+
/**
|
|
5203
|
+
* 弹性网卡唯一ID,如 eni-1234abcd
|
|
5204
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5205
|
+
*/
|
|
5206
|
+
EniId: string
|
|
5116
5207
|
}
|
|
5117
5208
|
|
|
5118
5209
|
/**
|
|
@@ -4382,19 +4382,19 @@ export interface MediaMetaData {
|
|
|
4382
4382
|
*/
|
|
4383
4383
|
export interface ExternalMediaInfo {
|
|
4384
4384
|
/**
|
|
4385
|
-
|
|
4386
|
-
|
|
4387
|
-
|
|
4385
|
+
* 目前仅支持绑定 COS 桶的媒体,请填写存储对象 Key 值,例如:`example-folder/example.mp4`。
|
|
4386
|
+
*/
|
|
4387
|
+
MediaKey: string
|
|
4388
4388
|
|
|
4389
|
-
|
|
4390
|
-
|
|
4391
|
-
|
|
4389
|
+
/**
|
|
4390
|
+
* 该字段废弃,请勿使用。
|
|
4391
|
+
*/
|
|
4392
|
+
Definition?: number
|
|
4392
4393
|
|
|
4393
4394
|
/**
|
|
4394
|
-
|
|
4395
|
-
|
|
4396
|
-
|
|
4397
|
-
MediaKey: string
|
|
4395
|
+
* 媒资挂载的存储 Id。
|
|
4396
|
+
*/
|
|
4397
|
+
StorageId?: string
|
|
4398
4398
|
}
|
|
4399
4399
|
|
|
4400
4400
|
/**
|
|
@@ -1654,6 +1654,36 @@ export interface UserInfo {
|
|
|
1654
1654
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1655
1655
|
*/
|
|
1656
1656
|
DisplayName: string
|
|
1657
|
+
|
|
1658
|
+
/**
|
|
1659
|
+
* 用户名称。
|
|
1660
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1661
|
+
*/
|
|
1662
|
+
UserName: string
|
|
1663
|
+
|
|
1664
|
+
/**
|
|
1665
|
+
* 用户手机号。
|
|
1666
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1667
|
+
*/
|
|
1668
|
+
Phone: string
|
|
1669
|
+
|
|
1670
|
+
/**
|
|
1671
|
+
* 邮箱地址。
|
|
1672
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1673
|
+
*/
|
|
1674
|
+
Email: string
|
|
1675
|
+
|
|
1676
|
+
/**
|
|
1677
|
+
* 用户状态。
|
|
1678
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1679
|
+
*/
|
|
1680
|
+
Status: string
|
|
1681
|
+
|
|
1682
|
+
/**
|
|
1683
|
+
* 数据来源。
|
|
1684
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1685
|
+
*/
|
|
1686
|
+
DataSource: string
|
|
1657
1687
|
}
|
|
1658
1688
|
|
|
1659
1689
|
/**
|