@@ -192,7 +192,6 @@ The current list of supported commands are
192
192
- [ Collect Helm Releases] ( #collect-helm-releases ) \
193
193
Command Name: ` collect-helm-releases ` \
194
194
Arguments: None
195
-
196
195
- [ Collect ` systemctl status ` Output] ( #collect-systemctl-status-output ) \
197
196
Command Name: ` platform-services-status ` \
198
197
Arguments: None
@@ -501,6 +500,10 @@ https://cmkfjft8twwpst.blob.core.windows.net/bmm-run-command-output/20b217b5-ea3
501
500
"type" : " string" ,
502
501
"description" : " The name of the resource."
503
502
},
503
+ "clusterId" : {
504
+ "type" : " string" ,
505
+ "description" : " The resource ID of the cluster."
506
+ },
504
507
"runtimeVersion" : {
505
508
"type" : " string" ,
506
509
"description" : " The version of the runtime."
@@ -512,35 +515,41 @@ https://cmkfjft8twwpst.blob.core.windows.net/bmm-run-command-output/20b217b5-ea3
512
515
"vulnerabilitySummary" : {
513
516
"type" : " object" ,
514
517
"properties" : {
515
- "criticalCount" : {
516
- "type" : " integer" ,
517
- "description" : " Number of critical vulnerabilities."
518
- },
519
- "highCount" : {
520
- "type" : " integer" ,
521
- "description" : " Number of high severity vulnerabilities."
522
- },
523
- "mediumCount" : {
524
- "type" : " integer" ,
525
- "description" : " Number of medium severity vulnerabilities."
526
- },
527
- "lowCount" : {
528
- "type" : " integer" ,
529
- "description" : " Number of low severity vulnerabilities."
530
- },
531
- "noneCount" : {
532
- "type" : " integer" ,
533
- "description" : " Number of vulnerabilities with no severity."
518
+ "uniqueVulnerabilities" : {
519
+ "type" : " object" ,
520
+ "properties" : {
521
+ "critical" : { "type" : " integer" },
522
+ "high" : { "type" : " integer" },
523
+ "medium" : { "type" : " integer" },
524
+ "low" : { "type" : " integer" },
525
+ "unknown" : { "type" : " integer" }
526
+ },
527
+ "required" : [" critical" , " high" , " medium" , " low" , " unknown" ]
534
528
},
535
- "unknownCount" : {
536
- "type" : " integer" ,
537
- "description" : " Number of vulnerabilities with unknown severity."
529
+ "totalVulnerabilities" : {
530
+ "type" : " object" ,
531
+ "properties" : {
532
+ "critical" : { "type" : " integer" },
533
+ "high" : { "type" : " integer" },
534
+ "medium" : { "type" : " integer" },
535
+ "low" : { "type" : " integer" },
536
+ "unknown" : { "type" : " integer" }
537
+ },
538
+ "required" : [" critical" , " high" , " medium" , " low" , " unknown" ]
538
539
}
539
540
},
540
- "required" : [" criticalCount " , " highCount " , " mediumCount " , " lowCount " , " noneCount " , " unknownCount " ]
541
+ "required" : [" uniqueVulnerabilities " , " totalVulnerabilities " ]
541
542
}
542
543
},
543
- "required" : [" dateRetrieved" , " platform" , " resource" , " runtimeVersion" , " managementVersion" , " vulnerabilitySummary" ]
544
+ "required" : [
545
+ " dateRetrieved" ,
546
+ " platform" ,
547
+ " resource" ,
548
+ " clusterId" ,
549
+ " runtimeVersion" ,
550
+ " managementVersion" ,
551
+ " vulnerabilitySummary"
552
+ ]
544
553
},
545
554
"containers" : {
546
555
"type" : " object" ,
@@ -550,13 +559,18 @@ https://cmkfjft8twwpst.blob.core.windows.net/bmm-run-command-output/20b217b5-ea3
550
559
"type" : " object" ,
551
560
"properties" : {
552
561
"namespace" : {
553
- "type" : " string" ,
554
- "description" : " The namespace of the container."
562
+ "type" : " array" ,
563
+ "description" : " The namespaces where the container image is in-use." ,
564
+ "items" : { "type" : " string" }
555
565
},
556
566
"digest" : {
557
567
"type" : " string" ,
558
568
"description" : " The digest of the container image."
559
569
},
570
+ "observedCount" : {
571
+ "type" : " integer" ,
572
+ "description" : " The number of times the container image has been observed."
573
+ },
560
574
"os" : {
561
575
"type" : " object" ,
562
576
"properties" : {
@@ -567,97 +581,46 @@ https://cmkfjft8twwpst.blob.core.windows.net/bmm-run-command-output/20b217b5-ea3
567
581
},
568
582
"required" : [" family" ]
569
583
},
570
- "summary" : {
571
- "type" : " object" ,
572
- "properties" : {
573
- "criticalCount" : {
574
- "type" : " integer" ,
575
- "description" : " Number of critical vulnerabilities in this container."
576
- },
577
- "highCount" : {
578
- "type" : " integer" ,
579
- "description" : " Number of high severity vulnerabilities in this container."
580
- },
581
- "lowCount" : {
582
- "type" : " integer" ,
583
- "description" : " Number of low severity vulnerabilities in this container."
584
- },
585
- "mediumCount" : {
586
- "type" : " integer" ,
587
- "description" : " Number of medium severity vulnerabilities in this container."
588
- },
589
- "noneCount" : {
590
- "type" : " integer" ,
591
- "description" : " Number of vulnerabilities with no severity in this container."
592
- },
593
- "unknownCount" : {
594
- "type" : " integer" ,
595
- "description" : " Number of vulnerabilities with unknown severity in this container."
596
- }
597
- },
598
- "required" : [" criticalCount" , " highCount" , " lowCount" , " mediumCount" , " noneCount" , " unknownCount" ]
599
- },
600
584
"vulnerabilities" : {
601
585
"type" : " array" ,
602
586
"items" : {
603
587
"type" : " object" ,
604
588
"properties" : {
605
- "title" : {
606
- "type" : " string" ,
607
- "description" : " Title of the vulnerability."
608
- },
609
- "vulnerabilityID" : {
610
- "type" : " string" ,
611
- "description" : " Identifier of the vulnerability."
612
- },
613
- "fixedVersion" : {
614
- "type" : " string" ,
615
- "description" : " The version in which the vulnerability is fixed."
616
- },
617
- "installedVersion" : {
618
- "type" : " string" ,
619
- "description" : " The currently installed version."
620
- },
621
- "referenceLink" : {
622
- "type" : " string" ,
623
- "format" : " uri" ,
624
- "description" : " Link to the vulnerability details."
625
- },
626
- "publishedDate" : {
627
- "type" : " string" ,
628
- "format" : " date-time" ,
629
- "description" : " The date when the vulnerability was published."
630
- },
631
- "score" : {
632
- "type" : " number" ,
633
- "description" : " The CVSS score of the vulnerability."
634
- },
635
- "severity" : {
636
- "type" : " string" ,
637
- "description" : " The severity level of the vulnerability."
638
- },
639
- "resource" : {
640
- "type" : " string" ,
641
- "description" : " The resource affected by the vulnerability."
642
- },
643
- "target" : {
644
- "type" : " string" ,
645
- "description" : " The target of the vulnerability."
646
- },
647
- "packageType" : {
648
- "type" : " string" ,
649
- "description" : " The type of the package."
650
- },
651
- "exploitAvailable" : {
652
- "type" : " boolean" ,
653
- "description" : " Indicates if an exploit is available for the vulnerability."
654
- }
589
+ "title" : { "type" : " string" },
590
+ "vulnerabilityID" : { "type" : " string" },
591
+ "fixedVersion" : { "type" : " string" },
592
+ "installedVersion" : { "type" : " string" },
593
+ "referenceLink" : { "type" : " string" , "format" : " uri" },
594
+ "publishedDate" : { "type" : " string" , "format" : " date-time" },
595
+ "dataSource" : { "type" : " string" },
596
+ "score" : { "type" : " number" },
597
+ "severity" : { "type" : " string" },
598
+ "severitySource" : { "type" : " string" },
599
+ "resource" : { "type" : " string" },
600
+ "target" : { "type" : " string" },
601
+ "packageType" : { "type" : " string" },
602
+ "exploitAvailable" : { "type" : " boolean" }
655
603
},
656
- "required" : [" title" , " vulnerabilityID" , " fixedVersion" , " installedVersion" , " referenceLink" , " publishedDate" , " score" , " severity" , " resource" , " target" , " packageType" , " exploitAvailable" ]
604
+ "required" : [
605
+ " title" ,
606
+ " vulnerabilityID" ,
607
+ " fixedVersion" ,
608
+ " installedVersion" ,
609
+ " referenceLink" ,
610
+ " publishedDate" ,
611
+ " dataSource" ,
612
+ " score" ,
613
+ " severity" ,
614
+ " severitySource" ,
615
+ " resource" ,
616
+ " target" ,
617
+ " packageType" ,
618
+ " exploitAvailable"
619
+ ]
657
620
}
658
621
}
659
622
},
660
- "required" : [" namespace" , " digest" , " os" , " summary " , " vulnerabilities" ]
623
+ "required" : [" namespace" , " digest" , " os" , " observedCount " , " vulnerabilities" ]
661
624
}
662
625
}
663
626
}
0 commit comments