tencentcloud-sdk-nodejs 4.1.161 → 4.1.163
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/es/common/sdk_version.js +1 -1
- package/es/services/cfw/v20190904/cfw_client.js +24 -0
- package/es/services/dlc/v20210125/dlc_client.js +3 -0
- package/es/services/lke/v20231130/lke_client.js +3 -0
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/ags/v20250920/ags_client.d.ts +1 -1
- package/tencentcloud/services/ags/v20250920/ags_models.d.ts +217 -5
- package/tencentcloud/services/cdc/v20201214/cdc_models.d.ts +46 -62
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +35 -1
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +50 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +658 -299
- package/tencentcloud/services/cloudmate/v20251030/cloudmate_models.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +5 -1
- package/tencentcloud/services/dlc/v20210125/dlc_client.js +6 -0
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +30 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +190 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +21 -0
- package/tencentcloud/services/gwlb/v20240906/gwlb_models.d.ts +17 -23
- package/tencentcloud/services/iai/v20180301/iai_models.d.ts +2 -2
- package/tencentcloud/services/iai/v20200303/iai_models.d.ts +2 -2
- package/tencentcloud/services/live/v20180801/live_models.d.ts +5 -13
- package/tencentcloud/services/lke/v20231130/lke_client.d.ts +5 -1
- package/tencentcloud/services/lke/v20231130/lke_client.js +6 -0
- package/tencentcloud/services/lke/v20231130/lke_models.d.ts +86 -44
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +2 -0
- package/tencentcloud/services/ocr/v20181119/ocr_models.d.ts +4 -0
- package/tencentcloud/services/pts/v20210728/pts_client.d.ts +2 -2
- package/tencentcloud/services/pts/v20210728/pts_models.d.ts +47 -5
- package/tencentcloud/services/ssl/v20191205/ssl_client.d.ts +1 -1
- package/tencentcloud/services/ssl/v20191205/ssl_client.js +1 -1
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +258 -34
- package/tencentcloud/services/tke/v20180525/tke_models.d.ts +6 -1
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +2 -6
- package/tencentcloud/services/vclm/v20240523/vclm_models.d.ts +40 -10
- package/tencentcloud/services/vod/v20180717/vod_client.d.ts +1 -1
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +236 -28
- package/tencentcloud/services/vpc/v20170312/vpc_models.d.ts +9 -1
|
@@ -62,11 +62,11 @@ export interface DescribeDedicatedClustersRequest {
|
|
|
62
62
|
*/
|
|
63
63
|
export interface DescribeDedicatedClusterTypesResponse {
|
|
64
64
|
/**
|
|
65
|
-
*
|
|
65
|
+
* <p>专用集群配置列表</p>
|
|
66
66
|
*/
|
|
67
67
|
DedicatedClusterTypeSet?: Array<DedicatedClusterType>;
|
|
68
68
|
/**
|
|
69
|
-
*
|
|
69
|
+
* <p>符合条件的个数</p>
|
|
70
70
|
*/
|
|
71
71
|
TotalCount?: number;
|
|
72
72
|
/**
|
|
@@ -365,7 +365,7 @@ export interface HostInfo {
|
|
|
365
365
|
*/
|
|
366
366
|
export interface CreateSiteResponse {
|
|
367
367
|
/**
|
|
368
|
-
*
|
|
368
|
+
* <p>创建Site生成的id</p>
|
|
369
369
|
*/
|
|
370
370
|
SiteId?: string;
|
|
371
371
|
/**
|
|
@@ -527,103 +527,95 @@ export interface DedicatedClusterOrderItem {
|
|
|
527
527
|
*/
|
|
528
528
|
export interface CreateSiteRequest {
|
|
529
529
|
/**
|
|
530
|
-
*
|
|
530
|
+
* <p>站点名称</p>
|
|
531
531
|
*/
|
|
532
532
|
Name: string;
|
|
533
533
|
/**
|
|
534
|
-
*
|
|
534
|
+
* <p>站点所在国家</p>
|
|
535
535
|
*/
|
|
536
536
|
Country: string;
|
|
537
537
|
/**
|
|
538
|
-
*
|
|
538
|
+
* <p>站点所在省份</p>
|
|
539
539
|
*/
|
|
540
540
|
Province: string;
|
|
541
541
|
/**
|
|
542
|
-
*
|
|
542
|
+
* <p>站点所在城市</p>
|
|
543
543
|
*/
|
|
544
544
|
City: string;
|
|
545
545
|
/**
|
|
546
|
-
*
|
|
546
|
+
* <p>站点所在地区的详细地址信息</p>
|
|
547
547
|
*/
|
|
548
548
|
AddressLine: string;
|
|
549
549
|
/**
|
|
550
|
-
*
|
|
550
|
+
* <p>站点描述</p>
|
|
551
551
|
*/
|
|
552
552
|
Description?: string;
|
|
553
553
|
/**
|
|
554
|
-
*
|
|
554
|
+
* <p>注意事项</p>
|
|
555
555
|
*/
|
|
556
556
|
Note?: string;
|
|
557
557
|
/**
|
|
558
|
-
*
|
|
558
|
+
* <p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。取值范围:"MM","SM"</p>
|
|
559
559
|
*/
|
|
560
560
|
FiberType?: string;
|
|
561
561
|
/**
|
|
562
|
-
*
|
|
562
|
+
* <p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
563
563
|
*/
|
|
564
564
|
OpticalStandard?: string;
|
|
565
565
|
/**
|
|
566
|
-
*
|
|
566
|
+
* <p>电源连接器类型</p>
|
|
567
567
|
*/
|
|
568
568
|
PowerConnectors?: string;
|
|
569
569
|
/**
|
|
570
|
-
*
|
|
570
|
+
* <p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
571
571
|
*/
|
|
572
572
|
PowerFeedDrop?: string;
|
|
573
573
|
/**
|
|
574
|
-
*
|
|
574
|
+
* <p>最大承重(KG)</p>
|
|
575
575
|
*/
|
|
576
576
|
MaxWeight?: number;
|
|
577
577
|
/**
|
|
578
|
-
*
|
|
578
|
+
* <p>功耗(KW)</p>
|
|
579
579
|
*/
|
|
580
580
|
PowerDrawKva?: number;
|
|
581
581
|
/**
|
|
582
|
-
*
|
|
582
|
+
* <p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
583
583
|
*/
|
|
584
584
|
UplinkSpeedGbps?: number;
|
|
585
585
|
/**
|
|
586
|
-
*
|
|
586
|
+
* <p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
587
587
|
*/
|
|
588
588
|
UplinkCount?: number;
|
|
589
589
|
/**
|
|
590
|
-
*
|
|
591
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
592
|
-
2、确定的机架位置包含:
|
|
593
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
594
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
595
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。
|
|
590
|
+
* <p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺)。CFM 必须是 CDC 配置的 kVA 功耗值的 145.8 倍。</p>
|
|
596
591
|
*/
|
|
597
592
|
ConditionRequirement?: boolean;
|
|
598
593
|
/**
|
|
599
|
-
*
|
|
600
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
601
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
602
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
594
|
+
* <p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
603
595
|
*/
|
|
604
596
|
DimensionRequirement?: boolean;
|
|
605
597
|
/**
|
|
606
|
-
*
|
|
598
|
+
* <p>是否提供冗余的上游设备(交换机或路由器),以便两台 网络设备都能连接到网络设备。</p>
|
|
607
599
|
*/
|
|
608
600
|
RedundantNetworking?: boolean;
|
|
609
601
|
/**
|
|
610
|
-
*
|
|
602
|
+
* <p>站点所在地区的邮编</p>
|
|
611
603
|
*/
|
|
612
604
|
PostalCode?: number;
|
|
613
605
|
/**
|
|
614
|
-
*
|
|
606
|
+
* <p>站点所在地区的详细地址信息(补充)</p>
|
|
615
607
|
*/
|
|
616
608
|
OptionalAddressLine?: string;
|
|
617
609
|
/**
|
|
618
|
-
*
|
|
610
|
+
* <p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
619
611
|
*/
|
|
620
612
|
NeedHelp?: boolean;
|
|
621
613
|
/**
|
|
622
|
-
*
|
|
614
|
+
* <p>是否电源冗余</p>
|
|
623
615
|
*/
|
|
624
616
|
RedundantPower?: boolean;
|
|
625
617
|
/**
|
|
626
|
-
*
|
|
618
|
+
* <p>上游断路器是否具备</p>
|
|
627
619
|
*/
|
|
628
620
|
BreakerRequirement?: boolean;
|
|
629
621
|
}
|
|
@@ -1532,71 +1524,63 @@ export interface VpngwBandwidthData {
|
|
|
1532
1524
|
*/
|
|
1533
1525
|
export interface ModifySiteDeviceInfoRequest {
|
|
1534
1526
|
/**
|
|
1535
|
-
*
|
|
1527
|
+
* <p>机房ID</p>
|
|
1536
1528
|
*/
|
|
1537
1529
|
SiteId: string;
|
|
1538
1530
|
/**
|
|
1539
|
-
*
|
|
1531
|
+
* <p>您将使用光纤类型将CDC设备连接到网络。有单模和多模两种选项。</p>
|
|
1540
1532
|
*/
|
|
1541
1533
|
FiberType?: string;
|
|
1542
1534
|
/**
|
|
1543
|
-
*
|
|
1535
|
+
* <p>您将CDC连接到网络时采用的光学标准。此字段取决于上行链路速度、光纤类型和到上游设备的距离。</p>
|
|
1544
1536
|
*/
|
|
1545
1537
|
OpticalStandard?: string;
|
|
1546
1538
|
/**
|
|
1547
|
-
*
|
|
1539
|
+
* <p>电源连接器类型</p>
|
|
1548
1540
|
*/
|
|
1549
1541
|
PowerConnectors?: string;
|
|
1550
1542
|
/**
|
|
1551
|
-
*
|
|
1543
|
+
* <p>从机架上方还是下方供电。取值范围:["UP","DOWN"]</p>
|
|
1552
1544
|
*/
|
|
1553
1545
|
PowerFeedDrop?: string;
|
|
1554
1546
|
/**
|
|
1555
|
-
*
|
|
1547
|
+
* <p>最大承重(KG)</p>
|
|
1556
1548
|
*/
|
|
1557
1549
|
MaxWeight?: number;
|
|
1558
1550
|
/**
|
|
1559
|
-
*
|
|
1551
|
+
* <p>功耗(KW)</p>
|
|
1560
1552
|
*/
|
|
1561
1553
|
PowerDrawKva?: number;
|
|
1562
1554
|
/**
|
|
1563
|
-
*
|
|
1555
|
+
* <p>网络到腾讯云Region区域的上行链路速度(Gbps)</p>
|
|
1564
1556
|
*/
|
|
1565
1557
|
UplinkSpeedGbps?: number;
|
|
1566
1558
|
/**
|
|
1567
|
-
*
|
|
1559
|
+
* <p>将CDC连接到网络时,每台CDC网络设备(每个机架 2 台设备)使用的上行链路数量。</p>
|
|
1568
1560
|
*/
|
|
1569
1561
|
UplinkCount?: number;
|
|
1570
1562
|
/**
|
|
1571
|
-
*
|
|
1572
|
-
1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。
|
|
1573
|
-
2、确定的机架位置包含:
|
|
1574
|
-
温度范围为 41 到 104°F (5 到 40°C)。
|
|
1575
|
-
湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。
|
|
1576
|
-
机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。
|
|
1563
|
+
* <p>是否满足下面环境条件:1、场地没有材料要求或验收标准会影响 CDC 设备配送和安装。2、确定的机架位置包含:温度范围为 41 到 104°F (5 到 40°C)。湿度范围为 10°F (-12°C)和 8% RH (相对湿度)到 70°F(21°C)和 80% RH。机架位置的气流方向为从前向后,且应具有足够的 CFM (每分钟立方英尺),散热功率须达到CDC运行功率值的 145.8 倍以上。</p>
|
|
1577
1564
|
*/
|
|
1578
1565
|
ConditionRequirement?: boolean;
|
|
1579
1566
|
/**
|
|
1580
|
-
*
|
|
1581
|
-
您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。
|
|
1582
|
-
您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。
|
|
1583
|
-
在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。
|
|
1567
|
+
* <p>是否满足下面的尺寸条件:您的装货站台可以容纳一个机架箱(高 x 宽 x 深 = 94" x 54" x 48")。您可以提供从机架(高 x 宽 x 深 = 80" x 24" x 48")交货地点到机架最终安置位置的明确通道。测量深度时,应包括站台、走廊通道、门、转弯、坡道、货梯,并将其他通道限制考虑在内。在最终的 CDC安置位置,前部间隙可以为 48" 或更大,后部间隙可以为 24" 或更大。</p>
|
|
1584
1568
|
*/
|
|
1585
1569
|
DimensionRequirement?: boolean;
|
|
1586
1570
|
/**
|
|
1587
|
-
*
|
|
1571
|
+
* <p>是否提供冗余的上游设备(交换机或路由器),以便实现网络出口的高可用。</p>
|
|
1588
1572
|
*/
|
|
1589
1573
|
RedundantNetworking?: boolean;
|
|
1590
1574
|
/**
|
|
1591
|
-
*
|
|
1575
|
+
* <p>是否需要腾讯云团队协助完成机架支撑工作</p>
|
|
1592
1576
|
*/
|
|
1593
1577
|
NeedHelp?: boolean;
|
|
1594
1578
|
/**
|
|
1595
|
-
*
|
|
1579
|
+
* <p>是否电源冗余</p>
|
|
1596
1580
|
*/
|
|
1597
1581
|
RedundantPower?: boolean;
|
|
1598
1582
|
/**
|
|
1599
|
-
*
|
|
1583
|
+
* <p>上游断路器是否具备</p>
|
|
1600
1584
|
*/
|
|
1601
1585
|
BreakerRequirement?: boolean;
|
|
1602
1586
|
}
|
|
@@ -1639,23 +1623,23 @@ export interface Site {
|
|
|
1639
1623
|
*/
|
|
1640
1624
|
export interface DescribeDedicatedClusterTypesRequest {
|
|
1641
1625
|
/**
|
|
1642
|
-
*
|
|
1626
|
+
* <p>模糊匹配专用集群配置名称</p>
|
|
1643
1627
|
*/
|
|
1644
1628
|
Name?: string;
|
|
1645
1629
|
/**
|
|
1646
|
-
*
|
|
1630
|
+
* <p>待查询的专用集群配置id列表</p>
|
|
1647
1631
|
*/
|
|
1648
1632
|
DedicatedClusterTypeIds?: Array<string>;
|
|
1649
1633
|
/**
|
|
1650
|
-
*
|
|
1634
|
+
* <p>偏移量,默认为0。关于<code>Offset</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
1651
1635
|
*/
|
|
1652
1636
|
Offset?: number;
|
|
1653
1637
|
/**
|
|
1654
|
-
*
|
|
1638
|
+
* <p>返回数量,默认为20,最大值为100。关于<code>Limit</code>的更进一步介绍请参考 API <a href="https://cloud.tencent.com/document/api/213/15688">简介</a>中的相关小节。</p>
|
|
1655
1639
|
*/
|
|
1656
1640
|
Limit?: number;
|
|
1657
1641
|
/**
|
|
1658
|
-
*
|
|
1642
|
+
* <p>是否只查询计算规格类型</p>
|
|
1659
1643
|
*/
|
|
1660
1644
|
IsCompute?: boolean;
|
|
1661
1645
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { ModifyEWRuleStatusResponse, DescribeNatFwInstanceRequest, DescribeNatFwInstanceWithRegionRequest, DescribeLogsRequest, ModifyFwGroupSwitchRequest, ModifySecurityGroupRuleRequest, ModifyAssetSyncResponse, ModifyNatFwVpcDnsSwitchResponse, CreateBlockIgnoreRuleNewRequest,
|
|
3
|
+
import { ModifyEWRuleStatusResponse, DescribeNatFwInstanceRequest, DescribeNatFwInstanceWithRegionRequest, DescribeLogsRequest, ModifyFwGroupSwitchRequest, ModifySecurityGroupRuleRequest, ModifyAssetSyncResponse, ModifyNatFwVpcDnsSwitchResponse, UpdateCheckCcnNonDirectFlagRequest, DescribeBlockIgnoreListResponse, CreateBlockIgnoreRuleNewRequest, DescribeCcnInstanceRegionStatusRequest, DescribeRuleOverviewResponse, ModifyEnterpriseSecurityGroupRuleResponse, ModifySequenceRulesRequest, DescribeNatAcRuleResponse, UpdateClusterVpcFwRequest, AddAclRuleRequest, DescribeVpcFwGroupSwitchRequest, CreateAlertCenterIsolateResponse, ModifyNatAcRuleRequest, ModifyAclRuleRequest, ModifyAcRuleResponse, ModifyAssetScanResponse, ModifyNatSequenceRulesRequest, DescribeAclRuleResponse, DescribeNatFwInstanceWithRegionResponse, DescribeTLogInfoRequest, ModifyFwGroupSwitchResponse, DeleteNatFwInstanceResponse, ModifyBlockIgnoreRuleRequest, SearchLogResponse, DeleteBlockIgnoreRuleNewResponse, DescribeEnterpriseSGRuleProgressResponse, ModifyEdgeIpSwitchRequest, DescribeNatFwVpcDnsLstRequest, DescribeCfwEipsRequest, DescribeTLogInfoResponse, DescribeUnHandleEventTabListRequest, ModifyAllPublicIPSwitchStatusRequest, ModifyNatInstanceRequest, DescribeNatFwDnatRuleRequest, DescribeAssociatedInstanceListResponse, CreateBlockIgnoreRuleListRequest, RemoveAcRuleResponse, ModifyAddressTemplateRequest, DescribeAclRuleRequest, ModifyClusterVpcFwSwitchResponse, CreateSecurityGroupRulesResponse, ExpandCfwVerticalRequest, ModifyAllPublicIPSwitchStatusResponse, SyncFwOperateRequest, ModifyAssetScanRequest, ModifyBlockIgnoreListRequest, AddEnterpriseSecurityGroupRulesRequest, ModifySecurityGroupSequenceRulesResponse, DeleteSecurityGroupRuleResponse, ModifyNatFwSwitchResponse, ModifyAclRuleResponse, CreateNatFwInstanceRequest, ModifySecurityGroupItemRuleStatusResponse, DescribeEnterpriseSecurityGroupRuleResponse, DeleteBlockIgnoreRuleListResponse, CreateVpcFwGroupResponse, DescribeEnterpriseSecurityGroupRuleRequest, CreateAlertCenterRuleRequest, ModifyNatFwReSelectResponse, CreateAlertCenterOmitRequest, DescribeVpcFwCcnPolicyWhiteListResponse, DescribeVpcAcRuleRequest, DeleteRemoteAccessDomainResponse, DescribeSwitchListsRequest, AddAclRuleResponse, RemoveVpcAcRuleRequest, DeleteRemoteAccessDomainRequest, SetNatFwEipResponse, DescribeLogStorageStatisticResponse, ModifyStorageSettingResponse, DescribeSwitchErrorRequest, DescribeNatFwInstancesInfoRequest, ModifyBlockIgnoreRuleNewResponse, DescribeSourceAssetRequest, DescribeCfwInsStatusRequest, DescribeSourceAssetResponse, DescribeFwGroupInstanceInfoRequest, DescribeEnterpriseSGRuleProgressRequest, DescribeTLogIpListRequest, DescribeLogStorageStatisticRequest, AddVpcAcRuleRequest, DescribeTableStatusRequest, ModifyNatSequenceRulesResponse, StopSecurityGroupRuleDispatchResponse, DescribeAssetSyncResponse, DescribeSecurityGroupListRequest, ModifyAddressTemplateResponse, CreateNatFwInstanceResponse, DescribeNatFwInfoCountResponse, UpdateClusterVpcFwResponse, DescribeDefenseSwitchRequest, ModifyVpcFwGroupRequest, ModifyEnterpriseSecurityDispatchStatusResponse, ModifyResourceGroupRequest, DescribeCcnAssociatedInstancesRequest, ModifyVpcAcRuleRequest, CreateNatFwInstanceWithDomainResponse, DescribeFwSyncStatusRequest, ModifyEnterpriseSecurityGroupRuleRequest, RemoveNatAcRuleRequest, ModifySequenceRulesResponse, DescribeAssetSyncRequest, DeleteVpcFwGroupRequest, DescribeAcListsResponse, ModifyAcRuleRequest, ModifySequenceAclRulesResponse, CreateAddressTemplateRequest, CreateBlockIgnoreRuleNewResponse, AddNatAcRuleRequest, ModifySecurityGroupSequenceRulesRequest, CreateDatabaseWhiteListRulesResponse, DeleteBlockIgnoreRuleListRequest, SyncFwOperateResponse, DeleteVpcFwGroupResponse, CreateChooseVpcsResponse, DescribeUnHandleEventTabListResponse, ModifyRunSyncAssetResponse, AddVpcAcRuleResponse, DescribeSecurityGroupListResponse, DescribeVpcAcRuleResponse, AddEnterpriseSecurityGroupRulesResponse, RemoveEnterpriseSecurityGroupRuleRequest, DescribeCfwInsStatusResponse, DeleteResourceGroupRequest, DescribeFwGroupInstanceInfoResponse, DescribeBlockByIpTimesListRequest, ModifyBlockTopRequest, RemoveEnterpriseSecurityGroupRuleResponse, DescribeEnterpriseSecurityGroupRuleListRequest, CreateAddressTemplateResponse, DescribeTableStatusResponse, ModifySequenceAclRulesRequest, ModifyClusterVpcFwSwitchRequest, CreateAlertCenterOmitResponse, DescribeResourceGroupNewResponse, ModifyEdgeIpSwitchResponse, DescribeResourceGroupNewRequest, DescribeAddressTemplateListRequest, RemoveAclRuleRequest, DeleteAcRuleResponse, DescribeIPStatusListRequest, DescribeNatFwDnatRuleResponse, ModifyNatFwVpcDnsSwitchRequest, DescribeFwSyncStatusResponse, DescribeBlockByIpTimesListResponse, ModifyAllRuleStatusRequest, SetNatFwDnatRuleResponse, DescribeDefenseSwitchResponse, DescribeAcListsRequest, DescribeGuideScanInfoRequest, DescribeAssociatedInstanceListRequest, ModifyVpcAcRuleResponse, DescribeVpcFwCcnPolicyWhiteListRequest, ModifyBlockIgnoreRuleNewRequest, ModifyEWRuleStatusRequest, DeleteAcRuleRequest, ModifyNatFwSwitchRequest, DeleteBlockIgnoreRuleNewRequest, DescribeSwitchErrorResponse, DescribeCcnVpcFwSwitchRequest, DescribeFwEdgeIpsResponse, DescribeIPStatusListResponse, CreateDatabaseWhiteListRulesRequest, DescribeVpcFwGroupSwitchResponse, ModifyBlockIgnoreRuleResponse, DescribeCcnAssociatedInstancesResponse, DescribeTLogIpListResponse, DescribeNatFwInfoCountRequest, UpdateCheckCcnNonDirectFlagResponse, RemoveAcRuleRequest, ModifyNatFwReSelectRequest, ModifyVpcFwSequenceRulesResponse, SetNatFwDnatRuleRequest, ModifyAllRuleStatusResponse, StopSecurityGroupRuleDispatchRequest, SetNatFwEipRequest, DescribeBlockIgnoreListRequest, ModifyBlockTopResponse, RemoveAclRuleResponse, DeleteNatFwInstanceRequest, ModifyVpcFwSequenceRulesRequest, ModifySecurityGroupItemRuleStatusRequest, ModifyStorageSettingRequest, ModifyAssetSyncRequest, DescribeNatFwVpcDnsLstResponse, CreateChooseVpcsRequest, ExpandCfwVerticalResponse, DescribeBlockStaticListRequest, DescribeLogsResponse, CreateSecurityGroupRulesRequest, CreateVpcFwGroupRequest, CreateNatFwInstanceWithDomainRequest, DescribeNatFwSwitchRequest, DescribeRuleOverviewRequest, RemoveNatAcRuleResponse, DescribeNatFwSwitchResponse, DescribeResourceGroupResponse, DeleteAddressTemplateResponse, CreateBlockIgnoreRuleListResponse, DescribeCfwEipsResponse, ModifyResourceGroupResponse, ModifyVpcFwGroupResponse, DeleteResourceGroupResponse, SearchLogRequest, DeleteSecurityGroupRuleRequest, CreateAlertCenterIsolateRequest, DescribeNatAcRuleRequest, DescribeEnterpriseSecurityGroupRuleListResponse, ModifyRunSyncAssetRequest, DeleteAddressTemplateRequest, CreateAcRulesResponse, DescribeSwitchListsResponse, DescribeCcnInstanceRegionStatusResponse, RemoveVpcAcRuleResponse, DescribeNatFwInstancesInfoResponse, AddNatAcRuleResponse, ModifyBlockIgnoreListResponse, DescribeNatFwInstanceResponse, ModifySecurityGroupRuleResponse, DescribeFwEdgeIpsRequest, DescribeResourceGroupRequest, CreateAcRulesRequest, ModifyEnterpriseSecurityDispatchStatusRequest, ModifyNatAcRuleResponse, ModifyNatInstanceResponse, ModifyTableStatusRequest, ModifyTableStatusResponse, DescribeCcnVpcFwSwitchResponse, DescribeBlockStaticListResponse, DescribeGuideScanInfoResponse, CreateAlertCenterRuleResponse, DescribeAddressTemplateListResponse } from "./cfw_models";
|
|
4
4
|
/**
|
|
5
5
|
* cfw client
|
|
6
6
|
* @class
|
|
@@ -68,6 +68,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
68
68
|
* 删除新企业安全组规则
|
|
69
69
|
*/
|
|
70
70
|
RemoveEnterpriseSecurityGroupRule(req: RemoveEnterpriseSecurityGroupRuleRequest, cb?: (error: string, rep: RemoveEnterpriseSecurityGroupRuleResponse) => void): Promise<RemoveEnterpriseSecurityGroupRuleResponse>;
|
|
71
|
+
/**
|
|
72
|
+
* 修改集群模式VPC防火墙开关
|
|
73
|
+
*/
|
|
74
|
+
ModifyClusterVpcFwSwitch(req: ModifyClusterVpcFwSwitchRequest, cb?: (error: string, rep: ModifyClusterVpcFwSwitchResponse) => void): Promise<ModifyClusterVpcFwSwitchResponse>;
|
|
71
75
|
/**
|
|
72
76
|
* NAT防火墙规则快速排序
|
|
73
77
|
*/
|
|
@@ -80,6 +84,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
80
84
|
* 创建NAT防火墙实例(Region参数必填)
|
|
81
85
|
*/
|
|
82
86
|
CreateNatFwInstance(req: CreateNatFwInstanceRequest, cb?: (error: string, rep: CreateNatFwInstanceResponse) => void): Promise<CreateNatFwInstanceResponse>;
|
|
87
|
+
/**
|
|
88
|
+
* 重新检测CCN中接入VPC防火墙的VPC实例非同城直通标记
|
|
89
|
+
*/
|
|
90
|
+
UpdateCheckCcnNonDirectFlag(req: UpdateCheckCcnNonDirectFlagRequest, cb?: (error: string, rep: UpdateCheckCcnNonDirectFlagResponse) => void): Promise<UpdateCheckCcnNonDirectFlagResponse>;
|
|
83
91
|
/**
|
|
84
92
|
* ModifyBlockTop取消置顶接口
|
|
85
93
|
*/
|
|
@@ -140,6 +148,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
140
148
|
* 编辑单条安全组规则
|
|
141
149
|
*/
|
|
142
150
|
ModifySecurityGroupRule(req: ModifySecurityGroupRuleRequest, cb?: (error: string, rep: ModifySecurityGroupRuleResponse) => void): Promise<ModifySecurityGroupRuleResponse>;
|
|
151
|
+
/**
|
|
152
|
+
* 修改更新CCN中VPC防火墙策略配置
|
|
153
|
+
*/
|
|
154
|
+
UpdateClusterVpcFw(req: UpdateClusterVpcFwRequest, cb?: (error: string, rep: UpdateClusterVpcFwResponse) => void): Promise<UpdateClusterVpcFwResponse>;
|
|
143
155
|
/**
|
|
144
156
|
* 查询安全组规则列表
|
|
145
157
|
*/
|
|
@@ -168,6 +180,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
168
180
|
* nat 防火墙VPC DNS 开关切换
|
|
169
181
|
*/
|
|
170
182
|
ModifyNatFwVpcDnsSwitch(req: ModifyNatFwVpcDnsSwitchRequest, cb?: (error: string, rep: ModifyNatFwVpcDnsSwitchResponse) => void): Promise<ModifyNatFwVpcDnsSwitchResponse>;
|
|
183
|
+
/**
|
|
184
|
+
* 查询云联网关联的实例信息
|
|
185
|
+
*/
|
|
186
|
+
DescribeCcnAssociatedInstances(req: DescribeCcnAssociatedInstancesRequest, cb?: (error: string, rep: DescribeCcnAssociatedInstancesResponse) => void): Promise<DescribeCcnAssociatedInstancesResponse>;
|
|
171
187
|
/**
|
|
172
188
|
* 启用停用单条企业安全组规则
|
|
173
189
|
*/
|
|
@@ -232,10 +248,18 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
232
248
|
* 防火墙开关列表,请换用DescribeFwEdgeIps
|
|
233
249
|
*/
|
|
234
250
|
DescribeSwitchLists(req: DescribeSwitchListsRequest, cb?: (error: string, rep: DescribeSwitchListsResponse) => void): Promise<DescribeSwitchListsResponse>;
|
|
251
|
+
/**
|
|
252
|
+
* 查询CCN VPC防火墙开关配置
|
|
253
|
+
*/
|
|
254
|
+
DescribeCcnVpcFwSwitch(req: DescribeCcnVpcFwSwitchRequest, cb?: (error: string, rep: DescribeCcnVpcFwSwitchResponse) => void): Promise<DescribeCcnVpcFwSwitchResponse>;
|
|
235
255
|
/**
|
|
236
256
|
* 修改规则表状态
|
|
237
257
|
*/
|
|
238
258
|
ModifyTableStatus(req: ModifyTableStatusRequest, cb?: (error: string, rep: ModifyTableStatusResponse) => void): Promise<ModifyTableStatusResponse>;
|
|
259
|
+
/**
|
|
260
|
+
* 查询VPC防火墙策略路由功能开白的CCN列表
|
|
261
|
+
*/
|
|
262
|
+
DescribeVpcFwCcnPolicyWhiteList(req?: DescribeVpcFwCcnPolicyWhiteListRequest, cb?: (error: string, rep: DescribeVpcFwCcnPolicyWhiteListResponse) => void): Promise<DescribeVpcFwCcnPolicyWhiteListResponse>;
|
|
239
263
|
/**
|
|
240
264
|
* 用户告警中心-封隔离处置按钮
|
|
241
265
|
*/
|
|
@@ -391,6 +415,10 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
391
415
|
* 修改企业安全组下发状态
|
|
392
416
|
*/
|
|
393
417
|
ModifyEnterpriseSecurityDispatchStatus(req: ModifyEnterpriseSecurityDispatchStatusRequest, cb?: (error: string, rep: ModifyEnterpriseSecurityDispatchStatusResponse) => void): Promise<ModifyEnterpriseSecurityDispatchStatusResponse>;
|
|
418
|
+
/**
|
|
419
|
+
* 互联网边界防火墙开关横幅错误信息
|
|
420
|
+
*/
|
|
421
|
+
DescribeSwitchError(req: DescribeSwitchErrorRequest, cb?: (error: string, rep: DescribeSwitchErrorResponse) => void): Promise<DescribeSwitchErrorResponse>;
|
|
394
422
|
/**
|
|
395
423
|
* DescribeTLogInfo告警中心概况查询
|
|
396
424
|
*/
|
|
@@ -446,6 +474,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
446
474
|
* DescribeTLogIpList告警中心IP柱形图
|
|
447
475
|
*/
|
|
448
476
|
DescribeTLogIpList(req: DescribeTLogIpListRequest, cb?: (error: string, rep: DescribeTLogIpListResponse) => void): Promise<DescribeTLogIpListResponse>;
|
|
477
|
+
/**
|
|
478
|
+
* 查询CCN关联实例的地域防火墙引流网络部署状态
|
|
479
|
+
1.根据CCN ID和实例ID列表,返回实例对应地域的防火墙引流网络部署状态
|
|
480
|
+
2.如果传入实例ID列表为空,则返回CCN关联的所有实例的地域防火墙引流网络部署状态
|
|
481
|
+
*/
|
|
482
|
+
DescribeCcnInstanceRegionStatus(req: DescribeCcnInstanceRegionStatusRequest, cb?: (error: string, rep: DescribeCcnInstanceRegionStatusResponse) => void): Promise<DescribeCcnInstanceRegionStatusResponse>;
|
|
449
483
|
/**
|
|
450
484
|
* 创建地址模板规则
|
|
451
485
|
*/
|
|
@@ -118,6 +118,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
118
118
|
async RemoveEnterpriseSecurityGroupRule(req, cb) {
|
|
119
119
|
return this.request("RemoveEnterpriseSecurityGroupRule", req, cb);
|
|
120
120
|
}
|
|
121
|
+
/**
|
|
122
|
+
* 修改集群模式VPC防火墙开关
|
|
123
|
+
*/
|
|
124
|
+
async ModifyClusterVpcFwSwitch(req, cb) {
|
|
125
|
+
return this.request("ModifyClusterVpcFwSwitch", req, cb);
|
|
126
|
+
}
|
|
121
127
|
/**
|
|
122
128
|
* NAT防火墙规则快速排序
|
|
123
129
|
*/
|
|
@@ -136,6 +142,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
136
142
|
async CreateNatFwInstance(req, cb) {
|
|
137
143
|
return this.request("CreateNatFwInstance", req, cb);
|
|
138
144
|
}
|
|
145
|
+
/**
|
|
146
|
+
* 重新检测CCN中接入VPC防火墙的VPC实例非同城直通标记
|
|
147
|
+
*/
|
|
148
|
+
async UpdateCheckCcnNonDirectFlag(req, cb) {
|
|
149
|
+
return this.request("UpdateCheckCcnNonDirectFlag", req, cb);
|
|
150
|
+
}
|
|
139
151
|
/**
|
|
140
152
|
* ModifyBlockTop取消置顶接口
|
|
141
153
|
*/
|
|
@@ -226,6 +238,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
226
238
|
async ModifySecurityGroupRule(req, cb) {
|
|
227
239
|
return this.request("ModifySecurityGroupRule", req, cb);
|
|
228
240
|
}
|
|
241
|
+
/**
|
|
242
|
+
* 修改更新CCN中VPC防火墙策略配置
|
|
243
|
+
*/
|
|
244
|
+
async UpdateClusterVpcFw(req, cb) {
|
|
245
|
+
return this.request("UpdateClusterVpcFw", req, cb);
|
|
246
|
+
}
|
|
229
247
|
/**
|
|
230
248
|
* 查询安全组规则列表
|
|
231
249
|
*/
|
|
@@ -268,6 +286,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
268
286
|
async ModifyNatFwVpcDnsSwitch(req, cb) {
|
|
269
287
|
return this.request("ModifyNatFwVpcDnsSwitch", req, cb);
|
|
270
288
|
}
|
|
289
|
+
/**
|
|
290
|
+
* 查询云联网关联的实例信息
|
|
291
|
+
*/
|
|
292
|
+
async DescribeCcnAssociatedInstances(req, cb) {
|
|
293
|
+
return this.request("DescribeCcnAssociatedInstances", req, cb);
|
|
294
|
+
}
|
|
271
295
|
/**
|
|
272
296
|
* 启用停用单条企业安全组规则
|
|
273
297
|
*/
|
|
@@ -364,12 +388,24 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
364
388
|
async DescribeSwitchLists(req, cb) {
|
|
365
389
|
return this.request("DescribeSwitchLists", req, cb);
|
|
366
390
|
}
|
|
391
|
+
/**
|
|
392
|
+
* 查询CCN VPC防火墙开关配置
|
|
393
|
+
*/
|
|
394
|
+
async DescribeCcnVpcFwSwitch(req, cb) {
|
|
395
|
+
return this.request("DescribeCcnVpcFwSwitch", req, cb);
|
|
396
|
+
}
|
|
367
397
|
/**
|
|
368
398
|
* 修改规则表状态
|
|
369
399
|
*/
|
|
370
400
|
async ModifyTableStatus(req, cb) {
|
|
371
401
|
return this.request("ModifyTableStatus", req, cb);
|
|
372
402
|
}
|
|
403
|
+
/**
|
|
404
|
+
* 查询VPC防火墙策略路由功能开白的CCN列表
|
|
405
|
+
*/
|
|
406
|
+
async DescribeVpcFwCcnPolicyWhiteList(req, cb) {
|
|
407
|
+
return this.request("DescribeVpcFwCcnPolicyWhiteList", req, cb);
|
|
408
|
+
}
|
|
373
409
|
/**
|
|
374
410
|
* 用户告警中心-封隔离处置按钮
|
|
375
411
|
*/
|
|
@@ -601,6 +637,12 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
601
637
|
async ModifyEnterpriseSecurityDispatchStatus(req, cb) {
|
|
602
638
|
return this.request("ModifyEnterpriseSecurityDispatchStatus", req, cb);
|
|
603
639
|
}
|
|
640
|
+
/**
|
|
641
|
+
* 互联网边界防火墙开关横幅错误信息
|
|
642
|
+
*/
|
|
643
|
+
async DescribeSwitchError(req, cb) {
|
|
644
|
+
return this.request("DescribeSwitchError", req, cb);
|
|
645
|
+
}
|
|
604
646
|
/**
|
|
605
647
|
* DescribeTLogInfo告警中心概况查询
|
|
606
648
|
*/
|
|
@@ -682,6 +724,14 @@ VPC间规则需指定EdgeId。Nat边界规则需指定地域Region与Direction
|
|
|
682
724
|
async DescribeTLogIpList(req, cb) {
|
|
683
725
|
return this.request("DescribeTLogIpList", req, cb);
|
|
684
726
|
}
|
|
727
|
+
/**
|
|
728
|
+
* 查询CCN关联实例的地域防火墙引流网络部署状态
|
|
729
|
+
1.根据CCN ID和实例ID列表,返回实例对应地域的防火墙引流网络部署状态
|
|
730
|
+
2.如果传入实例ID列表为空,则返回CCN关联的所有实例的地域防火墙引流网络部署状态
|
|
731
|
+
*/
|
|
732
|
+
async DescribeCcnInstanceRegionStatus(req, cb) {
|
|
733
|
+
return this.request("DescribeCcnInstanceRegionStatus", req, cb);
|
|
734
|
+
}
|
|
685
735
|
/**
|
|
686
736
|
* 创建地址模板规则
|
|
687
737
|
*/
|