tencentcloud-sdk-nodejs 4.1.68 → 4.1.69
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/aiart/v20221229/aiart_client.js +34 -28
- package/es/services/ccc/v20200210/ccc_client.js +6 -3
- package/es/services/csip/v20221121/csip_client.js +11 -2
- 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/aiart/v20221229/aiart_client.d.ts +78 -68
- package/tencentcloud/services/aiart/v20221229/aiart_client.js +98 -84
- package/tencentcloud/services/aiart/v20221229/aiart_models.d.ts +252 -70
- package/tencentcloud/services/apm/v20210622/apm_models.d.ts +96 -0
- package/tencentcloud/services/ccc/v20200210/ccc_client.d.ts +9 -5
- package/tencentcloud/services/ccc/v20200210/ccc_client.js +12 -6
- package/tencentcloud/services/ccc/v20200210/ccc_models.d.ts +76 -4
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +72 -60
- package/tencentcloud/services/csip/v20221121/csip_client.d.ts +15 -3
- package/tencentcloud/services/csip/v20221121/csip_client.js +21 -3
- package/tencentcloud/services/csip/v20221121/csip_models.d.ts +682 -275
- package/tencentcloud/services/emr/v20190103/emr_models.d.ts +8 -0
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +24 -0
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +12 -0
- package/tencentcloud/services/gs/v20191118/gs_models.d.ts +1 -1
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +5 -2
- package/tencentcloud/services/oceanus/v20190422/oceanus_models.d.ts +68 -0
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +4 -0
- package/tencentcloud/services/trocket/v20230308/trocket_models.d.ts +1 -1
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +12 -0
- package/tencentcloud/services/waf/v20180125/waf_models.d.ts +25 -0
|
@@ -341,17 +341,25 @@ export interface HighBaseLineRiskItem {
|
|
|
341
341
|
AppID?: number;
|
|
342
342
|
}
|
|
343
343
|
/**
|
|
344
|
-
*
|
|
344
|
+
* 访问密钥资产告警信息
|
|
345
345
|
*/
|
|
346
|
-
export interface
|
|
346
|
+
export interface AccessKeyAlarmInfo {
|
|
347
347
|
/**
|
|
348
|
-
*
|
|
348
|
+
* 告警类型/风险类型
|
|
349
|
+
告警类型:
|
|
350
|
+
0异常调用
|
|
351
|
+
1泄漏检测
|
|
352
|
+
2自定义
|
|
353
|
+
|
|
354
|
+
风险类型:
|
|
355
|
+
0:配置风险
|
|
356
|
+
1: 自定义风险
|
|
349
357
|
*/
|
|
350
|
-
|
|
358
|
+
Type?: number;
|
|
351
359
|
/**
|
|
352
|
-
*
|
|
360
|
+
* 告警数量/风险数量
|
|
353
361
|
*/
|
|
354
|
-
|
|
362
|
+
Count?: number;
|
|
355
363
|
}
|
|
356
364
|
/**
|
|
357
365
|
* DescribeAssetViewVulRiskList返回参数结构体
|
|
@@ -477,174 +485,9 @@ export interface DescribeSubnetAssetsRequest {
|
|
|
477
485
|
Filter?: Filter;
|
|
478
486
|
}
|
|
479
487
|
/**
|
|
480
|
-
*
|
|
488
|
+
* AddNewBindRoleUser请求参数结构体
|
|
481
489
|
*/
|
|
482
|
-
export
|
|
483
|
-
/**
|
|
484
|
-
* 影响资产
|
|
485
|
-
*/
|
|
486
|
-
AffectAsset?: string;
|
|
487
|
-
/**
|
|
488
|
-
* 风险等级,low-低危,high-高危,middle-中危,info-提示,extreme-严重。
|
|
489
|
-
*/
|
|
490
|
-
Level?: string;
|
|
491
|
-
/**
|
|
492
|
-
* 资产类型
|
|
493
|
-
*/
|
|
494
|
-
InstanceType?: string;
|
|
495
|
-
/**
|
|
496
|
-
* 组件
|
|
497
|
-
*/
|
|
498
|
-
Component?: string;
|
|
499
|
-
/**
|
|
500
|
-
* 最近识别时间
|
|
501
|
-
*/
|
|
502
|
-
RecentTime?: string;
|
|
503
|
-
/**
|
|
504
|
-
* 首次识别时间
|
|
505
|
-
*/
|
|
506
|
-
FirstTime?: string;
|
|
507
|
-
/**
|
|
508
|
-
* 状态,0未处理、1标记已处置、2已忽略,3已处置 ,4 处置中 ,5 检测中 ,6部分已处置
|
|
509
|
-
*/
|
|
510
|
-
Status?: number;
|
|
511
|
-
/**
|
|
512
|
-
* 风险ID
|
|
513
|
-
*/
|
|
514
|
-
RiskId?: string;
|
|
515
|
-
/**
|
|
516
|
-
* 实例id
|
|
517
|
-
*/
|
|
518
|
-
InstanceId?: string;
|
|
519
|
-
/**
|
|
520
|
-
* 实例名
|
|
521
|
-
*/
|
|
522
|
-
InstanceName?: string;
|
|
523
|
-
/**
|
|
524
|
-
* 用户appid
|
|
525
|
-
*/
|
|
526
|
-
AppId?: string;
|
|
527
|
-
/**
|
|
528
|
-
* 用户昵称
|
|
529
|
-
*/
|
|
530
|
-
Nick?: string;
|
|
531
|
-
/**
|
|
532
|
-
* 用户uin
|
|
533
|
-
*/
|
|
534
|
-
Uin?: string;
|
|
535
|
-
/**
|
|
536
|
-
* 漏洞类型
|
|
537
|
-
*/
|
|
538
|
-
VULType?: string;
|
|
539
|
-
/**
|
|
540
|
-
* 端口
|
|
541
|
-
*/
|
|
542
|
-
Port?: string;
|
|
543
|
-
/**
|
|
544
|
-
* 漏洞影响组件
|
|
545
|
-
*/
|
|
546
|
-
AppName?: string;
|
|
547
|
-
/**
|
|
548
|
-
* 漏洞影响版本
|
|
549
|
-
*/
|
|
550
|
-
AppVersion?: string;
|
|
551
|
-
/**
|
|
552
|
-
* 风险点
|
|
553
|
-
*/
|
|
554
|
-
VULURL?: string;
|
|
555
|
-
/**
|
|
556
|
-
* 漏洞名称
|
|
557
|
-
*/
|
|
558
|
-
VULName?: string;
|
|
559
|
-
/**
|
|
560
|
-
* cve
|
|
561
|
-
*/
|
|
562
|
-
CVE?: string;
|
|
563
|
-
/**
|
|
564
|
-
* pocid
|
|
565
|
-
*/
|
|
566
|
-
POCId?: string;
|
|
567
|
-
/**
|
|
568
|
-
* 扫描来源
|
|
569
|
-
*/
|
|
570
|
-
From?: string;
|
|
571
|
-
/**
|
|
572
|
-
* 主机版本
|
|
573
|
-
*/
|
|
574
|
-
CWPVersion?: number;
|
|
575
|
-
/**
|
|
576
|
-
* 实例uuid
|
|
577
|
-
*/
|
|
578
|
-
InstanceUUID?: string;
|
|
579
|
-
/**
|
|
580
|
-
* 攻击载荷
|
|
581
|
-
*/
|
|
582
|
-
Payload?: string;
|
|
583
|
-
/**
|
|
584
|
-
* 应急漏洞类型,1-应急漏洞,0-非应急漏洞
|
|
585
|
-
*/
|
|
586
|
-
EMGCVulType?: number;
|
|
587
|
-
/**
|
|
588
|
-
* CVSS评分
|
|
589
|
-
*/
|
|
590
|
-
CVSS?: number;
|
|
591
|
-
/**
|
|
592
|
-
* 前端索引id
|
|
593
|
-
*/
|
|
594
|
-
Index?: string;
|
|
595
|
-
/**
|
|
596
|
-
* pcmgrId
|
|
597
|
-
*/
|
|
598
|
-
PCMGRId?: string;
|
|
599
|
-
/**
|
|
600
|
-
* 报告id
|
|
601
|
-
*/
|
|
602
|
-
LogId?: string;
|
|
603
|
-
/**
|
|
604
|
-
* 任务id
|
|
605
|
-
*/
|
|
606
|
-
TaskId?: string;
|
|
607
|
-
/**
|
|
608
|
-
* 漏洞标签
|
|
609
|
-
*/
|
|
610
|
-
VulTag?: Array<string>;
|
|
611
|
-
/**
|
|
612
|
-
* 漏洞披露时间
|
|
613
|
-
*/
|
|
614
|
-
DisclosureTime?: string;
|
|
615
|
-
/**
|
|
616
|
-
* 攻击热度
|
|
617
|
-
*/
|
|
618
|
-
AttackHeat?: number;
|
|
619
|
-
/**
|
|
620
|
-
* 是否必修漏洞1是,0不是
|
|
621
|
-
*/
|
|
622
|
-
IsSuggest?: number;
|
|
623
|
-
/**
|
|
624
|
-
* 处置任务ID
|
|
625
|
-
*/
|
|
626
|
-
HandleTaskId?: string;
|
|
627
|
-
/**
|
|
628
|
-
* 引擎来源
|
|
629
|
-
*/
|
|
630
|
-
EngineSource?: string;
|
|
631
|
-
/**
|
|
632
|
-
* 新的漏洞风险id(同全网漏洞表的RiskId)
|
|
633
|
-
*/
|
|
634
|
-
VulRiskId?: string;
|
|
635
|
-
/**
|
|
636
|
-
* 新版漏洞id
|
|
637
|
-
*/
|
|
638
|
-
TvdID?: string;
|
|
639
|
-
/**
|
|
640
|
-
* 是否可以一键体检,1-可以,0-不可以
|
|
641
|
-
*/
|
|
642
|
-
IsOneClick?: number;
|
|
643
|
-
/**
|
|
644
|
-
* 是否POC扫描,0-非POC,1-POC
|
|
645
|
-
*/
|
|
646
|
-
IsPOC?: number;
|
|
647
|
-
}
|
|
490
|
+
export declare type AddNewBindRoleUserRequest = null;
|
|
648
491
|
/**
|
|
649
492
|
* DescribeCheckViewRisks请求参数结构体
|
|
650
493
|
*/
|
|
@@ -815,6 +658,23 @@ export interface VULBaseInfo {
|
|
|
815
658
|
*/
|
|
816
659
|
TvdID?: string;
|
|
817
660
|
}
|
|
661
|
+
/**
|
|
662
|
+
* DescribeCallRecord返回参数结构体
|
|
663
|
+
*/
|
|
664
|
+
export interface DescribeCallRecordResponse {
|
|
665
|
+
/**
|
|
666
|
+
* 调用记录列表
|
|
667
|
+
*/
|
|
668
|
+
Data?: Array<CallRecord>;
|
|
669
|
+
/**
|
|
670
|
+
* 调用记录总数
|
|
671
|
+
*/
|
|
672
|
+
Total?: number;
|
|
673
|
+
/**
|
|
674
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
675
|
+
*/
|
|
676
|
+
RequestId?: string;
|
|
677
|
+
}
|
|
818
678
|
/**
|
|
819
679
|
* 资产视角配置风险
|
|
820
680
|
*/
|
|
@@ -1805,6 +1665,19 @@ export interface DescribeTopAttackInfoResponse {
|
|
|
1805
1665
|
*/
|
|
1806
1666
|
RequestId?: string;
|
|
1807
1667
|
}
|
|
1668
|
+
/**
|
|
1669
|
+
* 弱口令风险高级配置
|
|
1670
|
+
*/
|
|
1671
|
+
export interface TaskCenterWeakPwdRiskInputParam {
|
|
1672
|
+
/**
|
|
1673
|
+
* 检测项ID
|
|
1674
|
+
*/
|
|
1675
|
+
CheckItemId: number;
|
|
1676
|
+
/**
|
|
1677
|
+
* 是否开启,0-不开启,1-开启
|
|
1678
|
+
*/
|
|
1679
|
+
Enable: number;
|
|
1680
|
+
}
|
|
1808
1681
|
/**
|
|
1809
1682
|
* DescribeVULRiskDetail返回参数结构体
|
|
1810
1683
|
*/
|
|
@@ -2246,6 +2119,35 @@ export interface DescribeRiskRuleDetailRequest {
|
|
|
2246
2119
|
*/
|
|
2247
2120
|
RiskRuleId: string;
|
|
2248
2121
|
}
|
|
2122
|
+
/**
|
|
2123
|
+
* DescribeRiskCenterPortViewPortRiskList返回参数结构体
|
|
2124
|
+
*/
|
|
2125
|
+
export interface DescribeRiskCenterPortViewPortRiskListResponse {
|
|
2126
|
+
/**
|
|
2127
|
+
* 总条数
|
|
2128
|
+
*/
|
|
2129
|
+
TotalCount?: number;
|
|
2130
|
+
/**
|
|
2131
|
+
* 端口视角的端口风险列表
|
|
2132
|
+
*/
|
|
2133
|
+
Data?: Array<PortViewPortRisk>;
|
|
2134
|
+
/**
|
|
2135
|
+
* 危险等级列表
|
|
2136
|
+
*/
|
|
2137
|
+
LevelLists?: Array<FilterDataObject>;
|
|
2138
|
+
/**
|
|
2139
|
+
* 处置建议列表
|
|
2140
|
+
*/
|
|
2141
|
+
SuggestionLists?: Array<FilterDataObject>;
|
|
2142
|
+
/**
|
|
2143
|
+
* 来源列表
|
|
2144
|
+
*/
|
|
2145
|
+
FromLists?: Array<FilterDataObject>;
|
|
2146
|
+
/**
|
|
2147
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2148
|
+
*/
|
|
2149
|
+
RequestId?: string;
|
|
2150
|
+
}
|
|
2249
2151
|
/**
|
|
2250
2152
|
* DescribeOrganizationInfo请求参数结构体
|
|
2251
2153
|
*/
|
|
@@ -2544,6 +2446,23 @@ export interface ModifyUebaRuleSwitchRequest {
|
|
|
2544
2446
|
*/
|
|
2545
2447
|
MemberId?: Array<string>;
|
|
2546
2448
|
}
|
|
2449
|
+
/**
|
|
2450
|
+
* DescribeSourceIPAsset返回参数结构体
|
|
2451
|
+
*/
|
|
2452
|
+
export interface DescribeSourceIPAssetResponse {
|
|
2453
|
+
/**
|
|
2454
|
+
* 访问密钥资产列表
|
|
2455
|
+
*/
|
|
2456
|
+
Data?: Array<SourceIPAsset>;
|
|
2457
|
+
/**
|
|
2458
|
+
* 全部数量
|
|
2459
|
+
*/
|
|
2460
|
+
Total?: number;
|
|
2461
|
+
/**
|
|
2462
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2463
|
+
*/
|
|
2464
|
+
RequestId?: string;
|
|
2465
|
+
}
|
|
2547
2466
|
/**
|
|
2548
2467
|
* DescribeScanReportList返回参数结构体
|
|
2549
2468
|
*/
|
|
@@ -2657,19 +2576,184 @@ export interface CheckViewRiskItem {
|
|
|
2657
2576
|
EventType?: string;
|
|
2658
2577
|
}
|
|
2659
2578
|
/**
|
|
2660
|
-
*
|
|
2661
|
-
*/
|
|
2662
|
-
export declare type AddNewBindRoleUserRequest = null;
|
|
2663
|
-
/**
|
|
2664
|
-
* DescribeOrganizationUserInfo返回参数结构体
|
|
2579
|
+
* 资产视角的漏洞风险对象
|
|
2665
2580
|
*/
|
|
2666
|
-
export interface
|
|
2581
|
+
export interface AssetViewVULRiskData {
|
|
2667
2582
|
/**
|
|
2668
|
-
*
|
|
2583
|
+
* 影响资产
|
|
2669
2584
|
*/
|
|
2670
|
-
|
|
2585
|
+
AffectAsset?: string;
|
|
2671
2586
|
/**
|
|
2672
|
-
*
|
|
2587
|
+
* 风险等级,low-低危,high-高危,middle-中危,info-提示,extreme-严重。
|
|
2588
|
+
*/
|
|
2589
|
+
Level?: string;
|
|
2590
|
+
/**
|
|
2591
|
+
* 资产类型
|
|
2592
|
+
*/
|
|
2593
|
+
InstanceType?: string;
|
|
2594
|
+
/**
|
|
2595
|
+
* 组件
|
|
2596
|
+
*/
|
|
2597
|
+
Component?: string;
|
|
2598
|
+
/**
|
|
2599
|
+
* 最近识别时间
|
|
2600
|
+
*/
|
|
2601
|
+
RecentTime?: string;
|
|
2602
|
+
/**
|
|
2603
|
+
* 首次识别时间
|
|
2604
|
+
*/
|
|
2605
|
+
FirstTime?: string;
|
|
2606
|
+
/**
|
|
2607
|
+
* 状态,0未处理、1标记已处置、2已忽略,3已处置 ,4 处置中 ,5 检测中 ,6部分已处置
|
|
2608
|
+
*/
|
|
2609
|
+
Status?: number;
|
|
2610
|
+
/**
|
|
2611
|
+
* 风险ID
|
|
2612
|
+
*/
|
|
2613
|
+
RiskId?: string;
|
|
2614
|
+
/**
|
|
2615
|
+
* 实例id
|
|
2616
|
+
*/
|
|
2617
|
+
InstanceId?: string;
|
|
2618
|
+
/**
|
|
2619
|
+
* 实例名
|
|
2620
|
+
*/
|
|
2621
|
+
InstanceName?: string;
|
|
2622
|
+
/**
|
|
2623
|
+
* 用户appid
|
|
2624
|
+
*/
|
|
2625
|
+
AppId?: string;
|
|
2626
|
+
/**
|
|
2627
|
+
* 用户昵称
|
|
2628
|
+
*/
|
|
2629
|
+
Nick?: string;
|
|
2630
|
+
/**
|
|
2631
|
+
* 用户uin
|
|
2632
|
+
*/
|
|
2633
|
+
Uin?: string;
|
|
2634
|
+
/**
|
|
2635
|
+
* 漏洞类型
|
|
2636
|
+
*/
|
|
2637
|
+
VULType?: string;
|
|
2638
|
+
/**
|
|
2639
|
+
* 端口
|
|
2640
|
+
*/
|
|
2641
|
+
Port?: string;
|
|
2642
|
+
/**
|
|
2643
|
+
* 漏洞影响组件
|
|
2644
|
+
*/
|
|
2645
|
+
AppName?: string;
|
|
2646
|
+
/**
|
|
2647
|
+
* 漏洞影响版本
|
|
2648
|
+
*/
|
|
2649
|
+
AppVersion?: string;
|
|
2650
|
+
/**
|
|
2651
|
+
* 风险点
|
|
2652
|
+
*/
|
|
2653
|
+
VULURL?: string;
|
|
2654
|
+
/**
|
|
2655
|
+
* 漏洞名称
|
|
2656
|
+
*/
|
|
2657
|
+
VULName?: string;
|
|
2658
|
+
/**
|
|
2659
|
+
* cve
|
|
2660
|
+
*/
|
|
2661
|
+
CVE?: string;
|
|
2662
|
+
/**
|
|
2663
|
+
* pocid
|
|
2664
|
+
*/
|
|
2665
|
+
POCId?: string;
|
|
2666
|
+
/**
|
|
2667
|
+
* 扫描来源
|
|
2668
|
+
*/
|
|
2669
|
+
From?: string;
|
|
2670
|
+
/**
|
|
2671
|
+
* 主机版本
|
|
2672
|
+
*/
|
|
2673
|
+
CWPVersion?: number;
|
|
2674
|
+
/**
|
|
2675
|
+
* 实例uuid
|
|
2676
|
+
*/
|
|
2677
|
+
InstanceUUID?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
* 攻击载荷
|
|
2680
|
+
*/
|
|
2681
|
+
Payload?: string;
|
|
2682
|
+
/**
|
|
2683
|
+
* 应急漏洞类型,1-应急漏洞,0-非应急漏洞
|
|
2684
|
+
*/
|
|
2685
|
+
EMGCVulType?: number;
|
|
2686
|
+
/**
|
|
2687
|
+
* CVSS评分
|
|
2688
|
+
*/
|
|
2689
|
+
CVSS?: number;
|
|
2690
|
+
/**
|
|
2691
|
+
* 前端索引id
|
|
2692
|
+
*/
|
|
2693
|
+
Index?: string;
|
|
2694
|
+
/**
|
|
2695
|
+
* pcmgrId
|
|
2696
|
+
*/
|
|
2697
|
+
PCMGRId?: string;
|
|
2698
|
+
/**
|
|
2699
|
+
* 报告id
|
|
2700
|
+
*/
|
|
2701
|
+
LogId?: string;
|
|
2702
|
+
/**
|
|
2703
|
+
* 任务id
|
|
2704
|
+
*/
|
|
2705
|
+
TaskId?: string;
|
|
2706
|
+
/**
|
|
2707
|
+
* 漏洞标签
|
|
2708
|
+
*/
|
|
2709
|
+
VulTag?: Array<string>;
|
|
2710
|
+
/**
|
|
2711
|
+
* 漏洞披露时间
|
|
2712
|
+
*/
|
|
2713
|
+
DisclosureTime?: string;
|
|
2714
|
+
/**
|
|
2715
|
+
* 攻击热度
|
|
2716
|
+
*/
|
|
2717
|
+
AttackHeat?: number;
|
|
2718
|
+
/**
|
|
2719
|
+
* 是否必修漏洞1是,0不是
|
|
2720
|
+
*/
|
|
2721
|
+
IsSuggest?: number;
|
|
2722
|
+
/**
|
|
2723
|
+
* 处置任务ID
|
|
2724
|
+
*/
|
|
2725
|
+
HandleTaskId?: string;
|
|
2726
|
+
/**
|
|
2727
|
+
* 引擎来源
|
|
2728
|
+
*/
|
|
2729
|
+
EngineSource?: string;
|
|
2730
|
+
/**
|
|
2731
|
+
* 新的漏洞风险id(同全网漏洞表的RiskId)
|
|
2732
|
+
*/
|
|
2733
|
+
VulRiskId?: string;
|
|
2734
|
+
/**
|
|
2735
|
+
* 新版漏洞id
|
|
2736
|
+
*/
|
|
2737
|
+
TvdID?: string;
|
|
2738
|
+
/**
|
|
2739
|
+
* 是否可以一键体检,1-可以,0-不可以
|
|
2740
|
+
*/
|
|
2741
|
+
IsOneClick?: number;
|
|
2742
|
+
/**
|
|
2743
|
+
* 是否POC扫描,0-非POC,1-POC
|
|
2744
|
+
*/
|
|
2745
|
+
IsPOC?: number;
|
|
2746
|
+
}
|
|
2747
|
+
/**
|
|
2748
|
+
* DescribeOrganizationUserInfo返回参数结构体
|
|
2749
|
+
*/
|
|
2750
|
+
export interface DescribeOrganizationUserInfoResponse {
|
|
2751
|
+
/**
|
|
2752
|
+
* 总条数
|
|
2753
|
+
*/
|
|
2754
|
+
TotalCount?: number;
|
|
2755
|
+
/**
|
|
2756
|
+
* 集团用户列表
|
|
2673
2757
|
*/
|
|
2674
2758
|
Data?: Array<OrganizationUserInfo>;
|
|
2675
2759
|
/**
|
|
@@ -3132,6 +3216,23 @@ export interface AssetInfoDetail {
|
|
|
3132
3216
|
*/
|
|
3133
3217
|
ScanTime?: string;
|
|
3134
3218
|
}
|
|
3219
|
+
/**
|
|
3220
|
+
* DescribeAccessKeyAsset返回参数结构体
|
|
3221
|
+
*/
|
|
3222
|
+
export interface DescribeAccessKeyAssetResponse {
|
|
3223
|
+
/**
|
|
3224
|
+
* 访问密钥资产列表
|
|
3225
|
+
*/
|
|
3226
|
+
Data?: Array<AccessKeyAsset>;
|
|
3227
|
+
/**
|
|
3228
|
+
* 全部数量
|
|
3229
|
+
*/
|
|
3230
|
+
Total?: number;
|
|
3231
|
+
/**
|
|
3232
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3233
|
+
*/
|
|
3234
|
+
RequestId?: string;
|
|
3235
|
+
}
|
|
3135
3236
|
/**
|
|
3136
3237
|
* 子网资产
|
|
3137
3238
|
*/
|
|
@@ -4288,37 +4389,97 @@ export interface DescribeCVMAssetInfoRequest {
|
|
|
4288
4389
|
AssetId: string;
|
|
4289
4390
|
}
|
|
4290
4391
|
/**
|
|
4291
|
-
*
|
|
4392
|
+
* 资产视角的弱口令风险
|
|
4292
4393
|
*/
|
|
4293
|
-
export interface
|
|
4394
|
+
export interface AssetViewWeakPassRisk {
|
|
4294
4395
|
/**
|
|
4295
|
-
*
|
|
4396
|
+
* 影响资产
|
|
4296
4397
|
*/
|
|
4297
|
-
|
|
4398
|
+
AffectAsset?: string;
|
|
4298
4399
|
/**
|
|
4299
|
-
*
|
|
4400
|
+
* 风险等级,low-低危,high-高危,middle-中危,info-提示,extreme-严重。
|
|
4300
4401
|
*/
|
|
4301
|
-
|
|
4402
|
+
Level?: string;
|
|
4302
4403
|
/**
|
|
4303
|
-
*
|
|
4404
|
+
* 资产类型
|
|
4304
4405
|
*/
|
|
4305
|
-
|
|
4406
|
+
InstanceType?: string;
|
|
4306
4407
|
/**
|
|
4307
|
-
*
|
|
4408
|
+
* 组件
|
|
4308
4409
|
*/
|
|
4309
|
-
|
|
4410
|
+
Component?: string;
|
|
4310
4411
|
/**
|
|
4311
|
-
*
|
|
4412
|
+
* 服务
|
|
4312
4413
|
*/
|
|
4313
|
-
|
|
4414
|
+
Service?: string;
|
|
4314
4415
|
/**
|
|
4315
|
-
*
|
|
4416
|
+
* 最近识别时间
|
|
4316
4417
|
*/
|
|
4317
|
-
|
|
4418
|
+
RecentTime?: string;
|
|
4318
4419
|
/**
|
|
4319
|
-
*
|
|
4420
|
+
* 首次识别时间
|
|
4320
4421
|
*/
|
|
4321
|
-
|
|
4422
|
+
FirstTime?: string;
|
|
4423
|
+
/**
|
|
4424
|
+
* 状态,0未处理、1已处置、2已忽略
|
|
4425
|
+
*/
|
|
4426
|
+
Status?: number;
|
|
4427
|
+
/**
|
|
4428
|
+
* ID,处理风险使用
|
|
4429
|
+
*/
|
|
4430
|
+
Id?: string;
|
|
4431
|
+
/**
|
|
4432
|
+
* 前端索引
|
|
4433
|
+
*/
|
|
4434
|
+
Index?: string;
|
|
4435
|
+
/**
|
|
4436
|
+
* 实例id
|
|
4437
|
+
*/
|
|
4438
|
+
InstanceId?: string;
|
|
4439
|
+
/**
|
|
4440
|
+
* 实例名
|
|
4441
|
+
*/
|
|
4442
|
+
InstanceName?: string;
|
|
4443
|
+
/**
|
|
4444
|
+
* 用户appid
|
|
4445
|
+
*/
|
|
4446
|
+
AppId?: string;
|
|
4447
|
+
/**
|
|
4448
|
+
* 用户昵称
|
|
4449
|
+
*/
|
|
4450
|
+
Nick?: string;
|
|
4451
|
+
/**
|
|
4452
|
+
* 用户uin
|
|
4453
|
+
*/
|
|
4454
|
+
Uin?: string;
|
|
4455
|
+
/**
|
|
4456
|
+
* 弱口令类型
|
|
4457
|
+
*/
|
|
4458
|
+
PasswordType?: string;
|
|
4459
|
+
/**
|
|
4460
|
+
* 来源
|
|
4461
|
+
*/
|
|
4462
|
+
From?: string;
|
|
4463
|
+
/**
|
|
4464
|
+
* 漏洞类型
|
|
4465
|
+
*/
|
|
4466
|
+
VULType?: string;
|
|
4467
|
+
/**
|
|
4468
|
+
* 漏洞url
|
|
4469
|
+
*/
|
|
4470
|
+
VULURL?: string;
|
|
4471
|
+
/**
|
|
4472
|
+
* 修复建议
|
|
4473
|
+
*/
|
|
4474
|
+
Fix?: string;
|
|
4475
|
+
/**
|
|
4476
|
+
* 证明
|
|
4477
|
+
*/
|
|
4478
|
+
Payload?: string;
|
|
4479
|
+
/**
|
|
4480
|
+
* 端口
|
|
4481
|
+
*/
|
|
4482
|
+
Port?: number;
|
|
4322
4483
|
}
|
|
4323
4484
|
/**
|
|
4324
4485
|
* 网站风险对象
|
|
@@ -4620,9 +4781,22 @@ export interface DescribeRiskCenterVULViewVULRiskListResponse {
|
|
|
4620
4781
|
*/
|
|
4621
4782
|
VULTypeLists?: Array<FilterDataObject>;
|
|
4622
4783
|
/**
|
|
4623
|
-
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4784
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4785
|
+
*/
|
|
4786
|
+
RequestId?: string;
|
|
4787
|
+
}
|
|
4788
|
+
/**
|
|
4789
|
+
* DescribeAccessKeyAsset请求参数结构体
|
|
4790
|
+
*/
|
|
4791
|
+
export interface DescribeAccessKeyAssetRequest {
|
|
4792
|
+
/**
|
|
4793
|
+
* 集团账号的成员id
|
|
4794
|
+
*/
|
|
4795
|
+
MemberId?: Array<string>;
|
|
4796
|
+
/**
|
|
4797
|
+
* 过滤器
|
|
4624
4798
|
*/
|
|
4625
|
-
|
|
4799
|
+
Filter?: Filter;
|
|
4626
4800
|
}
|
|
4627
4801
|
/**
|
|
4628
4802
|
* DescribeRiskCenterVULViewVULRiskList请求参数结构体
|
|
@@ -5337,17 +5511,17 @@ export interface VulTrend {
|
|
|
5337
5511
|
Date?: string;
|
|
5338
5512
|
}
|
|
5339
5513
|
/**
|
|
5340
|
-
*
|
|
5514
|
+
* DescribeSourceIPAsset请求参数结构体
|
|
5341
5515
|
*/
|
|
5342
|
-
export interface
|
|
5516
|
+
export interface DescribeSourceIPAssetRequest {
|
|
5343
5517
|
/**
|
|
5344
|
-
*
|
|
5518
|
+
* 集团账号的成员id
|
|
5345
5519
|
*/
|
|
5346
|
-
|
|
5520
|
+
MemberId?: Array<string>;
|
|
5347
5521
|
/**
|
|
5348
|
-
*
|
|
5522
|
+
* 过滤器
|
|
5349
5523
|
*/
|
|
5350
|
-
|
|
5524
|
+
Filter?: Filter;
|
|
5351
5525
|
}
|
|
5352
5526
|
/**
|
|
5353
5527
|
* DescribeVulRiskList请求参数结构体
|
|
@@ -5909,6 +6083,27 @@ export interface DescribeRiskCenterWebsiteRiskListRequest {
|
|
|
5909
6083
|
*/
|
|
5910
6084
|
Tags?: Array<AssetTag>;
|
|
5911
6085
|
}
|
|
6086
|
+
/**
|
|
6087
|
+
* DescribeCallRecord请求参数结构体
|
|
6088
|
+
*/
|
|
6089
|
+
export interface DescribeCallRecordRequest {
|
|
6090
|
+
/**
|
|
6091
|
+
* 集团账号的成员id
|
|
6092
|
+
*/
|
|
6093
|
+
MemberId?: Array<string>;
|
|
6094
|
+
/**
|
|
6095
|
+
* 访问密钥的ID
|
|
6096
|
+
*/
|
|
6097
|
+
AccessKeyID?: number;
|
|
6098
|
+
/**
|
|
6099
|
+
* 调用源IP的ID
|
|
6100
|
+
*/
|
|
6101
|
+
SourceIPID?: number;
|
|
6102
|
+
/**
|
|
6103
|
+
* 过滤器
|
|
6104
|
+
*/
|
|
6105
|
+
Filter?: Filter;
|
|
6106
|
+
}
|
|
5912
6107
|
/**
|
|
5913
6108
|
* 主机漏洞风险内容
|
|
5914
6109
|
*/
|
|
@@ -6498,46 +6693,123 @@ export interface DescribeVpcAssetsResponse {
|
|
|
6498
6693
|
RequestId?: string;
|
|
6499
6694
|
}
|
|
6500
6695
|
/**
|
|
6501
|
-
*
|
|
6696
|
+
* 调用记录详情
|
|
6502
6697
|
*/
|
|
6503
|
-
export interface
|
|
6698
|
+
export interface CallRecord {
|
|
6504
6699
|
/**
|
|
6505
|
-
*
|
|
6700
|
+
* 调用记录ID
|
|
6506
6701
|
*/
|
|
6507
|
-
|
|
6702
|
+
CallID?: string;
|
|
6508
6703
|
/**
|
|
6509
|
-
*
|
|
6704
|
+
* 访问密钥
|
|
6510
6705
|
*/
|
|
6511
|
-
|
|
6706
|
+
AccessKey?: string;
|
|
6512
6707
|
/**
|
|
6513
|
-
*
|
|
6708
|
+
* 访问密钥备注
|
|
6514
6709
|
*/
|
|
6515
|
-
|
|
6516
|
-
}
|
|
6517
|
-
/**
|
|
6518
|
-
* DescribeRiskCenterPortViewPortRiskList返回参数结构体
|
|
6519
|
-
*/
|
|
6520
|
-
export interface DescribeRiskCenterPortViewPortRiskListResponse {
|
|
6710
|
+
AccessKeyRemark?: string;
|
|
6521
6711
|
/**
|
|
6522
|
-
*
|
|
6712
|
+
* 访问密钥ID
|
|
6523
6713
|
*/
|
|
6524
|
-
|
|
6714
|
+
AccessKeyID?: number;
|
|
6525
6715
|
/**
|
|
6526
|
-
*
|
|
6716
|
+
* 调用源IP
|
|
6527
6717
|
*/
|
|
6528
|
-
|
|
6718
|
+
SourceIP?: string;
|
|
6529
6719
|
/**
|
|
6530
|
-
*
|
|
6720
|
+
* 调用源IP备注
|
|
6531
6721
|
*/
|
|
6532
|
-
|
|
6722
|
+
SourceIPRemark?: string;
|
|
6533
6723
|
/**
|
|
6534
|
-
*
|
|
6724
|
+
* 调用源IP地域
|
|
6535
6725
|
*/
|
|
6536
|
-
|
|
6726
|
+
Region?: string;
|
|
6537
6727
|
/**
|
|
6538
|
-
*
|
|
6728
|
+
* IP类型 0:账号内(未备注) 1:账号外(未备注) 2:账号内 (已备注) 3:账号外 (已备注)
|
|
6539
6729
|
*/
|
|
6540
|
-
|
|
6730
|
+
IPType?: number;
|
|
6731
|
+
/**
|
|
6732
|
+
* 调用接口名称
|
|
6733
|
+
*/
|
|
6734
|
+
EventName?: string;
|
|
6735
|
+
/**
|
|
6736
|
+
* 调用产品名称
|
|
6737
|
+
*/
|
|
6738
|
+
ProductName?: string;
|
|
6739
|
+
/**
|
|
6740
|
+
* 调用类型
|
|
6741
|
+
0:控制台调用
|
|
6742
|
+
1:API
|
|
6743
|
+
*/
|
|
6744
|
+
EventType?: number;
|
|
6745
|
+
/**
|
|
6746
|
+
* 用户类型
|
|
6747
|
+
CAMUser/root/AssumedRole
|
|
6748
|
+
|
|
6749
|
+
*/
|
|
6750
|
+
UserType?: string;
|
|
6751
|
+
/**
|
|
6752
|
+
* 用户/角色名称
|
|
6753
|
+
*/
|
|
6754
|
+
UserName?: string;
|
|
6755
|
+
/**
|
|
6756
|
+
* 策略列表
|
|
6757
|
+
*/
|
|
6758
|
+
PolicySet?: Array<string>;
|
|
6759
|
+
/**
|
|
6760
|
+
* 调用次数
|
|
6761
|
+
*/
|
|
6762
|
+
CallCount?: number;
|
|
6763
|
+
/**
|
|
6764
|
+
* 调用错误码
|
|
6765
|
+
0表示成功
|
|
6766
|
+
*/
|
|
6767
|
+
Code?: number;
|
|
6768
|
+
/**
|
|
6769
|
+
* 首次调用时间
|
|
6770
|
+
*/
|
|
6771
|
+
FirstCallTime?: string;
|
|
6772
|
+
/**
|
|
6773
|
+
* 最后调用时间
|
|
6774
|
+
*/
|
|
6775
|
+
LastCallTime?: string;
|
|
6776
|
+
/**
|
|
6777
|
+
* IP关联资产ID,如果为空字符串,表示没有关联
|
|
6778
|
+
*/
|
|
6779
|
+
InstanceID?: string;
|
|
6780
|
+
/**
|
|
6781
|
+
* IP关联资产名称
|
|
6782
|
+
*/
|
|
6783
|
+
InstanceName?: string;
|
|
6784
|
+
/**
|
|
6785
|
+
* 聚合日期
|
|
6786
|
+
*/
|
|
6787
|
+
Date?: string;
|
|
6788
|
+
/**
|
|
6789
|
+
* appid
|
|
6790
|
+
*/
|
|
6791
|
+
AppID?: number;
|
|
6792
|
+
/**
|
|
6793
|
+
* 展示状态
|
|
6794
|
+
*/
|
|
6795
|
+
ShowStatus?: boolean;
|
|
6796
|
+
/**
|
|
6797
|
+
* 运营商
|
|
6798
|
+
*/
|
|
6799
|
+
ISP?: string;
|
|
6800
|
+
}
|
|
6801
|
+
/**
|
|
6802
|
+
* DescribeHighBaseLineRiskList返回参数结构体
|
|
6803
|
+
*/
|
|
6804
|
+
export interface DescribeHighBaseLineRiskListResponse {
|
|
6805
|
+
/**
|
|
6806
|
+
* 高危基线风险数量
|
|
6807
|
+
*/
|
|
6808
|
+
TotalCount?: number;
|
|
6809
|
+
/**
|
|
6810
|
+
* 高危基线风险列表
|
|
6811
|
+
*/
|
|
6812
|
+
HighBaseLineRiskList?: Array<HighBaseLineRiskItem>;
|
|
6541
6813
|
/**
|
|
6542
6814
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6543
6815
|
*/
|
|
@@ -6869,6 +7141,28 @@ export interface DomainAssetVO {
|
|
|
6869
7141
|
*/
|
|
6870
7142
|
BotAccessCount?: number;
|
|
6871
7143
|
}
|
|
7144
|
+
/**
|
|
7145
|
+
* AK简要信息
|
|
7146
|
+
*/
|
|
7147
|
+
export interface AKInfo {
|
|
7148
|
+
/**
|
|
7149
|
+
* ak对应id
|
|
7150
|
+
*/
|
|
7151
|
+
ID?: number;
|
|
7152
|
+
/**
|
|
7153
|
+
* ak具体值
|
|
7154
|
+
临时密钥时返回临时密钥
|
|
7155
|
+
*/
|
|
7156
|
+
Name?: string;
|
|
7157
|
+
/**
|
|
7158
|
+
* 所属账号
|
|
7159
|
+
*/
|
|
7160
|
+
User?: string;
|
|
7161
|
+
/**
|
|
7162
|
+
* 备注
|
|
7163
|
+
*/
|
|
7164
|
+
Remark?: string;
|
|
7165
|
+
}
|
|
6872
7166
|
/**
|
|
6873
7167
|
* DescribeRiskRules返回参数结构体
|
|
6874
7168
|
*/
|
|
@@ -7073,6 +7367,19 @@ export interface DescribeAlertListResponse {
|
|
|
7073
7367
|
*/
|
|
7074
7368
|
RequestId?: string;
|
|
7075
7369
|
}
|
|
7370
|
+
/**
|
|
7371
|
+
* ModifyOrganizationAccountStatus返回参数结构体
|
|
7372
|
+
*/
|
|
7373
|
+
export interface ModifyOrganizationAccountStatusResponse {
|
|
7374
|
+
/**
|
|
7375
|
+
* 返回值为0,则修改成功
|
|
7376
|
+
*/
|
|
7377
|
+
Status?: number;
|
|
7378
|
+
/**
|
|
7379
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
7380
|
+
*/
|
|
7381
|
+
RequestId?: string;
|
|
7382
|
+
}
|
|
7076
7383
|
/**
|
|
7077
7384
|
* DescribeRiskDetailList返回参数结构体
|
|
7078
7385
|
*/
|
|
@@ -7426,6 +7733,85 @@ export interface DescribeExposuresRequest {
|
|
|
7426
7733
|
*/
|
|
7427
7734
|
By?: string;
|
|
7428
7735
|
}
|
|
7736
|
+
/**
|
|
7737
|
+
* 访问密钥资产信息(源IP角度)
|
|
7738
|
+
*/
|
|
7739
|
+
export interface SourceIPAsset {
|
|
7740
|
+
/**
|
|
7741
|
+
* 源IP id
|
|
7742
|
+
*/
|
|
7743
|
+
ID?: number;
|
|
7744
|
+
/**
|
|
7745
|
+
* 源IP
|
|
7746
|
+
*/
|
|
7747
|
+
SourceIP?: string;
|
|
7748
|
+
/**
|
|
7749
|
+
* 备注
|
|
7750
|
+
*/
|
|
7751
|
+
Remark?: string;
|
|
7752
|
+
/**
|
|
7753
|
+
* 账号所属APPID
|
|
7754
|
+
*/
|
|
7755
|
+
AppID?: number;
|
|
7756
|
+
/**
|
|
7757
|
+
* IP地域
|
|
7758
|
+
*/
|
|
7759
|
+
Region?: string;
|
|
7760
|
+
/**
|
|
7761
|
+
* 调用方式
|
|
7762
|
+
0:控制台调用
|
|
7763
|
+
1:API
|
|
7764
|
+
*/
|
|
7765
|
+
EventType?: number;
|
|
7766
|
+
/**
|
|
7767
|
+
* IP类型
|
|
7768
|
+
0:账号内(未备注)
|
|
7769
|
+
1:账号外(未备注)
|
|
7770
|
+
2:账号内 (已备注)
|
|
7771
|
+
3:账号外 (已备注)
|
|
7772
|
+
*/
|
|
7773
|
+
IPType?: number;
|
|
7774
|
+
/**
|
|
7775
|
+
* 告警信息列表
|
|
7776
|
+
*/
|
|
7777
|
+
AccessKeyAlarmList?: Array<AccessKeyAlarmInfo>;
|
|
7778
|
+
/**
|
|
7779
|
+
* ak信息列表
|
|
7780
|
+
*/
|
|
7781
|
+
AKInfo?: Array<AKInfo>;
|
|
7782
|
+
/**
|
|
7783
|
+
* 调用接口数量
|
|
7784
|
+
*/
|
|
7785
|
+
ActionCount?: number;
|
|
7786
|
+
/**
|
|
7787
|
+
* 最近访问时间
|
|
7788
|
+
*/
|
|
7789
|
+
LastAccessTime?: string;
|
|
7790
|
+
/**
|
|
7791
|
+
* IP关联实例ID,如果为空字符串,代表非账号内资产
|
|
7792
|
+
*/
|
|
7793
|
+
InstanceID?: string;
|
|
7794
|
+
/**
|
|
7795
|
+
* IP关联实例名称
|
|
7796
|
+
*/
|
|
7797
|
+
InstanceName?: string;
|
|
7798
|
+
/**
|
|
7799
|
+
* 账号所属Uin
|
|
7800
|
+
*/
|
|
7801
|
+
Uin?: string;
|
|
7802
|
+
/**
|
|
7803
|
+
* 昵称
|
|
7804
|
+
*/
|
|
7805
|
+
Nickname?: string;
|
|
7806
|
+
/**
|
|
7807
|
+
* 展示状态
|
|
7808
|
+
*/
|
|
7809
|
+
ShowStatus?: boolean;
|
|
7810
|
+
/**
|
|
7811
|
+
* 运营商字段
|
|
7812
|
+
*/
|
|
7813
|
+
ISP?: string;
|
|
7814
|
+
}
|
|
7429
7815
|
/**
|
|
7430
7816
|
* DescribeAlertList请求参数结构体
|
|
7431
7817
|
*/
|
|
@@ -8173,97 +8559,118 @@ export interface DescribeGatewayAssetsRequest {
|
|
|
8173
8559
|
*/
|
|
8174
8560
|
export declare type DescribeCFWAssetStatisticsRequest = null;
|
|
8175
8561
|
/**
|
|
8176
|
-
*
|
|
8562
|
+
* 访问密钥资产信息
|
|
8177
8563
|
*/
|
|
8178
|
-
export interface
|
|
8564
|
+
export interface AccessKeyAsset {
|
|
8179
8565
|
/**
|
|
8180
|
-
*
|
|
8566
|
+
* AK 的id
|
|
8181
8567
|
*/
|
|
8182
|
-
|
|
8568
|
+
ID?: number;
|
|
8183
8569
|
/**
|
|
8184
|
-
*
|
|
8570
|
+
* AK名称
|
|
8185
8571
|
*/
|
|
8186
|
-
|
|
8572
|
+
Name?: string;
|
|
8187
8573
|
/**
|
|
8188
|
-
*
|
|
8574
|
+
* 备注
|
|
8189
8575
|
*/
|
|
8190
|
-
|
|
8576
|
+
Remark?: string;
|
|
8191
8577
|
/**
|
|
8192
|
-
*
|
|
8578
|
+
* 账号所属APPID
|
|
8193
8579
|
*/
|
|
8194
|
-
|
|
8580
|
+
AppID?: number;
|
|
8195
8581
|
/**
|
|
8196
|
-
*
|
|
8582
|
+
* 所属主账号Uin
|
|
8197
8583
|
*/
|
|
8198
|
-
|
|
8584
|
+
Uin?: string;
|
|
8199
8585
|
/**
|
|
8200
|
-
*
|
|
8586
|
+
* 主账号昵称
|
|
8201
8587
|
*/
|
|
8202
|
-
|
|
8588
|
+
Nickname?: string;
|
|
8203
8589
|
/**
|
|
8204
|
-
*
|
|
8590
|
+
* 所属子账号Uin
|
|
8205
8591
|
*/
|
|
8206
|
-
|
|
8592
|
+
SubUin?: string;
|
|
8207
8593
|
/**
|
|
8208
|
-
*
|
|
8594
|
+
* 所属子账号昵称
|
|
8209
8595
|
*/
|
|
8210
|
-
|
|
8596
|
+
SubNickname?: string;
|
|
8211
8597
|
/**
|
|
8212
|
-
*
|
|
8598
|
+
* 0 主账号AK
|
|
8599
|
+
1 子账号AK
|
|
8600
|
+
2 临时密钥
|
|
8213
8601
|
*/
|
|
8214
|
-
|
|
8602
|
+
Type?: number;
|
|
8215
8603
|
/**
|
|
8216
|
-
*
|
|
8604
|
+
* 安全建议 枚举
|
|
8605
|
+
0 正常
|
|
8606
|
+
1 立即处理
|
|
8607
|
+
2 建议加固
|
|
8217
8608
|
*/
|
|
8218
|
-
|
|
8609
|
+
Advice?: number;
|
|
8219
8610
|
/**
|
|
8220
|
-
*
|
|
8611
|
+
* 告警信息列表
|
|
8221
8612
|
*/
|
|
8222
|
-
|
|
8613
|
+
AccessKeyAlarmList?: Array<AccessKeyAlarmInfo>;
|
|
8223
8614
|
/**
|
|
8224
|
-
*
|
|
8615
|
+
* 风险信息列表
|
|
8225
8616
|
*/
|
|
8226
|
-
|
|
8617
|
+
AccessKeyRiskList?: Array<AccessKeyAlarmInfo>;
|
|
8227
8618
|
/**
|
|
8228
|
-
*
|
|
8619
|
+
* 源IP数量
|
|
8229
8620
|
*/
|
|
8230
|
-
|
|
8621
|
+
IPCount?: number;
|
|
8231
8622
|
/**
|
|
8232
|
-
*
|
|
8623
|
+
* 创建时间
|
|
8233
8624
|
*/
|
|
8234
|
-
|
|
8625
|
+
CreateTime?: string;
|
|
8235
8626
|
/**
|
|
8236
|
-
*
|
|
8627
|
+
* 最近访问时间
|
|
8237
8628
|
*/
|
|
8238
|
-
|
|
8629
|
+
LastAccessTime?: string;
|
|
8239
8630
|
/**
|
|
8240
|
-
*
|
|
8631
|
+
* AK状态
|
|
8632
|
+
0:禁用
|
|
8633
|
+
1:已启用
|
|
8241
8634
|
*/
|
|
8242
|
-
|
|
8635
|
+
Status?: number;
|
|
8243
8636
|
/**
|
|
8244
|
-
*
|
|
8637
|
+
* 0 表示已检测
|
|
8638
|
+
1 表示检测中
|
|
8245
8639
|
*/
|
|
8246
|
-
|
|
8640
|
+
CheckStatus?: number;
|
|
8641
|
+
}
|
|
8642
|
+
/**
|
|
8643
|
+
* DescribeOtherCloudAssets返回参数结构体
|
|
8644
|
+
*/
|
|
8645
|
+
export interface DescribeOtherCloudAssetsResponse {
|
|
8247
8646
|
/**
|
|
8248
|
-
*
|
|
8647
|
+
* 总数
|
|
8249
8648
|
*/
|
|
8250
|
-
|
|
8649
|
+
Total?: number;
|
|
8251
8650
|
/**
|
|
8252
|
-
*
|
|
8651
|
+
* 资产总数
|
|
8253
8652
|
*/
|
|
8254
|
-
|
|
8653
|
+
Data?: Array<DBAssetVO>;
|
|
8255
8654
|
/**
|
|
8256
|
-
*
|
|
8655
|
+
* 地域枚举
|
|
8257
8656
|
*/
|
|
8258
|
-
|
|
8657
|
+
RegionList?: Array<FilterDataObject>;
|
|
8259
8658
|
/**
|
|
8260
|
-
*
|
|
8659
|
+
* 资产类型枚举
|
|
8261
8660
|
*/
|
|
8262
|
-
|
|
8661
|
+
AssetTypeList?: Array<FilterDataObject>;
|
|
8263
8662
|
/**
|
|
8264
|
-
*
|
|
8663
|
+
* Vpc枚举
|
|
8265
8664
|
*/
|
|
8266
|
-
|
|
8665
|
+
VpcList?: Array<FilterDataObject>;
|
|
8666
|
+
/**
|
|
8667
|
+
* Appid枚举
|
|
8668
|
+
*/
|
|
8669
|
+
AppIdList?: Array<FilterDataObject>;
|
|
8670
|
+
/**
|
|
8671
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8672
|
+
*/
|
|
8673
|
+
RequestId?: string;
|
|
8267
8674
|
}
|
|
8268
8675
|
/**
|
|
8269
8676
|
* 集群列表
|