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,1204 @@
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
+ "removeRule": {
116
+ "args": {
117
+ "removeRule___input": {
118
+ "defaultValue": null,
119
+ "description": null,
120
+ "id_str": "removeRule___input",
121
+ "name": "input",
122
+ "path": "removeRule.input",
123
+ "requestStr": "$antiMalwareFileHashRemoveRuleInput:AntiMalwareFileHashRemoveRuleInput! ",
124
+ "required": true,
125
+ "responseStr": "input:$antiMalwareFileHashRemoveRuleInput ",
126
+ "type": {
127
+ "definition": {
128
+ "description": null,
129
+ "enumValues": null,
130
+ "fields": null,
131
+ "inputFields": {
132
+ "id": {
133
+ "defaultValue": null,
134
+ "description": null,
135
+ "id_str": "removeRule___input___id",
136
+ "name": "id",
137
+ "path": "removeRule.input.id",
138
+ "requestStr": "$id:ID! ",
139
+ "required": true,
140
+ "responseStr": "id:$id ",
141
+ "type": {
142
+ "kind": [
143
+ "NON_NULL",
144
+ "SCALAR"
145
+ ],
146
+ "name": "ID",
147
+ "non_null": false
148
+ },
149
+ "varName": "id"
150
+ }
151
+ },
152
+ "interfaces": null,
153
+ "kind": "INPUT_OBJECT",
154
+ "name": "AntiMalwareFileHashRemoveRuleInput",
155
+ "possibleTypes": null
156
+ },
157
+ "indexType": "input_object",
158
+ "kind": [
159
+ "NON_NULL",
160
+ "INPUT_OBJECT"
161
+ ],
162
+ "name": "AntiMalwareFileHashRemoveRuleInput",
163
+ "non_null": false
164
+ },
165
+ "varName": "antiMalwareFileHashRemoveRuleInput"
166
+ }
167
+ },
168
+ "deprecationReason": null,
169
+ "description": null,
170
+ "isDeprecated": false,
171
+ "name": "removeRule",
172
+ "type": {
173
+ "kind": "NON_NULL",
174
+ "name": null,
175
+ "ofType": {
176
+ "kind": "OBJECT",
177
+ "name": "AntiMalwareFileHashRuleMutationPayload",
178
+ "ofType": null
179
+ }
180
+ }
181
+ }
182
+ },
183
+ "deprecationReason": null,
184
+ "description": null,
185
+ "fieldTypes": {
186
+ "AntiMalwareFileHashAction": true,
187
+ "AntiMalwareFileHashPolicyMutations": true,
188
+ "AntiMalwareFileHashRule": true,
189
+ "AntiMalwareFileHashRuleMutationPayload": true,
190
+ "AntiMalwareFileHashRulePayload": true,
191
+ "PolicyElementAudit": true,
192
+ "PolicyElementPropertiesEnum": true,
193
+ "PolicyMutationError": true,
194
+ "PolicyMutationRevisionInput": true,
195
+ "PolicyMutationStatus": true,
196
+ "PolicySectionInfo": true
197
+ },
198
+ "isDeprecated": false,
199
+ "name": "policy",
200
+ "operationArgs": {
201
+ "accountId": {
202
+ "defaultValue": null,
203
+ "description": null,
204
+ "id_str": "accountId",
205
+ "name": "accountId",
206
+ "path": "accountId",
207
+ "requestStr": "$accountId:ID! ",
208
+ "required": true,
209
+ "responseStr": "accountId:$accountId ",
210
+ "type": {
211
+ "kind": [
212
+ "NON_NULL",
213
+ "SCALAR"
214
+ ],
215
+ "name": "ID",
216
+ "non_null": false
217
+ },
218
+ "varName": "accountId"
219
+ },
220
+ "antiMalwareFileHashPolicyMutationInput": {
221
+ "defaultValue": null,
222
+ "description": null,
223
+ "id_str": "antiMalwareFileHash___input",
224
+ "name": "input",
225
+ "path": "antiMalwareFileHash.input",
226
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
227
+ "required": false,
228
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
229
+ "type": {
230
+ "definition": {
231
+ "description": null,
232
+ "enumValues": null,
233
+ "fields": null,
234
+ "inputFields": {
235
+ "revision": {
236
+ "defaultValue": null,
237
+ "description": null,
238
+ "id_str": "antiMalwareFileHash___input___revision",
239
+ "name": "revision",
240
+ "path": "antiMalwareFileHash.input.revision",
241
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
242
+ "required": false,
243
+ "responseStr": "revision:$policyMutationRevisionInput ",
244
+ "type": {
245
+ "definition": {
246
+ "description": null,
247
+ "enumValues": null,
248
+ "fields": null,
249
+ "inputFields": {
250
+ "id": {
251
+ "defaultValue": null,
252
+ "description": null,
253
+ "id_str": "antiMalwareFileHash___input___revision___id",
254
+ "name": "id",
255
+ "path": "antiMalwareFileHash.input.revision.id",
256
+ "requestStr": "$id:ID ",
257
+ "required": false,
258
+ "responseStr": "id:$id ",
259
+ "type": {
260
+ "kind": [
261
+ "SCALAR"
262
+ ],
263
+ "name": "ID",
264
+ "non_null": false
265
+ },
266
+ "varName": "id"
267
+ }
268
+ },
269
+ "interfaces": null,
270
+ "kind": "INPUT_OBJECT",
271
+ "name": "PolicyMutationRevisionInput",
272
+ "possibleTypes": null
273
+ },
274
+ "indexType": "input_object",
275
+ "kind": [
276
+ "INPUT_OBJECT"
277
+ ],
278
+ "name": "PolicyMutationRevisionInput",
279
+ "non_null": false
280
+ },
281
+ "varName": "policyMutationRevisionInput"
282
+ }
283
+ },
284
+ "interfaces": null,
285
+ "kind": "INPUT_OBJECT",
286
+ "name": "AntiMalwareFileHashPolicyMutationInput",
287
+ "possibleTypes": null
288
+ },
289
+ "indexType": "input_object",
290
+ "kind": [
291
+ "INPUT_OBJECT"
292
+ ],
293
+ "name": "AntiMalwareFileHashPolicyMutationInput",
294
+ "non_null": false
295
+ },
296
+ "varName": "antiMalwareFileHashPolicyMutationInput"
297
+ },
298
+ "antiMalwareFileHashRemoveRuleInput": {
299
+ "defaultValue": null,
300
+ "description": null,
301
+ "id_str": "removeRule___input",
302
+ "name": "input",
303
+ "path": "removeRule.input",
304
+ "requestStr": "$antiMalwareFileHashRemoveRuleInput:AntiMalwareFileHashRemoveRuleInput! ",
305
+ "required": true,
306
+ "responseStr": "input:$antiMalwareFileHashRemoveRuleInput ",
307
+ "type": {
308
+ "definition": {
309
+ "description": null,
310
+ "enumValues": null,
311
+ "fields": null,
312
+ "inputFields": {
313
+ "id": {
314
+ "defaultValue": null,
315
+ "description": null,
316
+ "id_str": "removeRule___input___id",
317
+ "name": "id",
318
+ "path": "removeRule.input.id",
319
+ "requestStr": "$id:ID! ",
320
+ "required": true,
321
+ "responseStr": "id:$id ",
322
+ "type": {
323
+ "kind": [
324
+ "NON_NULL",
325
+ "SCALAR"
326
+ ],
327
+ "name": "ID",
328
+ "non_null": false
329
+ },
330
+ "varName": "id"
331
+ }
332
+ },
333
+ "interfaces": null,
334
+ "kind": "INPUT_OBJECT",
335
+ "name": "AntiMalwareFileHashRemoveRuleInput",
336
+ "possibleTypes": null
337
+ },
338
+ "indexType": "input_object",
339
+ "kind": [
340
+ "NON_NULL",
341
+ "INPUT_OBJECT"
342
+ ],
343
+ "name": "AntiMalwareFileHashRemoveRuleInput",
344
+ "non_null": false
345
+ },
346
+ "varName": "antiMalwareFileHashRemoveRuleInput"
347
+ }
348
+ },
349
+ "path": "mutation.policy.antiMalwareFileHash.removeRule",
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
+ "removeRule": {
451
+ "args": {
452
+ "removeRule___input": {
453
+ "defaultValue": null,
454
+ "description": null,
455
+ "id_str": "removeRule___input",
456
+ "name": "input",
457
+ "path": "removeRule.input",
458
+ "requestStr": "$antiMalwareFileHashRemoveRuleInput:AntiMalwareFileHashRemoveRuleInput! ",
459
+ "required": true,
460
+ "responseStr": "input:$antiMalwareFileHashRemoveRuleInput ",
461
+ "type": {
462
+ "definition": {
463
+ "description": null,
464
+ "enumValues": null,
465
+ "fields": null,
466
+ "inputFields": {
467
+ "id": {
468
+ "defaultValue": null,
469
+ "description": null,
470
+ "id_str": "removeRule___input___id",
471
+ "name": "id",
472
+ "path": "removeRule.input.id",
473
+ "requestStr": "$id:ID! ",
474
+ "required": true,
475
+ "responseStr": "id:$id ",
476
+ "type": {
477
+ "kind": [
478
+ "NON_NULL",
479
+ "SCALAR"
480
+ ],
481
+ "name": "ID",
482
+ "non_null": false
483
+ },
484
+ "varName": "id"
485
+ }
486
+ },
487
+ "interfaces": null,
488
+ "kind": "INPUT_OBJECT",
489
+ "name": "AntiMalwareFileHashRemoveRuleInput",
490
+ "possibleTypes": null
491
+ },
492
+ "indexType": "input_object",
493
+ "kind": [
494
+ "NON_NULL",
495
+ "INPUT_OBJECT"
496
+ ],
497
+ "name": "AntiMalwareFileHashRemoveRuleInput",
498
+ "non_null": false
499
+ },
500
+ "varName": "antiMalwareFileHashRemoveRuleInput"
501
+ }
502
+ },
503
+ "deprecationReason": null,
504
+ "description": null,
505
+ "id_str": "antiMalwareFileHash___removeRule",
506
+ "isDeprecated": false,
507
+ "name": "removeRule",
508
+ "path": "antiMalwareFileHash.removeRule",
509
+ "requestStr": "$antiMalwareFileHashRuleMutationPayload:AntiMalwareFileHashRuleMutationPayload! ",
510
+ "required": true,
511
+ "responseStr": "removeRule:$antiMalwareFileHashRuleMutationPayload ",
512
+ "type": {
513
+ "definition": {
514
+ "description": null,
515
+ "enumValues": null,
516
+ "fields": {
517
+ "errors": {
518
+ "alias": "errorsAntiMalwareFileHashRuleMutationPayload: errors",
519
+ "args": {},
520
+ "deprecationReason": null,
521
+ "description": null,
522
+ "id_str": "antiMalwareFileHash___removeRule___errors",
523
+ "isDeprecated": false,
524
+ "name": "errors",
525
+ "path": "antiMalwareFileHash.removeRule.errors",
526
+ "requestStr": "$policyMutationError:[PolicyMutationError]! ",
527
+ "required": true,
528
+ "responseStr": "errors:$policyMutationError ",
529
+ "type": {
530
+ "definition": {
531
+ "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\"",
532
+ "enumValues": null,
533
+ "fields": {
534
+ "errorCode": {
535
+ "args": {},
536
+ "deprecationReason": null,
537
+ "description": null,
538
+ "id_str": "antiMalwareFileHash___removeRule___errors___errorCode",
539
+ "isDeprecated": false,
540
+ "name": "errorCode",
541
+ "path": "antiMalwareFileHash.removeRule.errors.errorCode",
542
+ "requestStr": "$errorCode:String ",
543
+ "required": false,
544
+ "responseStr": "errorCode:$errorCode ",
545
+ "type": {
546
+ "kind": [
547
+ "SCALAR"
548
+ ],
549
+ "name": "String",
550
+ "non_null": false
551
+ },
552
+ "varName": "errorCode"
553
+ },
554
+ "errorMessage": {
555
+ "args": {},
556
+ "deprecationReason": null,
557
+ "description": null,
558
+ "id_str": "antiMalwareFileHash___removeRule___errors___errorMessage",
559
+ "isDeprecated": false,
560
+ "name": "errorMessage",
561
+ "path": "antiMalwareFileHash.removeRule.errors.errorMessage",
562
+ "requestStr": "$errorMessage:String ",
563
+ "required": false,
564
+ "responseStr": "errorMessage:$errorMessage ",
565
+ "type": {
566
+ "kind": [
567
+ "SCALAR"
568
+ ],
569
+ "name": "String",
570
+ "non_null": false
571
+ },
572
+ "varName": "errorMessage"
573
+ }
574
+ },
575
+ "inputFields": null,
576
+ "interfaces": {},
577
+ "kind": "OBJECT",
578
+ "name": "PolicyMutationError",
579
+ "possibleTypes": null
580
+ },
581
+ "indexType": "object",
582
+ "kind": [
583
+ "NON_NULL",
584
+ "LIST",
585
+ "NON_NULL",
586
+ "OBJECT"
587
+ ],
588
+ "name": "PolicyMutationError",
589
+ "non_null": false
590
+ },
591
+ "varName": "policyMutationError"
592
+ },
593
+ "rule": {
594
+ "alias": "ruleAntiMalwareFileHashRuleMutationPayload: rule",
595
+ "args": {},
596
+ "deprecationReason": null,
597
+ "description": null,
598
+ "id_str": "antiMalwareFileHash___removeRule___rule",
599
+ "isDeprecated": false,
600
+ "name": "rule",
601
+ "path": "antiMalwareFileHash.removeRule.rule",
602
+ "requestStr": "$antiMalwareFileHashRulePayload:AntiMalwareFileHashRulePayload ",
603
+ "required": false,
604
+ "responseStr": "rule:$antiMalwareFileHashRulePayload ",
605
+ "type": {
606
+ "definition": {
607
+ "description": null,
608
+ "enumValues": null,
609
+ "fields": {
610
+ "audit": {
611
+ "args": {},
612
+ "deprecationReason": null,
613
+ "description": null,
614
+ "id_str": "antiMalwareFileHash___removeRule___rule___audit",
615
+ "isDeprecated": false,
616
+ "name": "audit",
617
+ "path": "antiMalwareFileHash.removeRule.rule.audit",
618
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
619
+ "required": true,
620
+ "responseStr": "audit:$policyElementAudit ",
621
+ "type": {
622
+ "definition": {
623
+ "description": null,
624
+ "enumValues": null,
625
+ "fields": {
626
+ "updatedBy": {
627
+ "args": {},
628
+ "deprecationReason": null,
629
+ "description": "The admin, or the API-key, that performed the last update",
630
+ "id_str": "antiMalwareFileHash___removeRule___rule___audit___updatedBy",
631
+ "isDeprecated": false,
632
+ "name": "updatedBy",
633
+ "path": "antiMalwareFileHash.removeRule.rule.audit.updatedBy",
634
+ "requestStr": "$updatedBy:String! ",
635
+ "required": true,
636
+ "responseStr": "updatedBy:$updatedBy ",
637
+ "type": {
638
+ "kind": [
639
+ "NON_NULL",
640
+ "SCALAR"
641
+ ],
642
+ "name": "String",
643
+ "non_null": false
644
+ },
645
+ "varName": "updatedBy"
646
+ },
647
+ "updatedTime": {
648
+ "args": {},
649
+ "deprecationReason": null,
650
+ "description": "The last date and time the rule was updated",
651
+ "id_str": "antiMalwareFileHash___removeRule___rule___audit___updatedTime",
652
+ "isDeprecated": false,
653
+ "name": "updatedTime",
654
+ "path": "antiMalwareFileHash.removeRule.rule.audit.updatedTime",
655
+ "requestStr": "$updatedTime:DateTime! ",
656
+ "required": true,
657
+ "responseStr": "updatedTime:$updatedTime ",
658
+ "type": {
659
+ "kind": [
660
+ "NON_NULL",
661
+ "SCALAR"
662
+ ],
663
+ "name": "DateTime",
664
+ "non_null": false
665
+ },
666
+ "varName": "updatedTime"
667
+ }
668
+ },
669
+ "inputFields": null,
670
+ "interfaces": {},
671
+ "kind": "OBJECT",
672
+ "name": "PolicyElementAudit",
673
+ "possibleTypes": null
674
+ },
675
+ "indexType": "object",
676
+ "kind": [
677
+ "NON_NULL",
678
+ "OBJECT"
679
+ ],
680
+ "name": "PolicyElementAudit",
681
+ "non_null": false
682
+ },
683
+ "varName": "policyElementAudit"
684
+ },
685
+ "properties": {
686
+ "args": {},
687
+ "deprecationReason": null,
688
+ "description": null,
689
+ "id_str": "antiMalwareFileHash___removeRule___rule___properties",
690
+ "isDeprecated": false,
691
+ "name": "properties",
692
+ "path": "antiMalwareFileHash.removeRule.rule.properties",
693
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
694
+ "required": true,
695
+ "responseStr": "properties:$properties ",
696
+ "type": {
697
+ "definition": {
698
+ "description": "Attributes describing the rule state or type",
699
+ "enumValues": [
700
+ {
701
+ "deprecationReason": null,
702
+ "description": "New (added) rule",
703
+ "isDeprecated": false,
704
+ "name": "ADDED"
705
+ },
706
+ {
707
+ "deprecationReason": null,
708
+ "description": "Updated (modified) existing rule",
709
+ "isDeprecated": false,
710
+ "name": "UPDATED"
711
+ },
712
+ {
713
+ "deprecationReason": null,
714
+ "description": "Removed (deleted) rule",
715
+ "isDeprecated": false,
716
+ "name": "REMOVED"
717
+ },
718
+ {
719
+ "deprecationReason": null,
720
+ "description": "A rule moved to a different position",
721
+ "isDeprecated": false,
722
+ "name": "MOVED"
723
+ },
724
+ {
725
+ "deprecationReason": null,
726
+ "description": "A rule locked for changes by other admins",
727
+ "isDeprecated": false,
728
+ "name": "LOCKED"
729
+ },
730
+ {
731
+ "deprecationReason": null,
732
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
733
+ "isDeprecated": false,
734
+ "name": "ANCHORED"
735
+ },
736
+ {
737
+ "deprecationReason": null,
738
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
739
+ "isDeprecated": false,
740
+ "name": "SYSTEM"
741
+ }
742
+ ],
743
+ "fields": null,
744
+ "inputFields": null,
745
+ "interfaces": null,
746
+ "kind": "ENUM",
747
+ "name": "PolicyElementPropertiesEnum",
748
+ "possibleTypes": null
749
+ },
750
+ "indexType": "enum",
751
+ "kind": [
752
+ "NON_NULL",
753
+ "LIST",
754
+ "NON_NULL",
755
+ "ENUM"
756
+ ],
757
+ "name": "PolicyElementPropertiesEnum",
758
+ "non_null": false
759
+ },
760
+ "varName": "properties"
761
+ },
762
+ "rule": {
763
+ "args": {},
764
+ "deprecationReason": null,
765
+ "description": null,
766
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule",
767
+ "isDeprecated": false,
768
+ "name": "rule",
769
+ "path": "antiMalwareFileHash.removeRule.rule.rule",
770
+ "requestStr": "$antiMalwareFileHashRule:AntiMalwareFileHashRule! ",
771
+ "required": true,
772
+ "responseStr": "rule:$antiMalwareFileHashRule ",
773
+ "type": {
774
+ "definition": {
775
+ "description": null,
776
+ "enumValues": null,
777
+ "fields": {
778
+ "action": {
779
+ "alias": "actionAntiMalwareFileHashRule: action",
780
+ "args": {},
781
+ "deprecationReason": null,
782
+ "description": "The action when the file hash is matched: [BLOCK | BYPASS]",
783
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___action",
784
+ "isDeprecated": false,
785
+ "name": "action",
786
+ "path": "antiMalwareFileHash.removeRule.rule.rule.action",
787
+ "requestStr": "$action:AntiMalwareFileHashAction! ",
788
+ "required": true,
789
+ "responseStr": "action:$action ",
790
+ "type": {
791
+ "definition": {
792
+ "description": null,
793
+ "enumValues": [
794
+ {
795
+ "deprecationReason": null,
796
+ "description": "Block file download by filehash action",
797
+ "isDeprecated": false,
798
+ "name": "BLOCK"
799
+ },
800
+ {
801
+ "deprecationReason": null,
802
+ "description": "Bypass file download by filehash action",
803
+ "isDeprecated": false,
804
+ "name": "BYPASS"
805
+ }
806
+ ],
807
+ "fields": null,
808
+ "inputFields": null,
809
+ "interfaces": null,
810
+ "kind": "ENUM",
811
+ "name": "AntiMalwareFileHashAction",
812
+ "possibleTypes": null
813
+ },
814
+ "indexType": "enum",
815
+ "kind": [
816
+ "NON_NULL",
817
+ "ENUM"
818
+ ],
819
+ "name": "AntiMalwareFileHashAction",
820
+ "non_null": false
821
+ },
822
+ "varName": "action"
823
+ },
824
+ "description": {
825
+ "args": {},
826
+ "deprecationReason": null,
827
+ "description": "Description for the rule",
828
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___description",
829
+ "isDeprecated": false,
830
+ "name": "description",
831
+ "path": "antiMalwareFileHash.removeRule.rule.rule.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
+ "enabled": {
846
+ "args": {},
847
+ "deprecationReason": null,
848
+ "description": "TRUE = Rule is enabled \n FALSE = Rule is disabled",
849
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___enabled",
850
+ "isDeprecated": false,
851
+ "name": "enabled",
852
+ "path": "antiMalwareFileHash.removeRule.rule.rule.enabled",
853
+ "requestStr": "$enabled:Boolean! ",
854
+ "required": true,
855
+ "responseStr": "enabled:$enabled ",
856
+ "type": {
857
+ "kind": [
858
+ "NON_NULL",
859
+ "SCALAR"
860
+ ],
861
+ "name": "Boolean",
862
+ "non_null": false
863
+ },
864
+ "varName": "enabled"
865
+ },
866
+ "expirationDate": {
867
+ "args": {},
868
+ "deprecationReason": null,
869
+ "description": "The date when the block or bypass action expires",
870
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___expirationDate",
871
+ "isDeprecated": false,
872
+ "name": "expirationDate",
873
+ "path": "antiMalwareFileHash.removeRule.rule.rule.expirationDate",
874
+ "requestStr": "$expirationDate:DateTime! ",
875
+ "required": true,
876
+ "responseStr": "expirationDate:$expirationDate ",
877
+ "type": {
878
+ "kind": [
879
+ "NON_NULL",
880
+ "SCALAR"
881
+ ],
882
+ "name": "DateTime",
883
+ "non_null": false
884
+ },
885
+ "varName": "expirationDate"
886
+ },
887
+ "fileName": {
888
+ "args": {},
889
+ "deprecationReason": null,
890
+ "description": "The name of the file",
891
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___fileName",
892
+ "isDeprecated": false,
893
+ "name": "fileName",
894
+ "path": "antiMalwareFileHash.removeRule.rule.rule.fileName",
895
+ "requestStr": "$fileName:String! ",
896
+ "required": true,
897
+ "responseStr": "fileName:$fileName ",
898
+ "type": {
899
+ "kind": [
900
+ "NON_NULL",
901
+ "SCALAR"
902
+ ],
903
+ "name": "String",
904
+ "non_null": false
905
+ },
906
+ "varName": "fileName"
907
+ },
908
+ "id": {
909
+ "args": {},
910
+ "deprecationReason": null,
911
+ "description": "Rule ID",
912
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___id",
913
+ "isDeprecated": false,
914
+ "name": "id",
915
+ "path": "antiMalwareFileHash.removeRule.rule.rule.id",
916
+ "requestStr": "$id:ID! ",
917
+ "required": true,
918
+ "responseStr": "id:$id ",
919
+ "type": {
920
+ "kind": [
921
+ "NON_NULL",
922
+ "SCALAR"
923
+ ],
924
+ "name": "ID",
925
+ "non_null": false
926
+ },
927
+ "varName": "id"
928
+ },
929
+ "index": {
930
+ "args": {},
931
+ "deprecationReason": null,
932
+ "description": "Position / priority of rule",
933
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___index",
934
+ "isDeprecated": false,
935
+ "name": "index",
936
+ "path": "antiMalwareFileHash.removeRule.rule.rule.index",
937
+ "requestStr": "$index:Int! ",
938
+ "required": true,
939
+ "responseStr": "index:$index ",
940
+ "type": {
941
+ "kind": [
942
+ "NON_NULL",
943
+ "SCALAR"
944
+ ],
945
+ "name": "Int",
946
+ "non_null": false
947
+ },
948
+ "varName": "index"
949
+ },
950
+ "name": {
951
+ "args": {},
952
+ "deprecationReason": null,
953
+ "description": "Name of the rule",
954
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___name",
955
+ "isDeprecated": false,
956
+ "name": "name",
957
+ "path": "antiMalwareFileHash.removeRule.rule.rule.name",
958
+ "requestStr": "$name:String! ",
959
+ "required": true,
960
+ "responseStr": "name:$name ",
961
+ "type": {
962
+ "kind": [
963
+ "NON_NULL",
964
+ "SCALAR"
965
+ ],
966
+ "name": "String",
967
+ "non_null": false
968
+ },
969
+ "varName": "name"
970
+ },
971
+ "section": {
972
+ "alias": "sectionAntiMalwareFileHashRule: section",
973
+ "args": {},
974
+ "deprecationReason": null,
975
+ "description": "Policy section where the rule is located",
976
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___section",
977
+ "isDeprecated": false,
978
+ "name": "section",
979
+ "path": "antiMalwareFileHash.removeRule.rule.rule.section",
980
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
981
+ "required": true,
982
+ "responseStr": "section:$policySectionInfo ",
983
+ "type": {
984
+ "definition": {
985
+ "description": "Define settings for a policy section",
986
+ "enumValues": null,
987
+ "fields": {
988
+ "id": {
989
+ "args": {},
990
+ "deprecationReason": null,
991
+ "description": null,
992
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___section___id",
993
+ "isDeprecated": false,
994
+ "name": "id",
995
+ "path": "antiMalwareFileHash.removeRule.rule.rule.section.id",
996
+ "requestStr": "$id:ID! ",
997
+ "required": true,
998
+ "responseStr": "id:$id ",
999
+ "type": {
1000
+ "kind": [
1001
+ "NON_NULL",
1002
+ "SCALAR"
1003
+ ],
1004
+ "name": "ID",
1005
+ "non_null": false
1006
+ },
1007
+ "varName": "id"
1008
+ },
1009
+ "name": {
1010
+ "args": {},
1011
+ "deprecationReason": null,
1012
+ "description": null,
1013
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___section___name",
1014
+ "isDeprecated": false,
1015
+ "name": "name",
1016
+ "path": "antiMalwareFileHash.removeRule.rule.rule.section.name",
1017
+ "requestStr": "$name:String! ",
1018
+ "required": true,
1019
+ "responseStr": "name:$name ",
1020
+ "type": {
1021
+ "kind": [
1022
+ "NON_NULL",
1023
+ "SCALAR"
1024
+ ],
1025
+ "name": "String",
1026
+ "non_null": false
1027
+ },
1028
+ "varName": "name"
1029
+ }
1030
+ },
1031
+ "inputFields": null,
1032
+ "interfaces": {},
1033
+ "kind": "OBJECT",
1034
+ "name": "PolicySectionInfo",
1035
+ "possibleTypes": null
1036
+ },
1037
+ "indexType": "object",
1038
+ "kind": [
1039
+ "NON_NULL",
1040
+ "OBJECT"
1041
+ ],
1042
+ "name": "PolicySectionInfo",
1043
+ "non_null": false
1044
+ },
1045
+ "varName": "policySectionInfo"
1046
+ },
1047
+ "sha256": {
1048
+ "args": {},
1049
+ "deprecationReason": null,
1050
+ "description": "The file's unique SHA-256 hash identifier",
1051
+ "id_str": "antiMalwareFileHash___removeRule___rule___rule___sha256",
1052
+ "isDeprecated": false,
1053
+ "name": "sha256",
1054
+ "path": "antiMalwareFileHash.removeRule.rule.rule.sha256",
1055
+ "requestStr": "$sha256:SHA_256! ",
1056
+ "required": true,
1057
+ "responseStr": "sha256:$sha256 ",
1058
+ "type": {
1059
+ "kind": [
1060
+ "NON_NULL",
1061
+ "SCALAR"
1062
+ ],
1063
+ "name": "SHA_256",
1064
+ "non_null": false
1065
+ },
1066
+ "varName": "sha256"
1067
+ }
1068
+ },
1069
+ "inputFields": null,
1070
+ "interfaces": {},
1071
+ "kind": "OBJECT",
1072
+ "name": "AntiMalwareFileHashRule",
1073
+ "possibleTypes": null
1074
+ },
1075
+ "indexType": "object",
1076
+ "kind": [
1077
+ "NON_NULL",
1078
+ "OBJECT"
1079
+ ],
1080
+ "name": "AntiMalwareFileHashRule",
1081
+ "non_null": false
1082
+ },
1083
+ "varName": "antiMalwareFileHashRule"
1084
+ }
1085
+ },
1086
+ "inputFields": null,
1087
+ "interfaces": {},
1088
+ "kind": "OBJECT",
1089
+ "name": "AntiMalwareFileHashRulePayload",
1090
+ "possibleTypes": null
1091
+ },
1092
+ "indexType": "object",
1093
+ "kind": [
1094
+ "OBJECT"
1095
+ ],
1096
+ "name": "AntiMalwareFileHashRulePayload",
1097
+ "non_null": false
1098
+ },
1099
+ "varName": "antiMalwareFileHashRulePayload"
1100
+ },
1101
+ "status": {
1102
+ "alias": "statusAntiMalwareFileHashRuleMutationPayload: status",
1103
+ "args": {},
1104
+ "deprecationReason": null,
1105
+ "description": null,
1106
+ "id_str": "antiMalwareFileHash___removeRule___status",
1107
+ "isDeprecated": false,
1108
+ "name": "status",
1109
+ "path": "antiMalwareFileHash.removeRule.status",
1110
+ "requestStr": "$status:PolicyMutationStatus! ",
1111
+ "required": true,
1112
+ "responseStr": "status:$status ",
1113
+ "type": {
1114
+ "definition": {
1115
+ "description": "Enum for the status of a policy mutation",
1116
+ "enumValues": [
1117
+ {
1118
+ "deprecationReason": null,
1119
+ "description": null,
1120
+ "isDeprecated": false,
1121
+ "name": "SUCCESS"
1122
+ },
1123
+ {
1124
+ "deprecationReason": null,
1125
+ "description": null,
1126
+ "isDeprecated": false,
1127
+ "name": "FAILURE"
1128
+ }
1129
+ ],
1130
+ "fields": null,
1131
+ "inputFields": null,
1132
+ "interfaces": null,
1133
+ "kind": "ENUM",
1134
+ "name": "PolicyMutationStatus",
1135
+ "possibleTypes": null
1136
+ },
1137
+ "indexType": "enum",
1138
+ "kind": [
1139
+ "NON_NULL",
1140
+ "ENUM"
1141
+ ],
1142
+ "name": "PolicyMutationStatus",
1143
+ "non_null": false
1144
+ },
1145
+ "varName": "status"
1146
+ }
1147
+ },
1148
+ "inputFields": null,
1149
+ "interfaces": {},
1150
+ "kind": "OBJECT",
1151
+ "name": "AntiMalwareFileHashRuleMutationPayload",
1152
+ "possibleTypes": null
1153
+ },
1154
+ "indexType": "object",
1155
+ "kind": [
1156
+ "NON_NULL",
1157
+ "OBJECT"
1158
+ ],
1159
+ "name": "AntiMalwareFileHashRuleMutationPayload",
1160
+ "non_null": false
1161
+ },
1162
+ "varName": "antiMalwareFileHashRuleMutationPayload"
1163
+ }
1164
+ },
1165
+ "inputFields": null,
1166
+ "interfaces": {},
1167
+ "kind": "OBJECT",
1168
+ "name": "AntiMalwareFileHashPolicyMutations",
1169
+ "possibleTypes": null
1170
+ },
1171
+ "indexType": "object",
1172
+ "kind": [
1173
+ "OBJECT"
1174
+ ],
1175
+ "name": "AntiMalwareFileHashPolicyMutations",
1176
+ "non_null": false
1177
+ },
1178
+ "varName": "antiMalwareFileHashPolicyMutations"
1179
+ }
1180
+ },
1181
+ "inputFields": null,
1182
+ "interfaces": [],
1183
+ "kind": "OBJECT",
1184
+ "name": "PolicyMutations",
1185
+ "possibleTypes": null
1186
+ },
1187
+ "indexType": "object",
1188
+ "kind": [
1189
+ "OBJECT"
1190
+ ],
1191
+ "name": "PolicyMutations",
1192
+ "non_null": false
1193
+ },
1194
+ "variablesPayload": {
1195
+ "antiMalwareFileHashPolicyMutationInput": {
1196
+ "policyMutationRevisionInput": {
1197
+ "id": "id"
1198
+ }
1199
+ },
1200
+ "antiMalwareFileHashRemoveRuleInput": {
1201
+ "id": "id"
1202
+ }
1203
+ }
1204
+ }