tencentcloud-sdk-nodejs-cfw 4.0.641 → 4.0.642
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 +173 -0
- package/SERVICE_CHANGELOG.md +210 -91
- package/package.json +1 -1
- package/products.md +14 -14
- package/src/services/cfw/v20190904/cfw_client.ts +51 -27
- package/src/services/cfw/v20190904/cfw_models.ts +95 -33
- package/tencentcloud/services/cfw/v20190904/cfw_client.d.ts +19 -11
- package/tencentcloud/services/cfw/v20190904/cfw_client.js +26 -14
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +90 -32
|
@@ -510,10 +510,6 @@ export interface DeleteAllAccessControlRuleRequest {
|
|
|
510
510
|
*/
|
|
511
511
|
Area?: string;
|
|
512
512
|
}
|
|
513
|
-
/**
|
|
514
|
-
* DescribeEnterpriseSGRuleProgress请求参数结构体
|
|
515
|
-
*/
|
|
516
|
-
export declare type DescribeEnterpriseSGRuleProgressRequest = null;
|
|
517
513
|
/**
|
|
518
514
|
* ModifySecurityGroupRule请求参数结构体
|
|
519
515
|
*/
|
|
@@ -959,6 +955,19 @@ export interface AddEnterpriseSecurityGroupRulesRequest {
|
|
|
959
955
|
*/
|
|
960
956
|
IsDelay?: number;
|
|
961
957
|
}
|
|
958
|
+
/**
|
|
959
|
+
* ModifySecurityGroupSequenceRules返回参数结构体
|
|
960
|
+
*/
|
|
961
|
+
export interface ModifySecurityGroupSequenceRulesResponse {
|
|
962
|
+
/**
|
|
963
|
+
* 状态值,0:修改成功,非0:修改失败
|
|
964
|
+
*/
|
|
965
|
+
Status: number;
|
|
966
|
+
/**
|
|
967
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
968
|
+
*/
|
|
969
|
+
RequestId?: string;
|
|
970
|
+
}
|
|
962
971
|
/**
|
|
963
972
|
* 安全组规则
|
|
964
973
|
*/
|
|
@@ -1541,31 +1550,9 @@ export interface DescribeTLogInfoRequest {
|
|
|
1541
1550
|
SearchValue?: string;
|
|
1542
1551
|
}
|
|
1543
1552
|
/**
|
|
1544
|
-
*
|
|
1553
|
+
* DescribeEnterpriseSGRuleProgress请求参数结构体
|
|
1545
1554
|
*/
|
|
1546
|
-
export
|
|
1547
|
-
/**
|
|
1548
|
-
* 列表当前规则总条数
|
|
1549
|
-
*/
|
|
1550
|
-
Total: number;
|
|
1551
|
-
/**
|
|
1552
|
-
* 安全组规则列表数据
|
|
1553
|
-
*/
|
|
1554
|
-
Data: Array<SecurityGroupListData>;
|
|
1555
|
-
/**
|
|
1556
|
-
* 不算筛选条数的总条数
|
|
1557
|
-
*/
|
|
1558
|
-
AllTotal: number;
|
|
1559
|
-
/**
|
|
1560
|
-
* 访问控制规则全部启用/全部停用
|
|
1561
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
|
1562
|
-
*/
|
|
1563
|
-
Enable: number;
|
|
1564
|
-
/**
|
|
1565
|
-
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1566
|
-
*/
|
|
1567
|
-
RequestId?: string;
|
|
1568
|
-
}
|
|
1555
|
+
export declare type DescribeEnterpriseSGRuleProgressRequest = null;
|
|
1569
1556
|
/**
|
|
1570
1557
|
* AssetZone
|
|
1571
1558
|
*/
|
|
@@ -2185,6 +2172,29 @@ export interface ModifyAllPublicIPSwitchStatusRequest {
|
|
|
2185
2172
|
*/
|
|
2186
2173
|
FireWallPublicIPs?: Array<string>;
|
|
2187
2174
|
}
|
|
2175
|
+
/**
|
|
2176
|
+
* CreateAddressTemplate请求参数结构体
|
|
2177
|
+
*/
|
|
2178
|
+
export interface CreateAddressTemplateRequest {
|
|
2179
|
+
/**
|
|
2180
|
+
* 模板名称
|
|
2181
|
+
*/
|
|
2182
|
+
Name: string;
|
|
2183
|
+
/**
|
|
2184
|
+
* 模板描述
|
|
2185
|
+
*/
|
|
2186
|
+
Detail: string;
|
|
2187
|
+
/**
|
|
2188
|
+
* Type为1,ip模板eg:1.1.1.1,2.2.2.2;
|
|
2189
|
+
Type为5,域名模板eg:www.qq.com,www.tencent.com
|
|
2190
|
+
*/
|
|
2191
|
+
IpString: string;
|
|
2192
|
+
/**
|
|
2193
|
+
* 1 ip模板
|
|
2194
|
+
5 域名模板
|
|
2195
|
+
*/
|
|
2196
|
+
Type: number;
|
|
2197
|
+
}
|
|
2188
2198
|
/**
|
|
2189
2199
|
* DescribeBlockStaticList返回参数结构体
|
|
2190
2200
|
*/
|
|
@@ -2367,13 +2377,26 @@ export interface ModifyEnterpriseSecurityGroupRuleResponse {
|
|
|
2367
2377
|
RequestId?: string;
|
|
2368
2378
|
}
|
|
2369
2379
|
/**
|
|
2370
|
-
*
|
|
2380
|
+
* DescribeSecurityGroupList返回参数结构体
|
|
2371
2381
|
*/
|
|
2372
|
-
export interface
|
|
2382
|
+
export interface DescribeSecurityGroupListResponse {
|
|
2373
2383
|
/**
|
|
2374
|
-
*
|
|
2384
|
+
* 列表当前规则总条数
|
|
2375
2385
|
*/
|
|
2376
|
-
|
|
2386
|
+
Total: number;
|
|
2387
|
+
/**
|
|
2388
|
+
* 安全组规则列表数据
|
|
2389
|
+
*/
|
|
2390
|
+
Data: Array<SecurityGroupListData>;
|
|
2391
|
+
/**
|
|
2392
|
+
* 不算筛选条数的总条数
|
|
2393
|
+
*/
|
|
2394
|
+
AllTotal: number;
|
|
2395
|
+
/**
|
|
2396
|
+
* 访问控制规则全部启用/全部停用
|
|
2397
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2398
|
+
*/
|
|
2399
|
+
Enable: number;
|
|
2377
2400
|
/**
|
|
2378
2401
|
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2379
2402
|
*/
|
|
@@ -2541,6 +2564,19 @@ export interface RemoveEnterpriseSecurityGroupRuleResponse {
|
|
|
2541
2564
|
*/
|
|
2542
2565
|
RequestId?: string;
|
|
2543
2566
|
}
|
|
2567
|
+
/**
|
|
2568
|
+
* CreateAddressTemplate返回参数结构体
|
|
2569
|
+
*/
|
|
2570
|
+
export interface CreateAddressTemplateResponse {
|
|
2571
|
+
/**
|
|
2572
|
+
* 创建结果,0成功
|
|
2573
|
+
*/
|
|
2574
|
+
Status?: number;
|
|
2575
|
+
/**
|
|
2576
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
2577
|
+
*/
|
|
2578
|
+
RequestId?: string;
|
|
2579
|
+
}
|
|
2544
2580
|
/**
|
|
2545
2581
|
* ModifyEnterpriseSecurityGroupRule请求参数结构体
|
|
2546
2582
|
*/
|
|
@@ -3937,6 +3973,19 @@ export interface DescribeResourceGroupResponse {
|
|
|
3937
3973
|
*/
|
|
3938
3974
|
RequestId?: string;
|
|
3939
3975
|
}
|
|
3976
|
+
/**
|
|
3977
|
+
* DeleteAddressTemplate返回参数结构体
|
|
3978
|
+
*/
|
|
3979
|
+
export interface DeleteAddressTemplateResponse {
|
|
3980
|
+
/**
|
|
3981
|
+
* 删除结果,0成功
|
|
3982
|
+
*/
|
|
3983
|
+
Status?: number;
|
|
3984
|
+
/**
|
|
3985
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
3986
|
+
*/
|
|
3987
|
+
RequestId?: string;
|
|
3988
|
+
}
|
|
3940
3989
|
/**
|
|
3941
3990
|
* DescribeCfwEips返回参数结构体
|
|
3942
3991
|
*/
|
|
@@ -4036,6 +4085,15 @@ export interface ModifyRunSyncAssetRequest {
|
|
|
4036
4085
|
*/
|
|
4037
4086
|
Type?: number;
|
|
4038
4087
|
}
|
|
4088
|
+
/**
|
|
4089
|
+
* DeleteAddressTemplate请求参数结构体
|
|
4090
|
+
*/
|
|
4091
|
+
export interface DeleteAddressTemplateRequest {
|
|
4092
|
+
/**
|
|
4093
|
+
* 模板id
|
|
4094
|
+
*/
|
|
4095
|
+
Uuid: string;
|
|
4096
|
+
}
|
|
4039
4097
|
/**
|
|
4040
4098
|
* CreateAcRules返回参数结构体
|
|
4041
4099
|
*/
|