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
943 lines (880 loc) · 28.3 KB
/
Copy pathAlert.php
File metadata and controls
943 lines (880 loc) · 28.3 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
<?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\SecurityNamespace\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 \Microsoft\Graph\Model\Entity
{
/**
* Gets the actorDisplayName
* The adversary or activity group that is associated with this alert.
*
* @return string|null The actorDisplayName
*/
public function getActorDisplayName()
{
if (array_key_exists("actorDisplayName", $this->_propDict)) {
return $this->_propDict["actorDisplayName"];
} else {
return null;
}
}
/**
* Sets the actorDisplayName
* The adversary or activity group that is associated with this alert.
*
* @param string $val The actorDisplayName
*
* @return Alert
*/
public function setActorDisplayName($val)
{
$this->_propDict["actorDisplayName"] = $val;
return $this;
}
/**
* Gets the additionalData
*
* @return Dictionary|null The additionalData
*/
public function getAdditionalData()
{
if (array_key_exists("additionalData", $this->_propDict)) {
if (is_a($this->_propDict["additionalData"], "\Microsoft\Graph\SecurityNamespace\Model\Dictionary") || is_null($this->_propDict["additionalData"])) {
return $this->_propDict["additionalData"];
} else {
$this->_propDict["additionalData"] = new Dictionary($this->_propDict["additionalData"]);
return $this->_propDict["additionalData"];
}
}
return null;
}
/**
* Sets the additionalData
*
* @param Dictionary $val The additionalData
*
* @return Alert
*/
public function setAdditionalData($val)
{
$this->_propDict["additionalData"] = $val;
return $this;
}
/**
* Gets the alertPolicyId
*
* @return string|null The alertPolicyId
*/
public function getAlertPolicyId()
{
if (array_key_exists("alertPolicyId", $this->_propDict)) {
return $this->_propDict["alertPolicyId"];
} else {
return null;
}
}
/**
* Sets the alertPolicyId
*
* @param string $val The alertPolicyId
*
* @return Alert
*/
public function setAlertPolicyId($val)
{
$this->_propDict["alertPolicyId"] = $val;
return $this;
}
/**
* Gets the alertWebUrl
* URL for the alert page in the Microsoft 365 Defender portal.
*
* @return string|null The alertWebUrl
*/
public function getAlertWebUrl()
{
if (array_key_exists("alertWebUrl", $this->_propDict)) {
return $this->_propDict["alertWebUrl"];
} else {
return null;
}
}
/**
* Sets the alertWebUrl
* URL for the alert page in the Microsoft 365 Defender portal.
*
* @param string $val The alertWebUrl
*
* @return Alert
*/
public function setAlertWebUrl($val)
{
$this->_propDict["alertWebUrl"] = $val;
return $this;
}
/**
* Gets the assignedTo
* Owner of the alert, or null if no owner is assigned.
*
* @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
* Owner of the alert, or null if no owner is assigned.
*
* @param string $val The assignedTo
*
* @return Alert
*/
public function setAssignedTo($val)
{
$this->_propDict["assignedTo"] = $val;
return $this;
}
/**
* Gets the category
* The attack kill-chain category that the alert belongs to. Aligned with the MITRE ATT&CK framework.
*
* @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
* The attack kill-chain category that the alert belongs to. Aligned with the MITRE ATT&CK framework.
*
* @param string $val The category
*
* @return Alert
*/
public function setCategory($val)
{
$this->_propDict["category"] = $val;
return $this;
}
/**
* Gets the classification
* Specifies whether the alert represents a true threat. Possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
*
* @return AlertClassification|null The classification
*/
public function getClassification()
{
if (array_key_exists("classification", $this->_propDict)) {
if (is_a($this->_propDict["classification"], "\Microsoft\Graph\SecurityNamespace\Model\AlertClassification") || is_null($this->_propDict["classification"])) {
return $this->_propDict["classification"];
} else {
$this->_propDict["classification"] = new AlertClassification($this->_propDict["classification"]);
return $this->_propDict["classification"];
}
}
return null;
}
/**
* Sets the classification
* Specifies whether the alert represents a true threat. Possible values are: unknown, falsePositive, truePositive, informationalExpectedActivity, unknownFutureValue.
*
* @param AlertClassification $val The classification
*
* @return Alert
*/
public function setClassification($val)
{
$this->_propDict["classification"] = $val;
return $this;
}
/**
* Gets the comments
* Array of comments created by the Security Operations (SecOps) team during the alert management process.
*
* @return array|null The comments
*/
public function getComments()
{
if (array_key_exists("comments", $this->_propDict)) {
return $this->_propDict["comments"];
} else {
return null;
}
}
/**
* Sets the comments
* Array of comments created by the Security Operations (SecOps) team during the alert management process.
*
* @param AlertComment[] $val The comments
*
* @return Alert
*/
public function setComments($val)
{
$this->_propDict["comments"] = $val;
return $this;
}
/**
* Gets the createdDateTime
* Time when Microsoft 365 Defender created the alert.
*
* @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 when Microsoft 365 Defender created the alert.
*
* @param \DateTime $val The createdDateTime
*
* @return Alert
*/
public function setCreatedDateTime($val)
{
$this->_propDict["createdDateTime"] = $val;
return $this;
}
/**
* Gets the description
* String value describing each alert.
*
* @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
* String value describing each alert.
*
* @param string $val The description
*
* @return Alert
*/
public function setDescription($val)
{
$this->_propDict["description"] = $val;
return $this;
}
/**
* Gets the detectionSource
* Detection technology or sensor that identified the notable component or activity. Possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud.
*
* @return DetectionSource|null The detectionSource
*/
public function getDetectionSource()
{
if (array_key_exists("detectionSource", $this->_propDict)) {
if (is_a($this->_propDict["detectionSource"], "\Microsoft\Graph\SecurityNamespace\Model\DetectionSource") || is_null($this->_propDict["detectionSource"])) {
return $this->_propDict["detectionSource"];
} else {
$this->_propDict["detectionSource"] = new DetectionSource($this->_propDict["detectionSource"]);
return $this->_propDict["detectionSource"];
}
}
return null;
}
/**
* Sets the detectionSource
* Detection technology or sensor that identified the notable component or activity. Possible values are: unknown, microsoftDefenderForEndpoint, antivirus, smartScreen, customTi, microsoftDefenderForOffice365, automatedInvestigation, microsoftThreatExperts, customDetection, microsoftDefenderForIdentity, cloudAppSecurity, microsoft365Defender, azureAdIdentityProtection, manual, microsoftDataLossPrevention, appGovernancePolicy, appGovernanceDetection, unknownFutureValue, microsoftDefenderForCloud. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud.
*
* @param DetectionSource $val The detectionSource
*
* @return Alert
*/
public function setDetectionSource($val)
{
$this->_propDict["detectionSource"] = $val;
return $this;
}
/**
* Gets the detectorId
* The ID of the detector that triggered the alert.
*
* @return string|null The detectorId
*/
public function getDetectorId()
{
if (array_key_exists("detectorId", $this->_propDict)) {
return $this->_propDict["detectorId"];
} else {
return null;
}
}
/**
* Sets the detectorId
* The ID of the detector that triggered the alert.
*
* @param string $val The detectorId
*
* @return Alert
*/
public function setDetectorId($val)
{
$this->_propDict["detectorId"] = $val;
return $this;
}
/**
* Gets the determination
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack. Possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedUser, phishing, maliciousUserActivity, clean, insufficientData, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
*
* @return AlertDetermination|null The determination
*/
public function getDetermination()
{
if (array_key_exists("determination", $this->_propDict)) {
if (is_a($this->_propDict["determination"], "\Microsoft\Graph\SecurityNamespace\Model\AlertDetermination") || is_null($this->_propDict["determination"])) {
return $this->_propDict["determination"];
} else {
$this->_propDict["determination"] = new AlertDetermination($this->_propDict["determination"]);
return $this->_propDict["determination"];
}
}
return null;
}
/**
* Sets the determination
* Specifies the result of the investigation, whether the alert represents a true attack and if so, the nature of the attack. Possible values are: unknown, apt, malware, securityPersonnel, securityTesting, unwantedSoftware, other, multiStagedAttack, compromisedUser, phishing, maliciousUserActivity, clean, insufficientData, confirmedUserActivity, lineOfBusinessApplication, unknownFutureValue.
*
* @param AlertDetermination $val The determination
*
* @return Alert
*/
public function setDetermination($val)
{
$this->_propDict["determination"] = $val;
return $this;
}
/**
* Gets the evidence
* Collection of evidence related to the alert.
*
* @return array|null The evidence
*/
public function getEvidence()
{
if (array_key_exists("evidence", $this->_propDict)) {
return $this->_propDict["evidence"];
} else {
return null;
}
}
/**
* Sets the evidence
* Collection of evidence related to the alert.
*
* @param AlertEvidence[] $val The evidence
*
* @return Alert
*/
public function setEvidence($val)
{
$this->_propDict["evidence"] = $val;
return $this;
}
/**
* Gets the firstActivityDateTime
* The earliest activity associated with the alert.
*
* @return \DateTime|null The firstActivityDateTime
*/
public function getFirstActivityDateTime()
{
if (array_key_exists("firstActivityDateTime", $this->_propDict)) {
if (is_a($this->_propDict["firstActivityDateTime"], "\DateTime") || is_null($this->_propDict["firstActivityDateTime"])) {
return $this->_propDict["firstActivityDateTime"];
} else {
$this->_propDict["firstActivityDateTime"] = new \DateTime($this->_propDict["firstActivityDateTime"]);
return $this->_propDict["firstActivityDateTime"];
}
}
return null;
}
/**
* Sets the firstActivityDateTime
* The earliest activity associated with the alert.
*
* @param \DateTime $val The firstActivityDateTime
*
* @return Alert
*/
public function setFirstActivityDateTime($val)
{
$this->_propDict["firstActivityDateTime"] = $val;
return $this;
}
/**
* Gets the incidentId
* Unique identifier to represent the incident this alert resource is associated with.
*
* @return string|null The incidentId
*/
public function getIncidentId()
{
if (array_key_exists("incidentId", $this->_propDict)) {
return $this->_propDict["incidentId"];
} else {
return null;
}
}
/**
* Sets the incidentId
* Unique identifier to represent the incident this alert resource is associated with.
*
* @param string $val The incidentId
*
* @return Alert
*/
public function setIncidentId($val)
{
$this->_propDict["incidentId"] = $val;
return $this;
}
/**
* Gets the incidentWebUrl
* URL for the incident page in the Microsoft 365 Defender portal.
*
* @return string|null The incidentWebUrl
*/
public function getIncidentWebUrl()
{
if (array_key_exists("incidentWebUrl", $this->_propDict)) {
return $this->_propDict["incidentWebUrl"];
} else {
return null;
}
}
/**
* Sets the incidentWebUrl
* URL for the incident page in the Microsoft 365 Defender portal.
*
* @param string $val The incidentWebUrl
*
* @return Alert
*/
public function setIncidentWebUrl($val)
{
$this->_propDict["incidentWebUrl"] = $val;
return $this;
}
/**
* Gets the lastActivityDateTime
* The oldest activity associated with the alert.
*
* @return \DateTime|null The lastActivityDateTime
*/
public function getLastActivityDateTime()
{
if (array_key_exists("lastActivityDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastActivityDateTime"], "\DateTime") || is_null($this->_propDict["lastActivityDateTime"])) {
return $this->_propDict["lastActivityDateTime"];
} else {
$this->_propDict["lastActivityDateTime"] = new \DateTime($this->_propDict["lastActivityDateTime"]);
return $this->_propDict["lastActivityDateTime"];
}
}
return null;
}
/**
* Sets the lastActivityDateTime
* The oldest activity associated with the alert.
*
* @param \DateTime $val The lastActivityDateTime
*
* @return Alert
*/
public function setLastActivityDateTime($val)
{
$this->_propDict["lastActivityDateTime"] = $val;
return $this;
}
/**
* Gets the lastUpdateDateTime
* Time when the alert was last updated at Microsoft 365 Defender.
*
* @return \DateTime|null The lastUpdateDateTime
*/
public function getLastUpdateDateTime()
{
if (array_key_exists("lastUpdateDateTime", $this->_propDict)) {
if (is_a($this->_propDict["lastUpdateDateTime"], "\DateTime") || is_null($this->_propDict["lastUpdateDateTime"])) {
return $this->_propDict["lastUpdateDateTime"];
} else {
$this->_propDict["lastUpdateDateTime"] = new \DateTime($this->_propDict["lastUpdateDateTime"]);
return $this->_propDict["lastUpdateDateTime"];
}
}
return null;
}
/**
* Sets the lastUpdateDateTime
* Time when the alert was last updated at Microsoft 365 Defender.
*
* @param \DateTime $val The lastUpdateDateTime
*
* @return Alert
*/
public function setLastUpdateDateTime($val)
{
$this->_propDict["lastUpdateDateTime"] = $val;
return $this;
}
/**
* Gets the mitreTechniques
* The attack techniques, as aligned with the MITRE ATT&CK framework.
*
* @return array|null The mitreTechniques
*/
public function getMitreTechniques()
{
if (array_key_exists("mitreTechniques", $this->_propDict)) {
return $this->_propDict["mitreTechniques"];
} else {
return null;
}
}
/**
* Sets the mitreTechniques
* The attack techniques, as aligned with the MITRE ATT&CK framework.
*
* @param string[] $val The mitreTechniques
*
* @return Alert
*/
public function setMitreTechniques($val)
{
$this->_propDict["mitreTechniques"] = $val;
return $this;
}
/**
* Gets the providerAlertId
* The ID of the alert as it appears in the security provider product that generated the alert.
*
* @return string|null The providerAlertId
*/
public function getProviderAlertId()
{
if (array_key_exists("providerAlertId", $this->_propDict)) {
return $this->_propDict["providerAlertId"];
} else {
return null;
}
}
/**
* Sets the providerAlertId
* The ID of the alert as it appears in the security provider product that generated the alert.
*
* @param string $val The providerAlertId
*
* @return Alert
*/
public function setProviderAlertId($val)
{
$this->_propDict["providerAlertId"] = $val;
return $this;
}
/**
* Gets the recommendedActions
* Recommended response and remediation actions to take in the event this alert was generated.
*
* @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
* Recommended response and remediation actions to take in the event this alert was generated.
*
* @param string $val The recommendedActions
*
* @return Alert
*/
public function setRecommendedActions($val)
{
$this->_propDict["recommendedActions"] = $val;
return $this;
}
/**
* Gets the resolvedDateTime
* Time when the alert was resolved.
*
* @return \DateTime|null The resolvedDateTime
*/
public function getResolvedDateTime()
{
if (array_key_exists("resolvedDateTime", $this->_propDict)) {
if (is_a($this->_propDict["resolvedDateTime"], "\DateTime") || is_null($this->_propDict["resolvedDateTime"])) {
return $this->_propDict["resolvedDateTime"];
} else {
$this->_propDict["resolvedDateTime"] = new \DateTime($this->_propDict["resolvedDateTime"]);
return $this->_propDict["resolvedDateTime"];
}
}
return null;
}
/**
* Sets the resolvedDateTime
* Time when the alert was resolved.
*
* @param \DateTime $val The resolvedDateTime
*
* @return Alert
*/
public function setResolvedDateTime($val)
{
$this->_propDict["resolvedDateTime"] = $val;
return $this;
}
/**
* Gets the serviceSource
* The service or product that created this alert. Possible values are: unknown, microsoftDefenderForEndpoint, microsoftDefenderForIdentity, microsoftDefenderForCloudApps, microsoftDefenderForOffice365, microsoft365Defender, azureAdIdentityProtection, microsoftAppGovernance, dataLossPrevention, unknownFutureValue, microsoftDefenderForCloud. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud.
*
* @return ServiceSource|null The serviceSource
*/
public function getServiceSource()
{
if (array_key_exists("serviceSource", $this->_propDict)) {
if (is_a($this->_propDict["serviceSource"], "\Microsoft\Graph\SecurityNamespace\Model\ServiceSource") || is_null($this->_propDict["serviceSource"])) {
return $this->_propDict["serviceSource"];
} else {
$this->_propDict["serviceSource"] = new ServiceSource($this->_propDict["serviceSource"]);
return $this->_propDict["serviceSource"];
}
}
return null;
}
/**
* Sets the serviceSource
* The service or product that created this alert. Possible values are: unknown, microsoftDefenderForEndpoint, microsoftDefenderForIdentity, microsoftDefenderForCloudApps, microsoftDefenderForOffice365, microsoft365Defender, azureAdIdentityProtection, microsoftAppGovernance, dataLossPrevention, unknownFutureValue, microsoftDefenderForCloud. You must use the Prefer: include-unknown-enum-members request header to get the following value(s) in this evolvable enum: microsoftDefenderForCloud.
*
* @param ServiceSource $val The serviceSource
*
* @return Alert
*/
public function setServiceSource($val)
{
$this->_propDict["serviceSource"] = $val;
return $this;
}
/**
* Gets the severity
* Indicates the possible impact on assets. The higher the severity the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: unknown, informational, low, medium, high, unknownFutureValue.
*
* @return AlertSeverity|null The severity
*/
public function getSeverity()
{
if (array_key_exists("severity", $this->_propDict)) {
if (is_a($this->_propDict["severity"], "\Microsoft\Graph\SecurityNamespace\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
* Indicates the possible impact on assets. The higher the severity the bigger the impact. Typically higher severity items require the most immediate attention. Possible values are: unknown, informational, low, medium, high, unknownFutureValue.
*
* @param AlertSeverity $val The severity
*
* @return Alert
*/
public function setSeverity($val)
{
$this->_propDict["severity"] = $val;
return $this;
}
/**
* Gets the status
* The status of the alert. Possible values are: new, inProgress, resolved, unknownFutureValue.
*
* @return AlertStatus|null The status
*/
public function getStatus()
{
if (array_key_exists("status", $this->_propDict)) {
if (is_a($this->_propDict["status"], "\Microsoft\Graph\SecurityNamespace\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
* The status of the alert. Possible values are: new, inProgress, resolved, unknownFutureValue.
*
* @param AlertStatus $val The status
*
* @return Alert
*/
public function setStatus($val)
{
$this->_propDict["status"] = $val;
return $this;
}
/**
* Gets the tenantId
* The Azure Active Directory tenant the alert was created in.
*
* @return string|null The tenantId
*/
public function getTenantId()
{
if (array_key_exists("tenantId", $this->_propDict)) {
return $this->_propDict["tenantId"];
} else {
return null;
}
}
/**
* Sets the tenantId
* The Azure Active Directory tenant the alert was created in.
*
* @param string $val The tenantId
*
* @return Alert
*/
public function setTenantId($val)
{
$this->_propDict["tenantId"] = $val;
return $this;
}
/**
* Gets the threatDisplayName
* The threat associated with this alert.
*
* @return string|null The threatDisplayName
*/
public function getThreatDisplayName()
{
if (array_key_exists("threatDisplayName", $this->_propDict)) {
return $this->_propDict["threatDisplayName"];
} else {
return null;
}
}
/**
* Sets the threatDisplayName
* The threat associated with this alert.
*
* @param string $val The threatDisplayName
*
* @return Alert
*/
public function setThreatDisplayName($val)
{
$this->_propDict["threatDisplayName"] = $val;
return $this;
}
/**
* Gets the threatFamilyName
* Threat family associated with this alert.
*
* @return string|null The threatFamilyName
*/
public function getThreatFamilyName()
{
if (array_key_exists("threatFamilyName", $this->_propDict)) {
return $this->_propDict["threatFamilyName"];
} else {
return null;
}
}
/**
* Sets the threatFamilyName
* Threat family associated with this alert.
*
* @param string $val The threatFamilyName
*
* @return Alert
*/
public function setThreatFamilyName($val)
{
$this->_propDict["threatFamilyName"] = $val;
return $this;
}
/**
* Gets the title
* Brief identifying string value describing the alert.
*
* @return string|null The title
*/
public function getTitle()
{
if (array_key_exists("title", $this->_propDict)) {
return $this->_propDict["title"];
} else {
return null;
}
}
/**
* Sets the title
* Brief identifying string value describing the alert.
*
* @param string $val The title
*
* @return Alert
*/
public function setTitle($val)
{
$this->_propDict["title"] = $val;
return $this;
}
}