@alicloud/cloud-siem20220616 2.0.0 → 2.1.0

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/dist/client.d.ts CHANGED
@@ -572,6 +572,60 @@ export declare class DescribeAlertTypeResponse extends $tea.Model {
572
572
  [key: string]: any;
573
573
  });
574
574
  }
575
+ export declare class DescribeAlertsRequest extends $tea.Model {
576
+ alertTitle?: string;
577
+ alertUuid?: string;
578
+ currentPage?: number;
579
+ endTime?: number;
580
+ isDefend?: string;
581
+ level?: string[];
582
+ pageSize?: number;
583
+ regionId?: string;
584
+ source?: string;
585
+ startTime?: number;
586
+ subUserId?: string;
587
+ static names(): {
588
+ [key: string]: string;
589
+ };
590
+ static types(): {
591
+ [key: string]: any;
592
+ };
593
+ constructor(map?: {
594
+ [key: string]: any;
595
+ });
596
+ }
597
+ export declare class DescribeAlertsResponseBody extends $tea.Model {
598
+ code?: number;
599
+ data?: DescribeAlertsResponseBodyData;
600
+ message?: string;
601
+ requestId?: string;
602
+ success?: boolean;
603
+ static names(): {
604
+ [key: string]: string;
605
+ };
606
+ static types(): {
607
+ [key: string]: any;
608
+ };
609
+ constructor(map?: {
610
+ [key: string]: any;
611
+ });
612
+ }
613
+ export declare class DescribeAlertsResponse extends $tea.Model {
614
+ headers: {
615
+ [key: string]: string;
616
+ };
617
+ statusCode: number;
618
+ body: DescribeAlertsResponseBody;
619
+ static names(): {
620
+ [key: string]: string;
621
+ };
622
+ static types(): {
623
+ [key: string]: any;
624
+ };
625
+ constructor(map?: {
626
+ [key: string]: any;
627
+ });
628
+ }
575
629
  export declare class DescribeAlertsCountRequest extends $tea.Model {
576
630
  endTime?: number;
577
631
  regionId?: string;
@@ -618,6 +672,107 @@ export declare class DescribeAlertsCountResponse extends $tea.Model {
618
672
  [key: string]: any;
619
673
  });
620
674
  }
675
+ export declare class DescribeAlertsWithEntityRequest extends $tea.Model {
676
+ currentPage?: number;
677
+ entityId?: number;
678
+ incidentUuid?: string;
679
+ pageSize?: number;
680
+ regionId?: string;
681
+ sophonTaskId?: string;
682
+ static names(): {
683
+ [key: string]: string;
684
+ };
685
+ static types(): {
686
+ [key: string]: any;
687
+ };
688
+ constructor(map?: {
689
+ [key: string]: any;
690
+ });
691
+ }
692
+ export declare class DescribeAlertsWithEntityResponseBody extends $tea.Model {
693
+ code?: number;
694
+ data?: DescribeAlertsWithEntityResponseBodyData;
695
+ message?: string;
696
+ requestId?: string;
697
+ success?: boolean;
698
+ static names(): {
699
+ [key: string]: string;
700
+ };
701
+ static types(): {
702
+ [key: string]: any;
703
+ };
704
+ constructor(map?: {
705
+ [key: string]: any;
706
+ });
707
+ }
708
+ export declare class DescribeAlertsWithEntityResponse extends $tea.Model {
709
+ headers: {
710
+ [key: string]: string;
711
+ };
712
+ statusCode: number;
713
+ body: DescribeAlertsWithEntityResponseBody;
714
+ static names(): {
715
+ [key: string]: string;
716
+ };
717
+ static types(): {
718
+ [key: string]: any;
719
+ };
720
+ constructor(map?: {
721
+ [key: string]: any;
722
+ });
723
+ }
724
+ export declare class DescribeAlertsWithEventRequest extends $tea.Model {
725
+ alertTitle?: string;
726
+ currentPage?: number;
727
+ incidentUuid?: string;
728
+ isDefend?: string;
729
+ level?: string[];
730
+ pageSize?: number;
731
+ regionId?: string;
732
+ source?: string;
733
+ subUserId?: number;
734
+ static names(): {
735
+ [key: string]: string;
736
+ };
737
+ static types(): {
738
+ [key: string]: any;
739
+ };
740
+ constructor(map?: {
741
+ [key: string]: any;
742
+ });
743
+ }
744
+ export declare class DescribeAlertsWithEventResponseBody extends $tea.Model {
745
+ code?: number;
746
+ data?: DescribeAlertsWithEventResponseBodyData;
747
+ message?: string;
748
+ requestId?: string;
749
+ success?: boolean;
750
+ static names(): {
751
+ [key: string]: string;
752
+ };
753
+ static types(): {
754
+ [key: string]: any;
755
+ };
756
+ constructor(map?: {
757
+ [key: string]: any;
758
+ });
759
+ }
760
+ export declare class DescribeAlertsWithEventResponse extends $tea.Model {
761
+ headers: {
762
+ [key: string]: string;
763
+ };
764
+ statusCode: number;
765
+ body: DescribeAlertsWithEventResponseBody;
766
+ static names(): {
767
+ [key: string]: string;
768
+ };
769
+ static types(): {
770
+ [key: string]: any;
771
+ };
772
+ constructor(map?: {
773
+ [key: string]: any;
774
+ });
775
+ }
621
776
  export declare class DescribeAttackTimeLineRequest extends $tea.Model {
622
777
  assetName?: string;
623
778
  endTime?: number;
@@ -3465,6 +3620,90 @@ export declare class DescribeAlertTypeResponseBodyData extends $tea.Model {
3465
3620
  [key: string]: any;
3466
3621
  });
