forked from auth0/jupiterone-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathconstants.py
More file actions
1234 lines (1205 loc) · 24.3 KB
/
constants.py
File metadata and controls
1234 lines (1205 loc) · 24.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
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
J1QL_SKIP_COUNT = 250
J1QL_LIMIT_COUNT = 250
# GRAPH
CREATE_ENTITY = """
mutation CreateEntity(
$entityKey: String!
$entityType: String!
$entityClass: [String!]!
$properties: JSON
) {
createEntity(
entityKey: $entityKey
entityType: $entityType
entityClass: $entityClass
properties: $properties
) {
entity {
_id
}
vertex {
id
entity {
_id
}
}
}
}
"""
DELETE_ENTITY = """
mutation DeleteEntity($entityId: String!, $timestamp: Long) {
deleteEntity(entityId: $entityId, timestamp: $timestamp) {
entity {
_id
}
vertex {
id
entity {
_id
}
properties
}
}
}
"""
UPDATE_ENTITY = """
mutation UpdateEntity($entityId: String!, $properties: JSON) {
updateEntity(entityId: $entityId, properties: $properties) {
entity {
_id
}
vertex {
id
}
}
}
"""
CREATE_RELATIONSHIP = """
mutation CreateRelationship(
$relationshipKey: String!
$relationshipType: String!
$relationshipClass: String!
$fromEntityId: String!
$toEntityId: String!
$properties: JSON
) {
createRelationship(
relationshipKey: $relationshipKey
relationshipType: $relationshipType
relationshipClass: $relationshipClass
fromEntityId: $fromEntityId
toEntityId: $toEntityId
properties: $properties
) {
relationship {
_id
}
edge {
id
toVertexId
fromVertexId
relationship {
_id
}
properties
}
}
}
"""
UPDATE_RELATIONSHIPV2 = """
mutation UpdateRelationshipV2 (
$relationship: JSON!
$timestamp: Long
) {
updateRelationshipV2 (
relationship: $relationship,
timestamp: $timestamp,
) {
relationship
}
}
"""
DELETE_RELATIONSHIP = """
mutation DeleteRelationship($relationshipId: String! $timestamp: Long) {
deleteRelationship (relationshipId: $relationshipId, timestamp: $timestamp) {
relationship {
_id
}
edge {
id
toVertexId
fromVertexId
relationship {
_id
}
properties
}
}
}
"""
# ENTITIES
ALL_PROPERTIES = """
query getAllAssetProperties {
getAllAssetProperties
}
"""
GET_ENTITY_RAW_DATA = """
query GetEntityRawData ($entityId: String!, $source: String!,
) {
entityRawDataLegacy(entityId: $entityId, , source: $source) {
entityId
payload {
... on RawDataJSONEntityLegacy {
contentType
name
data
}
}
}
}
"""
# SMART CLASSES
CREATE_SMARTCLASS = """
mutation CreateSmartClass($input: CreateSmartClassInput!) {
createSmartClass(input: $input) {
id
accountId
tagName
description
ruleId
__typename
}
}
"""
CREATE_SMARTCLASS_QUERY = """
mutation CreateSmartClassQuery($input: CreateSmartClassQueryInput!) {
createSmartClassQuery(input: $input) {
id
smartClassId
description
query
__typename
}
}
"""
EVALUATE_SMARTCLASS = """
mutation EvaluateSmartClassRule($smartClassId: ID!) {
evaluateSmartClassRule(smartClassId: $smartClassId) {
ruleId
__typename
}
}
"""
GET_SMARTCLASS_DETAILS = """
query GetSmartClass($id: ID!) {
smartClass(id: $id) {
id
accountId
tagName
description
ruleId
queries {
id
smartClassId
description
query
__typename
}
tags {
id
smartClassId
name
type
value
__typename
}
rule {
lastEvaluationEndOn
evaluationStep
__typename
}
__typename
}
}
"""
# INTEGRATIONS
CREATE_INSTANCE = """
mutation CreateInstance($instance: CreateIntegrationInstanceInput!) {
createIntegrationInstance(instance: $instance) {
id
name
accountId
pollingInterval
integrationDefinitionId
description
config
}
}
"""
INTEGRATION_JOB_VALUES = """
query IntegrationJobs(
$status: IntegrationJobStatus
$integrationInstanceId: String
$integrationDefinitionId: String
$integrationInstanceIds: [String]
$cursor: String
$size: Int
) {
integrationJobs(
status: $status
integrationInstanceId: $integrationInstanceId
integrationDefinitionId: $integrationDefinitionId
integrationInstanceIds: $integrationInstanceIds
cursor: $cursor
size: $size
) {
jobs {
id
status
integrationInstanceId
createDate
endDate
hasSkippedSteps
integrationInstance {
id
name
__typename
}
integrationDefinition {
id
title
integrationType
__typename
}
__typename
}
pageInfo {
endCursor
__typename
}
__typename
}
}
"""
INTEGRATION_INSTANCE_EVENT_VALUES = """
query ListEvents(
$jobId: String!
$integrationInstanceId: String!
$cursor: String
$size: Int
) {
integrationEvents(
size: $size
cursor: $cursor
jobId: $jobId
integrationInstanceId: $integrationInstanceId
) {
events {
id
name
description
createDate
jobId
level
eventCode
__typename
}
pageInfo {
endCursor
hasNextPage
__typename
}
__typename
}
}
"""
FIND_INTEGRATION_DEFINITION = """
query FindIntegrationDefinition($integrationType: String!, $includeConfig: Boolean!) {
findIntegrationDefinition(integrationType: $integrationType) {
...IntegrationDefinitionsValues
__typename
}
}
fragment IntegrationDefinitionsValues on IntegrationDefinition {
id
name
type
title
displayMode
oAuth {
oAuthUrlGeneratorPath
__typename
}
offsiteUrl
offsiteButtonTitle
offsiteStatusQuery
integrationType
integrationClass
integrationCategory
beta
docsWebLink
repoWebLink
invocationPaused
managedExecutionDisabled
integrationPlatformFeatures {
supportsChildInstances
supportsCollectors
supportsIngestionSourcesConfig
__typename
}
ingestionSourcesConfig {
id
title
description
defaultsToDisabled
childIngestionSourcesMetadata {
id
name
__typename
}
cannotBeDisabled
__typename
}
ingestionSourcesOverrides {
enabled
ingestionSourceId
__typename
}
totalInstanceCount
integrationJobStatusMetrics {
count
status
__typename
}
...IntegrationDefinitionConfigFragment @include(if: $includeConfig)
__typename
}
fragment IntegrationDefinitionConfigFragment on IntegrationDefinition {
configFields {
...ConfigFieldsRecursive
__typename
}
authSections {
id
description
displayName
configFields {
...ConfigFieldsRecursive
__typename
}
verificationDisabled
__typename
}
configSections {
displayName
configFields {
...ConfigFieldsRecursive
__typename
}
__typename
}
__typename
}
fragment ConfigFieldsRecursive on ConfigField {
...ConfigFieldValues
configFields {
...ConfigFieldValues
configFields {
...ConfigFieldValues
__typename
}
__typename
}
__typename
}
fragment ConfigFieldValues on ConfigField {
key
displayName
description
type
format
defaultValue
helperText
inputAdornment
mask
optional
immutable
readonly
computed
options {
value
description
label
webLink
default
__typename
}
__typename
}
"""
INTEGRATION_INSTANCES = """
fragment IntegrationInstanceLiteValues on IntegrationInstanceLite {
id
name
accountId
sourceIntegrationInstanceId
pollingInterval
pollingIntervalCronExpression {
hour
dayOfWeek
__typename
}
integrationDefinitionId
description
config
instanceRelationship
mostRecentJob {
status
hasSkippedSteps
createDate
__typename
}
__typename
}
query IntegrationInstances($definitionId: String, $cursor: String, $limit: Int, $filter: ListIntegrationInstancesSearchFilter) {
integrationInstancesV2(
definitionId: $definitionId
cursor: $cursor
limit: $limit
filter: $filter
) {
instances {
...IntegrationInstanceLiteValues
__typename
}
pageInfo {
endCursor
__typename
}
__typename
}
}
"""
INTEGRATION_INSTANCE = """
fragment IntegrationInstanceValues on IntegrationInstance {
id
name
accountId
sourceIntegrationInstanceId
pollingInterval
pollingIntervalCronExpression {
hour
dayOfWeek
__typename
}
integrationDefinition {
name
integrationType
__typename
}
integrationDefinitionId
description
config
offsiteComplete
jobs {
jobs {
...IntegrationInstanceJobValues
__typename
}
__typename
}
instanceRelationship
ingestionSourcesOverrides {
ingestionSourceId
enabled
__typename
}
collectorPoolId
__typename
}
fragment IntegrationInstanceJobValues on IntegrationJob {
id
status
integrationInstanceId
createDate
endDate
hasSkippedSteps
__typename
}
query IntegrationInstance($integrationInstanceId: String!) {
integrationInstance(id: $integrationInstanceId) {
...IntegrationInstanceValues
__typename
}
}
"""
UPDATE_INTEGRATION_INSTANCE = """
mutation UpdateIntegrationInstance($id: String!, $update: UpdateIntegrationInstanceInput!) {
updateIntegrationInstance(id: $id, update: $update) {
id
name
pollingInterval
pollingIntervalCronExpression {
hour
dayOfWeek
__typename
}
integrationDefinitionId
description
config
offsiteComplete
ingestionSourcesOverrides {
ingestionSourceId
enabled
__typename
}
collectorPoolId
__typename
}
}
"""
# J1QL & AI
QUERY_V1 = """
query J1QL($query: String!, $variables: JSON, $dryRun: Boolean, $includeDeleted: Boolean) {
queryV1(query: $query, variables: $variables, dryRun: $dryRun, includeDeleted: $includeDeleted) {
type
data
}
}
"""
CURSOR_QUERY_V1 = """
query J1QL_v2($query: String!, $variables: JSON, $flags: QueryV1Flags, $includeDeleted: Boolean, $cursor: String) {
queryV1(
query: $query
variables: $variables
deferredResponse: DISABLED
flags: $flags
includeDeleted: $includeDeleted
cursor: $cursor
) {
type
data
cursor
__typename
}
}
"""
DEFERRED_RESPONSE_QUERY = """
query J1QL(
$query: String!
$variables: JSON
$cursor: String
$deferredResponse: DeferredResponseOption
) {
queryV1(
query: $query
variables: $variables
deferredResponse: $deferredResponse
cursor: $cursor
) {
type
url
}
}
"""
J1QL_FROM_NATURAL_LANGUAGE = """
query j1qlFromNaturalLanguage($input: J1qlFromNaturalLanguageInput!) {
j1qlFromNaturalLanguage(input: $input) {
j1ql
}
}
"""
# ALERT RULES
LIST_RULE_INSTANCES = """
query listRuleInstances(
$limit: Int,
$cursor: String,
$filters: ListRuleInstancesFilters) {
listRuleInstances(
limit: $limit,
cursor: $cursor,
filters: $filters) {
questionInstances {
...RuleInstanceFields
__typename
}
pageInfo {
hasNextPage
endCursor
__typename
}
__typename
}
}
fragment RuleInstanceFields on QuestionRuleInstance {
id
accountId
name
description
version
lastEvaluationStartOn
lastEvaluationEndOn
evaluationStep
specVersion
notifyOnFailure
triggerActionsOnNewEntitiesOnly
pollingInterval
templates
outputs
question {
queries {
query
name
version
includeDeleted
__typename
}
__typename
}
questionId
latest
deleted
type
operations {
when
actions
__typename
}
latestAlertId
latestAlertIsActive
state {
actions
__typename
}
tags
remediationSteps
__typename
}
"""
CREATE_RULE_INSTANCE = """
mutation createInlineQuestionRuleInstance($instance: CreateInlineQuestionRuleInstanceInput!) {
createInlineQuestionRuleInstance(instance: $instance) {
...RuleInstanceFields
__typename
}
}
fragment RuleInstanceFields on QuestionRuleInstance {
id
accountId
name
description
version
lastEvaluationStartOn
lastEvaluationEndOn
evaluationStep
specVersion
notifyOnFailure
triggerActionsOnNewEntitiesOnly
ignorePreviousResults
pollingInterval
templates
outputs
labels {
labelName
labelValue
__typename
}
question {
queries {
query
name
includeDeleted
__typename
}
__typename
}
questionId
latest
deleted
type
operations {
when
actions
__typename
}
latestAlertId
latestAlertIsActive
state {
actions
__typename
}
tags
remediationSteps
__typename
}
"""
DELETE_RULE_INSTANCE = """
mutation deleteRuleInstance($id: ID!) {
deleteRuleInstance(id: $id) {
id
__typename
}
}
"""
UPDATE_RULE_INSTANCE = """
mutation updateQuestionRuleInstance($instance: UpdateInlineQuestionRuleInstanceInput!) {
updateInlineQuestionRuleInstance(instance: $instance) {
...RuleInstanceFields
__typename
}
}
fragment RuleInstanceFields on QuestionRuleInstance {
id
accountId
name
description
version
lastEvaluationStartOn
lastEvaluationEndOn
evaluationStep
specVersion
notifyOnFailure
triggerActionsOnNewEntitiesOnly
ignorePreviousResults
pollingInterval
templates
outputs
labels {
labelName
labelValue
__typename
}
question {
queries {
query
name
includeDeleted
__typename
}
__typename
}
questionId
latest
deleted
type
operations {
when
actions
__typename
}
latestAlertId
latestAlertIsActive
state {
actions
__typename
}
tags
remediationSteps
__typename
}
"""
EVALUATE_RULE_INSTANCE = """
mutation evaluateRuleInstance($id: ID!) {
evaluateRuleInstance(id: $id) {
id
__typename
}
}
"""
LIST_COLLECTION_RESULTS = """
query listCollectionResults($collectionType: CollectionType!,
$collectionOwnerId: String!,
$beginTimestamp: Long!,
$endTimestamp: Long!,
$limit: Int,
$cursor: String,
$tag: String) {
listCollectionResults(
collectionType: $collectionType
collectionOwnerId: $collectionOwnerId
beginTimestamp: $beginTimestamp
endTimestamp: $endTimestamp
limit: $limit
cursor: $cursor
tag: $tag
) {
results {
accountId
collectionOwnerId
collectionOwnerVersion
collectionType
outputs {
name
value
__typename
}
rawDataDescriptors {
name
persistedResultType
rawDataKey
recordCount
recordCreateCount
recordDeleteCount
recordUpdateCount
__typename
}
tag
timestamp
__typename
}
pageInfo {
endCursor
hasNextPage
__typename
}
__typename
}
}
"""
GET_RAW_DATA_DOWNLOAD_URL = """
query getRawDataDownloadUrl(
$rawDataKey: String!
) {
getRawDataDownloadUrl(
rawDataKey: $rawDataKey)
}
"""
# QUESTIONS & COMPLIANCE
QUESTIONS = """
query questions($searchQuery: String, $integrationDefinitionId: String, $tags: [String], $type: ListQuestionsType, $limit: Int, $cursor: String, $categories: [String]) {
questions(
searchQuery: $searchQuery
integrationDefinitionId: $integrationDefinitionId
tags: $tags
type: $type
limit: $limit
cursor: $cursor
categories: $categories
) {
questions {
...QuestionFields
__typename
}
totalHits
pageInfo {
endCursor
hasNextPage
__typename
}
__typename
}
}
fragment QuestionFields on Question {
id
sourceId
title
description
tags
lastUpdatedTimestamp
queries {
name
query
version
resultsAre
__typename
}
compliance {
standard
requirements
controls
__typename
}
variables {
name
required
default
__typename
}
accountId
integrationDefinitionId
showTrend
pollingInterval
__typename
}
"""
COMPLIANCE_FRAMEWORK_ITEM = """
query complianceFrameworkItem($input: ComplianceFrameworkItemInput!) {
complianceFrameworkItem(input: $input) {
...ComplianceFrameworkItemFields
__typename
}
}
fragment ComplianceFrameworkItemFields on ComplianceFrameworkItem {
id
frameworkId
name
description
displayCategory
ref
evaluationProgress
applicabilityReason
lastEvaluationTimestamp
evaluationResult
auditStatus
groupId
webLink
summary {
id
hasLinkedPolicyItem
evidenceCollectionSummary {
id
hasEvidence
hasInternalEvidenceCollected
hasExternalEvidenceAttached
questionnaireAnswer
__typename
}
__typename
}
libraryItems {
inheritedEvidenceLibraryItems {
...ComplianceLibraryItemWithLinkedPolicyItemFields
frameworkItemMetadatas {
id
name
frameworkId
__typename
}
evidence {
...ComplianceLibraryItemEvidenceFields
__typename
}
__typename
}
ignoredEvidenceLibraryItems {
...ComplianceLibraryItemWithLinkedPolicyItemFields
__typename
}
__typename
}
evidence {
notes {
...ComplianceNoteFields
__typename
}
links {
...ComplianceLinkFields
__typename
}
questionnaireAnswer {
...ComplianceQuestionnaireAnswerFields
__typename
}
externalUploadEvidences {
...ExternalUploadEvidenceFields
__typename
}
questionEvaluations {
...QuestionEvaluationFields
__typename
}
__typename