tencentcloud-sdk-nodejs 4.0.330 → 4.0.331

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.
Files changed (77) hide show
  1. package/CHANGELOG.md +349 -0
  2. package/SERVICE_CHANGELOG.md +597 -23
  3. package/package.json +1 -1
  4. package/products.md +20 -19
  5. package/src/common/sdk_version.ts +1 -1
  6. package/src/services/apigateway/v20180808/apigateway_client.ts +5 -5
  7. package/src/services/apigateway/v20180808/apigateway_models.ts +116 -86
  8. package/src/services/car/index.ts +5 -0
  9. package/src/services/car/v20220110/car_client.ts +67 -0
  10. package/src/services/car/v20220110/car_models.ts +106 -0
  11. package/src/services/car/v20220110/index.ts +6 -0
  12. package/src/services/cdb/v20170320/cdb_models.ts +1 -1
  13. package/src/services/cdn/v20180606/cdn_client.ts +3 -1
  14. package/src/services/cdn/v20180606/cdn_models.ts +67 -9
  15. package/src/services/ckafka/v20190819/ckafka_models.ts +12 -2
  16. package/src/services/cls/v20201016/cls_models.ts +12 -0
  17. package/src/services/cvm/v20170312/cvm_models.ts +17 -0
  18. package/src/services/dbbrain/v20210527/dbbrain_client.ts +145 -34
  19. package/src/services/dbbrain/v20210527/dbbrain_models.ts +646 -91
  20. package/src/services/dlc/v20210125/dlc_models.ts +24 -1
  21. package/src/services/domain/v20180808/domain_client.ts +15 -2
  22. package/src/services/domain/v20180808/domain_models.ts +202 -30
  23. package/src/services/ess/v20201111/ess_models.ts +4 -3
  24. package/src/services/essbasic/v20210526/essbasic_models.ts +1 -1
  25. package/src/services/index.ts +1 -0
  26. package/src/services/mongodb/v20190725/mongodb_models.ts +2 -2
  27. package/src/services/monitor/v20180724/monitor_models.ts +11 -6
  28. package/src/services/rce/v20201103/rce_models.ts +11 -0
  29. package/src/services/redis/v20180412/redis_client.ts +37 -13
  30. package/src/services/redis/v20180412/redis_models.ts +113 -53
  31. package/src/services/vod/v20180717/vod_models.ts +22 -2
  32. package/src/services/waf/v20180125/waf_client.ts +14 -0
  33. package/src/services/waf/v20180125/waf_models.ts +73 -2
  34. package/tencentcloud/common/sdk_version.d.ts +1 -1
  35. package/tencentcloud/common/sdk_version.js +1 -1
  36. package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +5 -5
  37. package/tencentcloud/services/apigateway/v20180808/apigateway_client.js +5 -5
  38. package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +110 -86
  39. package/tencentcloud/services/car/index.d.ts +6 -0
  40. package/tencentcloud/services/car/index.js +7 -0
  41. package/tencentcloud/services/car/v20220110/car_client.d.ts +22 -0
  42. package/tencentcloud/services/car/v20220110/car_client.js +49 -0
  43. package/tencentcloud/services/car/v20220110/car_models.d.ts +78 -0
  44. package/tencentcloud/services/car/v20220110/car_models.js +18 -0
  45. package/tencentcloud/services/car/v20220110/index.d.ts +6 -0
  46. package/tencentcloud/services/car/v20220110/index.js +9 -0
  47. package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +1 -1
  48. package/tencentcloud/services/cdn/v20180606/cdn_models.d.ts +57 -8
  49. package/tencentcloud/services/ckafka/v20190819/ckafka_models.d.ts +10 -2
  50. package/tencentcloud/services/cls/v20201016/cls_models.d.ts +10 -0
  51. package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +14 -0
  52. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +47 -11
  53. package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +69 -15
  54. package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +534 -69
  55. package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +20 -1
  56. package/tencentcloud/services/domain/v20180808/domain_client.d.ts +5 -1
  57. package/tencentcloud/services/domain/v20180808/domain_client.js +6 -0
  58. package/tencentcloud/services/domain/v20180808/domain_models.d.ts +179 -30
  59. package/tencentcloud/services/ess/v20201111/ess_models.d.ts +3 -2
  60. package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +1 -1
  61. package/tencentcloud/services/index.d.ts +1 -0
  62. package/tencentcloud/services/index.js +2 -0
  63. package/tencentcloud/services/mongodb/v20190725/mongodb_models.d.ts +2 -2
  64. package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +10 -5
  65. package/tencentcloud/services/rce/v20201103/rce_models.d.ts +9 -0
  66. package/tencentcloud/services/redis/v20180412/redis_client.d.ts +13 -5
  67. package/tencentcloud/services/redis/v20180412/redis_client.js +18 -6
  68. package/tencentcloud/services/redis/v20180412/redis_models.d.ts +96 -44
  69. package/tencentcloud/services/vod/v20180717/vod_models.d.ts +18 -2
  70. package/tencentcloud/services/waf/v20180125/waf_client.d.ts +5 -1
  71. package/tencentcloud/services/waf/v20180125/waf_client.js +6 -0
  72. package/tencentcloud/services/waf/v20180125/waf_models.d.ts +62 -2
  73. package/test/car.v20220110.test.js +51 -0
  74. package/test/dbbrain.v20210527.test.js +100 -10
  75. package/test/domain.v20180808.test.js +10 -0
  76. package/test/redis.v20180412.test.js +24 -4
  77. package/test/waf.v20180125.test.js +10 -0
