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