catocli 2.1.3__py3-none-any.whl → 2.1.4__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of catocli might be problematic. Click here for more details.

Files changed (98) hide show
  1. catocli/Utils/clidriver.py +16 -7
  2. catocli/Utils/cliutils.py +1 -14
  3. catocli/Utils/csv_formatter.py +652 -0
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/export_rules/__init__.py +0 -4
  6. catocli/parsers/custom/export_sites/__init__.py +4 -3
  7. catocli/parsers/custom/export_sites/export_sites.py +195 -52
  8. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +473 -393
  9. catocli/parsers/customParserApiClient.py +444 -38
  10. catocli/parsers/custom_private/__init__.py +18 -0
  11. catocli/parsers/mutation_accountManagement/__init__.py +21 -0
  12. catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
  13. catocli/parsers/mutation_admin/__init__.py +12 -0
  14. catocli/parsers/mutation_container/__init__.py +18 -0
  15. catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
  16. catocli/parsers/mutation_groups/__init__.py +6 -0
  17. catocli/parsers/mutation_hardware/__init__.py +2 -0
  18. catocli/parsers/mutation_policy/__init__.py +378 -0
  19. catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
  20. catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
  21. catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
  22. catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
  23. catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
  24. catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
  25. catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
  26. catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
  27. catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
  28. catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
  29. catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
  30. catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +4 -0
  32. catocli/parsers/mutation_site/__init__.py +72 -0
  33. catocli/parsers/mutation_sites/__init__.py +72 -0
  34. catocli/parsers/mutation_xdr/__init__.py +6 -0
  35. catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
  36. catocli/parsers/query_accountManagement/__init__.py +2 -0
  37. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  38. catocli/parsers/query_accountRoles/__init__.py +2 -0
  39. catocli/parsers/query_accountSnapshot/__init__.py +2 -0
  40. catocli/parsers/query_admin/__init__.py +2 -0
  41. catocli/parsers/query_admins/__init__.py +2 -0
  42. catocli/parsers/query_appStats/__init__.py +6 -0
  43. catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
  44. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
  45. catocli/parsers/query_auditFeed/__init__.py +2 -0
  46. catocli/parsers/query_catalogs/__init__.py +2 -0
  47. catocli/parsers/query_container/__init__.py +2 -0
  48. catocli/parsers/query_devices/README.md +1 -1
  49. catocli/parsers/query_devices/__init__.py +2 -0
  50. catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
  51. catocli/parsers/query_entityLookup/__init__.py +2 -0
  52. catocli/parsers/query_events/__init__.py +2 -0
  53. catocli/parsers/query_eventsFeed/__init__.py +2 -0
  54. catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
  55. catocli/parsers/query_groups/__init__.py +6 -0
  56. catocli/parsers/query_hardware/README.md +1 -1
  57. catocli/parsers/query_hardware/__init__.py +2 -0
  58. catocli/parsers/query_hardwareManagement/__init__.py +2 -0
  59. catocli/parsers/query_licensing/__init__.py +2 -0
  60. catocli/parsers/query_policy/__init__.py +37 -0
  61. catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
  62. catocli/parsers/query_popLocations/__init__.py +2 -0
  63. catocli/parsers/query_sandbox/__init__.py +2 -0
  64. catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
  65. catocli/parsers/query_site/__init__.py +33 -0
  66. catocli/parsers/query_siteLocation/__init__.py +2 -0
  67. catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
  68. catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
  69. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
  70. catocli/parsers/query_subDomains/__init__.py +2 -0
  71. catocli/parsers/query_xdr/__init__.py +4 -0
  72. catocli/parsers/raw/__init__.py +3 -1
  73. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/METADATA +1 -1
  74. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/RECORD +98 -67
  75. models/mutation.accountManagement.disableAccount.json +545 -0
  76. models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
  77. models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
  78. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
  79. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
  80. models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
  81. models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
  82. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
  83. models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
  84. models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
  85. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
  86. models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
  87. models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
  88. models/mutation.site.updateSiteGeneralDetails.json +3 -3
  89. models/mutation.sites.updateSiteGeneralDetails.json +3 -3
  90. models/query.devices.json +249 -2
  91. models/query.hardware.json +224 -0
  92. models/query.policy.antiMalwareFileHash.policy.json +1583 -0
  93. models/query.site.siteGeneralDetails.json +899 -0
  94. schema/catolib.py +51 -4
  95. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/WHEEL +0 -0
  96. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/entry_points.txt +0 -0
  97. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/licenses/LICENSE +0 -0
  98. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1822 @@