3467
3622
  }
3623
+ export declare class DescribeAlertsResponseBodyDataPageInfo extends $tea.Model {
3624
+ currentPage?: number;
3625
+ pageSize?: number;
3626
+ totalCount?: number;
3627
+ static names(): {
3628
+ [key: string]: string;
3629
+ };
3630
+ static types(): {
3631
+ [key: string]: any;
3632
+ };
3633
+ constructor(map?: {
3634
+ [key: string]: any;
3635
+ });
3636
+ }
3637
+ export declare class DescribeAlertsResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
3638
+ key?: string;
3639
+ keyName?: string;
3640
+ values?: string;
3641
+ static names(): {
3642
+ [key: string]: string;
3643
+ };
3644
+ static types(): {
3645
+ [key: string]: any;
3646
+ };
3647
+ constructor(map?: {
3648
+ [key: string]: any;
3649
+ });
3650
+ }
3651
+ export declare class DescribeAlertsResponseBodyDataResponseData extends $tea.Model {
3652
+ alertDesc?: string;
3653
+ alertDescCode?: string;
3654
+ alertDescEn?: string;
3655
+ alertDetail?: string;
3656
+ alertInfoList?: DescribeAlertsResponseBodyDataResponseDataAlertInfoList[];
3657
+ alertLevel?: string;
3658
+ alertName?: string;
3659
+ alertNameCode?: string;
3660
+ alertNameEn?: string;
3661
+ alertSrcProd?: string;
3662
+ alertSrcProdModule?: string;
3663
+ alertTitle?: string;
3664
+ alertTitleEn?: string;
3665
+ alertType?: string;
3666
+ alertTypeCode?: string;
3667
+ alertTypeEn?: string;
3668
+ alertUuid?: string;
3669
+ assetList?: string;
3670
+ attCk?: string;
3671
+ cloudCode?: string;
3672
+ endTime?: string;
3673
+ gmtCreate?: string;
3674
+ gmtModified?: string;
3675
+ id?: number;
3676
+ incidentUuid?: string;
3677
+ isDefend?: string;
3678
+ logTime?: string;
3679
+ logUuid?: string;
3680
+ mainUserId?: number;
3681
+ occurTime?: string;
3682
+ startTime?: string;
3683
+ subUserId?: number;
3684
+ static names(): {
3685
+ [key: string]: string;
3686
+ };
3687
+ static types(): {
3688
+ [key: string]: any;
3689
+ };
3690
+ constructor(map?: {
3691
+ [key: string]: any;
3692
+ });
3693
+ }
3694
+ export declare class DescribeAlertsResponseBodyData extends $tea.Model {
3695
+ pageInfo?: DescribeAlertsResponseBodyDataPageInfo;
3696
+ responseData?: DescribeAlertsResponseBodyDataResponseData[];
3697
+ static names(): {
3698
+ [key: string]: string;
3699
+ };
3700
+ static types(): {
3701
+ [key: string]: any;
3702
+ };
3703
+ constructor(map?: {
3704
+ [key: string]: any;
3705
+ });
3706
+ }
3468
3707
  export declare class DescribeAlertsCountResponseBodyData extends $tea.Model {
3469
3708
  all?: number;
3470
3709
  high?: number;
@@ -3481,6 +3720,174 @@ export declare class DescribeAlertsCountResponseBodyData extends $tea.Model {
3481
3720
  [key: string]: any;
3482
3721
  });
