-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSHIELD.json
More file actions
8062 lines (8062 loc) · 449 KB
/
SHIELD.json
File metadata and controls
8062 lines (8062 loc) · 449 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
{
"components": {
"parameters": {
"correlationId": {
"description": "The object ID of the correlation identifier for the specified record.",
"in": "path",
"name": "correlationId",
"required": true,
"schema": {
"examples": [
"1d71e0fe-6e4a-464d-a690-80addf3bda55"
],
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"examples": {
"valid correlation ID": {
"value": "1d71e0fe-6e4a-464d-a690-80addf3bda55",
"summary": "Example Valid Correlation ID",
"description": "An example of a valid correlation ID in type UUID."
}
}
},
"deviceId": {
"description": "The SHIELD ID (Entra ID Device ID) of the managed device to target.",
"in": "path",
"name": "deviceId",
"required": true,
"schema": {
"examples": [
"75da7fa4-4a04-44c8-8f2c-c1b2fa29aa51"
],
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"examples": {
"valid device ID": {
"value": "75da7fa4-4a04-44c8-8f2c-c1b2fa29aa51",
"summary": "Example Valid Device ID",
"description": "An example of a valid managed Entra ID device ID in type UUID."
}
}
},
"intermediaryId": {
"description": "The Object ID of the parent group for the intermediary that you wish to target.",
"in": "path",
"name": "intermediaryId",
"required": true,
"schema": {
"examples": [
"25d4d9da-28ea-42f8-b3df-23c3969abffa"
],
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"examples": {
"valid intermediary ID": {
"value": "25d4d9da-28ea-42f8-b3df-23c3969abffa",
"summary": "Example Intermediary ID",
"description": "An example of a valid parent group ID in type UUID."
}
}
},
"nextLink": {
"description": "Information to be provided to the API call in order to retrieve next set of data as part of pagination. It could be a simple number or full URL representing MS Graph API navigation. This information should not be generated by hand or changed. In case of MS Graph API, please only use tokens the server gives you and do not bring them from outside.",
"in": "query",
"name": "nextLink",
"schema": {
"examples": [
"3"
],
"minLength": 1,
"type": "string"
},
"examples": {
"Number": {
"value": "3",
"summary": "Number for the Next Page in the Navigation Flow",
"description": "The number representation with minimal length for the next page in the navigation flow."
},
"Uri": {
"value": "https://graph.microsoft.com/beta/devices?$top=20&$skiptoken=RFNwdCtEZXZpY2VfMThkNGY4OTAtMDA2YS00ZWM1LWI2OWYtY2VmNDY4ZjczNzQ4K0RldmljZV8xOGQ0Zjg5MC0wMDZhLTRlYzUtYjY5Zi1jZWY0NjhmNzM3NDg",
"summary": "Complete URL With Details of the Request and a Skip Token for MS Graph to Parse and Respond.",
"description": "The uri representation for the next page in the navigation flow. This example shows the complete URL with details of the request and a skip token for MS Graph to parse and respond."
}
}
},
"offeringId": {
"description": "Unique identifier of the marketplace offering",
"in": "path",
"name": "offeringId",
"required": true,
"schema": {
"description": "Unique identifier of the marketplace offering.",
"examples": [
"271ab834-7469-4f2d-a705-549972c4f325"
],
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"examples": {
"valid offering ID": {
"value": "271ab834-7469-4f2d-a705-549972c4f325",
"summary": "Example of an Offering ID",
"description": "An example of an valid marketplace offering ID in type UUID."
}
}
},
"operation": {
"description": "Flag to indicate which progress data in the Deploy Engine to retrieve. If invalid value is provided, it would be ignored and result defaulted to deploy operation.",
"in": "query",
"name": "operation",
"schema": {
"examples": [
"remediate"
],
"type": "string",
"enum": [
"deploy",
"remediate",
"analysis"
]
},
"examples": {
"valid request": {
"value": "remediate",
"summary": "Example of the Request That Provides Expected Value",
"description": "An example of a valid value that indicates the progress bar data to retrieve is for remediation action."
},
"invalid request": {
"value": "somethingelse",
"summary": "Example of the Request That Includes Unexpected Value",
"description": "An example of an incorrect value that would be ignored and defaulted to data for deploy action."
}
}
},
"search": {
"description": "Used in object filtering.",
"in": "query",
"name": "search",
"schema": {
"examples": [
"finance"
],
"type": "string"
},
"examples": {
"valid search term": {
"value": "finance",
"summary": "Example Search Term",
"description": "An example valid search term used in object filtering in a query."
}
}
},
"securityClass": {
"description": "The security class of managed object to retrieve. Unknown values, will be ignored. Please see https://learn.microsoft.com/en-us/security/compass/privileged-access-security-levels for a description of security levels.",
"in": "path",
"name": "securityClass",
"required": true,
"schema": {
"$ref": "#/components/schemas/SecurityClassList"
},
"examples": {
"Privileged": {
"value": "Privileged",
"summary": "Example Security Class",
"description": "An example enum string that indicates the security class of an managed object is privileged."
}
}
},
"templateId": {
"description": "Reference to the specific configuration item that is deployed in the tenant.",
"in": "path",
"name": "templateId",
"required": true,
"schema": {
"type": "string",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"42ff150d-2ff0-4b38-849e-fe6aa5eedb49"
]
},
"examples": {
"valid template ID": {
"value": "7e2a1c3b-4d5f-4a8b-9e6a-2c1b7f3d8e4a",
"summary": "Example of a Valid Template ID",
"description": "An example of a correct template ID value in UUID format used in restoration and skip operations."
}
}
},
"updateChannelName": {
"description": "Name of the update channel that should be used when querying or downloading updates.",
"in": "path",
"name": "Update Channel Name",
"required": true,
"schema": {
"examples": [
"stable"
],
"type": "string",
"enum": [
"alpha",
"beta",
"stable"
]
},
"examples": {
"valid channel name": {
"value": "stable",
"summary": "Example of an Update Channel Name",
"description": "An example of an valid update channel name that should be used when querying or downloading updates."
}
}
},
"userId": {
"description": "The SHIELD ID (Entra ID User's Object ID) of the managed user to target.",
"in": "path",
"name": "userId",
"required": true,
"schema": {
"examples": [
"264a8bed-0714-48fd-8b9d-0e4c4715cee5"
],
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"examples": {
"valid user ID": {
"value": "264a8bed-0714-48fd-8b9d-0e4c4715cee5",
"summary": "Example of a User ID",
"description": "An example of valid EntraID managed user ID in type UUID."
}
}
}
},
"responses": {
"201": {
"description": "The authorization was recorded successfully."
},
"202": {
"description": "The process to create a report has started."
},
"400": {
"description": "Invalid input!"
},
"401": {
"description": "Principal is not authorized to access this endpoint. Check to make sure the Bearer token is valid and present!"
},
"403": {
"description": "Principal does not contain the correct scopes (permissions) for the API call that was made, or was made from the wrong tenant. If the permissions were granted, ensure that the access token was requested with the correct scopes."
},
"404": {
"description": "The requested object was not found."
},
"409": {
"description": "A job is already in progress."
},
"525": {
"description": "Infrastructure not deployed. Please deploy the infrastructure before using this endpoint."
}
},
"schemas": {
"Core.SystemRequirements": {
"title": "Core - System Requirements",
"description": "Collection of indicators that notify the caller if the system requirements have been met for various sub components to operate.",
"properties": {
"authenticatorPermissions": {
"description": "Flag that indicates if the core permissions for the SHIELD - Authenticator App have been configured properly or not.",
"type": "boolean",
"examples": [
true
]
},
"azurePermissions": {
"description": "Flag that indicates if the required core Azure RBAC assignment(s) are present or not.",
"type": "boolean",
"examples": [
false
]
},
"defendEntitlement": {
"description": "Flag that indicates if the required defend licenses are present or not.",
"type": "boolean",
"examples": [
true
]
},
"deployEntitlement": {
"description": "Flag that indicates if the required deploy licenses are present or not.",
"type": "boolean",
"examples": [
true
]
},
"discoverEntitlement": {
"description": "Flag that indicates if the required discover licenses are present or not.",
"type": "boolean",
"examples": [
true
]
},
"msGraphPermissions": {
"description": "Flag that indicates if the core permissions for the Microsoft Graph API have been configured properly or not.",
"type": "boolean",
"examples": [
false
]
},
"dataGatewayPermissions": {
"description": "Flag that indicates if the core permissions for the SHI - Data Gateway have been configured properly or not.",
"type": "boolean",
"examples": [
false
]
},
"entraDirectoryRole": {
"description": "Flag that indicates if the core permissions for Entra Directory Role assignment have been configured properly or not.",
"type": "boolean",
"examples": [
false
]
}
},
"type": "object",
"required": [
"authenticatorPermissions",
"azurePermissions",
"defendEntitlement",
"deployEntitlement",
"discoverEntitlement",
"msGraphPermissions",
"dataGatewayPermissions",
"entraDirectoryRole"
],
"examples": [
{
"authenticatorPermissions": true,
"azurePermissions": false,
"defendEntitlement": true,
"deployEntitlement": false,
"discoverEntitlement": true,
"msGraphPermissions": false,
"dataGatewayPermissions": false,
"entraDirectoryRole": false
}
]
},
"Core.ProgressBar": {
"title": "Core - Progress Bar",
"description": "Used to indicate the progress of a long running operation.",
"properties": {
"childBar": {
"description": "Sub progress bar that should appear below the current progress bar for a dependent execution branch.",
"type": "array",
"minItems": 0,
"items": {
"$ref": "#/components/schemas/Core.ProgressBar"
},
"examples": [
[
{
"description": "Collecting data from the Microsoft Entra ID system.",
"displayName": "Running Entra ID Plugin",
"id": "b759230f-48cb-496e-ad57-5f079083226b",
"currentStep": 5,
"totalStepCount": 7
}
]
]
},
"description": {
"type": "string",
"description": "Long form text describing the current step.",
"examples": [
"Collecting data from the Microsoft Entra ID system."
]
},
"displayName": {
"type": "string",
"description": "Text/label to render with the progress bar.",
"examples": [
"Running Entra ID Plugin"
]
},
"id": {
"description": "Unique identifier to be able to select this specific instance via search.",
"type": "string",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"b759230f-48cb-496e-ad57-5f079083226b"
]
},
"currentStep": {
"description": "Current step/value for the progress bar. This is in relation to the `totalStepCount` property. If undefined, an indeterminate/pulsing progress bar is used instead.",
"examples": [
5
],
"type": "number"
},
"totalStepCount": {
"description": "Number of steps before the progress bar is completely filed.",
"examples": [
7
],
"type": "number",
"minimum": 1
}
},
"type": "object",
"required": [
"childBar",
"displayName",
"id",
"totalStepCount"
],
"examples": [
{
"childBar": [],
"description": "Collecting data from the Microsoft Entra ID system.",
"displayName": "Running Entra ID Plugin",
"id": "b759230f-48cb-496e-ad57-5f079083226b",
"currentStep": 5,
"totalStepCount": 7
}
]
},
"Authenticator.RequestStatus": {
"title": "Authentication - Status",
"description": "List of credentials that are being waited for by SHIELD's internal authentication engine.",
"properties": {
"accessToken": {
"oneOf": [
{
"description": "Flag that represents if the server is not waiting for a specific access token.",
"type": "boolean",
"examples": [
false
]
},
{
"$ref": "#/components/schemas/Authenticator.Status.TokenAudience"
}
],
"examples": [
false,
{
"audience": "00000002-0000-0000-b000-000000000000"
}
]
},
"sccAuth": {
"description": "Flag that represents if the server is waiting for SCC Auth credentials.",
"type": "boolean",
"examples": [
true
]
}
},
"type": "object",
"required": [
"accessToken",
"sccAuth"
],
"examples": [
{
"accessToken": {
"audience": "00000002-0000-0000-b000-000000000000"
},
"sccAuth": true
}
]
},
"Authenticator.Status.TokenAudience": {
"title": "SHIELD - Authenticator - Status - Token Audience",
"description": "If a access token is being requested, this is the audience that the access token should have when being submitted.",
"properties": {
"audience": {
"description": "Audience ID of the access token that is being requested.",
"type": "string",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"00000002-0000-0000-b000-000000000000"
]
}
},
"type": "object",
"required": [
"audience"
],
"examples": [
{
"audience": "00000002-0000-0000-b000-000000000000"
}
]
},
"Authenticator.Container.SccAuthCredentials": {
"title": "SHIELD - Authenticator - SCC Auth",
"description": "SHIELD - Defender, and Purview portal Container Credentials",
"type": "object",
"properties": {
"authenticatedUpn": {
"description": "User principal name of the user that authenticated to the portals.",
"examples": [
"user@example.com"
],
"type": "string",
"format": "email"
},
"expiration": {
"description": "Point in time at which the whole authentication structure has an expired state and is un-useable.",
"examples": [
"2024-09-26T18:16:29.340Z"
],
"type": "string",
"format": "date-time"
},
"defender": {
"$ref": "#/components/schemas/Authenticator.Container.SccAuthCredentials.CredentialContainer"
},
"security": {
"$ref": "#/components/schemas/Authenticator.Container.SccAuthCredentials.CredentialContainer"
},
"purview": {
"$ref": "#/components/schemas/Authenticator.Container.SccAuthCredentials.CredentialContainer"
}
},
"required": [
"authenticatedUpn",
"security",
"purview"
],
"examples": [
{
"authenticatedUpn": "user@example.com",
"security": {
"sccAuth": "54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)",
"xsrf": "PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)"
},
"purview": {
"sccAuth": "54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)",
"xsrf": "PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)"
},
"expiration": "2024-09-26T18:16:29.340Z",
"defender": {
"sccAuth": "54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)",
"xsrf": "PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)"
}
}
]
},
"Authenticator.Container.SccAuthCredentials.CredentialContainer": {
"title": "SHIELD - Authenticator - SCC Auth - Credential Container",
"description": "Container for the credentials for a single SccAuth authenticated site.",
"properties": {
"sccAuth": {
"description": "Authentication token.",
"examples": [
"54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)"
],
"type": "string"
},
"xsrf": {
"description": "Cross Site Request Forgery Prevention Token.",
"examples": [
"PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)"
],
"type": "string"
}
},
"required": [
"sccAuth",
"xsrf"
],
"type": "object",
"examples": [
{
"sccAuth": "54BKPtTL-eSMFp5cqYTMMSblm2U80cUJqQgmbe4f_sRn4ammMmU1NKNurn9HqpsUtS4FrMJRTKa3Or_pFbedM_57R0fVBfNJ-m2Pvey9OweWIDradzT0dB1WnufPTJiT2y7zSQy91Y9wJIn1_aY5q-MNh75qwjM84Dng-mYzbd9KqUfyPUolOo-j-... (Truncated)",
"xsrf": "PEDwTvWdm2qSTe-n8h-1praK4OcQK1ELTJ08DWYqBRzQiyA2MIuEKEMNLu4ExjDNpAOUnAxmsqOeuGzb82MJYkegOE6hW8BzpSM6k9nbTbJ4yjNGzMSQvWUnyqrBvGa8JfSRiSeaKdXGBnxGd90Spw2:... (truncated)"
}
]
},
"Deploy.ConfigurationTag": {
"title": "Deploy - Configuration Tag",
"description": "Definition of an object representing configuration tag used within architecture collections.",
"type": "object",
"properties": {
"advanced": {
"type": "boolean",
"description": "Flag indicating if additional challenges should be required before user can use this configuration item.",
"examples": [
false
]
},
"description": {
"type": "string",
"description": "Long form explanation what the tag is and/or does.",
"examples": [
"This tag indicates specific collection and very important."
]
},
"displayName": {
"type": "string",
"description": "Human friendly name of the config tag.",
"examples": [
"Important Collection"
]
},
"dependentTag": {
"type": "array",
"description": "List of configuration tags that are required to be selected if this one were to be selected. This property is primarily used for illustration to the end user or system.",
"minItems": 0,
"items": {
"$ref": "#/components/schemas/Deploy.ConfigurationTag"
},
"examples": [
[
{
"advanced": false,
"description": "This tag indicates specific collection and very important.",
"displayName": "Important Collection",
"dependentTag": [],
"id": "2c7e1a3b-5d4f-4a8b-9e6a-1c2b7f3d8e4a"
}
]
]
},
"id": {
"type": "string",
"description": "Object ID of the config tag entity.",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"8b3e2a1c-7d4f-4a8b-9e6a-2c1b7f3d8e4a"
]
}
},
"required": [
"advanced",
"description",
"displayName",
"dependentTag",
"id"
],
"examples": [
{
"advanced": true,
"description": "This tag indicates optional collection and can be skipped.",
"displayName": "Optional Collection",
"dependentTag": [],
"id": "4d1c7e2b-3a5f-4a8b-9e6a-7f2b3d1c9e45"
}
]
},
"Deploy.ArchitectureData": {
"title": "Deploy - Architecture Data Record",
"description": "Collection of objects describing existing architectures available for selection.",
"type": "array",
"items": {
"description": "List of architecture tag objects with metadata to help UI present the information to the user.",
"type": "object",
"properties": {
"advanced": {
"type": "boolean",
"description": "Flag indicating if additional challenges should be required before user can select this architecture item.",
"examples": [
false
]
},
"configTagList": {
"type": "array",
"description": "List of configuration tags that are a part of this architecture.",
"minItems": 0,
"items": {
"$ref": "#/components/schemas/Deploy.ConfigurationTag"
},
"examples": [
[
{
"advanced": false,
"description": "Default configuration that is applicable in most cases",
"displayName": "General Configuration",
"dependentTag": [],
"id": "7e4a2c9f-1b3d-4f6a-8e9c-2d5f3a7b6c1e"
}
]
]
},
"description": {
"type": "string",
"description": "Long form explanation what the architecture is and/or does.",
"examples": [
"Default architecture that is applicable in most cases"
]
},
"displayName": {
"type": "string",
"description": "Human friendly name of the architecture tag.",
"examples": [
"General Architecture"
]
},
"id": {
"type": "string",
"description": "Object ID of the architecture tag entity.",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"2f6a1c9e-7b3d-4e8f-9a2c-5d1e3b7f4c6a"
]
}
},
"required": [
"advanced",
"configTagList",
"description",
"displayName",
"id"
],
"examples": [
{
"advanced": false,
"configTagList": [
{
"advanced": false,
"description": "Default configuration that is applicable in most cases",
"displayName": "General Configuration",
"dependentTag": [],
"id": "7e4a2c9f-1b3d-4f6a-8e9c-2d5f3a7b6c1e"
}
],
"description": "Default architecture that is applicable in most cases",
"displayName": "General Architecture",
"id": "2f6a1c9e-7b3d-4e8f-9a2c-5d1e3b7f4c6a"
}
]
},
"examples": [
[
{
"advanced": false,
"configTagList": [
{
"advanced": false,
"description": "Default configuration that is applicable in most cases",
"displayName": "General Configuration",
"dependentTag": [],
"id": "7e4a2c9f-1b3d-4f6a-8e9c-2d5f3a7b6c1e"
}
],
"description": "Default architecture that is applicable in most cases",
"displayName": "General Architecture",
"id": "2f6a1c9e-7b3d-4e8f-9a2c-5d1e3b7f4c6a"
},
{
"advanced": true,
"configTagList": [
{
"advanced": false,
"description": "Custom configuration to provision group container",
"displayName": "Custom Group",
"dependentTag": [],
"id": "3a9f2e1c-6b4d-4c7a-9f8e-1d2b5e3a7c6f"
},
{
"advanced": true,
"description": "Custom configuration to create access policy",
"displayName": "Custom Policy",
"dependentTag": [
{
"advanced": true,
"description": "Custom configuration to enable location control",
"displayName": "Location Control",
"dependentTag": [],
"id": "1b7e3c9a-4f2d-4a6e-9f8c-2d5a1b3f6c7e"
}
],
"id": "6c3e1a9f-2b7d-4f8a-9e5c-1d4a3b7e6f2c"
}
],
"description": "Custom architecture for discover process only",
"displayName": "Discover-only Architecture",
"id": "8c1f3a7e-2d4b-4f6a-9e5c-3b7d2a1f6c9e"
}
]
]
},
"Deploy.CompareResponse": {
"title": "Deploy - Compare Response Record",
"description": "Object with the details of the evaluation of the deployed infrastructure resources.",
"type": "object",
"properties": {
"invalid": {
"type": "array",
"description": "Collection of the configuration items where request for resource data responded with an error.",
"items": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Internal reference identifier of the resource.",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"a14402b8-98c5-41e3-ba99-e5e1a536f68d"
]
},
"message": {
"type": "string",
"description": "Text with the details of the error response.",
"examples": [
"Setting ID '58246273-d366-40d5-ac3d-daacb8bc2655' - Item not found."
]
}
},
"required": [
"templateId",
"message"
],
"examples": [
{
"templateId": "a14402b8-98c5-41e3-ba99-e5e1a536f68d",
"message": "Setting ID '58246273-d366-40d5-ac3d-daacb8bc2655' - Item not found."
}
]
},
"examples": [
[
{
"templateId": "a14402b8-98c5-41e3-ba99-e5e1a536f68d",
"message": "Setting ID '58246273-d366-40d5-ac3d-daacb8bc2655' - Item not found."
},
{
"templateId": "9af9209d-d191-4b42-9f65-dfd8b7882bba",
"message": "Setting ID 'f6f5d07b-230c-4818-93de-e407b8ca9537' - Insufficient access to view this data."
}
]
]
},
"lastRunTimestamp": {
"description": "Point in time expressed in ISO 8601 format when the evaluation results were generated. ",
"examples": [
"2025-03-25T14:28:54Z"
],
"type": [
"string",
"null"
],
"format": "date-time"
},
"missing": {
"type": "array",
"description": "Collection of the configuration items that are expected to be deployed but do not have resource reference id.",
"items": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Internal reference identifier of the resource.",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"78afd77c-c2a6-4328-9c61-b9fd44114823"
]
},
"message": {
"type": "string",
"description": "Text containing details of the original configuration item definition.",
"examples": [
"{\"displayName\":\"Privileged Objects\",\"description\":\"Privileged objects managed by application.\",\"membershipType\":\"Assigned\"}"
]
}
},
"required": [
"templateId",
"message"
],
"examples": [
{
"templateId": "78afd77c-c2a6-4328-9c61-b9fd44114823",
"message": "{\"displayName\":\"Privileged Objects\",\"description\":\"Privileged objects managed by application.\",\"membershipType\":\"Assigned\"}"
}
]
},
"examples": [
[
{
"templateId": "78afd77c-c2a6-4328-9c61-b9fd44114823",
"message": "{\"displayName\":\"Privileged Objects\",\"description\":\"Privileged objects managed by application.\",\"membershipType\":\"Assigned\"}"
}
]
]
},
"results": {
"type": "array",
"description": "Collection of the configuration items where discrepancies were found.",
"items": {
"type": "object",
"properties": {
"templateId": {
"type": "string",
"description": "Internal reference identifier of the resource.",
"format": "uuid",
"maxLength": 36,
"minLength": 36,
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}$",
"examples": [
"c47c20bd-46fa-4dfe-b971-3e5b1ce34a86"
]
},
"variants": {
"type": "array",
"description": "List of individual parts of the resource where discrepancies were determined.",
"items": {
"type": "object",
"properties": {
"actions": {
"items": {
"type": "number",
"examples": [
2
]
},
"description": "List of operations available to be performed on the entity.",
"type": "array",
"minItems": 1,
"examples": [
[
2,
3
]
]
},
"errorCode": {
"description": "Detailed information about the discrepancy for the entity.",
"type": "number",
"examples": [
5
]
},
"path": {
"description": "Location in the object where evaluated property encountered an error.",
"type": "string",
"examples": [
"/displayName"
]
}
},
"required": [
"actions",
"errorCode",
"path"
],
"examples": [
{
"actions": [
2,
3
],
"errorCode": 5,
"path": "/displayName"
}
]
},
"examples": [
[
{
"actions": [
2,