1
+ {
2
+ "args": {
3
+ "accountId": {
4
+ "defaultValue": null,
5
+ "description": null,
6
+ "id_str": "accountId",
7
+ "name": "accountId",
8
+ "path": "accountId",
9
+ "requestStr": "$accountId:ID! ",
10
+ "required": true,
11
+ "responseStr": "accountId:$accountId ",
12
+ "type": {
13
+ "kind": [
14
+ "NON_NULL",
15
+ "SCALAR"
16
+ ],
17
+ "name": "ID",
18
+ "non_null": false
19
+ },
20
+ "varName": "accountId"
21
+ }
22
+ },
23
+ "childOperations": {
24
+ "antiMalwareFileHash": {
25
+ "args": {
26
+ "antiMalwareFileHash___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "antiMalwareFileHash___input",
30
+ "name": "input",
31
+ "path": "antiMalwareFileHash.input",
32
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
33
+ "required": false,
34
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "revision": {
42
+ "defaultValue": null,
43
+ "description": null,
44
+ "id_str": "antiMalwareFileHash___input___revision",
45
+ "name": "revision",
46
+ "path": "antiMalwareFileHash.input.revision",
47
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
48
+ "required": false,
49
+ "responseStr": "revision:$policyMutationRevisionInput ",
50
+ "type": {
51
+ "definition": {
52
+ "description": null,
53
+ "enumValues": null,
54
+ "fields": null,
55
+ "inputFields": {
56
+ "id": {
57
+ "defaultValue": null,
58
+ "description": null,
59
+ "id_str": "antiMalwareFileHash___input___revision___id",
60
+ "name": "id",
61
+ "path": "antiMalwareFileHash.input.revision.id",
62
+ "requestStr": "$id:ID ",
63
+ "required": false,
64
+ "responseStr": "id:$id ",
65
+ "type": {
66
+ "kind": [
67
+ "SCALAR"
68
+ ],
69
+ "name": "ID",
70
+ "non_null": false
71
+ },
72
+ "varName": "id"
73
+ }
74
+ },
75
+ "interfaces": null,
76
+ "kind": "INPUT_OBJECT",
77
+ "name": "PolicyMutationRevisionInput",
78
+ "possibleTypes": null
79
+ },
80
+ "indexType": "input_object",
81
+ "kind": [
82
+ "INPUT_OBJECT"
83
+ ],
84
+ "name": "PolicyMutationRevisionInput",
85
+ "non_null": false
86
+ },
87
+ "varName": "policyMutationRevisionInput"
88
+ }
89
+ },
90
+ "interfaces": null,
91
+ "kind": "INPUT_OBJECT",
92
+ "name": "AntiMalwareFileHashPolicyMutationInput",
93
+ "possibleTypes": null
94
+ },
95
+ "indexType": "input_object",
96
+ "kind": [
97
+ "INPUT_OBJECT"
98
+ ],
99
+ "name": "AntiMalwareFileHashPolicyMutationInput",
100
+ "non_null": false
101
+ },
102
+ "varName": "antiMalwareFileHashPolicyMutationInput"
103
+ }
104
+ },
105
+ "deprecationReason": null,
106
+ "description": null,
107
+ "isDeprecated": false,
108
+ "name": "antiMalwareFileHash",
109
+ "type": {
110
+ "kind": "OBJECT",
111
+ "name": "AntiMalwareFileHashPolicyMutations",
112
+ "ofType": null
113
+ }
114
+ },
115
+ "createPolicyRevision": {
116
+ "args": {
117
+ "createPolicyRevision___input": {
118
+ "defaultValue": null,
119
+ "description": null,
120
+ "id_str": "createPolicyRevision___input",
121
+ "name": "input",
122
+ "path": "createPolicyRevision.input",
123
+ "requestStr": "$policyCreateRevisionInput:PolicyCreateRevisionInput! ",
124
+ "required": true,
125
+ "responseStr": "input:$policyCreateRevisionInput ",
126
+ "type": {
127
+ "definition": {
128
+ "description": null,
129
+ "enumValues": null,
130
+ "fields": null,
131
+ "inputFields": {
132
+ "description": {
133
+ "defaultValue": "\"\"",
134
+ "description": null,
135
+ "id_str": "createPolicyRevision___input___description",
136
+ "name": "description",
137
+ "path": "createPolicyRevision.input.description",
138
+ "requestStr": "$description:String! ",
139
+ "required": true,
140
+ "responseStr": "description:$description ",
141
+ "type": {
142
+ "kind": [
143
+ "NON_NULL",
144
+ "SCALAR"
145
+ ],
146
+ "name": "String",
147
+ "non_null": false
148
+ },
149
+ "varName": "description"
150
+ },
151
+ "name": {
152
+ "defaultValue": null,
153
+ "description": null,
154
+ "id_str": "createPolicyRevision___input___name",
155
+ "name": "name",
156
+ "path": "createPolicyRevision.input.name",
157
+ "requestStr": "$name:String! ",
158
+ "required": true,
159
+ "responseStr": "name:$name ",
160
+ "type": {
161
+ "kind": [
162
+ "NON_NULL",
163
+ "SCALAR"
164
+ ],
165
+ "name": "String",
166
+ "non_null": false
167
+ },
168
+ "varName": "name"
169
+ }
170
+ },
171
+ "interfaces": null,
172
+ "kind": "INPUT_OBJECT",
173
+ "name": "PolicyCreateRevisionInput",
174
+ "possibleTypes": null
175
+ },
176
+ "indexType": "input_object",
177
+ "kind": [
178
+ "NON_NULL",
179
+ "INPUT_OBJECT"
180
+ ],
181
+ "name": "PolicyCreateRevisionInput",
182
+ "non_null": false
183
+ },
184
+ "varName": "policyCreateRevisionInput"
185
+ }
186
+ },
187
+ "deprecationReason": null,
188
+ "description": null,
189
+ "isDeprecated": false,
190
+ "name": "createPolicyRevision",
191
+ "type": {
192
+ "kind": "NON_NULL",
193
+ "name": null,
194
+ "ofType": {
195
+ "kind": "OBJECT",
196
+ "name": "AntiMalwareFileHashPolicyMutationPayload",
197
+ "ofType": null
198
+ }
199
+ }
200
+ }
201
+ },
202
+ "deprecationReason": null,
203
+ "description": null,
204
+ "fieldTypes": {
205
+ "AntiMalwareFileHashAction": true,
206
+ "AntiMalwareFileHashPolicy": true,
207
+ "AntiMalwareFileHashPolicyMutationPayload": true,
208
+ "AntiMalwareFileHashPolicyMutations": true,
209
+ "AntiMalwareFileHashRule": true,
210
+ "AntiMalwareFileHashRulePayload": true,
211
+ "PolicyAudit": true,
212
+ "PolicyElementAudit": true,
213
+ "PolicyElementPropertiesEnum": true,
214
+ "PolicyMutationError": true,
215
+ "PolicyMutationRevisionInput": true,
216
+ "PolicyMutationStatus": true,
217
+ "PolicyRevision": true,
218
+ "PolicySectionInfo": true,
219
+ "PolicySectionPayload": true
220
+ },
221
+ "isDeprecated": false,
222
+ "name": "policy",
223
+ "operationArgs": {
224
+ "accountId": {
225
+ "defaultValue": null,
226
+ "description": null,
227
+ "id_str": "accountId",
228
+ "name": "accountId",
229
+ "path": "accountId",
230
+ "requestStr": "$accountId:ID! ",
231
+ "required": true,
232
+ "responseStr": "accountId:$accountId ",
233
+ "type": {
234
+ "kind": [
235
+ "NON_NULL",
236
+ "SCALAR"
237
+ ],
238
+ "name": "ID",
239
+ "non_null": false
240
+ },
241
+ "varName": "accountId"
242
+ },
243
+ "antiMalwareFileHashPolicyMutationInput": {
244
+ "defaultValue": null,
245
+ "description": null,
246
+ "id_str": "antiMalwareFileHash___input",
247
+ "name": "input",
248
+ "path": "antiMalwareFileHash.input",
249
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
250
+ "required": false,
251
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
252
+ "type": {
253
+ "definition": {
254
+ "description": null,
255
+ "enumValues": null,
256
+ "fields": null,
257
+ "inputFields": {
258
+ "revision": {
259
+ "defaultValue": null,
260
+ "description": null,
261
+ "id_str": "antiMalwareFileHash___input___revision",
262
+ "name": "revision",
263
+ "path": "antiMalwareFileHash.input.revision",
264
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
265
+ "required": false,
266
+ "responseStr": "revision:$policyMutationRevisionInput ",
267
+ "type": {
268
+ "definition": {
269
+ "description": null,
270
+ "enumValues": null,
271
+ "fields": null,
272
+ "inputFields": {
273
+ "id": {
274
+ "defaultValue": null,
275
+ "description": null,
276
+ "id_str": "antiMalwareFileHash___input___revision___id",
277
+ "name": "id",
278
+ "path": "antiMalwareFileHash.input.revision.id",
279
+ "requestStr": "$id:ID ",
280
+ "required": false,
281
+ "responseStr": "id:$id ",
282
+ "type": {
283
+ "kind": [
284
+ "SCALAR"
285
+ ],
286
+ "name": "ID",
287
+ "non_null": false
288
+ },
289
+ "varName": "id"
290
+ }
291
+ },
292
+ "interfaces": null,
293
+ "kind": "INPUT_OBJECT",
294
+ "name": "PolicyMutationRevisionInput",
295
+ "possibleTypes": null
296
+ },
297
+ "indexType": "input_object",
298
+ "kind": [
299
+ "INPUT_OBJECT"
300
+ ],
301
+ "name": "PolicyMutationRevisionInput",
302
+ "non_null": false
303
+ },
304
+ "varName": "policyMutationRevisionInput"
305
+ }
306
+ },
307
+ "interfaces": null,
308
+ "kind": "INPUT_OBJECT",
309
+ "name": "AntiMalwareFileHashPolicyMutationInput",
310
+ "possibleTypes": null
311
+ },
312
+ "indexType": "input_object",
313
+ "kind": [
314
+ "INPUT_OBJECT"
315
+ ],
316
+ "name": "AntiMalwareFileHashPolicyMutationInput",
317
+ "non_null": false
318
+ },
319
+ "varName": "antiMalwareFileHashPolicyMutationInput"
320
+ },
321
+ "policyCreateRevisionInput": {
322
+ "defaultValue": null,
323
+ "description": null,
324
+ "id_str": "createPolicyRevision___input",
325
+ "name": "input",
326
+ "path": "createPolicyRevision.input",
327
+ "requestStr": "$policyCreateRevisionInput:PolicyCreateRevisionInput! ",
328
+ "required": true,
329
+ "responseStr": "input:$policyCreateRevisionInput ",
330
+ "type": {
331
+ "definition": {
332
+ "description": null,
333
+ "enumValues": null,
334
+ "fields": null,
335
+ "inputFields": {
336
+ "description": {
337
+ "defaultValue": "\"\"",
338
+ "description": null,
339
+ "id_str": "createPolicyRevision___input___description",
340
+ "name": "description",
341
+ "path": "createPolicyRevision.input.description",
342
+ "requestStr": "$description:String! ",
343
+ "required": true,
344
+ "responseStr": "description:$description ",
345
+ "type": {
346
+ "kind": [
347
+ "NON_NULL",
348
+ "SCALAR"
349
+ ],
350
+ "name": "String",
351
+ "non_null": false
352
+ },
353
+ "varName": "description"
354
+ },
355
+ "name": {
356
+ "defaultValue": null,
357
+ "description": null,
358
+ "id_str": "createPolicyRevision___input___name",
359
+ "name": "name",
360
+ "path": "createPolicyRevision.input.name",
361
+ "requestStr": "$name:String! ",
362
+ "required": true,
363
+ "responseStr": "name:$name ",
364
+ "type": {
365
+ "kind": [
366
+ "NON_NULL",
367
+ "SCALAR"
368
+ ],
369
+ "name": "String",
370
+ "non_null": false
371
+ },
372
+ "varName": "name"
373
+ }
374
+ },
375
+ "interfaces": null,
376
+ "kind": "INPUT_OBJECT",
377
+ "name": "PolicyCreateRevisionInput",
378
+ "possibleTypes": null
379
+ },
380
+ "indexType": "input_object",
381
+ "kind": [
382
+ "NON_NULL",
383
+ "INPUT_OBJECT"
384
+ ],
385
+ "name": "PolicyCreateRevisionInput",
386
+ "non_null": false
387
+ },
388
+ "varName": "policyCreateRevisionInput"
389
+ }
390
+ },
391
+ "path": "mutation.policy.antiMalwareFileHash.createPolicyRevision",
392
+ "type": {
393
+ "definition": {
394
+ "description": "Policies that can be configured with mutation APIs.",
395
+ "enumValues": null,
396
+ "fields": {
397
+ "antiMalwareFileHash": {
398
+ "args": {
399
+ "antiMalwareFileHash___input": {
400
+ "defaultValue": null,
401
+ "description": null,
402
+ "id_str": "antiMalwareFileHash___input",
403
+ "name": "input",
404
+ "path": "antiMalwareFileHash.input",
405
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
406
+ "required": false,
407
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
408
+ "type": {
409
+ "definition": {
410
+ "description": null,
411
+ "enumValues": null,
412
+ "fields": null,
413
+ "inputFields": {
414
+ "revision": {
415
+ "defaultValue": null,
416
+ "description": null,
417
+ "id_str": "antiMalwareFileHash___input___revision",
418
+ "name": "revision",
419
+ "path": "antiMalwareFileHash.input.revision",
420
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
421
+ "required": false,
422
+ "responseStr": "revision:$policyMutationRevisionInput ",
423
+ "type": {
424
+ "definition": {
425
+ "description": null,
426
+ "enumValues": null,
427
+ "fields": null,
428
+ "inputFields": {
429
+ "id": {
430
+ "defaultValue": null,
431
+ "description": null,
432
+ "id_str": "antiMalwareFileHash___input___revision___id",
433
+ "name": "id",
434
+ "path": "antiMalwareFileHash.input.revision.id",
435
+ "requestStr": "$id:ID ",
436
+ "required": false,
437
+ "responseStr": "id:$id ",
438
+ "type": {
439
+ "kind": [
440
+ "SCALAR"
441
+ ],
442
+ "name": "ID",
443
+ "non_null": false
444
+ },
445
+ "varName": "id"
446
+ }
447
+ },
448
+ "interfaces": null,
449
+ "kind": "INPUT_OBJECT",
450
+ "name": "PolicyMutationRevisionInput",
451
+ "possibleTypes": null
452
+ },
453
+ "indexType": "input_object",
454
+ "kind": [
455
+ "INPUT_OBJECT"
456
+ ],
457
+ "name": "PolicyMutationRevisionInput",
458
+ "non_null": false
459
+ },
460
+ "varName": "policyMutationRevisionInput"
461
+ }
462
+ },
463
+ "interfaces": null,
464
+ "kind": "INPUT_OBJECT",
465
+ "name": "AntiMalwareFileHashPolicyMutationInput",
466
+ "possibleTypes": null
467
+ },
468
+ "indexType": "input_object",
469
+ "kind": [
470
+ "INPUT_OBJECT"
471
+ ],
472
+ "name": "AntiMalwareFileHashPolicyMutationInput",
473
+ "non_null": false
474
+ },
475
+ "varName": "antiMalwareFileHashPolicyMutationInput"
476
+ }
477
+ },
478
+ "deprecationReason": null,
479
+ "description": null,
480
+ "id_str": "antiMalwareFileHash",
481
+ "isDeprecated": false,
482
+ "name": "antiMalwareFileHash",
483
+ "path": "antiMalwareFileHash",
484
+ "requestStr": "$antiMalwareFileHashPolicyMutations:AntiMalwareFileHashPolicyMutations ",
485
+ "required": false,
486
+ "responseStr": "antiMalwareFileHash:$antiMalwareFileHashPolicyMutations ",
487
+ "type": {
488
+ "definition": {
489
+ "description": null,
490
+ "enumValues": null,
491
+ "fields": {
492
+ "createPolicyRevision": {
493
+ "args": {
494
+ "createPolicyRevision___input": {
495
+ "defaultValue": null,
496
+ "description": null,
497
+ "id_str": "createPolicyRevision___input",
498
+ "name": "input",
499
+ "path": "createPolicyRevision.input",
500
+ "requestStr": "$policyCreateRevisionInput:PolicyCreateRevisionInput! ",
501
+ "required": true,
502
+ "responseStr": "input:$policyCreateRevisionInput ",
503
+ "type": {
504
+ "definition": {
505
+ "description": null,
506
+ "enumValues": null,
507
+ "fields": null,
508
+ "inputFields": {
509
+ "description": {
510
+ "defaultValue": "\"\"",
511
+ "description": null,
512
+ "id_str": "createPolicyRevision___input___description",
513
+ "name": "description",
514
+ "path": "createPolicyRevision.input.description",
515
+ "requestStr": "$description:String! ",
516
+ "required": true,
517
+ "responseStr": "description:$description ",
518
+ "type": {
519
+ "kind": [
520
+ "NON_NULL",
521
+ "SCALAR"
522
+ ],
523
+ "name": "String",
524
+ "non_null": false
525
+ },
526
+ "varName": "description"
527
+ },
528
+ "name": {
529
+ "defaultValue": null,
530
+ "description": null,
531
+ "id_str": "createPolicyRevision___input___name",
532
+ "name": "name",
533
+ "path": "createPolicyRevision.input.name",
534
+ "requestStr": "$name:String! ",
535
+ "required": true,
536
+ "responseStr": "name:$name ",
537
+ "type": {
538
+ "kind": [
539
+ "NON_NULL",
540
+ "SCALAR"
541
+ ],
542
+ "name": "String",
543
+ "non_null": false
544
+ },
545
+ "varName": "name"
546
+ }
547
+ },
548
+ "interfaces": null,
549
+ "kind": "INPUT_OBJECT",
550
+ "name": "PolicyCreateRevisionInput",
551
+ "possibleTypes": null
552
+ },
553
+ "indexType": "input_object",
554
+ "kind": [
555
+ "NON_NULL",
556
+ "INPUT_OBJECT"
557
+ ],
558
+ "name": "PolicyCreateRevisionInput",
559
+ "non_null": false
560
+ },
561
+ "varName": "policyCreateRevisionInput"
562
+ }
563
+ },
564
+ "deprecationReason": null,
565
+ "description": null,
566
+ "id_str": "antiMalwareFileHash___createPolicyRevision",
567
+ "isDeprecated": false,
568
+ "name": "createPolicyRevision",
569
+ "path": "antiMalwareFileHash.createPolicyRevision",
570
+ "requestStr": "$antiMalwareFileHashPolicyMutationPayload:AntiMalwareFileHashPolicyMutationPayload! ",
571
+ "required": true,
572
+ "responseStr": "createPolicyRevision:$antiMalwareFileHashPolicyMutationPayload ",
573
+ "type": {
574
+ "definition": {
575
+ "description": null,
576
+ "enumValues": null,
577
+ "fields": {
578
+ "errors": {
579
+ "alias": "errorsAntiMalwareFileHashPolicyMutationPayload: errors",
580
+ "args": {},
581
+ "deprecationReason": null,
582
+ "description": null,
583
+ "id_str": "antiMalwareFileHash___createPolicyRevision___errors",
584
+ "isDeprecated": false,
585
+ "name": "errors",
586
+ "path": "antiMalwareFileHash.createPolicyRevision.errors",
587
+ "requestStr": "$policyMutationError:[PolicyMutationError]! ",
588
+ "required": true,
589
+ "responseStr": "errors:$policyMutationError ",
590
+ "type": {
591
+ "definition": {
592
+ "description": "The `PolicyMutationError` enum defines various error messages related to policy publishing in the policy platform service.\n\n## Policy Errors\n\n### `ConcurrentPolicyPublish`\n- **Error Message:** \"Another policy is currently publishing\"\n\n### `PolicyRevisionMismatch`\n- **Error Message:** \"Revision is not owned by the admin\"\n\n### `PolicyRevisionNotFound`\n- **Error Message:** \"Revision was not found\"\n\n### `PolicyInvalidEntity`\n- **Error Message:** \"Invalid entity\"\n\n### `DuplicateRuleName`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `DuplicateSectionName`\n- **Error Message:** \"Section with the same name already exists\"\n\n### `PolicyFailure`\n- **Error Message:** \"Can\u2019t publish policy due to an internal error. Please try again in a few minutes\"\n\n\n## Rule Errors\n\n### `ruleIsLocked`\n- **Error Message:** \"Rule is locked by another revision\"\n\n### `ruleWasRemoved`\n- **Error Message:** \"Rule was already removed\"\n\n### `ruleNotExist`\n- **Error Message:** \"Rule does not exist\"\n\n### `ruleSectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `ruleSectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `rulePositionInvalid`\n- **Error Message:** \"Rule position is invalid\"\n\n### `ruleNameIsEmpty`\n- **Error Message:** \"Rule name can't be empty\"\n\n### `ruleNameAlreadyExists`\n- **Error Message:** \"Rule with the same name already exists\"\n\n### `ruleSystemModification`\n- **Error Message:** \"Can't modify a system rule\"\n\n### `ruleSystemMove`\n- **Error Message:** \"Can't add a rule above the system rules\"\n\n### `ruleHasInvalidEntity`\n- **Error Message:** \"Rule has an invalid entity\"\n\n### `failedValidatingRule`\n- **Error Message:** \"Something went wrong, couldn't validate rule\"\n\n\n## Section Errors\n\n### `sectionIsLocked`\n- **Error Message:** \"Section is locked by another revision\"\n\n### `sectionSystemMove`\n- **Error Message:** \"Section with system rules cannot be moved or removed\"\n\n### `sectionNotExist`\n- **Error Message:** \"Section does not exist\"\n\n### `sectionPositionInvalid`\n- **Error Message:** \"Section position is invalid\"",
593
+ "enumValues": null,
594
+ "fields": {
595
+ "errorCode": {
596
+ "args": {},
597
+ "deprecationReason": null,
598
+ "description": null,
599
+ "id_str": "antiMalwareFileHash___createPolicyRevision___errors___errorCode",
600
+ "isDeprecated": false,
601
+ "name": "errorCode",
602
+ "path": "antiMalwareFileHash.createPolicyRevision.errors.errorCode",
603
+ "requestStr": "$errorCode:String ",
604
+ "required": false,
605
+ "responseStr": "errorCode:$errorCode ",
606
+ "type": {
607
+ "kind": [
608
+ "SCALAR"
609
+ ],
610
+ "name": "String",
611
+ "non_null": false
612
+ },
613
+ "varName": "errorCode"
614
+ },
615
+ "errorMessage": {
616
+ "args": {},
617
+ "deprecationReason": null,
618
+ "description": null,
619
+ "id_str": "antiMalwareFileHash___createPolicyRevision___errors___errorMessage",
620
+ "isDeprecated": false,
621
+ "name": "errorMessage",
622
+ "path": "antiMalwareFileHash.createPolicyRevision.errors.errorMessage",
623
+ "requestStr": "$errorMessage:String ",
624
+ "required": false,
625
+ "responseStr": "errorMessage:$errorMessage ",
626
+ "type": {
627
+ "kind": [
628
+ "SCALAR"
629
+ ],
630
+ "name": "String",
631
+ "non_null": false
632
+ },
633
+ "varName": "errorMessage"
634
+ }
635
+ },
636
+ "inputFields": null,
637
+ "interfaces": {},
638
+ "kind": "OBJECT",
639
+ "name": "PolicyMutationError",
640
+ "possibleTypes": null
641
+ },
642
+ "indexType": "object",
643
+ "kind": [
644
+ "NON_NULL",
645
+ "LIST",
646
+ "NON_NULL",
647
+ "OBJECT"
648
+ ],
649
+ "name": "PolicyMutationError",
650
+ "non_null": false
651
+ },
652
+ "varName": "policyMutationError"
653
+ },
654
+ "policy": {
655
+ "alias": "policyAntiMalwareFileHashPolicyMutationPayload: policy",
656
+ "args": {},
657
+ "deprecationReason": null,
658
+ "description": null,
659
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy",
660
+ "isDeprecated": false,
661
+ "name": "policy",
662
+ "path": "antiMalwareFileHash.createPolicyRevision.policy",
663
+ "requestStr": "$antiMalwareFileHashPolicy:AntiMalwareFileHashPolicy ",
664
+ "required": false,
665
+ "responseStr": "policy:$antiMalwareFileHashPolicy ",
666
+ "type": {
667
+ "definition": {
668
+ "description": null,
669
+ "enumValues": null,
670
+ "fields": {
671
+ "audit": {
672
+ "args": {},
673
+ "deprecationReason": null,
674
+ "description": null,
675
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___audit",
676
+ "isDeprecated": false,
677
+ "name": "audit",
678
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.audit",
679
+ "requestStr": "$policyAudit:PolicyAudit ",
680
+ "required": false,
681
+ "responseStr": "audit:$policyAudit ",
682
+ "type": {
683
+ "definition": {
684
+ "description": null,
685
+ "enumValues": null,
686
+ "fields": {
687
+ "publishedBy": {
688
+ "args": {},
689
+ "deprecationReason": null,
690
+ "description": null,
691
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___audit___publishedBy",
692
+ "isDeprecated": false,
693
+ "name": "publishedBy",
694
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.audit.publishedBy",
695
+ "requestStr": "$publishedBy:String! ",
696
+ "required": true,
697
+ "responseStr": "publishedBy:$publishedBy ",
698
+ "type": {
699
+ "kind": [
700
+ "NON_NULL",
701
+ "SCALAR"
702
+ ],
703
+ "name": "String",
704
+ "non_null": false
705
+ },
706
+ "varName": "publishedBy"
707
+ },
708
+ "publishedTime": {
709
+ "args": {},
710
+ "deprecationReason": null,
711
+ "description": null,
712
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___audit___publishedTime",
713
+ "isDeprecated": false,
714
+ "name": "publishedTime",
715
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.audit.publishedTime",
716
+ "requestStr": "$publishedTime:DateTime! ",
717
+ "required": true,
718
+ "responseStr": "publishedTime:$publishedTime ",
719
+ "type": {
720
+ "kind": [
721
+ "NON_NULL",
722
+ "SCALAR"
723
+ ],
724
+ "name": "DateTime",
725
+ "non_null": false
726
+ },
727
+ "varName": "publishedTime"
728
+ }
729
+ },
730
+ "inputFields": null,
731
+ "interfaces": {},
732
+ "kind": "OBJECT",
733
+ "name": "PolicyAudit",
734
+ "possibleTypes": null
735
+ },
736
+ "indexType": "object",
737
+ "kind": [
738
+ "OBJECT"
739
+ ],
740
+ "name": "PolicyAudit",
741
+ "non_null": false
742
+ },
743
+ "varName": "policyAudit"
744
+ },
745
+ "enabled": {
746
+ "args": {},
747
+ "deprecationReason": null,
748
+ "description": null,
749
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___enabled",
750
+ "isDeprecated": false,
751
+ "name": "enabled",
752
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.enabled",
753
+ "requestStr": "$enabled:Boolean! ",
754
+ "required": true,
755
+ "responseStr": "enabled:$enabled ",
756
+ "type": {
757
+ "kind": [
758
+ "NON_NULL",
759
+ "SCALAR"
760
+ ],
761
+ "name": "Boolean",
762
+ "non_null": false
763
+ },
764
+ "varName": "enabled"
765
+ },
766
+ "revision": {
767
+ "args": {},
768
+ "deprecationReason": null,
769
+ "description": null,
770
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision",
771
+ "isDeprecated": false,
772
+ "name": "revision",
773
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision",
774
+ "requestStr": "$policyRevision:PolicyRevision ",
775
+ "required": false,
776
+ "responseStr": "revision:$policyRevision ",
777
+ "type": {
778
+ "definition": {
779
+ "description": "Returns data about the policy revision, such as when the change was made, how many rules were changed, etc.",
780
+ "enumValues": null,
781
+ "fields": {
782
+ "changes": {
783
+ "args": {},
784
+ "deprecationReason": null,
785
+ "description": null,
786
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___changes",
787
+ "isDeprecated": false,
788
+ "name": "changes",
789
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.changes",
790
+ "requestStr": "$changes:Int! ",
791
+ "required": true,
792
+ "responseStr": "changes:$changes ",
793
+ "type": {
794
+ "kind": [
795
+ "NON_NULL",
796
+ "SCALAR"
797
+ ],
798
+ "name": "Int",
799
+ "non_null": false
800
+ },
801
+ "varName": "changes"
802
+ },
803
+ "createdTime": {
804
+ "args": {},
805
+ "deprecationReason": null,
806
+ "description": null,
807
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___createdTime",
808
+ "isDeprecated": false,
809
+ "name": "createdTime",
810
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.createdTime",
811
+ "requestStr": "$createdTime:DateTime! ",
812
+ "required": true,
813
+ "responseStr": "createdTime:$createdTime ",
814
+ "type": {
815
+ "kind": [
816
+ "NON_NULL",
817
+ "SCALAR"
818
+ ],
819
+ "name": "DateTime",
820
+ "non_null": false
821
+ },
822
+ "varName": "createdTime"
823
+ },
824
+ "description": {
825
+ "args": {},
826
+ "deprecationReason": null,
827
+ "description": null,
828
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___description",
829
+ "isDeprecated": false,
830
+ "name": "description",
831
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.description",
832
+ "requestStr": "$description:String! ",
833
+ "required": true,
834
+ "responseStr": "description:$description ",
835
+ "type": {
836
+ "kind": [
837
+ "NON_NULL",
838
+ "SCALAR"
839
+ ],
840
+ "name": "String",
841
+ "non_null": false
842
+ },
843
+ "varName": "description"
844
+ },
845
+ "id": {
846
+ "args": {},
847
+ "deprecationReason": null,
848
+ "description": null,
849
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___id",
850
+ "isDeprecated": false,
851
+ "name": "id",
852
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.id",
853
+ "requestStr": "$id:ID! ",
854
+ "required": true,
855
+ "responseStr": "id:$id ",
856
+ "type": {
857
+ "kind": [
858
+ "NON_NULL",
859
+ "SCALAR"
860
+ ],
861
+ "name": "ID",
862
+ "non_null": false
863
+ },
864
+ "varName": "id"
865
+ },
866
+ "name": {
867
+ "args": {},
868
+ "deprecationReason": null,
869
+ "description": null,
870
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___name",
871
+ "isDeprecated": false,
872
+ "name": "name",
873
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.name",
874
+ "requestStr": "$name:String! ",
875
+ "required": true,
876
+ "responseStr": "name:$name ",
877
+ "type": {
878
+ "kind": [
879
+ "NON_NULL",
880
+ "SCALAR"
881
+ ],
882
+ "name": "String",
883
+ "non_null": false
884
+ },
885
+ "varName": "name"
886
+ },
887
+ "updatedTime": {
888
+ "args": {},
889
+ "deprecationReason": null,
890
+ "description": null,
891
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___revision___updatedTime",
892
+ "isDeprecated": false,
893
+ "name": "updatedTime",
894
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.revision.updatedTime",
895
+ "requestStr": "$updatedTime:DateTime! ",
896
+ "required": true,
897
+ "responseStr": "updatedTime:$updatedTime ",
898
+ "type": {
899
+ "kind": [
900
+ "NON_NULL",
901
+ "SCALAR"
902
+ ],
903
+ "name": "DateTime",
904
+ "non_null": false
905
+ },
906
+ "varName": "updatedTime"
907
+ }
908
+ },
909
+ "inputFields": null,
910
+ "interfaces": {},
911
+ "kind": "OBJECT",
912
+ "name": "PolicyRevision",
913
+ "possibleTypes": null
914
+ },
915
+ "indexType": "object",
916
+ "kind": [
917
+ "OBJECT"
918
+ ],
919
+ "name": "PolicyRevision",
920
+ "non_null": false
921
+ },
922
+ "varName": "policyRevision"
923
+ },
924
+ "rules": {
925
+ "args": {},
926
+ "deprecationReason": null,
927
+ "description": null,
928
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules",
929
+ "isDeprecated": false,
930
+ "name": "rules",
931
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules",
932
+ "requestStr": "$antiMalwareFileHashRulePayload:[AntiMalwareFileHashRulePayload]! ",
933
+ "required": true,
934
+ "responseStr": "rules:$antiMalwareFileHashRulePayload ",
935
+ "type": {
936
+ "definition": {
937
+ "description": null,
938
+ "enumValues": null,
939
+ "fields": {
940
+ "audit": {
941
+ "alias": "auditAntiMalwareFileHashRulePayload: audit",
942
+ "args": {},
943
+ "deprecationReason": null,
944
+ "description": null,
945
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___audit",
946
+ "isDeprecated": false,
947
+ "name": "audit",
948
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.audit",
949
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
950
+ "required": true,
951
+ "responseStr": "audit:$policyElementAudit ",
952
+ "type": {
953
+ "definition": {
954
+ "description": null,
955
+ "enumValues": null,
956
+ "fields": {
957
+ "updatedBy": {
958
+ "args": {},
959
+ "deprecationReason": null,
960
+ "description": "The admin, or the API-key, that performed the last update",
961
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___audit___updatedBy",
962
+ "isDeprecated": false,
963
+ "name": "updatedBy",
964
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.audit.updatedBy",
965
+ "requestStr": "$updatedBy:String! ",
966
+ "required": true,
967
+ "responseStr": "updatedBy:$updatedBy ",
968
+ "type": {
969
+ "kind": [
970
+ "NON_NULL",
971
+ "SCALAR"
972
+ ],
973
+ "name": "String",
974
+ "non_null": false
975
+ },
976
+ "varName": "updatedBy"
977
+ },
978
+ "updatedTime": {
979
+ "args": {},
980
+ "deprecationReason": null,
981
+ "description": "The last date and time the rule was updated",
982
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___audit___updatedTime",
983
+ "isDeprecated": false,
984
+ "name": "updatedTime",
985
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.audit.updatedTime",
986
+ "requestStr": "$updatedTime:DateTime! ",
987
+ "required": true,
988
+ "responseStr": "updatedTime:$updatedTime ",
989
+ "type": {
990
+ "kind": [
991
+ "NON_NULL",
992
+ "SCALAR"
993
+ ],
994
+ "name": "DateTime",
995
+ "non_null": false
996
+ },
997
+ "varName": "updatedTime"
998
+ }
999
+ },
1000
+ "inputFields": null,
1001
+ "interfaces": {},
1002
+ "kind": "OBJECT",
1003
+ "name": "PolicyElementAudit",
1004
+ "possibleTypes": null
1005
+ },
1006
+ "indexType": "object",
1007
+ "kind": [
1008
+ "NON_NULL",
1009
+ "OBJECT"
1010
+ ],
1011
+ "name": "PolicyElementAudit",
1012
+ "non_null": false
1013
+ },
1014
+ "varName": "policyElementAudit"
1015
+ },
1016
+ "properties": {
1017
+ "alias": "propertiesAntiMalwareFileHashRulePayload: properties",
1018
+ "args": {},
1019
+ "deprecationReason": null,
1020
+ "description": null,
1021
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___properties",
1022
+ "isDeprecated": false,
1023
+ "name": "properties",
1024
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.properties",
1025
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
1026
+ "required": true,
1027
+ "responseStr": "properties:$properties ",
1028
+ "type": {
1029
+ "definition": {
1030
+ "description": "Attributes describing the rule state or type",
1031
+ "enumValues": [
1032
+ {
1033
+ "deprecationReason": null,
1034
+ "description": "New (added) rule",
1035
+ "isDeprecated": false,
1036
+ "name": "ADDED"
1037
+ },
1038
+ {
1039
+ "deprecationReason": null,
1040
+ "description": "Updated (modified) existing rule",
1041
+ "isDeprecated": false,
1042
+ "name": "UPDATED"
1043
+ },
1044
+ {
1045
+ "deprecationReason": null,
1046
+ "description": "Removed (deleted) rule",
1047
+ "isDeprecated": false,
1048
+ "name": "REMOVED"
1049
+ },
1050
+ {
1051
+ "deprecationReason": null,
1052
+ "description": "A rule moved to a different position",
1053
+ "isDeprecated": false,
1054
+ "name": "MOVED"
1055
+ },
1056
+ {
1057
+ "deprecationReason": null,
1058
+ "description": "A rule locked for changes by other admins",
1059
+ "isDeprecated": false,
1060
+ "name": "LOCKED"
1061
+ },
1062
+ {
1063
+ "deprecationReason": null,
1064
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
1065
+ "isDeprecated": false,
1066
+ "name": "ANCHORED"
1067
+ },
1068
+ {
1069
+ "deprecationReason": null,
1070
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
1071
+ "isDeprecated": false,
1072
+ "name": "SYSTEM"
1073
+ }
1074
+ ],
1075
+ "fields": null,
1076
+ "inputFields": null,
1077
+ "interfaces": null,
1078
+ "kind": "ENUM",
1079
+ "name": "PolicyElementPropertiesEnum",
1080
+ "possibleTypes": null
1081
+ },
1082
+ "indexType": "enum",
1083
+ "kind": [
1084
+ "NON_NULL",
1085
+ "LIST",
1086
+ "NON_NULL",
1087
+ "ENUM"
1088
+ ],
1089
+ "name": "PolicyElementPropertiesEnum",
1090
+ "non_null": false
1091
+ },
1092
+ "varName": "properties"
1093
+ },
1094
+ "rule": {
1095
+ "alias": "ruleAntiMalwareFileHashRulePayload: rule",
1096
+ "args": {},
1097
+ "deprecationReason": null,
1098
+ "description": null,
1099
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule",
1100
+ "isDeprecated": false,
1101
+ "name": "rule",
1102
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule",
1103
+ "requestStr": "$antiMalwareFileHashRule:AntiMalwareFileHashRule! ",
1104
+ "required": true,
1105
+ "responseStr": "rule:$antiMalwareFileHashRule ",
1106
+ "type": {
1107
+ "definition": {
1108
+ "description": null,
1109
+ "enumValues": null,
1110
+ "fields": {
1111
+ "action": {
1112
+ "alias": "actionAntiMalwareFileHashRule: action",
1113
+ "args": {},
1114
+ "deprecationReason": null,
1115
+ "description": "The action when the file hash is matched: [BLOCK | BYPASS]",
1116
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___action",
1117
+ "isDeprecated": false,
1118
+ "name": "action",
1119
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.action",
1120
+ "requestStr": "$action:AntiMalwareFileHashAction! ",
1121
+ "required": true,
1122
+ "responseStr": "action:$action ",
1123
+ "type": {
1124
+ "definition": {
1125
+ "description": null,
1126
+ "enumValues": [
1127
+ {
1128
+ "deprecationReason": null,
1129
+ "description": "Block file download by filehash action",
1130
+ "isDeprecated": false,
1131
+ "name": "BLOCK"
1132
+ },
1133
+ {
1134
+ "deprecationReason": null,
1135
+ "description": "Bypass file download by filehash action",
1136
+ "isDeprecated": false,
1137
+ "name": "BYPASS"
1138
+ }
1139
+ ],
1140
+ "fields": null,
1141
+ "inputFields": null,
1142
+ "interfaces": null,
1143
+ "kind": "ENUM",
1144
+ "name": "AntiMalwareFileHashAction",
1145
+ "possibleTypes": null
1146
+ },
1147
+ "indexType": "enum",
1148
+ "kind": [
1149
+ "NON_NULL",
1150
+ "ENUM"
1151
+ ],
1152
+ "name": "AntiMalwareFileHashAction",
1153
+ "non_null": false
1154
+ },
1155
+ "varName": "action"
1156
+ },
1157
+ "description": {
1158
+ "args": {},
1159
+ "deprecationReason": null,
1160
+ "description": "Description for the rule",
1161
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___description",
1162
+ "isDeprecated": false,
1163
+ "name": "description",
1164
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.description",
1165
+ "requestStr": "$description:String! ",
1166
+ "required": true,
1167
+ "responseStr": "description:$description ",
1168
+ "type": {
1169
+ "kind": [
1170
+ "NON_NULL",
1171
+ "SCALAR"
1172
+ ],
1173
+ "name": "String",
1174
+ "non_null": false
1175
+ },
1176
+ "varName": "description"
1177
+ },
1178
+ "enabled": {
1179
+ "args": {},
1180
+ "deprecationReason": null,
1181
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
1182
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___enabled",
1183
+ "isDeprecated": false,
1184
+ "name": "enabled",
1185
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.enabled",
1186
+ "requestStr": "$enabled:Boolean! ",
1187
+ "required": true,
1188
+ "responseStr": "enabled:$enabled ",
1189
+ "type": {
1190
+ "kind": [
1191
+ "NON_NULL",
1192
+ "SCALAR"
1193
+ ],
1194
+ "name": "Boolean",
1195
+ "non_null": false
1196
+ },
1197
+ "varName": "enabled"
1198
+ },
1199
+ "expirationDate": {
1200
+ "args": {},
1201
+ "deprecationReason": null,
1202
+ "description": "The date when the block or bypass action expires",
1203
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___expirationDate",
1204
+ "isDeprecated": false,
1205
+ "name": "expirationDate",
1206
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.expirationDate",
1207
+ "requestStr": "$expirationDate:DateTime! ",
1208
+ "required": true,
1209
+ "responseStr": "expirationDate:$expirationDate ",
1210
+ "type": {
1211
+ "kind": [
1212
+ "NON_NULL",
1213
+ "SCALAR"
1214
+ ],
1215
+ "name": "DateTime",
1216
+ "non_null": false
1217
+ },
1218
+ "varName": "expirationDate"
1219
+ },
1220
+ "fileName": {
1221
+ "args": {},
1222
+ "deprecationReason": null,
1223
+ "description": "The name of the file",
1224
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___fileName",
1225
+ "isDeprecated": false,
1226
+ "name": "fileName",
1227
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.fileName",
1228
+ "requestStr": "$fileName:String! ",
1229
+ "required": true,
1230
+ "responseStr": "fileName:$fileName ",
1231
+ "type": {
1232
+ "kind": [
1233
+ "NON_NULL",
1234
+ "SCALAR"
1235
+ ],
1236
+ "name": "String",
1237
+ "non_null": false
1238
+ },
1239
+ "varName": "fileName"
1240
+ },
1241
+ "id": {
1242
+ "args": {},
1243
+ "deprecationReason": null,
1244
+ "description": "Rule ID",
1245
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___id",
1246
+ "isDeprecated": false,
1247
+ "name": "id",
1248
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.id",
1249
+ "requestStr": "$id:ID! ",
1250
+ "required": true,
1251
+ "responseStr": "id:$id ",
1252
+ "type": {
1253
+ "kind": [
1254
+ "NON_NULL",
1255
+ "SCALAR"
1256
+ ],
1257
+ "name": "ID",
1258
+ "non_null": false
1259
+ },
1260
+ "varName": "id"
1261
+ },
1262
+ "index": {
1263
+ "args": {},
1264
+ "deprecationReason": null,
1265
+ "description": "Position / priority of rule",
1266
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___index",
1267
+ "isDeprecated": false,
1268
+ "name": "index",
1269
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.index",
1270
+ "requestStr": "$index:Int! ",
1271
+ "required": true,
1272
+ "responseStr": "index:$index ",
1273
+ "type": {
1274
+ "kind": [
1275
+ "NON_NULL",
1276
+ "SCALAR"
1277
+ ],
1278
+ "name": "Int",
1279
+ "non_null": false
1280
+ },
1281
+ "varName": "index"
1282
+ },
1283
+ "name": {
1284
+ "args": {},
1285
+ "deprecationReason": null,
1286
+ "description": "Name of the rule",
1287
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___name",
1288
+ "isDeprecated": false,
1289
+ "name": "name",
1290
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.name",
1291
+ "requestStr": "$name:String! ",
1292
+ "required": true,
1293
+ "responseStr": "name:$name ",
1294
+ "type": {
1295
+ "kind": [
1296
+ "NON_NULL",
1297
+ "SCALAR"
1298
+ ],
1299
+ "name": "String",
1300
+ "non_null": false
1301
+ },
1302
+ "varName": "name"
1303
+ },
1304
+ "section": {
1305
+ "alias": "sectionAntiMalwareFileHashRule: section",
1306
+ "args": {},
1307
+ "deprecationReason": null,
1308
+ "description": "Policy section where the rule is located",
1309
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___section",
1310
+ "isDeprecated": false,
1311
+ "name": "section",
1312
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.section",
1313
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1314
+ "required": true,
1315
+ "responseStr": "section:$policySectionInfo ",
1316
+ "type": {
1317
+ "definition": {
1318
+ "description": "Define settings for a policy section",
1319
+ "enumValues": null,
1320
+ "fields": {
1321
+ "id": {
1322
+ "args": {},
1323
+ "deprecationReason": null,
1324
+ "description": null,
1325
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___section___id",
1326
+ "isDeprecated": false,
1327
+ "name": "id",
1328
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.section.id",
1329
+ "requestStr": "$id:ID! ",
1330
+ "required": true,
1331
+ "responseStr": "id:$id ",
1332
+ "type": {
1333
+ "kind": [
1334
+ "NON_NULL",
1335
+ "SCALAR"
1336
+ ],
1337
+ "name": "ID",
1338
+ "non_null": false
1339
+ },
1340
+ "varName": "id"
1341
+ },
1342
+ "name": {
1343
+ "args": {},
1344
+ "deprecationReason": null,
1345
+ "description": null,
1346
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___section___name",
1347
+ "isDeprecated": false,
1348
+ "name": "name",
1349
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.section.name",
1350
+ "requestStr": "$name:String! ",
1351
+ "required": true,
1352
+ "responseStr": "name:$name ",
1353
+ "type": {
1354
+ "kind": [
1355
+ "NON_NULL",
1356
+ "SCALAR"
1357
+ ],
1358
+ "name": "String",
1359
+ "non_null": false
1360
+ },
1361
+ "varName": "name"
1362
+ }
1363
+ },
1364
+ "inputFields": null,
1365
+ "interfaces": {},
1366
+ "kind": "OBJECT",
1367
+ "name": "PolicySectionInfo",
1368
+ "possibleTypes": null
1369
+ },
1370
+ "indexType": "object",
1371
+ "kind": [
1372
+ "NON_NULL",
1373
+ "OBJECT"
1374
+ ],
1375
+ "name": "PolicySectionInfo",
1376
+ "non_null": false
1377
+ },
1378
+ "varName": "policySectionInfo"
1379
+ },
1380
+ "sha256": {
1381
+ "args": {},
1382
+ "deprecationReason": null,
1383
+ "description": "The file's unique SHA-256 hash identifier",
1384
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___rules___rule___sha256",
1385
+ "isDeprecated": false,
1386
+ "name": "sha256",
1387
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.rules.rule.sha256",
1388
+ "requestStr": "$sha256:SHA_256! ",
1389
+ "required": true,
1390
+ "responseStr": "sha256:$sha256 ",
1391
+ "type": {
1392
+ "kind": [
1393
+ "NON_NULL",
1394
+ "SCALAR"
1395
+ ],
1396
+ "name": "SHA_256",
1397
+ "non_null": false
1398
+ },
1399
+ "varName": "sha256"
1400
+ }
1401
+ },
1402
+ "inputFields": null,
1403
+ "interfaces": {},
1404
+ "kind": "OBJECT",
1405
+ "name": "AntiMalwareFileHashRule",
1406
+ "possibleTypes": null
1407
+ },
1408
+ "indexType": "object",
1409
+ "kind": [
1410
+ "NON_NULL",
1411
+ "OBJECT"
1412
+ ],
1413
+ "name": "AntiMalwareFileHashRule",
1414
+ "non_null": false
1415
+ },
1416
+ "varName": "antiMalwareFileHashRule"
1417
+ }
1418
+ },
1419
+ "inputFields": null,
1420
+ "interfaces": {},
1421
+ "kind": "OBJECT",
1422
+ "name": "AntiMalwareFileHashRulePayload",
1423
+ "possibleTypes": null
1424
+ },
1425
+ "indexType": "object",
1426
+ "kind": [
1427
+ "NON_NULL",
1428
+ "LIST",
1429
+ "NON_NULL",
1430
+ "OBJECT"
1431
+ ],
1432
+ "name": "AntiMalwareFileHashRulePayload",
1433
+ "non_null": false
1434
+ },
1435
+ "varName": "antiMalwareFileHashRulePayload"
1436
+ },
1437
+ "sections": {
1438
+ "args": {},
1439
+ "deprecationReason": null,
1440
+ "description": null,
1441
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections",
1442
+ "isDeprecated": false,
1443
+ "name": "sections",
1444
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections",
1445
+ "requestStr": "$policySectionPayload:[PolicySectionPayload]! ",
1446
+ "required": true,
1447
+ "responseStr": "sections:$policySectionPayload ",
1448
+ "type": {
1449
+ "definition": {
1450
+ "description": null,
1451
+ "enumValues": null,
1452
+ "fields": {
1453
+ "audit": {
1454
+ "alias": "auditPolicySectionPayload: audit",
1455
+ "args": {},
1456
+ "deprecationReason": null,
1457
+ "description": null,
1458
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___audit",
1459
+ "isDeprecated": false,
1460
+ "name": "audit",
1461
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.audit",
1462
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
1463
+ "required": true,
1464
+ "responseStr": "audit:$policyElementAudit ",
1465
+ "type": {
1466
+ "definition": {
1467
+ "description": null,
1468
+ "enumValues": null,
1469
+ "fields": {
1470
+ "updatedBy": {
1471
+ "args": {},
1472
+ "deprecationReason": null,
1473
+ "description": "The admin, or the API-key, that performed the last update",
1474
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___audit___updatedBy",
1475
+ "isDeprecated": false,
1476
+ "name": "updatedBy",
1477
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.audit.updatedBy",
1478
+ "requestStr": "$updatedBy:String! ",
1479
+ "required": true,
1480
+ "responseStr": "updatedBy:$updatedBy ",
1481
+ "type": {
1482
+ "kind": [
1483
+ "NON_NULL",
1484
+ "SCALAR"
1485
+ ],
1486
+ "name": "String",
1487
+ "non_null": false
1488
+ },
1489
+ "varName": "updatedBy"
1490
+ },
1491
+ "updatedTime": {
1492
+ "args": {},
1493
+ "deprecationReason": null,
1494
+ "description": "The last date and time the rule was updated",
1495
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___audit___updatedTime",
1496
+ "isDeprecated": false,
1497
+ "name": "updatedTime",
1498
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.audit.updatedTime",
1499
+ "requestStr": "$updatedTime:DateTime! ",
1500
+ "required": true,
1501
+ "responseStr": "updatedTime:$updatedTime ",
1502
+ "type": {
1503
+ "kind": [
1504
+ "NON_NULL",
1505
+ "SCALAR"
1506
+ ],
1507
+ "name": "DateTime",
1508
+ "non_null": false
1509
+ },
1510
+ "varName": "updatedTime"
1511
+ }
1512
+ },
1513
+ "inputFields": null,
1514
+ "interfaces": {},
1515
+ "kind": "OBJECT",
1516
+ "name": "PolicyElementAudit",
1517
+ "possibleTypes": null
1518
+ },
1519
+ "indexType": "object",
1520
+ "kind": [
1521
+ "NON_NULL",
1522
+ "OBJECT"
1523
+ ],
1524
+ "name": "PolicyElementAudit",
1525
+ "non_null": false
1526
+ },
1527
+ "varName": "policyElementAudit"
1528
+ },
1529
+ "properties": {
1530
+ "alias": "propertiesPolicySectionPayload: properties",
1531
+ "args": {},
1532
+ "deprecationReason": null,
1533
+ "description": null,
1534
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___properties",
1535
+ "isDeprecated": false,
1536
+ "name": "properties",
1537
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.properties",
1538
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
1539
+ "required": true,
1540
+ "responseStr": "properties:$properties ",
1541
+ "type": {
1542
+ "definition": {
1543
+ "description": "Attributes describing the rule state or type",
1544
+ "enumValues": [
1545
+ {
1546
+ "deprecationReason": null,
1547
+ "description": "New (added) rule",
1548
+ "isDeprecated": false,
1549
+ "name": "ADDED"
1550
+ },
1551
+ {
1552
+ "deprecationReason": null,
1553
+ "description": "Updated (modified) existing rule",
1554
+ "isDeprecated": false,
1555
+ "name": "UPDATED"
1556
+ },
1557
+ {
1558
+ "deprecationReason": null,
1559
+ "description": "Removed (deleted) rule",
1560
+ "isDeprecated": false,
1561
+ "name": "REMOVED"
1562
+ },
1563
+ {
1564
+ "deprecationReason": null,
1565
+ "description": "A rule moved to a different position",
1566
+ "isDeprecated": false,
1567
+ "name": "MOVED"
1568
+ },
1569
+ {
1570
+ "deprecationReason": null,
1571
+ "description": "A rule locked for changes by other admins",
1572
+ "isDeprecated": false,
1573
+ "name": "LOCKED"
1574
+ },
1575
+ {
1576
+ "deprecationReason": null,
1577
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
1578
+ "isDeprecated": false,
1579
+ "name": "ANCHORED"
1580
+ },
1581
+ {
1582
+ "deprecationReason": null,
1583
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
1584
+ "isDeprecated": false,
1585
+ "name": "SYSTEM"
1586
+ }
1587
+ ],
1588
+ "fields": null,
1589
+ "inputFields": null,
1590
+ "interfaces": null,
1591
+ "kind": "ENUM",
1592
+ "name": "PolicyElementPropertiesEnum",
1593
+ "possibleTypes": null
1594
+ },
1595
+ "indexType": "enum",
1596
+ "kind": [
1597
+ "NON_NULL",
1598
+ "LIST",
1599
+ "NON_NULL",
1600
+ "ENUM"
1601
+ ],
1602
+ "name": "PolicyElementPropertiesEnum",
1603
+ "non_null": false
1604
+ },
1605
+ "varName": "properties"
1606
+ },
1607
+ "section": {
1608
+ "alias": "sectionPolicySectionPayload: section",
1609
+ "args": {},
1610
+ "deprecationReason": null,
1611
+ "description": null,
1612
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___section",
1613
+ "isDeprecated": false,
1614
+ "name": "section",
1615
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.section",
1616
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1617
+ "required": true,
1618
+ "responseStr": "section:$policySectionInfo ",
1619
+ "type": {
1620
+ "definition": {
1621
+ "description": "Define settings for a policy section",
1622
+ "enumValues": null,
1623
+ "fields": {
1624
+ "id": {
1625
+ "args": {},
1626
+ "deprecationReason": null,
1627
+ "description": null,
1628
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___section___id",
1629
+ "isDeprecated": false,
1630
+ "name": "id",
1631
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.section.id",
1632
+ "requestStr": "$id:ID! ",
1633
+ "required": true,
1634
+ "responseStr": "id:$id ",
1635
+ "type": {
1636
+ "kind": [
1637
+ "NON_NULL",
1638
+ "SCALAR"
1639
+ ],
1640
+ "name": "ID",
1641
+ "non_null": false
1642
+ },
1643
+ "varName": "id"
1644
+ },
1645
+ "name": {
1646
+ "args": {},
1647
+ "deprecationReason": null,
1648
+ "description": null,
1649
+ "id_str": "antiMalwareFileHash___createPolicyRevision___policy___sections___section___name",
1650
+ "isDeprecated": false,
1651
+ "name": "name",
1652
+ "path": "antiMalwareFileHash.createPolicyRevision.policy.sections.section.name",
1653
+ "requestStr": "$name:String! ",
1654
+ "required": true,
1655
+ "responseStr": "name:$name ",
1656
+ "type": {
1657
+ "kind": [
1658
+ "NON_NULL",
1659
+ "SCALAR"
1660
+ ],
1661
+ "name": "String",
1662
+ "non_null": false
1663
+ },
1664
+ "varName": "name"
1665
+ }
1666
+ },
1667
+ "inputFields": null,
1668
+ "interfaces": {},
1669
+ "kind": "OBJECT",
1670
+ "name": "PolicySectionInfo",
1671
+ "possibleTypes": null
1672
+ },
1673
+ "indexType": "object",
1674
+ "kind": [
1675
+ "NON_NULL",
1676
+ "OBJECT"
1677
+ ],
1678
+ "name": "PolicySectionInfo",
1679
+ "non_null": false
1680
+ },
1681
+ "varName": "policySectionInfo"
1682
+ }
1683
+ },
1684
+ "inputFields": null,
1685
+ "interfaces": {},
1686
+ "kind": "OBJECT",
1687
+ "name": "PolicySectionPayload",
1688
+ "possibleTypes": null
1689
+ },
1690
+ "indexType": "object",
1691
+ "kind": [
1692
+ "NON_NULL",
1693
+ "LIST",
1694
+ "NON_NULL",
1695
+ "OBJECT"
1696
+ ],
1697
+ "name": "PolicySectionPayload",
1698
+ "non_null": false
1699
+ },
1700
+ "varName": "policySectionPayload"
1701
+ }
1702
+ },
1703
+ "inputFields": null,
1704
+ "interfaces": {},
1705
+ "kind": "OBJECT",
1706
+ "name": "AntiMalwareFileHashPolicy",
1707
+ "possibleTypes": null
1708
+ },
1709
+ "indexType": "object",
1710
+ "kind": [
1711
+ "OBJECT"
1712
+ ],
1713
+ "name": "AntiMalwareFileHashPolicy",
1714
+ "non_null": false
1715
+ },
1716
+ "varName": "antiMalwareFileHashPolicy"
1717
+ },
1718
+ "status": {
1719
+ "alias": "statusAntiMalwareFileHashPolicyMutationPayload: status",
1720
+ "args": {},
1721
+ "deprecationReason": null,
1722
+ "description": null,
1723
+ "id_str": "antiMalwareFileHash___createPolicyRevision___status",
1724
+ "isDeprecated": false,
1725
+ "name": "status",
1726
+ "path": "antiMalwareFileHash.createPolicyRevision.status",
1727
+ "requestStr": "$status:PolicyMutationStatus! ",
1728
+ "required": true,
1729
+ "responseStr": "status:$status ",
1730
+ "type": {
1731
+ "definition": {
1732
+ "description": "Enum for the status of a policy mutation",
1733
+ "enumValues": [
1734
+ {
1735
+ "deprecationReason": null,
1736
+ "description": null,
1737
+ "isDeprecated": false,
1738
+ "name": "SUCCESS"
1739
+ },
1740
+ {
1741
+ "deprecationReason": null,
1742
+ "description": null,
1743
+ "isDeprecated": false,
1744
+ "name": "FAILURE"
1745
+ }
1746
+ ],
1747
+ "fields": null,
1748
+ "inputFields": null,
1749
+ "interfaces": null,
1750
+ "kind": "ENUM",
1751
+ "name": "PolicyMutationStatus",
1752
+ "possibleTypes": null
1753
+ },
1754
+ "indexType": "enum",
1755
+ "kind": [
1756
+ "NON_NULL",
1757
+ "ENUM"
1758
+ ],
1759
+ "name": "PolicyMutationStatus",
1760
+ "non_null": false
1761
+ },
1762
+ "varName": "status"
1763
+ }
1764
+ },
1765
+ "inputFields": null,
1766
+ "interfaces": {},
1767
+ "kind": "OBJECT",
1768
+ "name": "AntiMalwareFileHashPolicyMutationPayload",
1769
+ "possibleTypes": null
1770
+ },
1771
+ "indexType": "object",
1772
+ "kind": [
1773
+ "NON_NULL",
1774
+ "OBJECT"
1775
+ ],
1776
+ "name": "AntiMalwareFileHashPolicyMutationPayload",
1777
+ "non_null": false
1778
+ },
1779
+ "varName": "antiMalwareFileHashPolicyMutationPayload"
1780
+ }
1781
+ },
1782
+ "inputFields": null,
1783
+ "interfaces": {},
1784
+ "kind": "OBJECT",
1785
+ "name": "AntiMalwareFileHashPolicyMutations",
1786
+ "possibleTypes": null
1787
+ },
1788
+ "indexType": "object",
1789
+ "kind": [
1790
+ "OBJECT"
1791
+ ],
1792
+ "name": "AntiMalwareFileHashPolicyMutations",
1793
+ "non_null": false
1794
+ },
1795
+ "varName": "antiMalwareFileHashPolicyMutations"
1796
+ }
1797
+ },
1798
+ "inputFields": null,
1799
+ "interfaces": [],
1800
+ "kind": "OBJECT",
1801
+ "name": "PolicyMutations",
1802
+ "possibleTypes": null
1803
+ },
1804
+ "indexType": "object",
1805
+ "kind": [
1806
+ "OBJECT"
1807
+ ],
1808
+ "name": "PolicyMutations",
1809
+ "non_null": false
1810
+ },
1811
+ "variablesPayload": {
1812
+ "antiMalwareFileHashPolicyMutationInput": {
1813
+ "policyMutationRevisionInput": {
1814
+ "id": "id"
1815
+ }
1816
+ },
1817
+ "policyCreateRevisionInput": {
1818
+ "description": "string",
1819
+ "name": "string"
1820
+ }
1821
+ }
1822
+ }