3483
3722
  }
3723
+ export declare class DescribeAlertsWithEntityResponseBodyDataPageInfo extends $tea.Model {
3724
+ currentPage?: number;
3725
+ pageSize?: number;
3726
+ totalCount?: number;
3727
+ static names(): {
3728
+ [key: string]: string;
3729
+ };
3730
+ static types(): {
3731
+ [key: string]: any;
3732
+ };
3733
+ constructor(map?: {
3734
+ [key: string]: any;
3735
+ });
3736
+ }
3737
+ export declare class DescribeAlertsWithEntityResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
3738
+ key?: string;
3739
+ keyName?: string;
3740
+ values?: string;
3741
+ static names(): {
3742
+ [key: string]: string;
3743
+ };
3744
+ static types(): {
3745
+ [key: string]: any;
3746
+ };
3747
+ constructor(map?: {
3748
+ [key: string]: any;
3749
+ });
3750
+ }
3751
+ export declare class DescribeAlertsWithEntityResponseBodyDataResponseData extends $tea.Model {
3752
+ alertDesc?: string;
3753
+ alertDescCode?: string;
3754
+ alertDescEn?: string;
3755
+ alertDetail?: string;
3756
+ alertInfoList?: DescribeAlertsWithEntityResponseBodyDataResponseDataAlertInfoList[];
3757
+ alertLevel?: string;
3758
+ alertName?: string;
3759
+ alertNameCode?: string;
3760
+ alertNameEn?: string;
3761
+ alertSrcProd?: string;
3762
+ alertSrcProdModule?: string;
3763
+ alertTitle?: string;
3764
+ alertTitleEn?: string;
3765
+ alertType?: string;
3766
+ alertTypeCode?: string;
3767
+ alertTypeEn?: string;
3768
+ alertUuid?: string;
3769
+ assetList?: string;
3770
+ attCk?: string;
3771
+ cloudCode?: string;
3772
+ endTime?: string;
3773
+ gmtCreate?: string;
3774
+ gmtModified?: string;
3775
+ id?: number;
3776
+ incidentUuid?: string;
3777
+ isDefend?: string;
3778
+ logTime?: string;
3779
+ logUuid?: string;
3780
+ mainUserId?: number;
3781
+ occurTime?: string;
3782
+ startTime?: string;
3783
+ subUserId?: number;
3784
+ static names(): {
3785
+ [key: string]: string;
3786
+ };
3787
+ static types(): {
3788
+ [key: string]: any;
3789
+ };
3790
+ constructor(map?: {
3791
+ [key: string]: any;
3792
+ });
3793
+ }
3794
+ export declare class DescribeAlertsWithEntityResponseBodyData extends $tea.Model {
3795
+ pageInfo?: DescribeAlertsWithEntityResponseBodyDataPageInfo;
3796
+ responseData?: DescribeAlertsWithEntityResponseBodyDataResponseData[];
3797
+ static names(): {
3798
+ [key: string]: string;
3799
+ };
3800
+ static types(): {
3801
+ [key: string]: any;
3802
+ };
3803
+ constructor(map?: {
3804
+ [key: string]: any;
3805
+ });
3806
+ }
3807
+ export declare class DescribeAlertsWithEventResponseBodyDataPageInfo extends $tea.Model {
3808
+ currentPage?: number;
3809
+ pageSize?: number;
3810
+ totalCount?: number;
3811
+ static names(): {
3812
+ [key: string]: string;
3813
+ };
3814
+ static types(): {
3815
+ [key: string]: any;
3816
+ };
3817
+ constructor(map?: {
3818
+ [key: string]: any;
3819
+ });
3820
+ }
3821
+ export declare class DescribeAlertsWithEventResponseBodyDataResponseDataAlertInfoList extends $tea.Model {
3822
+ key?: string;
3823
+ keyName?: string;
3824
+ values?: string;
3825
+ static names(): {
3826
+ [key: string]: string;
3827
+ };
3828
+ static types(): {
3829
+ [key: string]: any;
3830
+ };
3831
+ constructor(map?: {
3832
+ [key: string]: any;
3833
+ });
3834
+ }
3835
+ export declare class DescribeAlertsWithEventResponseBodyDataResponseData extends $tea.Model {
3836
+ alertDesc?: string;
3837
+ alertDescCode?: string;
3838
+ alertDescEn?: string;
3839
+ alertDetail?: string;
3840
+ alertInfoList?: DescribeAlertsWithEventResponseBodyDataResponseDataAlertInfoList[];
3841
+ alertLevel?: string;
3842
+ alertName?: string;
3843
+ alertNameCode?: string;
3844
+ alertNameEn?: string;
3845
+ alertSrcProd?: string;
3846
+ alertSrcProdModule?: string;
3847
+ alertTitle?: string;
3848
+ alertTitleEn?: string;
3849
+ alertType?: string;
3850
+ alertTypeCode?: string;
3851
+ alertTypeEn?: string;
3852
+ alertUuid?: string;
3853
+ assetList?: string;
3854
+ attCk?: string;
3855
+ cloudCode?: string;
3856
+ endTime?: string;
3857
+ gmtCreate?: string;
3858
+ gmtModified?: string;
3859
+ id?: number;
3860
+ incidentUuid?: string;
3861
+ isDefend?: string;
3862
+ logTime?: string;
3863
+ logUuid?: string;
3864
+ mainUserId?: number;
3865
+ occurTime?: string;
3866
+ startTime?: string;
3867
+ subUserId?: number;
3868
+ static names(): {
3869
+ [key: string]: string;
3870
+ };
3871
+ static types(): {
3872
+ [key: string]: any;
3873
+ };
3874
+ constructor(map?: {
3875
+ [key: string]: any;
3876
+ });
3877
+ }
3878
+ export declare class DescribeAlertsWithEventResponseBodyData extends $tea.Model {
3879
+ pageInfo?: DescribeAlertsWithEventResponseBodyDataPageInfo;
3880
+ responseData?: DescribeAlertsWithEventResponseBodyDataResponseData[];
3881
+ static names(): {
3882
+ [key: string]: string;
3883
+ };
3884
+ static types(): {
3885
+ [key: string]: any;
3886
+ };
3887
+ constructor(map?: {
3888
+ [key: string]: any;
3889
+ });
3890
+ }
3484
3891
  export declare class DescribeAttackTimeLineResponseBodyData extends $tea.Model {
3485
3892
  alertLevel?: string;
3486
3893
  alertName?: string;
@@ -4716,8 +5123,14 @@ export default class Client extends OpenApi {
4716
5123
  describeAlertSourceWithEvent(request: DescribeAlertSourceWithEventRequest): Promise<DescribeAlertSourceWithEventResponse>;
4717
5124
  describeAlertTypeWithOptions(request: DescribeAlertTypeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertTypeResponse>;
4718
5125
  describeAlertType(request: DescribeAlertTypeRequest): Promise<DescribeAlertTypeResponse>;
5126
+ describeAlertsWithOptions(request: DescribeAlertsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsResponse>;
5127
+ describeAlerts(request: DescribeAlertsRequest): Promise<DescribeAlertsResponse>;
4719
5128
  describeAlertsCountWithOptions(request: DescribeAlertsCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsCountResponse>;
4720
5129
  describeAlertsCount(request: DescribeAlertsCountRequest): Promise<DescribeAlertsCountResponse>;
5130
+ describeAlertsWithEntityWithOptions(request: DescribeAlertsWithEntityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsWithEntityResponse>;
5131
+ describeAlertsWithEntity(request: DescribeAlertsWithEntityRequest): Promise<DescribeAlertsWithEntityResponse>;
5132
+ describeAlertsWithEventWithOptions(request: DescribeAlertsWithEventRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAlertsWithEventResponse>;
5133
+ describeAlertsWithEvent(request: DescribeAlertsWithEventRequest): Promise<DescribeAlertsWithEventResponse>;
4721
5134
  describeAttackTimeLineWithOptions(request: DescribeAttackTimeLineRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAttackTimeLineResponse>;
4722
5135
  describeAttackTimeLine(request: DescribeAttackTimeLineRequest): Promise<DescribeAttackTimeLineResponse>;
4723
5136
  describeAutomateResponseConfigCounterWithOptions(request: DescribeAutomateResponseConfigCounterRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAutomateResponseConfigCounterResponse>;