tencentcloud-sdk-nodejs-tse 4.0.793 → 4.0.803
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/package.json +1 -1
- package/products.md +65 -65
- package/src/services/tse/v20201207/tse_client.ts +73 -21
- package/src/services/tse/v20201207/tse_models.ts +447 -93
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +21 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +30 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +435 -93
@@ -381,6 +381,21 @@ export interface DeleteNativeGatewayServerGroupResponse {
|
|
381
381
|
*/
|
382
382
|
RequestId?: string;
|
383
383
|
}
|
384
|
+
/**
|
385
|
+
* 元数据信息
|
386
|
+
*/
|
387
|
+
export interface Metadata {
|
388
|
+
/**
|
389
|
+
* 元数据键名。
|
390
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
391
|
+
*/
|
392
|
+
Key: string;
|
393
|
+
/**
|
394
|
+
* 元数据键值。不填则默认为空字符串。
|
395
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
396
|
+
*/
|
397
|
+
Value?: string;
|
398
|
+
}
|
384
399
|
/**
|
385
400
|
* ModifyCloudNativeAPIGatewayCertificate返回参数结构体
|
386
401
|
*/
|
@@ -390,6 +405,31 @@ export interface ModifyCloudNativeAPIGatewayCertificateResponse {
|
|
390
405
|
*/
|
391
406
|
RequestId?: string;
|
392
407
|
}
|
408
|
+
/**
|
409
|
+
* ModifyConsoleNetwork请求参数结构体
|
410
|
+
*/
|
411
|
+
export interface ModifyConsoleNetworkRequest {
|
412
|
+
/**
|
413
|
+
* 云原生API网关实例ID。
|
414
|
+
*/
|
415
|
+
GatewayId: string;
|
416
|
+
/**
|
417
|
+
* 网络类型:
|
418
|
+
- Open 公网
|
419
|
+
- Internal 内网(暂不支持)
|
420
|
+
*/
|
421
|
+
NetworkType: string;
|
422
|
+
/**
|
423
|
+
* 开启Konga网络,不填时默认为Open
|
424
|
+
- Open,开启
|
425
|
+
- Close,关闭
|
426
|
+
*/
|
427
|
+
Operate?: string;
|
428
|
+
/**
|
429
|
+
* 访问控制策略
|
430
|
+
*/
|
431
|
+
AccessControl?: NetworkAccessControl;
|
432
|
+
}
|
393
433
|
/**
|
394
434
|
* CreateCloudNativeAPIGatewayRouteRateLimit返回参数结构体
|
395
435
|
*/
|
@@ -475,35 +515,25 @@ export interface CloudNativeAPIGatewayNodeConfig {
|
|
475
515
|
Number: number;
|
476
516
|
}
|
477
517
|
/**
|
478
|
-
*
|
518
|
+
* DescribeAutoScalerResourceStrategyBindingGroups请求参数结构体
|
479
519
|
*/
|
480
|
-
export interface
|
520
|
+
export interface DescribeAutoScalerResourceStrategyBindingGroupsRequest {
|
481
521
|
/**
|
482
|
-
*
|
522
|
+
* 网关实例ID
|
483
523
|
*/
|
484
524
|
GatewayId: string;
|
485
525
|
/**
|
486
|
-
*
|
487
|
-
*/
|
488
|
-
BindDomains: Array<string>;
|
489
|
-
/**
|
490
|
-
* ssl平台证书 Id
|
491
|
-
*/
|
492
|
-
CertId: string;
|
493
|
-
/**
|
494
|
-
* 证书名称
|
526
|
+
* 策略ID
|
495
527
|
*/
|
496
|
-
|
528
|
+
StrategyId: string;
|
497
529
|
/**
|
498
|
-
*
|
499
|
-
* @deprecated
|
530
|
+
* 查询偏移量
|
500
531
|
*/
|
501
|
-
|
532
|
+
Offset?: number;
|
502
533
|
/**
|
503
|
-
*
|
504
|
-
* @deprecated
|
534
|
+
* 查询数量限制
|
505
535
|
*/
|
506
|
-
|
536
|
+
Limit?: number;
|
507
537
|
}
|
508
538
|
/**
|
509
539
|
* CreateNativeGatewayServerGroup请求参数结构体
|
@@ -976,29 +1006,21 @@ export interface CloudNativeAPIGatewayBalancedService {
|
|
976
1006
|
Percent?: number;
|
977
1007
|
}
|
978
1008
|
/**
|
979
|
-
*
|
1009
|
+
* DescribeZookeeperServerInterfaces请求参数结构体
|
980
1010
|
*/
|
981
|
-
export interface
|
982
|
-
/**
|
983
|
-
* 云原生API网关实例ID。
|
984
|
-
*/
|
985
|
-
GatewayId: string;
|
1011
|
+
export interface DescribeZookeeperServerInterfacesRequest {
|
986
1012
|
/**
|
987
|
-
*
|
988
|
-
- Open 公网
|
989
|
-
- Internal 内网(暂不支持)
|
1013
|
+
* 实例id
|
990
1014
|
*/
|
991
|
-
|
1015
|
+
InstanceId?: string;
|
992
1016
|
/**
|
993
|
-
*
|
994
|
-
- Open,开启
|
995
|
-
- Close,关闭
|
1017
|
+
* 返回的列表个数
|
996
1018
|
*/
|
997
|
-
|
1019
|
+
Limit?: number;
|
998
1020
|
/**
|
999
|
-
*
|
1021
|
+
* 返回的列表起始偏移量
|
1000
1022
|
*/
|
1001
|
-
|
1023
|
+
Offset?: number;
|
1002
1024
|
}
|
1003
1025
|
/**
|
1004
1026
|
* 云原生网关限流插件外部redis配置
|
@@ -1417,6 +1439,19 @@ export interface KongUpstreamPreview {
|
|
1417
1439
|
*/
|
1418
1440
|
Target?: Array<KongTarget>;
|
1419
1441
|
}
|
1442
|
+
/**
|
1443
|
+
* CreateGovernanceInstances返回参数结构体
|
1444
|
+
*/
|
1445
|
+
export interface CreateGovernanceInstancesResponse {
|
1446
|
+
/**
|
1447
|
+
* 创建是否成功。
|
1448
|
+
*/
|
1449
|
+
Result: boolean;
|
1450
|
+
/**
|
1451
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1452
|
+
*/
|
1453
|
+
RequestId?: string;
|
1454
|
+
}
|
1420
1455
|
/**
|
1421
1456
|
* DescribeCloudNativeAPIGatewayNodes请求参数结构体
|
1422
1457
|
*/
|
@@ -1559,21 +1594,17 @@ export interface DescribeZookeeperReplicasRequest {
|
|
1559
1594
|
Offset?: number;
|
1560
1595
|
}
|
1561
1596
|
/**
|
1562
|
-
*
|
1597
|
+
* DeleteGovernanceInstances返回参数结构体
|
1563
1598
|
*/
|
1564
|
-
export interface
|
1565
|
-
/**
|
1566
|
-
* 实例id
|
1567
|
-
*/
|
1568
|
-
InstanceId?: string;
|
1599
|
+
export interface DeleteGovernanceInstancesResponse {
|
1569
1600
|
/**
|
1570
|
-
*
|
1601
|
+
* 操作是否成功。
|
1571
1602
|
*/
|
1572
|
-
|
1603
|
+
Result: boolean;
|
1573
1604
|
/**
|
1574
|
-
*
|
1605
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1575
1606
|
*/
|
1576
|
-
|
1607
|
+
RequestId?: string;
|
1577
1608
|
}
|
1578
1609
|
/**
|
1579
1610
|
* UpdateUpstreamTargets请求参数结构体
|
@@ -1947,6 +1978,15 @@ export interface DeleteCloudNativeAPIGatewayServiceRateLimitRequest {
|
|
1947
1978
|
*/
|
1948
1979
|
Name: string;
|
1949
1980
|
}
|
1981
|
+
/**
|
1982
|
+
* OpenWafProtection返回参数结构体
|
1983
|
+
*/
|
1984
|
+
export interface OpenWafProtectionResponse {
|
1985
|
+
/**
|
1986
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1987
|
+
*/
|
1988
|
+
RequestId?: string;
|
1989
|
+
}
|
1950
1990
|
/**
|
1951
1991
|
* Kong网关被动健康检查配置
|
1952
1992
|
*/
|
@@ -2021,6 +2061,23 @@ export interface ModifyUpstreamNodeStatusRequest {
|
|
2021
2061
|
*/
|
2022
2062
|
Status: string;
|
2023
2063
|
}
|
2064
|
+
/**
|
2065
|
+
* DescribeGovernanceInstances返回参数结构体
|
2066
|
+
*/
|
2067
|
+
export interface DescribeGovernanceInstancesResponse {
|
2068
|
+
/**
|
2069
|
+
* 服务实例总数量。
|
2070
|
+
*/
|
2071
|
+
TotalCount: number;
|
2072
|
+
/**
|
2073
|
+
* 服务里实例列表。
|
2074
|
+
*/
|
2075
|
+
Content: Array<GovernanceInstance>;
|
2076
|
+
/**
|
2077
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2078
|
+
*/
|
2079
|
+
RequestId?: string;
|
2080
|
+
}
|
2024
2081
|
/**
|
2025
2082
|
* DescribeCloudNativeAPIGatewayConfig返回参数结构体
|
2026
2083
|
*/
|
@@ -2218,6 +2275,19 @@ export interface CreateCloudNativeAPIGatewayRouteResponse {
|
|
2218
2275
|
*/
|
2219
2276
|
RequestId?: string;
|
2220
2277
|
}
|
2278
|
+
/**
|
2279
|
+
* DescribeCloudNativeAPIGatewayCanaryRules返回参数结构体
|
2280
|
+
*/
|
2281
|
+
export interface DescribeCloudNativeAPIGatewayCanaryRulesResponse {
|
2282
|
+
/**
|
2283
|
+
* 灰度规则列表
|
2284
|
+
*/
|
2285
|
+
Result?: CloudAPIGatewayCanaryRuleList;
|
2286
|
+
/**
|
2287
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
2288
|
+
*/
|
2289
|
+
RequestId?: string;
|
2290
|
+
}
|
2221
2291
|
/**
|
2222
2292
|
* DescribeCloudNativeAPIGatewayConfig请求参数结构体
|
2223
2293
|
*/
|
@@ -2303,24 +2373,17 @@ export interface DescribeCloudNativeAPIGatewaysRequest {
|
|
2303
2373
|
Filters?: Array<Filter>;
|
2304
2374
|
}
|
2305
2375
|
/**
|
2306
|
-
*
|
2376
|
+
* CreateGovernanceInstances请求参数结构体
|
2307
2377
|
*/
|
2308
|
-
export interface
|
2378
|
+
export interface CreateGovernanceInstancesRequest {
|
2309
2379
|
/**
|
2310
|
-
*
|
2311
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2380
|
+
* tse实例id。
|
2312
2381
|
*/
|
2313
|
-
|
2314
|
-
/**
|
2315
|
-
* 数量
|
2316
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2317
|
-
*/
|
2318
|
-
Value?: number;
|
2382
|
+
InstanceId: string;
|
2319
2383
|
/**
|
2320
|
-
*
|
2321
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
2384
|
+
* 服务实例信息。
|
2322
2385
|
*/
|
2323
|
-
|
2386
|
+
GovernanceInstances: Array<GovernanceInstanceInput>;
|
2324
2387
|
}
|
2325
2388
|
/**
|
2326
2389
|
* DescribeNacosServerInterfaces返回参数结构体
|
@@ -2445,6 +2508,19 @@ export interface DeleteCloudNativeAPIGatewayServiceRequest {
|
|
2445
2508
|
*/
|
2446
2509
|
Name: string;
|
2447
2510
|
}
|
2511
|
+
/**
|
2512
|
+
* 网关分组列表
|
2513
|
+
*/
|
2514
|
+
export interface NativeGatewayServerGroups {
|
2515
|
+
/**
|
2516
|
+
* 总数
|
2517
|
+
*/
|
2518
|
+
TotalCount: number;
|
2519
|
+
/**
|
2520
|
+
* 分组信息数组。
|
2521
|
+
*/
|
2522
|
+
GatewayGroupList: Array<NativeGatewayServerGroup>;
|
2523
|
+
}
|
2448
2524
|
/**
|
2449
2525
|
* ModifyAutoScalerResourceStrategy返回参数结构体
|
2450
2526
|
*/
|
@@ -2687,6 +2763,96 @@ export interface DescribeInstanceRegionInfo {
|
|
2687
2763
|
*/
|
2688
2764
|
EKSClusterID?: string;
|
2689
2765
|
}
|
2766
|
+
/**
|
2767
|
+
* DeleteGovernanceInstances请求参数结构体
|
2768
|
+
*/
|
2769
|
+
export interface DeleteGovernanceInstancesRequest {
|
2770
|
+
/**
|
2771
|
+
* tse实例id。
|
2772
|
+
*/
|
2773
|
+
InstanceId: string;
|
2774
|
+
/**
|
2775
|
+
* 要删除的服务实例信息。
|
2776
|
+
*/
|
2777
|
+
GovernanceInstances: Array<GovernanceInstanceUpdate>;
|
2778
|
+
}
|
2779
|
+
/**
|
2780
|
+
* 治理中心实例信息。
|
2781
|
+
*/
|
2782
|
+
export interface GovernanceInstance {
|
2783
|
+
/**
|
2784
|
+
* 实例id。
|
2785
|
+
*/
|
2786
|
+
Id: string;
|
2787
|
+
/**
|
2788
|
+
* 实例所在服务名。
|
2789
|
+
*/
|
2790
|
+
Service: string;
|
2791
|
+
/**
|
2792
|
+
* 实例所在命名空间名。
|
2793
|
+
*/
|
2794
|
+
Namespace: string;
|
2795
|
+
/**
|
2796
|
+
* 实例ip地址。
|
2797
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2798
|
+
*/
|
2799
|
+
Host: string;
|
2800
|
+
/**
|
2801
|
+
* 实例端口信息。
|
2802
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2803
|
+
*/
|
2804
|
+
Port: number;
|
2805
|
+
/**
|
2806
|
+
* 通信协议。
|
2807
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2808
|
+
*/
|
2809
|
+
Protocol: string;
|
2810
|
+
/**
|
2811
|
+
* 版本信息。
|
2812
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2813
|
+
*/
|
2814
|
+
Version: string;
|
2815
|
+
/**
|
2816
|
+
* 负载均衡权重。
|
2817
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2818
|
+
*/
|
2819
|
+
Weight: number;
|
2820
|
+
/**
|
2821
|
+
* 是否开启健康检查。
|
2822
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2823
|
+
*/
|
2824
|
+
EnableHealthCheck: boolean;
|
2825
|
+
/**
|
2826
|
+
* 实例是否健康。
|
2827
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2828
|
+
*/
|
2829
|
+
Healthy: boolean;
|
2830
|
+
/**
|
2831
|
+
* 实例是否隔离。
|
2832
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2833
|
+
*/
|
2834
|
+
Isolate: boolean;
|
2835
|
+
/**
|
2836
|
+
* 实例创建时间。
|
2837
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2838
|
+
*/
|
2839
|
+
CreateTime: string;
|
2840
|
+
/**
|
2841
|
+
* 实例修改时间。
|
2842
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2843
|
+
*/
|
2844
|
+
ModifyTime: string;
|
2845
|
+
/**
|
2846
|
+
* 元数据数组。
|
2847
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2848
|
+
*/
|
2849
|
+
Metadatas: Array<Metadata>;
|
2850
|
+
/**
|
2851
|
+
* 上报心跳间隔。
|
2852
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2853
|
+
*/
|
2854
|
+
Ttl: number;
|
2855
|
+
}
|
2690
2856
|
/**
|
2691
2857
|
* 网关实例策略
|
2692
2858
|
*/
|
@@ -2960,17 +3126,24 @@ export interface DeleteAutoScalerResourceStrategyResponse {
|
|
2960
3126
|
RequestId?: string;
|
2961
3127
|
}
|
2962
3128
|
/**
|
2963
|
-
*
|
3129
|
+
* 扩容策略
|
2964
3130
|
*/
|
2965
|
-
export interface
|
3131
|
+
export interface AutoScalerPolicy {
|
2966
3132
|
/**
|
2967
|
-
*
|
3133
|
+
* 类型,Pods
|
3134
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2968
3135
|
*/
|
2969
|
-
|
3136
|
+
Type?: string;
|
2970
3137
|
/**
|
2971
|
-
*
|
3138
|
+
* 数量
|
3139
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
2972
3140
|
*/
|
2973
|
-
|
3141
|
+
Value?: number;
|
3142
|
+
/**
|
3143
|
+
* 扩容周期
|
3144
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
3145
|
+
*/
|
3146
|
+
PeriodSeconds?: number;
|
2974
3147
|
}
|
2975
3148
|
/**
|
2976
3149
|
* UpdateUpstreamTargets返回参数结构体
|
@@ -3365,6 +3538,63 @@ export interface DescribeNativeGatewayServerGroupsRequest {
|
|
3365
3538
|
*/
|
3366
3539
|
Filters?: Array<Filter>;
|
3367
3540
|
}
|
3541
|
+
/**
|
3542
|
+
* 实例信息
|
3543
|
+
*/
|
3544
|
+
export interface GovernanceInstanceUpdate {
|
3545
|
+
/**
|
3546
|
+
* 实例所在服务名。
|
3547
|
+
*/
|
3548
|
+
Service: string;
|
3549
|
+
/**
|
3550
|
+
* 实例服务所在命名空间。
|
3551
|
+
*/
|
3552
|
+
Namespace: string;
|
3553
|
+
/**
|
3554
|
+
* 治理中心服务实例id。
|
3555
|
+
*/
|
3556
|
+
Id: string;
|
3557
|
+
/**
|
3558
|
+
* 实例负载均衡权重信息。不填默认为100。
|
3559
|
+
*/
|
3560
|
+
Weight?: number;
|
3561
|
+
/**
|
3562
|
+
* 实例默认健康信息。不填默认为健康。
|
3563
|
+
*/
|
3564
|
+
Healthy?: boolean;
|
3565
|
+
/**
|
3566
|
+
* 实例隔离信息。不填默认为非隔离。
|
3567
|
+
*/
|
3568
|
+
Isolate?: boolean;
|
3569
|
+
/**
|
3570
|
+
* 实例ip。
|
3571
|
+
*/
|
3572
|
+
Host?: string;
|
3573
|
+
/**
|
3574
|
+
* 实例监听端口。
|
3575
|
+
*/
|
3576
|
+
Port?: number;
|
3577
|
+
/**
|
3578
|
+
* 实例使用协议。不填默认为空。
|
3579
|
+
*/
|
3580
|
+
Protocol?: string;
|
3581
|
+
/**
|
3582
|
+
* 实例版本。不填默认为空。
|
3583
|
+
*/
|
3584
|
+
InstanceVersion?: string;
|
3585
|
+
/**
|
3586
|
+
* 是否启用健康检查。不填默认不启用。
|
3587
|
+
*/
|
3588
|
+
EnableHealthCheck?: boolean;
|
3589
|
+
/**
|
3590
|
+
* 上报心跳时间间隔。若 EnableHealthCheck 为不启用,则此参数不生效;若 EnableHealthCheck 启用,此参数不填,则默认 ttl 为 5s。
|
3591
|
+
*/
|
3592
|
+
Ttl?: number;
|
3593
|
+
/**
|
3594
|
+
* 元数据信息。
|
3595
|
+
*/
|
3596
|
+
Metadatas?: Array<Metadata>;
|
3597
|
+
}
|
3368
3598
|
/**
|
3369
3599
|
* 证书信息
|
3370
3600
|
*/
|
@@ -3492,13 +3722,53 @@ export interface KongUpstreamList {
|
|
3492
3722
|
UpstreamList?: Array<KongUpstreamPreview>;
|
3493
3723
|
}
|
3494
3724
|
/**
|
3495
|
-
*
|
3725
|
+
* 实例信息
|
3496
3726
|
*/
|
3497
|
-
export interface
|
3727
|
+
export interface GovernanceInstanceInput {
|
3498
3728
|
/**
|
3499
|
-
*
|
3729
|
+
* 实例所在服务名。
|
3500
3730
|
*/
|
3501
|
-
|
3731
|
+
Service: string;
|
3732
|
+
/**
|
3733
|
+
* 实例服务所在命名空间。
|
3734
|
+
*/
|
3735
|
+
Namespace: string;
|
3736
|
+
/**
|
3737
|
+
* 实例负载均衡权重信息。不填默认为100。
|
3738
|
+
*/
|
3739
|
+
Weight?: number;
|
3740
|
+
/**
|
3741
|
+
* 实例默认健康信息。不填默认为健康。
|
3742
|
+
*/
|
3743
|
+
Healthy?: boolean;
|
3744
|
+
/**
|
3745
|
+
* 实例隔离信息。不填默认为非隔离。
|
3746
|
+
*/
|
3747
|
+
Isolate?: boolean;
|
3748
|
+
/**
|
3749
|
+
* 实例ip。
|
3750
|
+
*/
|
3751
|
+
Host?: string;
|
3752
|
+
/**
|
3753
|
+
* 实例监听端口。
|
3754
|
+
*/
|
3755
|
+
Port?: number;
|
3756
|
+
/**
|
3757
|
+
* 实例使用协议。不填默认为空。
|
3758
|
+
*/
|
3759
|
+
Protocol?: string;
|
3760
|
+
/**
|
3761
|
+
* 实例版本。不填默认为空。
|
3762
|
+
*/
|
3763
|
+
InstanceVersion?: string;
|
3764
|
+
/**
|
3765
|
+
* 是否启用健康检查。不填默认不启用。
|
3766
|
+
*/
|
3767
|
+
EnableHealthCheck?: boolean;
|
3768
|
+
/**
|
3769
|
+
* 上报心跳时间间隔。若 EnableHealthCheck 为不启用,则此参数不生效;若 EnableHealthCheck 启用,此参数不填,则默认 ttl 为 5s。
|
3770
|
+
*/
|
3771
|
+
Ttl?: number;
|
3502
3772
|
}
|
3503
3773
|
/**
|
3504
3774
|
* 引擎的初始管理账号,当前仅支持Apollo引擎
|
@@ -3619,25 +3889,35 @@ export interface KongServices {
|
|
3619
3889
|
TotalCount?: number;
|
3620
3890
|
}
|
3621
3891
|
/**
|
3622
|
-
*
|
3892
|
+
* CreateCloudNativeAPIGatewayCertificate请求参数结构体
|
3623
3893
|
*/
|
3624
|
-
export interface
|
3894
|
+
export interface CreateCloudNativeAPIGatewayCertificateRequest {
|
3625
3895
|
/**
|
3626
|
-
*
|
3896
|
+
* 网关ID
|
3627
3897
|
*/
|
3628
3898
|
GatewayId: string;
|
3629
3899
|
/**
|
3630
|
-
*
|
3900
|
+
* 绑定的域名
|
3631
3901
|
*/
|
3632
|
-
|
3902
|
+
BindDomains: Array<string>;
|
3633
3903
|
/**
|
3634
|
-
*
|
3904
|
+
* ssl平台证书 Id
|
3635
3905
|
*/
|
3636
|
-
|
3906
|
+
CertId: string;
|
3637
3907
|
/**
|
3638
|
-
*
|
3908
|
+
* 证书名称
|
3639
3909
|
*/
|
3640
|
-
|
3910
|
+
Name?: string;
|
3911
|
+
/**
|
3912
|
+
* 证书私钥
|
3913
|
+
* @deprecated
|
3914
|
+
*/
|
3915
|
+
Key?: string;
|
3916
|
+
/**
|
3917
|
+
* 证书pem格式
|
3918
|
+
* @deprecated
|
3919
|
+
*/
|
3920
|
+
Crt?: string;
|
3641
3921
|
}
|
3642
3922
|
/**
|
3643
3923
|
* DescribeWafDomains请求参数结构体
|
@@ -3714,6 +3994,55 @@ export interface CreateCloudNativeAPIGatewayPublicNetworkRequest {
|
|
3714
3994
|
*/
|
3715
3995
|
InternetConfig?: InternetConfig;
|
3716
3996
|
}
|
3997
|
+
/**
|
3998
|
+
* DescribeGovernanceInstances请求参数结构体
|
3999
|
+
*/
|
4000
|
+
export interface DescribeGovernanceInstancesRequest {
|
4001
|
+
/**
|
4002
|
+
* 实例所在的服务名。
|
4003
|
+
*/
|
4004
|
+
Service: string;
|
4005
|
+
/**
|
4006
|
+
* 实例所在命名空间名。
|
4007
|
+
*/
|
4008
|
+
Namespace: string;
|
4009
|
+
/**
|
4010
|
+
* tse实例id。
|
4011
|
+
*/
|
4012
|
+
InstanceId: string;
|
4013
|
+
/**
|
4014
|
+
* 根据实例ip过滤,多个ip使用英文逗号分隔。
|
4015
|
+
*/
|
4016
|
+
Host?: string;
|
4017
|
+
/**
|
4018
|
+
* 根据实例版本过滤。
|
4019
|
+
*/
|
4020
|
+
InstanceVersion?: string;
|
4021
|
+
/**
|
4022
|
+
* 根据实例协议过滤。
|
4023
|
+
*/
|
4024
|
+
Protocol?: string;
|
4025
|
+
/**
|
4026
|
+
* 根据实例健康状态过滤。false:表示不健康,true:表示健康。
|
4027
|
+
*/
|
4028
|
+
HealthStatus?: boolean;
|
4029
|
+
/**
|
4030
|
+
* 根据实例隔离状态过滤。false:表示非隔离,true:表示隔离中。
|
4031
|
+
*/
|
4032
|
+
Isolate?: boolean;
|
4033
|
+
/**
|
4034
|
+
* 根据元数据信息过滤。目前只支持一组元数据键值,若传了多个键值对,只会以第一个过滤。
|
4035
|
+
*/
|
4036
|
+
Metadatas?: Array<Metadata>;
|
4037
|
+
/**
|
4038
|
+
* 偏移量,默认为0。
|
4039
|
+
*/
|
4040
|
+
Offset?: number;
|
4041
|
+
/**
|
4042
|
+
* 返回数量,默认为20,最大值为100。
|
4043
|
+
*/
|
4044
|
+
Limit?: number;
|
4045
|
+
}
|
3717
4046
|
/**
|
3718
4047
|
* DescribeCloudNativeAPIGatewayRouteRateLimit返回参数结构体
|
3719
4048
|
*/
|
@@ -3772,6 +4101,23 @@ export interface DescribeNativeGatewayServerGroupsResponse {
|
|
3772
4101
|
*/
|
3773
4102
|
RequestId?: string;
|
3774
4103
|
}
|
4104
|
+
/**
|
4105
|
+
* UpdateEngineInternetAccess请求参数结构体
|
4106
|
+
*/
|
4107
|
+
export interface UpdateEngineInternetAccessRequest {
|
4108
|
+
/**
|
4109
|
+
* 引擎ID
|
4110
|
+
*/
|
4111
|
+
InstanceId: string;
|
4112
|
+
/**
|
4113
|
+
* 引擎类型
|
4114
|
+
*/
|
4115
|
+
EngineType: string;
|
4116
|
+
/**
|
4117
|
+
* 是否开启客户端公网访问,true开 false关
|
4118
|
+
*/
|
4119
|
+
EnableClientInternetAccess?: boolean;
|
4120
|
+
}
|
3775
4121
|
/**
|
3776
4122
|
* 实例监听端口信息
|
3777
4123
|
*/
|
@@ -4734,17 +5080,17 @@ export interface PolarisCLSTopicInfo {
|
|
4734
5080
|
TopicName?: string;
|
4735
5081
|
}
|
4736
5082
|
/**
|
4737
|
-
*
|
5083
|
+
* ModifyGovernanceInstances请求参数结构体
|
4738
5084
|
*/
|
4739
|
-
export interface
|
5085
|
+
export interface ModifyGovernanceInstancesRequest {
|
4740
5086
|
/**
|
4741
|
-
*
|
5087
|
+
* tse实例id。
|
4742
5088
|
*/
|
4743
|
-
|
5089
|
+
InstanceId: string;
|
4744
5090
|
/**
|
4745
|
-
*
|
5091
|
+
* 服务实例信息。
|
4746
5092
|
*/
|
4747
|
-
|
5093
|
+
GovernanceInstances: Array<GovernanceInstanceUpdate>;
|
4748
5094
|
}
|
4749
5095
|
/**
|
4750
5096
|
* CreateEngine请求参数结构体
|
@@ -5088,21 +5434,17 @@ export interface DeleteCloudNativeAPIGatewayCanaryRuleResponse {
|
|
5088
5434
|
RequestId?: string;
|
5089
5435
|
}
|
5090
5436
|
/**
|
5091
|
-
*
|
5437
|
+
* ModifyGovernanceInstances返回参数结构体
|
5092
5438
|
*/
|
5093
|
-
export interface
|
5094
|
-
/**
|
5095
|
-
* 引擎ID
|
5096
|
-
*/
|
5097
|
-
InstanceId: string;
|
5439
|
+
export interface ModifyGovernanceInstancesResponse {
|
5098
5440
|
/**
|
5099
|
-
*
|
5441
|
+
* 修改是否成功。
|
5100
5442
|
*/
|
5101
|
-
|
5443
|
+
Result: boolean;
|
5102
5444
|
/**
|
5103
|
-
*
|
5445
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5104
5446
|
*/
|
5105
|
-
|
5447
|
+
RequestId?: string;
|
5106
5448
|
}
|
5107
5449
|
/**
|
5108
5450
|
* DescribeCloudNativeAPIGatewayPorts请求参数结构体
|