@@ -249,7 +249,7 @@ export interface DeleteUsagePlanResponse {
249
249
  * 删除操作是否成功。
250
250
  注意:此字段可能返回 null,表示取不到有效值。
251
251
  */
252
- Result?: boolean
252
+ Result: boolean
253
253
 
254
254
  /**
255
255
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -265,7 +265,7 @@ export interface DisableApiKeyResponse {
265
265
  * 禁用密钥操作是否成功。
266
266
  注意:此字段可能返回 null,表示取不到有效值。
267
267
  */
268
- Result?: boolean
268
+ Result: boolean
269
269
 
270
270
  /**
271
271
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -280,7 +280,7 @@ export interface DescribeApiResponse {
280
280
  /**
281
281
  * API 详情。
282
282
  */
283
- Result?: ApiInfo
283
+ Result: ApiInfo
284
284
 
285
285
  /**
286
286
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -426,7 +426,7 @@ export interface DescribeServiceEnvironmentListResponse {
426
426
  * 服务绑定环境详情。
427
427
  注意:此字段可能返回 null,表示取不到有效值。
428
428
  */
429
- Result?: ServiceEnvironmentSet
429
+ Result: ServiceEnvironmentSet
430
430
 
431
431
  /**
432
432
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -988,7 +988,7 @@ export interface DescribeUsagePlansStatusResponse {
988
988
  * 使用计划列表。
989
989
  注意:此字段可能返回 null,表示取不到有效值。
990
990
  */
991
- Result?: UsagePlansStatus
991
+ Result: UsagePlansStatus
992
992
 
993
993
  /**
994
994
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1026,7 +1026,7 @@ export interface HealthCheckConf {
1026
1026
  */
1027
1027
  export interface DeleteUpstreamRequest {
1028
1028
  /**
1029
- * 待删除的VPC通道唯一ID
1029
+ * 待删除的后端通道ID
1030
1030
  */
1031
1031
  UpstreamId: string
1032
1032
  }
@@ -1105,27 +1105,32 @@ export interface UnbindApiAppResponse {
1105
1105
  */
1106
1106
  export interface ModifyUpstreamRequest {
1107
1107
  /**
1108
- * VPC通道唯一ID
1108
+ * 后端通道唯一ID
1109
1109
  */
1110
1110
  UpstreamId: string
1111
1111
 
1112
1112
  /**
1113
- * VPC通道名字
1113
+ * 后端通道名字
1114
1114
  */
1115
1115
  UpstreamName?: string
1116
1116
 
1117
1117
  /**
1118
- * VPC通道描述
1118
+ * 后端通道描述
1119
1119
  */
1120
1120
  UpstreamDescription?: string
1121
1121
 
1122
1122
  /**
1123
- * 后端协议,HTTP, HTTPS其中之一
1123
+ * 后端协议,取值范围:HTTP, HTTPS
1124
1124
  */
1125
1125
  Scheme?: string
1126
1126
 
1127
1127
  /**
1128
- * 负载均衡算法目前支持ROUND_ROBIN
1128
+ * 后端访问类型,取值范围:IP_PORT, K8S
1129
+ */
1130
+ UpstreamType?: string
1131
+
1132
+ /**
1133
+ * 负载均衡算法,取值范围:ROUND_ROBIN
1129
1134
  */
1130
1135
  Algorithm?: string
1131
1136
 
@@ -1140,7 +1145,7 @@ export interface ModifyUpstreamRequest {
1140
1145
  Retries?: number
1141
1146
 
1142
1147
  /**
1143
- * 请求到后端的,host头
1148
+ * 网关转发到后端的 Host 请求头
1144
1149
  */
1145
1150
  UpstreamHost?: string
1146
1151
 
@@ -1150,7 +1155,12 @@ export interface ModifyUpstreamRequest {
1150
1155
  Nodes?: Array<UpstreamNode>
1151
1156
 
1152
1157
  /**
1153
- * k8s服务配置
1158
+ * 健康检查配置,目前只支持VPC通道
1159
+ */
1160
+ HealthChecker?: UpstreamHealthChecker
1161
+
1162
+ /**
1163
+ * 容器服务配置
1154
1164
  */
1155
1165
  K8sService?: Array<K8sService>
1156
1166
  }
@@ -1163,7 +1173,7 @@ export interface DescribeApiUsagePlanResponse {
1163
1173
  * api绑定使用计划列表。
1164
1174
  注意:此字段可能返回 null,表示取不到有效值。
1165
1175
  */
1166
- Result?: ApiUsagePlanSet
1176
+ Result: ApiUsagePlanSet
1167
1177
 
1168
1178
  /**
1169
1179
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1216,17 +1226,17 @@ export interface DescribePluginResponse {
1216
1226
  */
1217
1227
  export interface DescribeUpstreamBindApisRequest {
1218
1228
  /**
1219
- * 分页
1229
+ * 分页大小
1220
1230
  */
1221
1231
  Limit: number
1222
1232
 
1223
1233
  /**
1224
- * 分页
1234
+ * 分页起始位置
1225
1235
  */
1226
1236
  Offset: number
1227
1237
 
1228
1238
  /**
1229
- * vpc通道Id
1239
+ * 后端通道ID
1230
1240
  */
1231
1241
  UpstreamId: string
1232
1242
 
@@ -1347,7 +1357,7 @@ export interface DescribeApiEnvironmentStrategyRequest {
1347
1357
  }
1348
1358
 
1349
1359
  /**
1350
- * VPC通道主动健康检查的请求头配置
1360
+ * 后端通道主动健康检查的请求头配置
1351
1361
  */
1352
1362
  export type UpstreamHealthCheckerReqHeaders = null
1353
1363
 
@@ -1679,7 +1689,7 @@ export interface DescribeServiceResponse {
1679
1689
  DeploymentType: string
1680
1690
 
1681
1691
  /**
1682
- * 特殊用途
1692
+ * 特殊用途, NULL和DEFAULT表示无特殊用途,其他用途如HTTP_DNS等
1683
1693
  注意:此字段可能返回 null,表示取不到有效值。
1684
1694
  */
1685
1695
  SpecialUse: string
@@ -1751,7 +1761,7 @@ export interface BindEnvironmentResponse {
1751
1761
  * 绑定操作是否成功。
1752
1762
  注意:此字段可能返回 null,表示取不到有效值。
1753
1763
  */
1754
- Result?: boolean
1764
+ Result: boolean
1755
1765
 
1756
1766
  /**
1757
1767
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -1975,7 +1985,7 @@ export interface UnBindIPStrategyResponse {
1975
1985
  * 解绑操作是否成功。
1976
1986
  注意:此字段可能返回 null,表示取不到有效值。
1977
1987
  */
1978
- Result?: boolean
1988
+ Result: boolean
1979
1989
 
1980
1990
  /**
1981
1991
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2026,7 +2036,7 @@ export interface BindIPStrategyResponse {
2026
2036
  * 绑定操作是否成功。
2027
2037
  注意:此字段可能返回 null,表示取不到有效值。
2028
2038
  */
2029
- Result?: boolean
2039
+ Result: boolean
2030
2040
 
2031
2041
  /**
2032
2042
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2194,7 +2204,7 @@ export interface DescribeIPStrategyResponse {
2194
2204
  * IP策略详情。
2195
2205
  注意:此字段可能返回 null,表示取不到有效值。
2196
2206
  */
2197
- Result?: IPStrategy
2207
+ Result: IPStrategy
2198
2208
 
2199
2209
  /**
2200
2210
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2343,7 +2353,7 @@ export interface ModifyIPStrategyResponse {
2343
2353
  * 修改操作是否成功。
2344
2354
  注意:此字段可能返回 null,表示取不到有效值。
2345
2355
  */
2346
- Result?: boolean
2356
+ Result: boolean
2347
2357
 
2348
2358
  /**
2349
2359
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2352,7 +2362,7 @@ export interface ModifyIPStrategyResponse {
2352
2362
  }
2353
2363
 
2354
2364
  /**
2355
- * 查询vpc通道返回信息
2365
+ * 查询后端通道返回信息
2356
2366
  */
2357
2367
  export interface DescribeUpstreamInfo {
2358
2368
  /**
@@ -2446,7 +2456,7 @@ export interface ModifyUsagePlanResponse {
2446
2456
  * 使用计划详情。
2447
2457
  注意:此字段可能返回 null,表示取不到有效值。
2448
2458
  */
2449
- Result?: UsagePlanInfo
2459
+ Result: UsagePlanInfo
2450
2460
 
2451
2461
  /**
2452
2462
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2462,7 +2472,7 @@ export interface CreateUsagePlanResponse {
2462
2472
  * 使用计划详情。
2463
2473
  注意:此字段可能返回 null,表示取不到有效值。
2464
2474
  */
2465
- Result?: UsagePlanInfo
2475
+ Result: UsagePlanInfo
2466
2476
 
2467
2477
  /**
2468
2478
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2540,7 +2550,7 @@ export interface DeleteApiKeyResponse {
2540
2550
  * 删除操作是否成功。
2541
2551
  注意:此字段可能返回 null,表示取不到有效值。
2542
2552
  */
2543
- Result?: boolean
2553
+ Result: boolean
2544
2554
 
2545
2555
  /**
2546
2556
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2549,41 +2559,41 @@ export interface DeleteApiKeyResponse {
2549
2559
  }
2550
2560
 
2551
2561
  /**
2552
- * VPC通道信息集合
2562
+ * 后端通道详细信息
2553
2563
  */
2554
2564
  export interface UpstreamInfo {
2555
2565
  /**
2556
- * VPC通道唯一ID
2566
+ * 后端通道唯一ID
2557
2567
  */
2558
2568
  UpstreamId: string
2559
2569
 
2560
2570
  /**
2561
- * VPC通道名字
2571
+ * 后端通道名字
2562
2572
  */
2563
2573
  UpstreamName: string
2564
2574
 
2565
2575
  /**
2566
- * VPC通道描述
2576
+ * 后端通道描述
2567
2577
  */
2568
2578
  UpstreamDescription: string
2569
2579
 
2570
2580
  /**
2571
- * 写意
2581
+ * 后端协议,取值范围:HTTP, HTTPS
2572
2582
  */
2573
2583
  Scheme: string
2574
2584
 
2575
2585
  /**
2576
- * 负载均衡算法
2586
+ * 负载均衡算法,取值范围:ROUND_ROBIN
2577
2587
  */
2578
2588
  Algorithm: string
2579
2589
 
2580
2590
  /**
2581
- * vpc唯一ID
2591
+ * VPC唯一ID
2582
2592
  */
2583
2593
  UniqVpcId: string
2584
2594
 
2585
2595
  /**
2586
- * 请求重拾次数
2596
+ * 请求重试次数
2587
2597
  */
2588
2598
  Retries: number
2589
2599
 
@@ -2610,18 +2620,18 @@ export interface UpstreamInfo {
2610
2620
  HealthChecker: UpstreamHealthChecker
2611
2621
 
2612
2622
  /**
2613
- * Upstream的类型
2623
+ * 后端的类型,取值范围:IP_PORT, K8S
2614
2624
  */
2615
2625
  UpstreamType: string
2616
2626
 
2617
2627
  /**
2618
- * k8s服务配置
2628
+ * K8S容器服务配置
2619
2629
  注意:此字段可能返回 null,表示取不到有效值。
2620
2630
  */
2621
2631
  K8sServices: Array<K8sService>
2622
2632
 
2623
2633
  /**
2624
- * vpc通道的Host
2634
+ * 网关转发给后端的Host请求头
2625
2635
  注意:此字段可能返回 null,表示取不到有效值。
2626
2636
  */
2627
2637
  UpstreamHost: string
@@ -2739,7 +2749,7 @@ export interface DescribeLogSearchResponse {
2739
2749
  /**
2740
2750
  * 获取更多检索结果的游标,值为""表示无后续结果
2741
2751
  */
2742
- ConText?: string
2752
+ ConText: string
2743
2753
 
2744
2754
  /**
2745
2755
  * 由0或多条日志组成,每条日志格式如下:
@@ -2771,12 +2781,12 @@ err_msg: 错误信息。
2771
2781
  tcp_rtt: 客户端 TCP 连接信息,RTT(Round Trip Time)由三部分组成:链路的传播时间(propagation delay)、末端系统的处理时间、路由器缓存中的排队和处理时间(queuing delay)。
2772
2782
  req_id:请求id。
2773
2783
  */
2774
- LogSet?: Array<string>
2784
+ LogSet: Array<string>
2775
2785
 
2776
2786
  /**
2777
2787
  * 单次搜索返回的日志条数,TotalCount <= Limit
2778
2788
  */
2779
- TotalCount?: number
2789
+ TotalCount: number
2780
2790
 
2781
2791
  /**
2782
2792
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -2987,7 +2997,7 @@ export interface DemoteServiceUsagePlanResponse {
2987
2997
  * 降级操作是否成功。
2988
2998
  注意:此字段可能返回 null,表示取不到有效值。
2989
2999
  */
2990
- Result?: boolean
3000
+ Result: boolean
2991
3001
 
2992
3002
  /**
2993
3003
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3018,7 +3028,7 @@ export interface EnableApiKeyResponse {
3018
3028
  * 启动密钥操作是否成功。
3019
3029
  注意:此字段可能返回 null,表示取不到有效值。
3020
3030
  */
3021
- Result?: boolean
3031
+ Result: boolean
3022
3032
 
3023
3033
  /**
3024
3034
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3044,7 +3054,7 @@ export interface UnReleaseServiceResponse {
3044
3054
  * 下线操作是否成功。
3045
3055
  注意:此字段可能返回 null,表示取不到有效值。
3046
3056
  */
3047
- Result?: boolean
3057
+ Result: boolean
3048
3058
 
3049
3059
  /**
3050
3060
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3127,7 +3137,7 @@ export interface DescribeUsagePlanSecretIdsResponse {
3127
3137
  * 使用计划绑定的密钥列表。
3128
3138
  注意:此字段可能返回 null,表示取不到有效值。
3129
3139
  */
3130
- Result?: UsagePlanBindSecretStatus
3140
+ Result: UsagePlanBindSecretStatus
3131
3141
 
3132
3142
  /**
3133
3143
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3145,7 +3155,7 @@ export interface CreatePluginRequest {
3145
3155
  PluginName: string
3146
3156
 
3147
3157
  /**
3148
- * 插件类型。目前支持IPControl, TrafficControl, Cors, CustomReq, CustomAuth,Routing,TrafficControlByParameter。
3158
+ * 插件类型。目前支持IPControl, TrafficControl, Cors, CustomReq, CustomAuth,Routing,TrafficControlByParameter, CircuitBreaker, ProxyCache
3149
3159
  */
3150
3160
  PluginType: string
3151
3161
 
@@ -3158,6 +3168,11 @@ export interface CreatePluginRequest {
3158
3168
  * 插件描述,限定200字以内。
3159
3169
  */
3160
3170
  Description?: string
3171
+
3172
+ /**
3173
+ * 标签
3174
+ */
3175
+ Tags?: Array<Tag>
3161
3176
  }
3162
3177
 
3163
3178
  /**
@@ -3349,7 +3364,7 @@ export interface DescribeIPStrategyApisStatusResponse {
3349
3364
  * 环境绑定API列表。
3350
3365
  注意:此字段可能返回 null,表示取不到有效值。
3351
3366
  */
3352
- Result?: IPStrategyApiStatus
3367
+ Result: IPStrategyApiStatus
3353
3368
 
3354
3369
  /**
3355
3370
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -3463,7 +3478,7 @@ export interface DescribeApiKeyResponse {
3463
3478
  * 密钥详情。
3464
3479
  注意:此字段可能返回 null,表示取不到有效值。
3465
3480
  */
3466
- Result?: ApiKey
3481
+ Result: ApiKey
3467
3482
 
3468
3483
  /**
3469
3484
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4336,7 +4351,7 @@ export interface DescribeServiceEnvironmentReleaseHistoryResponse {
4336
4351
  * 服务发布历史。
4337
4352
  注意:此字段可能返回 null,表示取不到有效值。
4338
4353
  */
4339
- Result?: ServiceReleaseHistory
4354
+ Result: ServiceReleaseHistory
4340
4355
 
4341
4356
  /**
4342
4357
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4714,12 +4729,12 @@ export interface ServiceUsagePlanSet {
4714
4729
  */
4715
4730
  export interface CreateUpstreamRequest {
4716
4731
  /**
4717
- * 后端协议,HTTP, HTTPS其中之一
4732
+ * 后端协议,取值范围:HTTP, HTTPS
4718
4733
  */
4719
4734
  Scheme: string
4720
4735
 
4721
4736
  /**
4722
- * 负载均衡算法目前支持ROUND_ROBIN
4737
+ * 负载均衡算法,取值范围:ROUND-ROBIN
4723
4738
  */
4724
4739
  Algorithm: string
4725
4740
 
@@ -4729,22 +4744,27 @@ export interface CreateUpstreamRequest {
4729
4744
  UniqVpcId: string
4730
4745
 
4731
4746
  /**
4732
- * VPC通道名字
4747
+ * 后端通道名字
4733
4748
  */
4734
4749
  UpstreamName?: string
4735
4750
 
4736
4751
  /**
4737
- * VPC通道描述
4752
+ * 后端通道描述
4738
4753
  */
4739
4754
  UpstreamDescription?: string
4740
4755
 
4756
+ /**
4757
+ * 后端访问类型,取值范围:IP_PORT, K8S
4758
+ */
4759
+ UpstreamType?: string
4760
+
4741
4761
  /**
4742
4762
  * 请求重试次数,默认3次
4743
4763
  */
4744
4764
  Retries?: number
4745
4765
 
4746
4766
  /**
4747
- * 请求到后端的,host头
4767
+ * 网关转发到后端的Host请求头
4748
4768
  */
4749
4769
  UpstreamHost?: string
4750
4770
 
@@ -4754,7 +4774,17 @@ export interface CreateUpstreamRequest {
4754
4774
  Nodes?: Array<UpstreamNode>
4755
4775
 
4756
4776
  /**
4757
- * k8s服务的配置
4777
+ * 标签
4778
+ */
4779
+ Tags?: Array<Tag>
4780
+
4781
+ /**
4782
+ * 健康检查配置,目前只支持VPC通道
4783
+ */
4784
+ HealthChecker?: UpstreamHealthChecker
4785
+
4786
+ /**
4787
+ * K8S容器服务的配置
4758
4788
  */
4759
4789
  K8sService?: Array<K8sService>
4760
4790
  }
@@ -4767,7 +4797,7 @@ export interface ModifyServiceEnvironmentStrategyResponse {
4767
4797
  * 修改操作是否成功。
4768
4798
  注意:此字段可能返回 null,表示取不到有效值。
4769
4799
  */
4770
- Result?: boolean
4800
+ Result: boolean
4771
4801
 
4772
4802
  /**
4773
4803
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4783,7 +4813,7 @@ export interface UpdateApiKeyResponse {
4783
4813
  * 更换后的密钥详情。
4784
4814
  注意:此字段可能返回 null,表示取不到有效值。
4785
4815
  */
4786
- Result?: ApiKey
4816
+ Result: ApiKey
4787
4817
 
4788
4818
  /**
4789
4819
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -4828,7 +4858,7 @@ export interface DescribeApisStatusResponse {
4828
4858
  /**
4829
4859
  * API 详情列表。
4830
4860
  */
4831
- Result?: ApisStatus
4861
+ Result: ApisStatus
4832
4862
 
4833
4863
  /**
4834
4864
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5219,7 +5249,7 @@ export interface CreateApiKeyResponse {
5219
5249
  * 新增的密钥详情。
5220
5250
  注意:此字段可能返回 null,表示取不到有效值。
5221
5251
  */
5222
- Result?: ApiKey
5252
+ Result: ApiKey
5223
5253
 
5224
5254
  /**
5225
5255
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5232,17 +5262,17 @@ export interface CreateApiKeyResponse {
5232
5262
  */
5233
5263
  export interface DescribeUpstreamsRequest {
5234
5264
  /**
5235
- * 分页
5265
+ * 分页大小
5236
5266
  */
5237
5267
  Limit: number
5238
5268
 
5239
5269
  /**
5240
- * 分页
5270
+ * 分页起始位置
5241
5271
  */
5242
5272
  Offset: number
5243
5273
 
5244
5274
  /**
5245
- * 过滤条件
5275
+ * 过滤条件,支持后端通道ID(UpstreamId)、后端通道名字(UpstreamName)过滤查询
5246
5276
  */
5247
5277
  Filters?: Array<Filter>
5248
5278
  }
@@ -5409,7 +5439,7 @@ export interface VpcConfig {
5409
5439
  */
5410
5440
  export interface CreateUpstreamResponse {
5411
5441
  /**
5412
- * 创建返回的唯一id
5442
+ * 创建返回的唯一ID
5413
5443
  注意:此字段可能返回 null,表示取不到有效值。
5414
5444
  */
5415
5445
  UpstreamId: string
@@ -5703,7 +5733,7 @@ export interface GenerateApiDocumentResponse {
5703
5733
  /**
5704
5734
  * api文档&sdk链接。
5705
5735
  */
5706
- Result?: DocumentSDK
5736
+ Result: DocumentSDK
5707
5737
 
5708
5738
  /**
5709
5739
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5719,7 +5749,7 @@ export interface DescribeUsagePlanEnvironmentsResponse {
5719
5749
  * 使用计划绑定详情。
5720
5750
  注意:此字段可能返回 null,表示取不到有效值。
5721
5751
  */
5722
- Result?: UsagePlanEnvironmentStatus
5752
+ Result: UsagePlanEnvironmentStatus
5723
5753
 
5724
5754
  /**
5725
5755
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5790,7 +5820,7 @@ export interface ModifyApiEnvironmentStrategyResponse {
5790
5820
  * 修改操作是否成功。
5791
5821
  注意:此字段可能返回 null,表示取不到有效值。
5792
5822
  */
5793
- Result?: boolean
5823
+ Result: boolean
5794
5824
 
5795
5825
  /**
5796
5826
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -5905,7 +5935,7 @@ export interface UnBindEnvironmentResponse {
5905
5935
  * 解绑操作是否成功。
5906
5936
  注意:此字段可能返回 null,表示取不到有效值。
5907
5937
  */
5908
- Result?: boolean
5938
+ Result: boolean
5909
5939
 
5910
5940
  /**
5911
5941
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6109,7 +6139,7 @@ export interface DescribeApiEnvironmentStrategyResponse {
6109
6139
  * api绑定策略详情
6110
6140
  注意:此字段可能返回 null,表示取不到有效值。
6111
6141
  */
6112
- Result?: ApiEnvironmentStrategyStataus
6142
+ Result: ApiEnvironmentStrategyStataus
6113
6143
 
6114
6144
  /**
6115
6145
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6223,7 +6253,7 @@ export interface DeleteIPStrategyResponse {
6223
6253
  * 删除操作是否成功。
6224
6254
  注意:此字段可能返回 null,表示取不到有效值。
6225
6255
  */
6226
- Result?: boolean
6256
+ Result: boolean
6227
6257
 
6228
6258
  /**
6229
6259
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6378,7 +6408,7 @@ export interface DescribeUsagePlanResponse {
6378
6408
  * 使用计划详情。
6379
6409
  注意:此字段可能返回 null,表示取不到有效值。
6380
6410
  */
6381
- Result?: UsagePlanInfo
6411
+ Result: UsagePlanInfo
6382
6412
 
6383
6413
  /**
6384
6414
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6466,7 +6496,7 @@ export interface BindEnvironmentRequest {
6466
6496
  */
6467
6497
  export interface ModifyUpstreamResponse {
6468
6498
  /**
6469
- * 返回修改后的vpc通道信息
6499
+ * 返回修改后的后端通道信息
6470
6500
  注意:此字段可能返回 null,表示取不到有效值。
6471
6501
  */
6472
6502
  Result: UpstreamInfo
@@ -6596,7 +6626,7 @@ export interface DescribeServiceReleaseVersionResponse {
6596
6626
  * 服务发布版本列表。
6597
6627
  注意:此字段可能返回 null,表示取不到有效值。
6598
6628
  */
6599
- Result?: ServiceReleaseVersion
6629
+ Result: ServiceReleaseVersion
6600
6630
 
6601
6631
  /**
6602
6632
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -6605,11 +6635,11 @@ export interface DescribeServiceReleaseVersionResponse {
6605
6635
  }
6606
6636
 
6607
6637
  /**
6608
- * VPC通道后端节点元数据
6638
+ * 后端通道后端节点元数据
6609
6639
  */
6610
6640
  export interface UpstreamNode {
6611
6641
  /**
6612
- * IP(domain)
6642
+ * IP或域名
6613
6643
  */
6614
6644
  Host: string
6615
6645
 
@@ -6624,7 +6654,7 @@ export interface UpstreamNode {
6624
6654
  Weight: number
6625
6655
 
6626
6656
  /**
6627
- * vm实例id
6657
+ * CVM实例ID
6628
6658
  注意:此字段可能返回 null,表示取不到有效值。
6629
6659
  */
6630
6660
  VmInstanceId?: string
@@ -6636,19 +6666,19 @@ export interface UpstreamNode {
6636
6666
  Tags?: Array<string>
6637
6667
 
6638
6668
  /**
6639
- * 节点健康状态,创建、编辑时不需要传该参数。OFF:关闭,HEALTHY:健康,UNHEALTHY:异常,NO_DATA:数据未上报
6669
+ * 节点健康状态,创建、编辑时不需要传该参数。OFF:关闭,HEALTHY:健康,UNHEALTHY:异常,NO_DATA:数据未上报。目前只支持VPC通道。
6640
6670
  注意:此字段可能返回 null,表示取不到有效值。
6641
6671
  */
6642
6672
  Healthy?: string
6643
6673
 
6644
6674
  /**
6645
- * k8s服务名字
6675
+ * K8S容器服务名字
6646
6676
  注意:此字段可能返回 null,表示取不到有效值。
6647
6677
  */
6648
6678
  ServiceName?: string
6649
6679
 
6650
6680
  /**
6651
- * k8s命名空间
6681
+ * K8S命名空间
6652
6682
  注意:此字段可能返回 null,表示取不到有效值。
6653
6683
  */
6654
6684
  NameSpace?: string
@@ -6660,7 +6690,7 @@ export interface UpstreamNode {
6660
6690
  ClusterId?: string
6661
6691
 
6662
6692
  /**
6663
- * Node的来源
6693
+ * Node的来源,取值范围:K8S
6664
6694
  注意:此字段可能返回 null,表示取不到有效值。
6665
6695
  */
6666
6696
  Source?: string
@@ -6693,7 +6723,7 @@ export interface ApiAppApiInfos {
6693
6723
  */
6694
6724
  export interface DeleteUpstreamResponse {
6695
6725
  /**
6696
- * 成功删除的vpc通道id
6726
+ * 成功删除的后端通道ID
6697
6727
  注意:此字段可能返回 null,表示取不到有效值。
6698
6728
  */
6699
6729
  UpstreamId: string
@@ -6961,7 +6991,7 @@ export interface DescribeServiceEnvironmentStrategyResponse {
6961
6991
  * 限流策略列表。
6962
6992
  注意:此字段可能返回 null,表示取不到有效值。
6963
6993
  */
6964
- Result?: ServiceEnvironmentStrategyStatus
6994
+ Result: ServiceEnvironmentStrategyStatus
6965
6995
 
6966
6996
  /**
6967
6997
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7239,7 +7269,7 @@ export interface DescribeServiceUsagePlanResponse {
7239
7269
  * 服务绑定使用计划列表。
7240
7270
  注意:此字段可能返回 null,表示取不到有效值。
7241
7271
  */
7242
- Result?: ServiceUsagePlanSet
7272
+ Result: ServiceUsagePlanSet
7243
7273
 
7244
7274
  /**
7245
7275
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7336,7 +7366,7 @@ export interface DescribeIPStrategysStatusResponse {
7336
7366
  * 符合条件的策略列表。
7337
7367
  注意:此字段可能返回 null,表示取不到有效值。
7338
7368
  */
7339
- Result?: IPStrategysStatus
7369
+ Result: IPStrategysStatus
7340
7370
 
7341
7371
  /**
7342
7372
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7447,7 +7477,7 @@ export interface UnBindSecretIdsResponse {
7447
7477
  * 解绑操作是否成功。
7448
7478
  注意:此字段可能返回 null,表示取不到有效值。
7449
7479
  */
7450
- Result?: boolean
7480
+ Result: boolean
7451
7481
 
7452
7482
  /**
7453
7483
  * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
@@ -7551,7 +7581,7 @@ export interface RequestParameter {
7551
7581
  }
7552
7582
 
7553
7583
  /**
7554
- * VPC通道健康检查参数配置
7584
+ * 后端通道健康检查参数配置
7555
7585
  */
7556
7586
  export interface UpstreamHealthChecker {
7557
7587
  /**