forked from microsoftgraph/msgraph-sdk-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlert.php
More file actions
1200 lines (1105 loc) · 34.1 KB
/
Copy pathAlert.php
File metadata and controls
1200 lines (1105 loc) · 34.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
/**
* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
*
* Alert File
* PHP version 7
*
* @category Library
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
namespace Microsoft\Graph\Model;
/**
* Alert class
*
* @category Model
* @package Microsoft.Graph
* @copyright (c) Microsoft Corporation. All rights reserved.
* @license https://opensource.org/licenses/MIT MIT License
* @link https://graph.microsoft.com
*/
class Alert extends Entity
{
/**
* Gets the activityGroupName
* Name or alias of the activity group (attacker) this alert is attributed to.
*
* @return string|null The activityGroupName
*/
public function getActivityGroupName()
{
if (array_key_exists("activityGroupName", $this->_propDict)) {
return $this->_propDict["activityGroupName"];
} else {
return null;
}
}
/**
* Sets the activityGroupName
* Name or alias of the activity group (attacker) this alert is attributed to.
*
* @param string $val The activityGroupName
*
* @return Alert
*/
public function setActivityGroupName($val)
{
$this->_propDict["activityGroupName"] = $val;
return $this;
}
/**
* Gets the alertDetections
*
* @return array|null The alertDetections
*/
public function getAlertDetections()
{
if (array_key_exists("alertDetections", $this->_propDict)) {
return $this->_propDict["alertDetections"];
} else {
return null;
}
}
/**
* Sets the alertDetections
*
* @param AlertDetection $val The alertDetections
*
* @return Alert
*/
public function setAlertDetections($val)
{
$this->_propDict["alertDetections"] = $val;
return $this;
}
/**
* Gets the assignedTo
* Name of the analyst the alert is assigned to for triage, investigation, or remediation (supports update).
*
* @return string|null The assignedTo
*/
public function getAssignedTo()
{
if (array_key_exists("assignedTo", $this->_propDict)) {
return $this->_propDict["assignedTo"];
} else {
return null;
}
}
/**
* Sets the assignedTo
* Name of the analyst the alert is assigned to for triage, investigation, or remediation (supports update).
*
* @param string $val The assignedTo
*
* @return Alert
*/
public function setAssignedTo($val)
{
$this->_propDict["assignedTo"] = $val;
return $this;
}
/**
* Gets the azureSubscriptionId
* Azure subscription ID, present if this alert is related to an Azure resource.
*
* @return string|null The azureSubscriptionId
*/
public function getAzureSubscriptionId()
{
if (array_key_exists("azureSubscriptionId", $this->_propDict)) {
return $this->_propDict["azureSubscriptionId"];
} else {
return null;
}
}
/**
* Sets the azureSubscriptionId
* Azure subscription ID, present if this alert is related to an Azure resource.
*
* @param string $val The azureSubscriptionId
*
* @return Alert
*/
public function setAzureSubscriptionId($val)
{
$this->_propDict["azureSubscriptionId"] = $val;
return $this;
}
/**
* Gets the azureTenantId
* Azure Active Directory tenant ID. Required.
*
* @return string|null The azureTenantId
*/
public function getAzureTenantId()
{
if (array_key_exists("azureTenantId", $this->_propDict)) {
return $this->_propDict["azureTenantId"];
} else {
return null;
}
}
/**
* Sets the azureTenantId
* Azure Active Directory tenant ID. Required.
*
* @param string $val The azureTenantId
*
* @return Alert
*/
public function setAzureTenantId($val)
{
$this->_propDict["azureTenantId"] = $val;
return $this;
}
/**
* Gets the category
* Category of the alert (for example, credentialTheft, ransomware, etc.).
*
* @return string|null The category
*/
public function getCategory()
{
if (array_key_exists("category", $this->_propDict)) {
return $this->_propDict["category"];
} else {
return null;
}
}
/**
* Sets the category
* Category of the alert (for example, credentialTheft, ransomware, etc.).
*
* @param string $val The category
*
* @return Alert
*/
public function setCategory($val)
{
$this->_propDict["category"] = $val;
return $this;
}
/**
* Gets the closedDateTime
* Time at which the alert was closed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z (supports update).
*
* @return \DateTime|null The closedDateTime
*/
public function getClosedDateTime()
{
if (array_key_exists("closedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["closedDateTime"], "\DateTime") || is_null($this->_propDict["closedDateTime"])) {
return $this->_propDict["closedDateTime"];
} else {
$this->_propDict["closedDateTime"] = new \DateTime($this->_propDict["closedDateTime"]);
return $this->_propDict["closedDateTime"];
}
}
return null;
}
/**
* Sets the closedDateTime
* Time at which the alert was closed. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z (supports update).
*
* @param \DateTime $val The closedDateTime
*
* @return Alert
*/
public function setClosedDateTime($val)
{
$this->_propDict["closedDateTime"] = $val;
return $this;
}
/**
* Gets the cloudAppStates
* Security-related stateful information generated by the provider about the cloud application/s related to this alert.
*
* @return array|null The cloudAppStates
*/
public function getCloudAppStates()
{
if (array_key_exists("cloudAppStates", $this->_propDict)) {
return $this->_propDict["cloudAppStates"];
} else {
return null;
}
}
/**
* Sets the cloudAppStates
* Security-related stateful information generated by the provider about the cloud application/s related to this alert.
*
* @param CloudAppSecurityState $val The cloudAppStates
*
* @return Alert
*/
public function setCloudAppStates($val)
{
$this->_propDict["cloudAppStates"] = $val;
return $this;
}
/**
* Gets the comments
* Customer-provided comments on alert (for customer alert management) (supports update).
*
* @return string|null The comments
*/
public function getComments()
{
if (array_key_exists("comments", $this->_propDict)) {
return $this->_propDict["comments"];
} else {
return null;
}
}
/**
* Sets the comments
* Customer-provided comments on alert (for customer alert management) (supports update).
*
* @param string $val The comments
*
* @return Alert
*/
public function setComments($val)
{
$this->_propDict["comments"] = $val;
return $this;
}
/**
* Gets the confidence
* Confidence of the detection logic (percentage between 1-100).
*
* @return int|null The confidence
*/
public function getConfidence()
{
if (array_key_exists("confidence", $this->_propDict)) {
return $this->_propDict["confidence"];
} else {
return null;
}
}
/**
* Sets the confidence
* Confidence of the detection logic (percentage between 1-100).
*
* @param int $val The confidence
*
* @return Alert
*/
public function setConfidence($val)
{
$this->_propDict["confidence"] = intval($val);
return $this;
}
/**
* Gets the createdDateTime
* Time at which the alert was created by the alert provider. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
*
* @return \DateTime|null The createdDateTime
*/
public function getCreatedDateTime()
{
if (array_key_exists("createdDateTime", $this->_propDict)) {
if (is_a($this->_propDict["createdDateTime"], "\DateTime") || is_null($this->_propDict["createdDateTime"])) {
return $this->_propDict["createdDateTime"];
} else {
$this->_propDict["createdDateTime"] = new \DateTime($this->_propDict["createdDateTime"]);
return $this->_propDict["createdDateTime"];
}
}
return null;
}
/**
* Sets the createdDateTime
* Time at which the alert was created by the alert provider. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
*
* @param \DateTime $val The createdDateTime
*
* @return Alert
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the description
* Alert description.
*
* @return string|null The description
*/
public function getDescription()
{
if (array_key_exists("description", $this->_propDict)) {
return $this->_propDict["description"];
} else {
return null;
}
}
/**
* Sets the description
* Alert description.
*
* @param string $val The description
*
* @return Alert
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the detectionIds
* Set of alerts related to this alert entity (each alert is pushed to the SIEM as a separate record).
*
* @return string|null The detectionIds
*/
public function getDetectionIds()
{
if (array_key_exists("detectionIds", $this->_propDict)) {
return $this->_propDict["detectionIds"];
} else {
return null;
}
}
/**
* Sets the detectionIds
* Set of alerts related to this alert entity (each alert is pushed to the SIEM as a separate record).
*
* @param string $val The detectionIds
*
* @return Alert
*/
public function setDetectionIds($val)
{
$this->_propDict["detectionIds"] = $val;
return $this;
}
/**
* Gets the eventDateTime
* Time at which the event(s) that served as the trigger(s) to generate the alert occurred. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
*
* @return \DateTime|null The eventDateTime
*/
public function getEventDateTime()
{
if (array_key_exists("eventDateTime", $this->_propDict)) {
if (is_a($this->_propDict["eventDateTime"], "\DateTime") || is_null($this->_propDict["eventDateTime"])) {
return $this->_propDict["eventDateTime"];
} else {
$this->_propDict["eventDateTime"] = new \DateTime($this->_propDict["eventDateTime"]);
return $this->_propDict["eventDateTime"];
}
}
return null;
}
/**
* Sets the eventDateTime
* Time at which the event(s) that served as the trigger(s) to generate the alert occurred. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Required.
*
* @param \DateTime $val The eventDateTime
*
* @return Alert
*/
public function setEventDateTime($val)
{
$this->_propDict["eventDateTime"] = $val;
return $this;
}
/**
* Gets the feedback
* Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update)
*
* @return AlertFeedback|null The feedback
*/
public function getFeedback()
{
if (array_key_exists("feedback", $this->_propDict)) {
if (is_a($this->_propDict["feedback"], "\Microsoft\Graph\Model\AlertFeedback") || is_null($this->_propDict["feedback"])) {
return $this->_propDict["feedback"];
} else {
$this->_propDict["feedback"] = new AlertFeedback($this->_propDict["feedback"]);
return $this->_propDict["feedback"];
}
}
return null;
}
/**
* Sets the feedback
* Analyst feedback on the alert. Possible values are: unknown, truePositive, falsePositive, benignPositive. (supports update)
*
* @param AlertFeedback $val The feedback
*
* @return Alert
*/
public function setFeedback($val)
{
$this->_propDict["feedback"] = $val;
return $this;
}
/**
* Gets the fileStates
* Security-related stateful information generated by the provider about the file(s) related to this alert.
*
* @return array|null The fileStates
*/
public function getFileStates()
{
if (array_key_exists("fileStates", $this->_propDict)) {
return $this->_propDict["fileStates"];
} else {
return null;
}
}
/**
* Sets the fileStates
* Security-related stateful information generated by the provider about the file(s) related to this alert.
*
* @param FileSecurityState $val The fileStates
*
* @return Alert
*/
public function setFileStates($val)
{
$this->_propDict["fileStates"] = $val;
return $this;
}
/**
* Gets the historyStates
* A collection of alertHistoryStates comprising an audit log of all updates made to an alert.
*
* @return array|null The historyStates
*/
public function getHistoryStates()
{
if (array_key_exists("historyStates", $this->_propDict)) {
return $this->_propDict["historyStates"];
} else {
return null;
}
}
/**
* Sets the historyStates
* A collection of alertHistoryStates comprising an audit log of all updates made to an alert.
*
* @param AlertHistoryState $val The historyStates
*
* @return Alert
*/
public function setHistoryStates($val)
{
$this->_propDict["historyStates"] = $val;
return $this;
}
/**
* Gets the hostStates
* Security-related stateful information generated by the provider about the host(s) related to this alert.
*
* @return array|null The hostStates
*/
public function getHostStates()
{
if (array_key_exists("hostStates", $this->_propDict)) {
return $this->_propDict["hostStates"];
} else {
return null;
}
}
/**
* Sets the hostStates
* Security-related stateful information generated by the provider about the host(s) related to this alert.
*
* @param HostSecurityState $val The hostStates
*
* @return Alert
*/
public function setHostStates($val)
{
$this->_propDict["hostStates"] = $val;
return $this;
}
/**
* Gets the incidentIds
* IDs of incidents related to current alert.
*
* @return string|null The incidentIds
*/
public function getIncidentIds()
{
if (array_key_exists("incidentIds", $this->_propDict)) {
return $this->_propDict["incidentIds"];
} else {
return null;
}
}
/**
* Sets the incidentIds
* IDs of incidents related to current alert.
*
* @param string $val The incidentIds
*
* @return Alert
*/
public function setIncidentIds($val)
{
$this->_propDict["incidentIds"] = $val;
return $this;
}
/**
* Gets the investigationSecurityStates
*
* @return array|null The investigationSecurityStates
*/
public function getInvestigationSecurityStates()
{
if (array_key_exists("investigationSecurityStates", $this->_propDict)) {
return $this->_propDict["investigationSecurityStates"];
} else {
return null;
}
}
/**
* Sets the investigationSecurityStates
*
* @param InvestigationSecurityState $val The investigationSecurityStates
*
* @return Alert
*/
public function setInvestigationSecurityStates($val)
{
$this->_propDict["investigationSecurityStates"] = $val;
return $this;
}
/**
* Gets the lastEventDateTime
*
* @return \DateTime|null The lastEventDateTime
*/
public function getLastEventDateTime()
{
if (array_key_exists("lastEventDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastEventDateTime"], "\DateTime") || is_null($this->_propDict["lastEventDateTime"])) {
return $this->_propDict["lastEventDateTime"];
} else {
$this->_propDict["lastEventDateTime"] = new \DateTime($this->_propDict["lastEventDateTime"]);
return $this->_propDict["lastEventDateTime"];
}
}
return null;
}
/**
* Sets the lastEventDateTime
*
* @param \DateTime $val The lastEventDateTime
*
* @return Alert
*/
public function setLastEventDateTime($val)
{
$this->_propDict["lastEventDateTime"] = $val;
return $this;
}
/**
* Gets the lastModifiedDateTime
* Time at which the alert entity was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @return \DateTime|null The lastModifiedDateTime
*/
public function getLastModifiedDateTime()
{
if (array_key_exists("lastModifiedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastModifiedDateTime"], "\DateTime") || is_null($this->_propDict["lastModifiedDateTime"])) {
return $this->_propDict["lastModifiedDateTime"];
} else {
$this->_propDict["lastModifiedDateTime"] = new \DateTime($this->_propDict["lastModifiedDateTime"]);
return $this->_propDict["lastModifiedDateTime"];
}
}
return null;
}
/**
* Sets the lastModifiedDateTime
* Time at which the alert entity was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z.
*
* @param \DateTime $val The lastModifiedDateTime
*
* @return Alert
*/
public function setLastModifiedDateTime($val)
{
$this->_propDict["lastModifiedDateTime"] = $val;
return $this;
}
/**
* Gets the malwareStates
* Threat Intelligence pertaining to malware related to this alert.
*
* @return array|null The malwareStates
*/
public function getMalwareStates()
{
if (array_key_exists("malwareStates", $this->_propDict)) {
return $this->_propDict["malwareStates"];
} else {
return null;
}
}
/**
* Sets the malwareStates
* Threat Intelligence pertaining to malware related to this alert.
*
* @param MalwareState $val The malwareStates
*
* @return Alert
*/
public function setMalwareStates($val)
{
$this->_propDict["malwareStates"] = $val;
return $this;
}
/**
* Gets the messageSecurityStates
*
* @return array|null The messageSecurityStates
*/
public function getMessageSecurityStates()
{
if (array_key_exists("messageSecurityStates", $this->_propDict)) {
return $this->_propDict["messageSecurityStates"];
} else {
return null;
}
}
/**
* Sets the messageSecurityStates
*
* @param MessageSecurityState $val The messageSecurityStates
*
* @return Alert
*/
public function setMessageSecurityStates($val)
{
$this->_propDict["messageSecurityStates"] = $val;
return $this;
}
/**
* Gets the networkConnections
* Security-related stateful information generated by the provider about the network connection(s) related to this alert.
*
* @return array|null The networkConnections
*/
public function getNetworkConnections()
{
if (array_key_exists("networkConnections", $this->_propDict)) {
return $this->_propDict["networkConnections"];
} else {
return null;
}
}
/**
* Sets the networkConnections
* Security-related stateful information generated by the provider about the network connection(s) related to this alert.
*
* @param NetworkConnection $val The networkConnections
*
* @return Alert
*/
public function setNetworkConnections($val)
{
$this->_propDict["networkConnections"] = $val;
return $this;
}
/**
* Gets the processes
* Security-related stateful information generated by the provider about the process or processes related to this alert.
*
* @return array|null The processes
*/
public function getProcesses()
{
if (array_key_exists("processes", $this->_propDict)) {
return $this->_propDict["processes"];
} else {
return null;
}
}
/**
* Sets the processes
* Security-related stateful information generated by the provider about the process or processes related to this alert.
*
* @param Process $val The processes
*
* @return Alert
*/
public function setProcesses($val)
{
$this->_propDict["processes"] = $val;
return $this;
}
/**
* Gets the recommendedActions
* Vendor/provider recommended action(s) to take as a result of the alert (for example, isolate machine, enforce2FA, reimage host).
*
* @return string|null The recommendedActions
*/
public function getRecommendedActions()
{
if (array_key_exists("recommendedActions", $this->_propDict)) {
return $this->_propDict["recommendedActions"];
} else {
return null;
}
}
/**
* Sets the recommendedActions
* Vendor/provider recommended action(s) to take as a result of the alert (for example, isolate machine, enforce2FA, reimage host).
*
* @param string $val The recommendedActions
*
* @return Alert
*/
public function setRecommendedActions($val)
{
$this->_propDict["recommendedActions"] = $val;
return $this;
}
/**
* Gets the registryKeyStates
* Security-related stateful information generated by the provider about the registry keys related to this alert.
*
* @return array|null The registryKeyStates
*/
public function getRegistryKeyStates()
{
if (array_key_exists("registryKeyStates", $this->_propDict)) {
return $this->_propDict["registryKeyStates"];
} else {
return null;
}
}
/**
* Sets the registryKeyStates
* Security-related stateful information generated by the provider about the registry keys related to this alert.
*
* @param RegistryKeyState $val The registryKeyStates
*
* @return Alert
*/
public function setRegistryKeyStates($val)
{
$this->_propDict["registryKeyStates"] = $val;
return $this;
}
/**
* Gets the securityResources
* Resources related to current alert. For example, for some alerts this can have the Azure Resource value.
*
* @return array|null The securityResources
*/
public function getSecurityResources()
{
if (array_key_exists("securityResources", $this->_propDict)) {
return $this->_propDict["securityResources"];
} else {
return null;
}
}
/**
* Sets the securityResources
* Resources related to current alert. For example, for some alerts this can have the Azure Resource value.
*
* @param SecurityResource $val The securityResources
*
* @return Alert
*/
public function setSecurityResources($val)
{
$this->_propDict["securityResources"] = $val;
return $this;
}
/**
* Gets the severity
* Alert severity - set by vendor/provider. Possible values are: unknown, informational, low, medium, high. Required.
*
* @return AlertSeverity|null The severity
*/
public function getSeverity()
{
if (array_key_exists("severity", $this->_propDict)) {
if (is_a($this->_propDict["severity"], "\Microsoft\Graph\Model\AlertSeverity") || is_null($this->_propDict["severity"])) {
return $this->_propDict["severity"];
} else {
$this->_propDict["severity"] = new AlertSeverity($this->_propDict["severity"]);
return $this->_propDict["severity"];
}
}
return null;
}
/**
* Sets the severity
* Alert severity - set by vendor/provider. Possible values are: unknown, informational, low, medium, high. Required.
*
* @param AlertSeverity $val The severity
*
* @return Alert
*/
public function setSeverity($val)
{
$this->_propDict["severity"] = $val;
return $this;
}
/**
* Gets the sourceMaterials
* Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc.
*
* @return string|null The sourceMaterials
*/
public function getSourceMaterials()
{
if (array_key_exists("sourceMaterials", $this->_propDict)) {
return $this->_propDict["sourceMaterials"];
} else {
return null;
}
}
/**
* Sets the sourceMaterials
* Hyperlinks (URIs) to the source material related to the alert, for example, provider's user interface for alerts or log search, etc.
*
* @param string $val The sourceMaterials
*
* @return Alert
*/
public function setSourceMaterials($val)
{
$this->_propDict["sourceMaterials"] = $val;
return $this;
}
/**
* Gets the status
* Alert lifecycle status (stage). Possible values are: unknown, newAlert, inProgress, resolved. (supports update). Required.
*
* @return AlertStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\Model\AlertStatus") || is_null($this->_propDict["status"])) {
return $this->_propDict["status"];
} else {
$this->_propDict["status"] = new AlertStatus($this->_propDict["status"]);
return $this->_propDict["status"];
}
}
return null;
}
/**
* Sets the status
* Alert lifecycle status (stage). Possible values are: unknown, newAlert, inProgress, resolved. (supports update). Required.
*
* @param AlertStatus $val The status
*
* @return Alert
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the tags
* User-definable labels that can be applied to an alert and can serve as filter conditions (for example 'HVA', 'SAW', etc.) (supports update).
*
* @return string|null The tags
*/
public function getTags()
{
if (array_key_exists("tags", $this->_propDict)) {
return $this->_propDict["tags"];