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