tencentcloud-sdk-nodejs 4.0.768 → 4.0.769
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 +195 -0
- package/SERVICE_CHANGELOG.md +326 -23
- package/package.json +1 -1
- package/products.md +19 -19
- package/src/common/sdk_version.ts +1 -1
- package/src/services/aiart/v20221229/aiart_models.ts +3 -4
- package/src/services/cat/v20180409/cat_models.ts +1 -1
- package/src/services/cfw/v20190904/cfw_models.ts +7 -7
- package/src/services/cwp/v20180228/cwp_client.ts +1 -1
- package/src/services/cwp/v20180228/cwp_models.ts +17 -13
- package/src/services/dbbrain/v20191016/dbbrain_models.ts +1 -1
- package/src/services/dnspod/v20210323/dnspod_client.ts +9 -6
- package/src/services/ess/v20201111/ess_client.ts +50 -6
- package/src/services/ess/v20201111/ess_models.ts +86 -10
- package/src/services/essbasic/v20210526/essbasic_client.ts +21 -22
- package/src/services/essbasic/v20210526/essbasic_models.ts +19 -14
- package/src/services/oceanus/v20190422/oceanus_client.ts +14 -2
- package/src/services/oceanus/v20190422/oceanus_models.ts +71 -13
- package/src/services/scf/v20180416/scf_models.ts +6 -2
- package/src/services/tcss/v20201101/tcss_models.ts +29 -5
- package/src/services/teo/v20220901/teo_models.ts +5 -5
- package/src/services/tiw/v20190919/tiw_models.ts +101 -10
- package/src/services/trp/v20210515/trp_client.ts +1 -1
- package/src/services/trp/v20210515/trp_models.ts +17 -3
- package/src/services/tse/v20201207/tse_client.ts +76 -16
- package/src/services/tse/v20201207/tse_models.ts +237 -58
- package/src/services/tsf/v20180326/tsf_models.ts +24 -20
- package/src/services/vod/v20180717/vod_models.ts +6 -6
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +3 -4
- package/tencentcloud/services/cat/v20180409/cat_models.d.ts +1 -1
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +7 -7
- package/tencentcloud/services/cwp/v20180228/cwp_client.d.ts +1 -1
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +17 -13
- package/tencentcloud/services/dbbrain/v20191016/dbbrain_models.d.ts +1 -1
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.d.ts +3 -0
- package/tencentcloud/services/dnspod/v20210323/dnspod_client.js +3 -0
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +43 -7
- package/tencentcloud/services/ess/v20201111/ess_client.js +44 -6
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +84 -10
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.d.ts +20 -21
- package/tencentcloud/services/essbasic/v20210526/essbasic_client.js +20 -21
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +18 -13
- package/tencentcloud/services/oceanus/v20190422/oceanus_client.d.ts +5 -1
- package/tencentcloud/services/oceanus/v20190422/oceanus_client.js +6 -0
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +68 -12
- package/tencentcloud/services/scf/v20180416/scf_models.d.ts +6 -2
- package/tencentcloud/services/tcss/v20201101/tcss_models.d.ts +29 -5
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +5 -5
- package/tencentcloud/services/tiw/v20190919/tiw_models.d.ts +101 -10
- package/tencentcloud/services/trp/v20210515/trp_client.d.ts +1 -1
- package/tencentcloud/services/trp/v20210515/trp_client.js +1 -1
- package/tencentcloud/services/trp/v20210515/trp_models.d.ts +17 -3
- package/tencentcloud/services/tse/v20201207/tse_client.d.ts +25 -5
- package/tencentcloud/services/tse/v20201207/tse_client.js +36 -6
- package/tencentcloud/services/tse/v20201207/tse_models.d.ts +227 -58
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +24 -20
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +6 -6
- package/test/ess.v20201111.test.js +10 -0
- package/test/oceanus.v20190422.test.js +10 -0
- package/test/tse.v20201207.test.js +54 -4
|
@@ -38,6 +38,15 @@ export interface CreateCloudNativeAPIGatewayServiceResponse {
|
|
|
38
38
|
*/
|
|
39
39
|
RequestId?: string;
|
|
40
40
|
}
|
|
41
|
+
/**
|
|
42
|
+
* DeleteCloudNativeAPIGatewayPublicNetwork返回参数结构体
|
|
43
|
+
*/
|
|
44
|
+
export interface DeleteCloudNativeAPIGatewayPublicNetworkResponse {
|
|
45
|
+
/**
|
|
46
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
47
|
+
*/
|
|
48
|
+
RequestId?: string;
|
|
49
|
+
}
|
|
41
50
|
/**
|
|
42
51
|
* DeleteCloudNativeAPIGatewayRouteRateLimit返回参数结构体
|
|
43
52
|
*/
|
|
@@ -523,6 +532,24 @@ export interface DescribeCloudNativeAPIGatewayCertificatesRequest {
|
|
|
523
532
|
*/
|
|
524
533
|
Filters?: Array<ListFilter>;
|
|
525
534
|
}
|
|
535
|
+
/**
|
|
536
|
+
* ModifyCloudNativeAPIGatewayRouteRateLimit请求参数结构体
|
|
537
|
+
*/
|
|
538
|
+
export interface ModifyCloudNativeAPIGatewayRouteRateLimitRequest {
|
|
539
|
+
/**
|
|
540
|
+
* 网关ID
|
|
541
|
+
*/
|
|
542
|
+
GatewayId: string;
|
|
543
|
+
/**
|
|
544
|
+
* 路由id,或路由名称。
|
|
545
|
+
不支持“未命名”
|
|
546
|
+
*/
|
|
547
|
+
Id: string;
|
|
548
|
+
/**
|
|
549
|
+
* 限流配置
|
|
550
|
+
*/
|
|
551
|
+
LimitDetail: CloudNativeAPIGatewayRateLimitDetail;
|
|
552
|
+
}
|
|
526
553
|
/**
|
|
527
554
|
* 删除云原生API网关响应结果。
|
|
528
555
|
*/
|
|
@@ -699,22 +726,21 @@ export interface GatewayInstanceSchemeAndPorts {
|
|
|
699
726
|
PortList?: Array<number | bigint>;
|
|
700
727
|
}
|
|
701
728
|
/**
|
|
702
|
-
*
|
|
729
|
+
* DescribeZookeeperServerInterfaces请求参数结构体
|
|
703
730
|
*/
|
|
704
|
-
export interface
|
|
731
|
+
export interface DescribeZookeeperServerInterfacesRequest {
|
|
705
732
|
/**
|
|
706
|
-
*
|
|
733
|
+
* 实例id
|
|
707
734
|
*/
|
|
708
|
-
|
|
735
|
+
InstanceId?: string;
|
|
709
736
|
/**
|
|
710
|
-
*
|
|
711
|
-
不支持“未命名”
|
|
737
|
+
* 返回的列表个数
|
|
712
738
|
*/
|
|
713
|
-
|
|
739
|
+
Limit?: number;
|
|
714
740
|
/**
|
|
715
|
-
*
|
|
741
|
+
* 返回的列表起始偏移量
|
|
716
742
|
*/
|
|
717
|
-
|
|
743
|
+
Offset?: number;
|
|
718
744
|
}
|
|
719
745
|
/**
|
|
720
746
|
* 云原生网关健康检查配置
|
|
@@ -864,6 +890,31 @@ export interface CloudNativeAPIGatewayBalancedService {
|
|
|
864
890
|
*/
|
|
865
891
|
Percent?: number;
|
|
866
892
|
}
|
|
893
|
+
/**
|
|
894
|
+
* ModifyConsoleNetwork请求参数结构体
|
|
895
|
+
*/
|
|
896
|
+
export interface ModifyConsoleNetworkRequest {
|
|
897
|
+
/**
|
|
898
|
+
* 云原生API网关实例ID。
|
|
899
|
+
*/
|
|
900
|
+
GatewayId: string;
|
|
901
|
+
/**
|
|
902
|
+
* 网络类型:
|
|
903
|
+
- Open 公网
|
|
904
|
+
- Internal 内网(暂不支持)
|
|
905
|
+
*/
|
|
906
|
+
NetworkType: string;
|
|
907
|
+
/**
|
|
908
|
+
* 开启Konga网络,不填时默认为Open
|
|
909
|
+
- Open,开启
|
|
910
|
+
- Close,关闭
|
|
911
|
+
*/
|
|
912
|
+
Operate?: string;
|
|
913
|
+
/**
|
|
914
|
+
* 访问控制策略
|
|
915
|
+
*/
|
|
916
|
+
AccessControl?: NetworkAccessControl;
|
|
917
|
+
}
|
|
867
918
|
/**
|
|
868
919
|
* 云原生网关限流插件外部redis配置
|
|
869
920
|
*/
|
|
@@ -1591,29 +1642,31 @@ export interface DescribeCloudNativeAPIGatewayResult {
|
|
|
1591
1642
|
PublicIpAddresses?: Array<string>;
|
|
1592
1643
|
}
|
|
1593
1644
|
/**
|
|
1594
|
-
*
|
|
1645
|
+
* ModifyNetworkAccessStrategy请求参数结构体
|
|
1595
1646
|
*/
|
|
1596
|
-
export interface
|
|
1647
|
+
export interface ModifyNetworkAccessStrategyRequest {
|
|
1597
1648
|
/**
|
|
1598
|
-
*
|
|
1599
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1649
|
+
* 云原生API网关实例ID。
|
|
1600
1650
|
*/
|
|
1601
|
-
|
|
1651
|
+
GatewayId: string;
|
|
1602
1652
|
/**
|
|
1603
|
-
*
|
|
1604
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1653
|
+
* 分组id
|
|
1605
1654
|
*/
|
|
1606
|
-
|
|
1655
|
+
GroupId: string;
|
|
1607
1656
|
/**
|
|
1608
|
-
*
|
|
1609
|
-
|
|
1657
|
+
* 网络类型:
|
|
1658
|
+
- Open 公网
|
|
1659
|
+
- Internal 内网 (暂不支持)
|
|
1610
1660
|
*/
|
|
1611
|
-
|
|
1661
|
+
NetworkType: string;
|
|
1612
1662
|
/**
|
|
1613
|
-
*
|
|
1614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1663
|
+
* ip地址
|
|
1615
1664
|
*/
|
|
1616
|
-
|
|
1665
|
+
Vip: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* 访问控制策略
|
|
1668
|
+
*/
|
|
1669
|
+
AccessControl: NetworkAccessControl;
|
|
1617
1670
|
}
|
|
1618
1671
|
/**
|
|
1619
1672
|
* DeleteCloudNativeAPIGatewayRoute返回参数结构体
|
|
@@ -2620,6 +2673,15 @@ export interface DeleteEngineRequest {
|
|
|
2620
2673
|
*/
|
|
2621
2674
|
InstanceId: string;
|
|
2622
2675
|
}
|
|
2676
|
+
/**
|
|
2677
|
+
* CreateCloudNativeAPIGatewayPublicNetwork返回参数结构体
|
|
2678
|
+
*/
|
|
2679
|
+
export interface CreateCloudNativeAPIGatewayPublicNetworkResponse {
|
|
2680
|
+
/**
|
|
2681
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2682
|
+
*/
|
|
2683
|
+
RequestId?: string;
|
|
2684
|
+
}
|
|
2623
2685
|
/**
|
|
2624
2686
|
* DescribeWafDomains返回参数结构体
|
|
2625
2687
|
*/
|
|
@@ -2635,46 +2697,36 @@ export interface DescribeWafDomainsResponse {
|
|
|
2635
2697
|
RequestId?: string;
|
|
2636
2698
|
}
|
|
2637
2699
|
/**
|
|
2638
|
-
*
|
|
2700
|
+
* ModifyNetworkBasicInfo请求参数结构体
|
|
2639
2701
|
*/
|
|
2640
|
-
export interface
|
|
2641
|
-
/**
|
|
2642
|
-
* 名称
|
|
2643
|
-
*/
|
|
2644
|
-
Name: string;
|
|
2702
|
+
export interface ModifyNetworkBasicInfoRequest {
|
|
2645
2703
|
/**
|
|
2646
|
-
*
|
|
2704
|
+
* 云原生API网关实例ID。
|
|
2647
2705
|
*/
|
|
2648
|
-
|
|
2706
|
+
GatewayId: string;
|
|
2649
2707
|
/**
|
|
2650
|
-
*
|
|
2708
|
+
* 分组id
|
|
2651
2709
|
*/
|
|
2652
|
-
|
|
2710
|
+
GroupId: string;
|
|
2653
2711
|
/**
|
|
2654
|
-
*
|
|
2655
|
-
|
|
2712
|
+
* 网络类型:
|
|
2713
|
+
- Open 公网ipv4
|
|
2714
|
+
- Open-IPv6 公网ipv6
|
|
2715
|
+
- Internal 内网
|
|
2656
2716
|
*/
|
|
2657
|
-
|
|
2717
|
+
NetworkType: string;
|
|
2658
2718
|
/**
|
|
2659
|
-
*
|
|
2660
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2719
|
+
* ip地址
|
|
2661
2720
|
*/
|
|
2662
|
-
|
|
2721
|
+
Vip: string;
|
|
2663
2722
|
/**
|
|
2664
|
-
*
|
|
2665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2666
|
-
*/
|
|
2667
|
-
ZoneId: string;
|
|
2668
|
-
/**
|
|
2669
|
-
* 别名
|
|
2670
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2723
|
+
* 公网出流量带宽[1,2048]Mbps
|
|
2671
2724
|
*/
|
|
2672
|
-
|
|
2725
|
+
InternetMaxBandwidthOut?: number;
|
|
2673
2726
|
/**
|
|
2674
|
-
*
|
|
2675
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
2727
|
+
* 负载均衡描述
|
|
2676
2728
|
*/
|
|
2677
|
-
|
|
2729
|
+
Description?: string;
|
|
2678
2730
|
}
|
|
2679
2731
|
/**
|
|
2680
2732
|
* ModifyCloudNativeAPIGatewayServiceRateLimit请求参数结构体
|
|
@@ -3053,6 +3105,15 @@ export interface DescribeZookeeperServerInterfacesResponse {
|
|
|
3053
3105
|
*/
|
|
3054
3106
|
RequestId?: string;
|
|
3055
3107
|
}
|
|
3108
|
+
/**
|
|
3109
|
+
* ModifyNetworkAccessStrategy返回参数结构体
|
|
3110
|
+
*/
|
|
3111
|
+
export interface ModifyNetworkAccessStrategyResponse {
|
|
3112
|
+
/**
|
|
3113
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3114
|
+
*/
|
|
3115
|
+
RequestId?: string;
|
|
3116
|
+
}
|
|
3056
3117
|
/**
|
|
3057
3118
|
* DescribeNativeGatewayServerGroups请求参数结构体
|
|
3058
3119
|
*/
|
|
@@ -3369,21 +3430,21 @@ export interface NetworkAccessControl {
|
|
|
3369
3430
|
CidrBlackList?: Array<string>;
|
|
3370
3431
|
}
|
|
3371
3432
|
/**
|
|
3372
|
-
*
|
|
3433
|
+
* CreateCloudNativeAPIGatewayPublicNetwork请求参数结构体
|
|
3373
3434
|
*/
|
|
3374
|
-
export interface
|
|
3435
|
+
export interface CreateCloudNativeAPIGatewayPublicNetworkRequest {
|
|
3375
3436
|
/**
|
|
3376
|
-
*
|
|
3437
|
+
* 云原生API网关实例ID。
|
|
3377
3438
|
*/
|
|
3378
|
-
|
|
3439
|
+
GatewayId: string;
|
|
3379
3440
|
/**
|
|
3380
|
-
*
|
|
3441
|
+
* 分组id。
|
|
3381
3442
|
*/
|
|
3382
|
-
|
|
3443
|
+
GroupId?: string;
|
|
3383
3444
|
/**
|
|
3384
|
-
*
|
|
3445
|
+
* 公网负载均衡配置。
|
|
3385
3446
|
*/
|
|
3386
|
-
|
|
3447
|
+
InternetConfig?: InternetConfig;
|
|
3387
3448
|
}
|
|
3388
3449
|
/**
|
|
3389
3450
|
* DescribeCloudNativeAPIGatewayRouteRateLimit返回参数结构体
|
|
@@ -3529,6 +3590,29 @@ export interface OpenWafProtectionRequest {
|
|
|
3529
3590
|
*/
|
|
3530
3591
|
List?: Array<string>;
|
|
3531
3592
|
}
|
|
3593
|
+
/**
|
|
3594
|
+
* DeleteCloudNativeAPIGatewayPublicNetwork请求参数结构体
|
|
3595
|
+
*/
|
|
3596
|
+
export interface DeleteCloudNativeAPIGatewayPublicNetworkRequest {
|
|
3597
|
+
/**
|
|
3598
|
+
* 云原生API网关实例ID。
|
|
3599
|
+
*/
|
|
3600
|
+
GatewayId: string;
|
|
3601
|
+
/**
|
|
3602
|
+
* 分组id,kong类型时必填
|
|
3603
|
+
*/
|
|
3604
|
+
GroupId?: string;
|
|
3605
|
+
/**
|
|
3606
|
+
* 公网类型
|
|
3607
|
+
- IPV4 (默认值)
|
|
3608
|
+
- IPV6
|
|
3609
|
+
*/
|
|
3610
|
+
InternetAddressVersion?: string;
|
|
3611
|
+
/**
|
|
3612
|
+
* 公网ip,存在多个公网时必填
|
|
3613
|
+
*/
|
|
3614
|
+
Vip?: string;
|
|
3615
|
+
}
|
|
3532
3616
|
/**
|
|
3533
3617
|
* DeleteCloudNativeAPIGatewayRoute请求参数结构体
|
|
3534
3618
|
*/
|
|
@@ -3736,6 +3820,48 @@ export interface CloudNativeAPIGatewayStrategyAutoScalerConfig {
|
|
|
3736
3820
|
*/
|
|
3737
3821
|
Behavior?: AutoScalerBehavior;
|
|
3738
3822
|
}
|
|
3823
|
+
/**
|
|
3824
|
+
* Zookeeper副本信息
|
|
3825
|
+
*/
|
|
3826
|
+
export interface ZookeeperReplica {
|
|
3827
|
+
/**
|
|
3828
|
+
* 名称
|
|
3829
|
+
*/
|
|
3830
|
+
Name: string;
|
|
3831
|
+
/**
|
|
3832
|
+
* 角色
|
|
3833
|
+
*/
|
|
3834
|
+
Role: string;
|
|
3835
|
+
/**
|
|
3836
|
+
* 状态
|
|
3837
|
+
*/
|
|
3838
|
+
Status: string;
|
|
3839
|
+
/**
|
|
3840
|
+
* 子网ID
|
|
3841
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3842
|
+
*/
|
|
3843
|
+
SubnetId: string;
|
|
3844
|
+
/**
|
|
3845
|
+
* 可用区ID
|
|
3846
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3847
|
+
*/
|
|
3848
|
+
Zone: string;
|
|
3849
|
+
/**
|
|
3850
|
+
* 可用区ID
|
|
3851
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3852
|
+
*/
|
|
3853
|
+
ZoneId: string;
|
|
3854
|
+
/**
|
|
3855
|
+
* 别名
|
|
3856
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3857
|
+
*/
|
|
3858
|
+
AliasName: string;
|
|
3859
|
+
/**
|
|
3860
|
+
* VPC ID
|
|
3861
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3862
|
+
*/
|
|
3863
|
+
VpcId?: string;
|
|
3864
|
+
}
|
|
3739
3865
|
/**
|
|
3740
3866
|
* DescribeNacosServerInterfaces请求参数结构体
|
|
3741
3867
|
*/
|
|
@@ -4219,6 +4345,31 @@ export interface DescribeZookeeperReplicasResponse {
|
|
|
4219
4345
|
*/
|
|
4220
4346
|
RequestId?: string;
|
|
4221
4347
|
}
|
|
4348
|
+
/**
|
|
4349
|
+
* 北极星日志主题信息
|
|
4350
|
+
*/
|
|
4351
|
+
export interface PolarisCLSTopicInfo {
|
|
4352
|
+
/**
|
|
4353
|
+
* 日志集ID
|
|
4354
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4355
|
+
*/
|
|
4356
|
+
LogSetId?: string;
|
|
4357
|
+
/**
|
|
4358
|
+
* 日志集名称
|
|
4359
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4360
|
+
*/
|
|
4361
|
+
LogSetName?: string;
|
|
4362
|
+
/**
|
|
4363
|
+
* 日志主题ID
|
|
4364
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4365
|
+
*/
|
|
4366
|
+
TopicId?: string;
|
|
4367
|
+
/**
|
|
4368
|
+
* 日志主题名称
|
|
4369
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4370
|
+
*/
|
|
4371
|
+
TopicName?: string;
|
|
4372
|
+
}
|
|
4222
4373
|
/**
|
|
4223
4374
|
* 网关分组列表
|
|
4224
4375
|
*/
|
|
@@ -4411,6 +4562,15 @@ export interface KongServiceRouteList {
|
|
|
4411
4562
|
*/
|
|
4412
4563
|
TotalCount?: number;
|
|
4413
4564
|
}
|
|
4565
|
+
/**
|
|
4566
|
+
* ModifyConsoleNetwork返回参数结构体
|
|
4567
|
+
*/
|
|
4568
|
+
export interface ModifyConsoleNetworkResponse {
|
|
4569
|
+
/**
|
|
4570
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4571
|
+
*/
|
|
4572
|
+
RequestId?: string;
|
|
4573
|
+
}
|
|
4414
4574
|
/**
|
|
4415
4575
|
* DeleteWafDomains返回参数结构体
|
|
4416
4576
|
*/
|
|
@@ -4612,6 +4772,15 @@ export interface UpdateCloudNativeAPIGatewayCertificateInfoResponse {
|
|
|
4612
4772
|
*/
|
|
4613
4773
|
RequestId?: string;
|
|
4614
4774
|
}
|
|
4775
|
+
/**
|
|
4776
|
+
* ModifyNetworkBasicInfo返回参数结构体
|
|
4777
|
+
*/
|
|
4778
|
+
export interface ModifyNetworkBasicInfoResponse {
|
|
4779
|
+
/**
|
|
4780
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
4781
|
+
*/
|
|
4782
|
+
RequestId?: string;
|
|
4783
|
+
}
|
|
4615
4784
|
/**
|
|
4616
4785
|
* 获取WAF保护资源状态
|
|
4617
4786
|
*/
|
|
@@ -160,39 +160,39 @@ export interface DeleteClusterResponse {
|
|
|
160
160
|
RequestId?: string;
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
|
-
* cos
|
|
163
|
+
* cos临时账号信息
|
|
164
164
|
*/
|
|
165
165
|
export interface CosCredentials {
|
|
166
166
|
/**
|
|
167
167
|
* 会话Token
|
|
168
168
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
169
169
|
*/
|
|
170
|
-
SessionToken
|
|
170
|
+
SessionToken?: string;
|
|
171
171
|
/**
|
|
172
172
|
* 临时应用ID
|
|
173
173
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
174
174
|
*/
|
|
175
|
-
TmpAppId
|
|
175
|
+
TmpAppId?: string;
|
|
176
176
|
/**
|
|
177
177
|
* 临时调用者身份ID
|
|
178
178
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
179
179
|
*/
|
|
180
|
-
TmpSecretId
|
|
180
|
+
TmpSecretId?: string;
|
|
181
181
|
/**
|
|
182
182
|
* 临时密钥
|
|
183
183
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
184
184
|
*/
|
|
185
|
-
TmpSecretKey
|
|
185
|
+
TmpSecretKey?: string;
|
|
186
186
|
/**
|
|
187
187
|
* 过期时间
|
|
188
188
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
189
189
|
*/
|
|
190
|
-
ExpiredTime
|
|
190
|
+
ExpiredTime?: number;
|
|
191
191
|
/**
|
|
192
192
|
* 所在域
|
|
193
193
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
194
194
|
*/
|
|
195
|
-
Domain
|
|
195
|
+
Domain?: string;
|
|
196
196
|
}
|
|
197
197
|
/**
|
|
198
198
|
* DeletePathRewrites返回参数结构体
|
|
@@ -5302,51 +5302,55 @@ export interface ContainerGroupOther {
|
|
|
5302
5302
|
/**
|
|
5303
5303
|
* 实例总数
|
|
5304
5304
|
*/
|
|
5305
|
-
InstanceNum
|
|
5305
|
+
InstanceNum?: number;
|
|
5306
5306
|
/**
|
|
5307
5307
|
* 已启动实例总数
|
|
5308
5308
|
*/
|
|
5309
|
-
CurrentNum
|
|
5309
|
+
CurrentNum?: number;
|
|
5310
|
+
/**
|
|
5311
|
+
* 负载均衡DNS地址
|
|
5312
|
+
*/
|
|
5313
|
+
LbDns?: string;
|
|
5310
5314
|
/**
|
|
5311
5315
|
* 负载均衡ip
|
|
5312
5316
|
*/
|
|
5313
|
-
LbIp
|
|
5317
|
+
LbIp?: string;
|
|
5314
5318
|
/**
|
|
5315
5319
|
* Service ip
|
|
5316
5320
|
*/
|
|
5317
|
-
ClusterIp
|
|
5321
|
+
ClusterIp?: string;
|
|
5318
5322
|
/**
|
|
5319
|
-
*
|
|
5323
|
+
* 服务状态,请参考后面的状态定义
|
|
5320
5324
|
*/
|
|
5321
|
-
Status
|
|
5325
|
+
Status?: string;
|
|
5322
5326
|
/**
|
|
5323
|
-
*
|
|
5327
|
+
* 服务状态,请参考后面的状态定义
|
|
5324
5328
|
*/
|
|
5325
|
-
Message
|
|
5329
|
+
Message?: string;
|
|
5326
5330
|
/**
|
|
5327
5331
|
* 环境变量
|
|
5328
5332
|
*/
|
|
5329
|
-
Envs
|
|
5333
|
+
Envs?: Array<Env>;
|
|
5330
5334
|
/**
|
|
5331
5335
|
* Service NodePort
|
|
5332
5336
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5333
5337
|
*/
|
|
5334
|
-
NodePort
|
|
5338
|
+
NodePort?: number;
|
|
5335
5339
|
/**
|
|
5336
5340
|
* 子网ID
|
|
5337
5341
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5338
5342
|
*/
|
|
5339
|
-
SubnetId
|
|
5343
|
+
SubnetId?: string;
|
|
5340
5344
|
/**
|
|
5341
5345
|
* 健康检查相关字段
|
|
5342
5346
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5343
5347
|
*/
|
|
5344
|
-
HealthCheckSettings
|
|
5348
|
+
HealthCheckSettings?: HealthCheckSettings;
|
|
5345
5349
|
/**
|
|
5346
5350
|
* 服务配置信息是否匹配
|
|
5347
5351
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5348
5352
|
*/
|
|
5349
|
-
IsNotEqualServiceConfig
|
|
5353
|
+
IsNotEqualServiceConfig?: boolean;
|
|
5350
5354
|
}
|
|
5351
5355
|
/**
|
|
5352
5356
|
* AddClusterInstances请求参数结构体
|
|
@@ -1640,7 +1640,7 @@ export interface ResetProcedureTemplateRequest {
|
|
|
1640
1640
|
*/
|
|
1641
1641
|
Name: string;
|
|
1642
1642
|
/**
|
|
1643
|
-
* <b>点播[
|
|
1643
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
1644
1644
|
*/
|
|
1645
1645
|
SubAppId?: number;
|
|
1646
1646
|
/**
|
|
@@ -2315,7 +2315,7 @@ export interface CreateAdaptiveDynamicStreamingTemplateRequest {
|
|
|
2315
2315
|
*/
|
|
2316
2316
|
StreamInfos: Array<AdaptiveStreamTemplate>;
|
|
2317
2317
|
/**
|
|
2318
|
-
* <b>点播[
|
|
2318
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
2319
2319
|
*/
|
|
2320
2320
|
SubAppId?: number;
|
|
2321
2321
|
/**
|
|
@@ -2821,7 +2821,7 @@ export interface DescribeMediaProcessUsageDataRequest {
|
|
|
2821
2821
|
*/
|
|
2822
2822
|
EndTime: string;
|
|
2823
2823
|
/**
|
|
2824
|
-
* <b>点播
|
|
2824
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
2825
2825
|
*/
|
|
2826
2826
|
SubAppId?: number;
|
|
2827
2827
|
/**
|
|
@@ -6349,7 +6349,7 @@ export interface ProcessMediaRequest {
|
|
|
6349
6349
|
*/
|
|
6350
6350
|
FileId: string;
|
|
6351
6351
|
/**
|
|
6352
|
-
* <b>点播[
|
|
6352
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
6353
6353
|
*/
|
|
6354
6354
|
SubAppId?: number;
|
|
6355
6355
|
/**
|
|
@@ -8165,7 +8165,7 @@ export interface DeleteMediaRequest {
|
|
|
8165
8165
|
*/
|
|
8166
8166
|
export interface DescribeReviewTemplatesRequest {
|
|
8167
8167
|
/**
|
|
8168
|
-
* <b>点播[
|
|
8168
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
8169
8169
|
*/
|
|
8170
8170
|
SubAppId?: number;
|
|
8171
8171
|
/**
|
|
@@ -13497,7 +13497,7 @@ export interface DescribeTaskDetailRequest {
|
|
|
13497
13497
|
*/
|
|
13498
13498
|
TaskId: string;
|
|
13499
13499
|
/**
|
|
13500
|
-
* <b>点播[
|
|
13500
|
+
* <b>点播[应用](/document/product/266/14574) ID。从2023年12月25日起开通点播的客户,如访问点播应用中的资源(无论是默认应用还是新创建的应用),必须将该字段填写为应用 ID。</b>
|
|
13501
13501
|
*/
|
|
13502
13502
|
SubAppId?: number;
|
|
13503
13503
|
}
|
|
@@ -148,6 +148,16 @@ it("ess.v20201111.VerifyPdf", async function () {
|
|
|
148
148
|
}
|
|
149
149
|
})
|
|
150
150
|
|
|
151
|
+
it("ess.v20201111.ModifyExtendedService", async function () {
|
|
152
|
+
try {
|
|
153
|
+
const data = await client.ModifyExtendedService({})
|
|
154
|
+
expect(data).to.be.ok
|
|
155
|
+
} catch(error) {
|
|
156
|
+
expect(error.requestId).to.be.ok
|
|
157
|
+
expect(error.code).to.be.ok
|
|
158
|
+
}
|
|
159
|
+
})
|
|
160
|
+
|
|
151
161
|
it("ess.v20201111.UnbindEmployeeUserIdWithClientOpenId", async function () {
|
|
152
162
|
try {
|
|
153
163
|
const data = await client.UnbindEmployeeUserIdWithClientOpenId({})
|
|
@@ -378,6 +378,16 @@ it("oceanus.v20190422.DescribeSystemResources", async function () {
|
|
|
378
378
|
}
|
|
379
379
|
})
|
|
380
380
|
|
|
381
|
+
it("oceanus.v20190422.GetMetaTable", async function () {
|
|
382
|
+
try {
|
|
383
|
+
const data = await client.GetMetaTable({})
|
|
384
|
+
expect(data).to.be.ok
|
|
385
|
+
} catch(error) {
|
|
386
|
+
expect(error.requestId).to.be.ok
|
|
387
|
+
expect(error.code).to.be.ok
|
|
388
|
+
}
|
|
389
|
+
})
|
|
390
|
+
|
|
381
391
|
it("oceanus.v20190422.DescribeJobConfigs", async function () {
|
|
382
392
|
try {
|
|
383
393
|
const data = await client.DescribeJobConfigs({})
|