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

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

Potentially problematic release.


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

Files changed (98) hide show
  1. catocli/Utils/clidriver.py +18 -18
  2. catocli/Utils/cliutils.py +165 -0
  3. catocli/Utils/csv_formatter.py +652 -0
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/export_rules/__init__.py +0 -4
  6. catocli/parsers/custom/export_sites/__init__.py +4 -3
  7. catocli/parsers/custom/export_sites/export_sites.py +198 -55
  8. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +473 -393
  9. catocli/parsers/customParserApiClient.py +444 -38
  10. catocli/parsers/custom_private/__init__.py +19 -13
  11. catocli/parsers/mutation_accountManagement/__init__.py +21 -0
  12. catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
  13. catocli/parsers/mutation_admin/__init__.py +12 -0
  14. catocli/parsers/mutation_container/__init__.py +18 -0
  15. catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
  16. catocli/parsers/mutation_groups/__init__.py +6 -0
  17. catocli/parsers/mutation_hardware/__init__.py +2 -0
  18. catocli/parsers/mutation_policy/__init__.py +378 -0
  19. catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
  20. catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
  21. catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
  22. catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
  23. catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
  24. catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
  25. catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
  26. catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
  27. catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
  28. catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
  29. catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
  30. catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +4 -0
  32. catocli/parsers/mutation_site/__init__.py +72 -0
  33. catocli/parsers/mutation_sites/__init__.py +72 -0
  34. catocli/parsers/mutation_xdr/__init__.py +6 -0
  35. catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
  36. catocli/parsers/query_accountManagement/__init__.py +2 -0
  37. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  38. catocli/parsers/query_accountRoles/__init__.py +2 -0
  39. catocli/parsers/query_accountSnapshot/__init__.py +2 -0
  40. catocli/parsers/query_admin/__init__.py +2 -0
  41. catocli/parsers/query_admins/__init__.py +2 -0
  42. catocli/parsers/query_appStats/__init__.py +6 -0
  43. catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
  44. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
  45. catocli/parsers/query_auditFeed/__init__.py +2 -0
  46. catocli/parsers/query_catalogs/__init__.py +2 -0
  47. catocli/parsers/query_container/__init__.py +2 -0
  48. catocli/parsers/query_devices/README.md +1 -1
  49. catocli/parsers/query_devices/__init__.py +2 -0
  50. catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
  51. catocli/parsers/query_entityLookup/__init__.py +2 -0
  52. catocli/parsers/query_events/__init__.py +2 -0
  53. catocli/parsers/query_eventsFeed/__init__.py +2 -0
  54. catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
  55. catocli/parsers/query_groups/__init__.py +6 -0
  56. catocli/parsers/query_hardware/README.md +1 -1
  57. catocli/parsers/query_hardware/__init__.py +2 -0
  58. catocli/parsers/query_hardwareManagement/__init__.py +2 -0
  59. catocli/parsers/query_licensing/__init__.py +2 -0
  60. catocli/parsers/query_policy/__init__.py +37 -0
  61. catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
  62. catocli/parsers/query_popLocations/__init__.py +2 -0
  63. catocli/parsers/query_sandbox/__init__.py +2 -0
  64. catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
  65. catocli/parsers/query_site/__init__.py +33 -0
  66. catocli/parsers/query_siteLocation/__init__.py +2 -0
  67. catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
  68. catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
  69. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
  70. catocli/parsers/query_subDomains/__init__.py +2 -0
  71. catocli/parsers/query_xdr/__init__.py +4 -0
  72. catocli/parsers/raw/__init__.py +3 -1
  73. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/METADATA +1 -1
  74. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/RECORD +98 -66
  75. models/mutation.accountManagement.disableAccount.json +545 -0
  76. models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
  77. models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
  78. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
  79. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
  80. models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
  81. models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
  82. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
  83. models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
  84. models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
  85. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
  86. models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
  87. models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
  88. models/mutation.site.updateSiteGeneralDetails.json +3 -3
  89. models/mutation.sites.updateSiteGeneralDetails.json +3 -3
  90. models/query.devices.json +249 -2
  91. models/query.hardware.json +224 -0
  92. models/query.policy.antiMalwareFileHash.policy.json +1583 -0
  93. models/query.site.siteGeneralDetails.json +899 -0
  94. schema/catolib.py +52 -14
  95. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/WHEEL +0 -0
  96. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/entry_points.txt +0 -0
  97. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/licenses/LICENSE +0 -0
  98. {catocli-2.1.2.dist-info → catocli-2.1.4.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1251 @@
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
+ "moveSection": {
116
+ "args": {
117
+ "moveSection___input": {
118
+ "defaultValue": null,
119
+ "description": null,
120
+ "id_str": "moveSection___input",
121
+ "name": "input",
122
+ "path": "moveSection.input",
123
+ "requestStr": "$policyMoveSectionInput:PolicyMoveSectionInput! ",
124
+ "required": true,
125
+ "responseStr": "input:$policyMoveSectionInput ",
126
+ "type": {
127
+ "definition": {
128
+ "description": "Input for moving a section within a policy",
129
+ "enumValues": null,
130
+ "fields": null,
131
+ "inputFields": {
132
+ "id": {
133
+ "defaultValue": null,
134
+ "description": null,
135
+ "id_str": "moveSection___input___id",
136
+ "name": "id",
137
+ "path": "moveSection.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
+ "to": {
152
+ "defaultValue": null,
153
+ "description": null,
154
+ "id_str": "moveSection___input___to",
155
+ "name": "to",
156
+ "path": "moveSection.input.to",
157
+ "requestStr": "$policySectionPositionInput:PolicySectionPositionInput ",
158
+ "required": false,
159
+ "responseStr": "to:$policySectionPositionInput ",
160
+ "type": {
161
+ "definition": {
162
+ "description": null,
163
+ "enumValues": null,
164
+ "fields": null,
165
+ "inputFields": {
166
+ "position": {
167
+ "defaultValue": null,
168
+ "description": null,
169
+ "id_str": "moveSection___input___to___position",
170
+ "name": "position",
171
+ "path": "moveSection.input.to.position",
172
+ "requestStr": "$position:PolicySectionPositionEnum! ",
173
+ "required": true,
174
+ "responseStr": "position:$position ",
175
+ "type": {
176
+ "definition": {
177
+ "description": null,
178
+ "enumValues": [
179
+ {
180
+ "deprecationReason": null,
181
+ "description": null,
182
+ "isDeprecated": false,
183
+ "name": "AFTER_SECTION"
184
+ },
185
+ {
186
+ "deprecationReason": null,
187
+ "description": null,
188
+ "isDeprecated": false,
189
+ "name": "BEFORE_SECTION"
190
+ },
191
+ {
192
+ "deprecationReason": null,
193
+ "description": null,
194
+ "isDeprecated": false,
195
+ "name": "LAST_IN_POLICY"
196
+ }
197
+ ],
198
+ "fields": null,
199
+ "inputFields": null,
200
+ "interfaces": null,
201
+ "kind": "ENUM",
202
+ "name": "PolicySectionPositionEnum",
203
+ "possibleTypes": null
204
+ },
205
+ "indexType": "enum",
206
+ "kind": [
207
+ "NON_NULL",
208
+ "ENUM"
209
+ ],
210
+ "name": "PolicySectionPositionEnum",
211
+ "non_null": false
212
+ },
213
+ "varName": "position"
214
+ },
215
+ "ref": {
216
+ "defaultValue": null,
217
+ "description": null,
218
+ "id_str": "moveSection___input___to___ref",
219
+ "name": "ref",
220
+ "path": "moveSection.input.to.ref",
221
+ "requestStr": "$ref:ID ",
222
+ "required": false,
223
+ "responseStr": "ref:$ref ",
224
+ "type": {
225
+ "kind": [
226
+ "SCALAR"
227
+ ],
228
+ "name": "ID",
229
+ "non_null": false
230
+ },
231
+ "varName": "ref"
232
+ }
233
+ },
234
+ "interfaces": null,
235
+ "kind": "INPUT_OBJECT",
236
+ "name": "PolicySectionPositionInput",
237
+ "possibleTypes": null
238
+ },
239
+ "indexType": "input_object",
240
+ "kind": [
241
+ "INPUT_OBJECT"
242
+ ],
243
+ "name": "PolicySectionPositionInput",
244
+ "non_null": false
245
+ },
246
+ "varName": "policySectionPositionInput"
247
+ }
248
+ },
249
+ "interfaces": null,
250
+ "kind": "INPUT_OBJECT",
251
+ "name": "PolicyMoveSectionInput",
252
+ "possibleTypes": null
253
+ },
254
+ "indexType": "input_object",
255
+ "kind": [
256
+ "NON_NULL",
257
+ "INPUT_OBJECT"
258
+ ],
259
+ "name": "PolicyMoveSectionInput",
260
+ "non_null": false
261
+ },
262
+ "varName": "policyMoveSectionInput"
263
+ }
264
+ },
265
+ "deprecationReason": null,
266
+ "description": null,
267
+ "isDeprecated": false,
268
+ "name": "moveSection",
269
+ "type": {
270
+ "kind": "NON_NULL",
271
+ "name": null,
272
+ "ofType": {
273
+ "kind": "OBJECT",
274
+ "name": "PolicySectionMutationPayload",
275
+ "ofType": null
276
+ }
277
+ }
278
+ }
279
+ },
280
+ "deprecationReason": null,
281
+ "description": null,
282
+ "fieldTypes": {
283
+ "AntiMalwareFileHashPolicyMutations": true,
284
+ "PolicyElementAudit": true,
285
+ "PolicyElementPropertiesEnum": true,
286
+ "PolicyMutationError": true,
287
+ "PolicyMutationRevisionInput": true,
288
+ "PolicyMutationStatus": true,
289
+ "PolicySectionInfo": true,
290
+ "PolicySectionMutationPayload": true,
291
+ "PolicySectionPayload": true,
292
+ "PolicySectionPositionEnum": true,
293
+ "PolicySectionPositionInput": true
294
+ },
295
+ "isDeprecated": false,
296
+ "name": "policy",
297
+ "operationArgs": {
298
+ "accountId": {
299
+ "defaultValue": null,
300
+ "description": null,
301
+ "id_str": "accountId",
302
+ "name": "accountId",
303
+ "path": "accountId",
304
+ "requestStr": "$accountId:ID! ",
305
+ "required": true,
306
+ "responseStr": "accountId:$accountId ",
307
+ "type": {
308
+ "kind": [
309
+ "NON_NULL",
310
+ "SCALAR"
311
+ ],
312
+ "name": "ID",
313
+ "non_null": false
314
+ },
315
+ "varName": "accountId"
316
+ },
317
+ "antiMalwareFileHashPolicyMutationInput": {
318
+ "defaultValue": null,
319
+ "description": null,
320
+ "id_str": "antiMalwareFileHash___input",
321
+ "name": "input",
322
+ "path": "antiMalwareFileHash.input",
323
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
324
+ "required": false,
325
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
326
+ "type": {
327
+ "definition": {
328
+ "description": null,
329
+ "enumValues": null,
330
+ "fields": null,
331
+ "inputFields": {
332
+ "revision": {
333
+ "defaultValue": null,
334
+ "description": null,
335
+ "id_str": "antiMalwareFileHash___input___revision",
336
+ "name": "revision",
337
+ "path": "antiMalwareFileHash.input.revision",
338
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
339
+ "required": false,
340
+ "responseStr": "revision:$policyMutationRevisionInput ",
341
+ "type": {
342
+ "definition": {
343
+ "description": null,
344
+ "enumValues": null,
345
+ "fields": null,
346
+ "inputFields": {
347
+ "id": {
348
+ "defaultValue": null,
349
+ "description": null,
350
+ "id_str": "antiMalwareFileHash___input___revision___id",
351
+ "name": "id",
352
+ "path": "antiMalwareFileHash.input.revision.id",
353
+ "requestStr": "$id:ID ",
354
+ "required": false,
355
+ "responseStr": "id:$id ",
356
+ "type": {
357
+ "kind": [
358
+ "SCALAR"
359
+ ],
360
+ "name": "ID",
361
+ "non_null": false
362
+ },
363
+ "varName": "id"
364
+ }
365
+ },
366
+ "interfaces": null,
367
+ "kind": "INPUT_OBJECT",
368
+ "name": "PolicyMutationRevisionInput",
369
+ "possibleTypes": null
370
+ },
371
+ "indexType": "input_object",
372
+ "kind": [
373
+ "INPUT_OBJECT"
374
+ ],
375
+ "name": "PolicyMutationRevisionInput",
376
+ "non_null": false
377
+ },
378
+ "varName": "policyMutationRevisionInput"
379
+ }
380
+ },
381
+ "interfaces": null,
382
+ "kind": "INPUT_OBJECT",
383
+ "name": "AntiMalwareFileHashPolicyMutationInput",
384
+ "possibleTypes": null
385
+ },
386
+ "indexType": "input_object",
387
+ "kind": [
388
+ "INPUT_OBJECT"
389
+ ],
390
+ "name": "AntiMalwareFileHashPolicyMutationInput",
391
+ "non_null": false
392
+ },
393
+ "varName": "antiMalwareFileHashPolicyMutationInput"
394
+ },
395
+ "policyMoveSectionInput": {
396
+ "defaultValue": null,
397
+ "description": null,
398
+ "id_str": "moveSection___input",
399
+ "name": "input",
400
+ "path": "moveSection.input",
401
+ "requestStr": "$policyMoveSectionInput:PolicyMoveSectionInput! ",
402
+ "required": true,
403
+ "responseStr": "input:$policyMoveSectionInput ",
404
+ "type": {
405
+ "definition": {
406
+ "description": "Input for moving a section within a policy",
407
+ "enumValues": null,
408
+ "fields": null,
409
+ "inputFields": {
410
+ "id": {
411
+ "defaultValue": null,
412
+ "description": null,
413
+ "id_str": "moveSection___input___id",
414
+ "name": "id",
415
+ "path": "moveSection.input.id",
416
+ "requestStr": "$id:ID! ",
417
+ "required": true,
418
+ "responseStr": "id:$id ",
419
+ "type": {
420
+ "kind": [
421
+ "NON_NULL",
422
+ "SCALAR"
423
+ ],
424
+ "name": "ID",
425
+ "non_null": false
426
+ },
427
+ "varName": "id"
428
+ },
429
+ "to": {
430
+ "defaultValue": null,
431
+ "description": null,
432
+ "id_str": "moveSection___input___to",
433
+ "name": "to",
434
+ "path": "moveSection.input.to",
435
+ "requestStr": "$policySectionPositionInput:PolicySectionPositionInput ",
436
+ "required": false,
437
+ "responseStr": "to:$policySectionPositionInput ",
438
+ "type": {
439
+ "definition": {
440
+ "description": null,
441
+ "enumValues": null,
442
+ "fields": null,
443
+ "inputFields": {
444
+ "position": {
445
+ "defaultValue": null,
446
+ "description": null,
447
+ "id_str": "moveSection___input___to___position",
448
+ "name": "position",
449
+ "path": "moveSection.input.to.position",
450
+ "requestStr": "$position:PolicySectionPositionEnum! ",
451
+ "required": true,
452
+ "responseStr": "position:$position ",
453
+ "type": {
454
+ "definition": {
455
+ "description": null,
456
+ "enumValues": [
457
+ {
458
+ "deprecationReason": null,
459
+ "description": null,
460
+ "isDeprecated": false,
461
+ "name": "AFTER_SECTION"
462
+ },
463
+ {
464
+ "deprecationReason": null,
465
+ "description": null,
466
+ "isDeprecated": false,
467
+ "name": "BEFORE_SECTION"
468
+ },
469
+ {
470
+ "deprecationReason": null,
471
+ "description": null,
472
+ "isDeprecated": false,
473
+ "name": "LAST_IN_POLICY"
474
+ }
475
+ ],
476
+ "fields": null,
477
+ "inputFields": null,
478
+ "interfaces": null,
479
+ "kind": "ENUM",
480
+ "name": "PolicySectionPositionEnum",
481
+ "possibleTypes": null
482
+ },
483
+ "indexType": "enum",
484
+ "kind": [
485
+ "NON_NULL",
486
+ "ENUM"
487
+ ],
488
+ "name": "PolicySectionPositionEnum",
489
+ "non_null": false
490
+ },
491
+ "varName": "position"
492
+ },
493
+ "ref": {
494
+ "defaultValue": null,
495
+ "description": null,
496
+ "id_str": "moveSection___input___to___ref",
497
+ "name": "ref",
498
+ "path": "moveSection.input.to.ref",
499
+ "requestStr": "$ref:ID ",
500
+ "required": false,
501
+ "responseStr": "ref:$ref ",
502
+ "type": {
503
+ "kind": [
504
+ "SCALAR"
505
+ ],
506
+ "name": "ID",
507
+ "non_null": false
508
+ },
509
+ "varName": "ref"
510
+ }
511
+ },
512
+ "interfaces": null,
513
+ "kind": "INPUT_OBJECT",
514
+ "name": "PolicySectionPositionInput",
515
+ "possibleTypes": null
516
+ },
517
+ "indexType": "input_object",
518
+ "kind": [
519
+ "INPUT_OBJECT"
520
+ ],
521
+ "name": "PolicySectionPositionInput",
522
+ "non_null": false
523
+ },
524
+ "varName": "policySectionPositionInput"
525
+ }
526
+ },
527
+ "interfaces": null,
528
+ "kind": "INPUT_OBJECT",
529
+ "name": "PolicyMoveSectionInput",
530
+ "possibleTypes": null
531
+ },
532
+ "indexType": "input_object",
533
+ "kind": [
534
+ "NON_NULL",
535
+ "INPUT_OBJECT"
536
+ ],
537
+ "name": "PolicyMoveSectionInput",
538
+ "non_null": false
539
+ },
540
+ "varName": "policyMoveSectionInput"
541
+ }
542
+ },
543
+ "path": "mutation.policy.antiMalwareFileHash.moveSection",
544
+ "type": {
545
+ "definition": {
546
+ "description": "Policies that can be configured with mutation APIs.",
547
+ "enumValues": null,
548
+ "fields": {
549
+ "antiMalwareFileHash": {
550
+ "args": {
551
+ "antiMalwareFileHash___input": {
552
+ "defaultValue": null,
553
+ "description": null,
554
+ "id_str": "antiMalwareFileHash___input",
555
+ "name": "input",
556
+ "path": "antiMalwareFileHash.input",
557
+ "requestStr": "$antiMalwareFileHashPolicyMutationInput:AntiMalwareFileHashPolicyMutationInput ",
558
+ "required": false,
559
+ "responseStr": "input:$antiMalwareFileHashPolicyMutationInput ",
560
+ "type": {
561
+ "definition": {
562
+ "description": null,
563
+ "enumValues": null,
564
+ "fields": null,
565
+ "inputFields": {
566
+ "revision": {
567
+ "defaultValue": null,
568
+ "description": null,
569
+ "id_str": "antiMalwareFileHash___input___revision",
570
+ "name": "revision",
571
+ "path": "antiMalwareFileHash.input.revision",
572
+ "requestStr": "$policyMutationRevisionInput:PolicyMutationRevisionInput ",
573
+ "required": false,
574
+ "responseStr": "revision:$policyMutationRevisionInput ",
575
+ "type": {
576
+ "definition": {
577
+ "description": null,
578
+ "enumValues": null,
579
+ "fields": null,
580
+ "inputFields": {
581
+ "id": {
582
+ "defaultValue": null,
583
+ "description": null,
584
+ "id_str": "antiMalwareFileHash___input___revision___id",
585
+ "name": "id",
586
+ "path": "antiMalwareFileHash.input.revision.id",
587
+ "requestStr": "$id:ID ",
588
+ "required": false,
589
+ "responseStr": "id:$id ",
590
+ "type": {
591
+ "kind": [
592
+ "SCALAR"
593
+ ],
594
+ "name": "ID",
595
+ "non_null": false
596
+ },
597
+ "varName": "id"
598
+ }
599
+ },
600
+ "interfaces": null,
601
+ "kind": "INPUT_OBJECT",
602
+ "name": "PolicyMutationRevisionInput",
603
+ "possibleTypes": null
604
+ },
605
+ "indexType": "input_object",
606
+ "kind": [
607
+ "INPUT_OBJECT"
608
+ ],
609
+ "name": "PolicyMutationRevisionInput",
610
+ "non_null": false
611
+ },
612
+ "varName": "policyMutationRevisionInput"
613
+ }
614
+ },
615
+ "interfaces": null,
616
+ "kind": "INPUT_OBJECT",
617
+ "name": "AntiMalwareFileHashPolicyMutationInput",
618
+ "possibleTypes": null
619
+ },
620
+ "indexType": "input_object",
621
+ "kind": [
622
+ "INPUT_OBJECT"
623
+ ],
624
+ "name": "AntiMalwareFileHashPolicyMutationInput",
625
+ "non_null": false
626
+ },
627
+ "varName": "antiMalwareFileHashPolicyMutationInput"
628
+ }
629
+ },
630
+ "deprecationReason": null,
631
+ "description": null,
632
+ "id_str": "antiMalwareFileHash",
633
+ "isDeprecated": false,
634
+ "name": "antiMalwareFileHash",
635
+ "path": "antiMalwareFileHash",
636
+ "requestStr": "$antiMalwareFileHashPolicyMutations:AntiMalwareFileHashPolicyMutations ",
637
+ "required": false,
638
+ "responseStr": "antiMalwareFileHash:$antiMalwareFileHashPolicyMutations ",
639
+ "type": {
640
+ "definition": {
641
+ "description": null,
642
+ "enumValues": null,
643
+ "fields": {
644
+ "moveSection": {
645
+ "args": {
646
+ "moveSection___input": {
647
+ "defaultValue": null,
648
+ "description": null,
649
+ "id_str": "moveSection___input",
650
+ "name": "input",
651
+ "path": "moveSection.input",
652
+ "requestStr": "$policyMoveSectionInput:PolicyMoveSectionInput! ",
653
+ "required": true,
654
+ "responseStr": "input:$policyMoveSectionInput ",
655
+ "type": {
656
+ "definition": {
657
+ "description": "Input for moving a section within a policy",
658
+ "enumValues": null,
659
+ "fields": null,
660
+ "inputFields": {
661
+ "id": {
662
+ "defaultValue": null,
663
+ "description": null,
664
+ "id_str": "moveSection___input___id",
665
+ "name": "id",
666
+ "path": "moveSection.input.id",
667
+ "requestStr": "$id:ID! ",
668
+ "required": true,
669
+ "responseStr": "id:$id ",
670
+ "type": {
671
+ "kind": [
672
+ "NON_NULL",
673
+ "SCALAR"
674
+ ],
675
+ "name": "ID",
676
+ "non_null": false
677
+ },
678
+ "varName": "id"
679
+ },
680
+ "to": {
681
+ "defaultValue": null,
682
+ "description": null,
683
+ "id_str": "moveSection___input___to",
684
+ "name": "to",
685
+ "path": "moveSection.input.to",
686
+ "requestStr": "$policySectionPositionInput:PolicySectionPositionInput ",
687
+ "required": false,
688
+ "responseStr": "to:$policySectionPositionInput ",
689
+ "type": {
690
+ "definition": {
691
+ "description": null,
692
+ "enumValues": null,
693
+ "fields": null,
694
+ "inputFields": {
695
+ "position": {
696
+ "defaultValue": null,
697
+ "description": null,
698
+ "id_str": "moveSection___input___to___position",
699
+ "name": "position",
700
+ "path": "moveSection.input.to.position",
701
+ "requestStr": "$position:PolicySectionPositionEnum! ",
702
+ "required": true,
703
+ "responseStr": "position:$position ",
704
+ "type": {
705
+ "definition": {
706
+ "description": null,
707
+ "enumValues": [
708
+ {
709
+ "deprecationReason": null,
710
+ "description": null,
711
+ "isDeprecated": false,
712
+ "name": "AFTER_SECTION"
713
+ },
714
+ {
715
+ "deprecationReason": null,
716
+ "description": null,
717
+ "isDeprecated": false,
718
+ "name": "BEFORE_SECTION"
719
+ },
720
+ {
721
+ "deprecationReason": null,
722
+ "description": null,
723
+ "isDeprecated": false,
724
+ "name": "LAST_IN_POLICY"
725
+ }
726
+ ],
727
+ "fields": null,
728
+ "inputFields": null,
729
+ "interfaces": null,
730
+ "kind": "ENUM",
731
+ "name": "PolicySectionPositionEnum",
732
+ "possibleTypes": null
733
+ },
734
+ "indexType": "enum",
735
+ "kind": [
736
+ "NON_NULL",
737
+ "ENUM"
738
+ ],
739
+ "name": "PolicySectionPositionEnum",
740
+ "non_null": false
741
+ },
742
+ "varName": "position"
743
+ },
744
+ "ref": {
745
+ "defaultValue": null,
746
+ "description": null,
747
+ "id_str": "moveSection___input___to___ref",
748
+ "name": "ref",
749
+ "path": "moveSection.input.to.ref",
750
+ "requestStr": "$ref:ID ",
751
+ "required": false,
752
+ "responseStr": "ref:$ref ",
753
+ "type": {
754
+ "kind": [
755
+ "SCALAR"
756
+ ],
757
+ "name": "ID",
758
+ "non_null": false
759
+ },
760
+ "varName": "ref"
761
+ }
762
+ },
763
+ "interfaces": null,
764
+ "kind": "INPUT_OBJECT",
765
+ "name": "PolicySectionPositionInput",
766
+ "possibleTypes": null
767
+ },
768
+ "indexType": "input_object",
769
+ "kind": [
770
+ "INPUT_OBJECT"
771
+ ],
772
+ "name": "PolicySectionPositionInput",
773
+ "non_null": false
774
+ },
775
+ "varName": "policySectionPositionInput"
776
+ }
777
+ },
778
+ "interfaces": null,
779
+ "kind": "INPUT_OBJECT",
780
+ "name": "PolicyMoveSectionInput",
781
+ "possibleTypes": null
782
+ },
783
+ "indexType": "input_object",
784
+ "kind": [
785
+ "NON_NULL",
786
+ "INPUT_OBJECT"
787
+ ],
788
+ "name": "PolicyMoveSectionInput",
789
+ "non_null": false
790
+ },
791
+ "varName": "policyMoveSectionInput"
792
+ }
793
+ },
794
+ "deprecationReason": null,
795
+ "description": null,
796
+ "id_str": "antiMalwareFileHash___moveSection",
797
+ "isDeprecated": false,
798
+ "name": "moveSection",
799
+ "path": "antiMalwareFileHash.moveSection",
800
+ "requestStr": "$policySectionMutationPayload:PolicySectionMutationPayload! ",
801
+ "required": true,
802
+ "responseStr": "moveSection:$policySectionMutationPayload ",
803
+ "type": {
804
+ "definition": {
805
+ "description": null,
806
+ "enumValues": null,
807
+ "fields": {
808
+ "errors": {
809
+ "alias": "errorsPolicySectionMutationPayload: errors",
810
+ "args": {},
811
+ "deprecationReason": null,
812
+ "description": null,
813
+ "id_str": "antiMalwareFileHash___moveSection___errors",
814
+ "isDeprecated": false,
815
+ "name": "errors",
816
+ "path": "antiMalwareFileHash.moveSection.errors",
817
+ "requestStr": "$policyMutationError:[PolicyMutationError]! ",
818
+ "required": true,
819
+ "responseStr": "errors:$policyMutationError ",
820
+ "type": {
821
+ "definition": {
822
+ "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\"",
823
+ "enumValues": null,
824
+ "fields": {
825
+ "errorCode": {
826
+ "args": {},
827
+ "deprecationReason": null,
828
+ "description": null,
829
+ "id_str": "antiMalwareFileHash___moveSection___errors___errorCode",
830
+ "isDeprecated": false,
831
+ "name": "errorCode",
832
+ "path": "antiMalwareFileHash.moveSection.errors.errorCode",
833
+ "requestStr": "$errorCode:String ",
834
+ "required": false,
835
+ "responseStr": "errorCode:$errorCode ",
836
+ "type": {
837
+ "kind": [
838
+ "SCALAR"
839
+ ],
840
+ "name": "String",
841
+ "non_null": false
842
+ },
843
+ "varName": "errorCode"
844
+ },
845
+ "errorMessage": {
846
+ "args": {},
847
+ "deprecationReason": null,
848
+ "description": null,
849
+ "id_str": "antiMalwareFileHash___moveSection___errors___errorMessage",
850
+ "isDeprecated": false,
851
+ "name": "errorMessage",
852
+ "path": "antiMalwareFileHash.moveSection.errors.errorMessage",
853
+ "requestStr": "$errorMessage:String ",
854
+ "required": false,
855
+ "responseStr": "errorMessage:$errorMessage ",
856
+ "type": {
857
+ "kind": [
858
+ "SCALAR"
859
+ ],
860
+ "name": "String",
861
+ "non_null": false
862
+ },
863
+ "varName": "errorMessage"
864
+ }
865
+ },
866
+ "inputFields": null,
867
+ "interfaces": {},
868
+ "kind": "OBJECT",
869
+ "name": "PolicyMutationError",
870
+ "possibleTypes": null
871
+ },
872
+ "indexType": "object",
873
+ "kind": [
874
+ "NON_NULL",
875
+ "LIST",
876
+ "NON_NULL",
877
+ "OBJECT"
878
+ ],
879
+ "name": "PolicyMutationError",
880
+ "non_null": false
881
+ },
882
+ "varName": "policyMutationError"
883
+ },
884
+ "section": {
885
+ "alias": "sectionPolicySectionMutationPayload: section",
886
+ "args": {},
887
+ "deprecationReason": null,
888
+ "description": null,
889
+ "id_str": "antiMalwareFileHash___moveSection___section",
890
+ "isDeprecated": false,
891
+ "name": "section",
892
+ "path": "antiMalwareFileHash.moveSection.section",
893
+ "requestStr": "$policySectionPayload:PolicySectionPayload ",
894
+ "required": false,
895
+ "responseStr": "section:$policySectionPayload ",
896
+ "type": {
897
+ "definition": {
898
+ "description": null,
899
+ "enumValues": null,
900
+ "fields": {
901
+ "audit": {
902
+ "args": {},
903
+ "deprecationReason": null,
904
+ "description": null,
905
+ "id_str": "antiMalwareFileHash___moveSection___section___audit",
906
+ "isDeprecated": false,
907
+ "name": "audit",
908
+ "path": "antiMalwareFileHash.moveSection.section.audit",
909
+ "requestStr": "$policyElementAudit:PolicyElementAudit! ",
910
+ "required": true,
911
+ "responseStr": "audit:$policyElementAudit ",
912
+ "type": {
913
+ "definition": {
914
+ "description": null,
915
+ "enumValues": null,
916
+ "fields": {
917
+ "updatedBy": {
918
+ "args": {},
919
+ "deprecationReason": null,
920
+ "description": "The admin, or the API-key, that performed the last update",
921
+ "id_str": "antiMalwareFileHash___moveSection___section___audit___updatedBy",
922
+ "isDeprecated": false,
923
+ "name": "updatedBy",
924
+ "path": "antiMalwareFileHash.moveSection.section.audit.updatedBy",
925
+ "requestStr": "$updatedBy:String! ",
926
+ "required": true,
927
+ "responseStr": "updatedBy:$updatedBy ",
928
+ "type": {
929
+ "kind": [
930
+ "NON_NULL",
931
+ "SCALAR"
932
+ ],
933
+ "name": "String",
934
+ "non_null": false
935
+ },
936
+ "varName": "updatedBy"
937
+ },
938
+ "updatedTime": {
939
+ "args": {},
940
+ "deprecationReason": null,
941
+ "description": "The last date and time the rule was updated",
942
+ "id_str": "antiMalwareFileHash___moveSection___section___audit___updatedTime",
943
+ "isDeprecated": false,
944
+ "name": "updatedTime",
945
+ "path": "antiMalwareFileHash.moveSection.section.audit.updatedTime",
946
+ "requestStr": "$updatedTime:DateTime! ",
947
+ "required": true,
948
+ "responseStr": "updatedTime:$updatedTime ",
949
+ "type": {
950
+ "kind": [
951
+ "NON_NULL",
952
+ "SCALAR"
953
+ ],
954
+ "name": "DateTime",
955
+ "non_null": false
956
+ },
957
+ "varName": "updatedTime"
958
+ }
959
+ },
960
+ "inputFields": null,
961
+ "interfaces": {},
962
+ "kind": "OBJECT",
963
+ "name": "PolicyElementAudit",
964
+ "possibleTypes": null
965
+ },
966
+ "indexType": "object",
967
+ "kind": [
968
+ "NON_NULL",
969
+ "OBJECT"
970
+ ],
971
+ "name": "PolicyElementAudit",
972
+ "non_null": false
973
+ },
974
+ "varName": "policyElementAudit"
975
+ },
976
+ "properties": {
977
+ "args": {},
978
+ "deprecationReason": null,
979
+ "description": null,
980
+ "id_str": "antiMalwareFileHash___moveSection___section___properties",
981
+ "isDeprecated": false,
982
+ "name": "properties",
983
+ "path": "antiMalwareFileHash.moveSection.section.properties",
984
+ "requestStr": "$properties:[PolicyElementPropertiesEnum]! ",
985
+ "required": true,
986
+ "responseStr": "properties:$properties ",
987
+ "type": {
988
+ "definition": {
989
+ "description": "Attributes describing the rule state or type",
990
+ "enumValues": [
991
+ {
992
+ "deprecationReason": null,
993
+ "description": "New (added) rule",
994
+ "isDeprecated": false,
995
+ "name": "ADDED"
996
+ },
997
+ {
998
+ "deprecationReason": null,
999
+ "description": "Updated (modified) existing rule",
1000
+ "isDeprecated": false,
1001
+ "name": "UPDATED"
1002
+ },
1003
+ {
1004
+ "deprecationReason": null,
1005
+ "description": "Removed (deleted) rule",
1006
+ "isDeprecated": false,
1007
+ "name": "REMOVED"
1008
+ },
1009
+ {
1010
+ "deprecationReason": null,
1011
+ "description": "A rule moved to a different position",
1012
+ "isDeprecated": false,
1013
+ "name": "MOVED"
1014
+ },
1015
+ {
1016
+ "deprecationReason": null,
1017
+ "description": "A rule locked for changes by other admins",
1018
+ "isDeprecated": false,
1019
+ "name": "LOCKED"
1020
+ },
1021
+ {
1022
+ "deprecationReason": null,
1023
+ "description": "An object can not be moved, or referenced when moving other objects.\nHowever its properties and content can be modified.",
1024
+ "isDeprecated": false,
1025
+ "name": "ANCHORED"
1026
+ },
1027
+ {
1028
+ "deprecationReason": null,
1029
+ "description": "A pre-defined (system) rule that cannot be modified or removed",
1030
+ "isDeprecated": false,
1031
+ "name": "SYSTEM"
1032
+ }
1033
+ ],
1034
+ "fields": null,
1035
+ "inputFields": null,
1036
+ "interfaces": null,
1037
+ "kind": "ENUM",
1038
+ "name": "PolicyElementPropertiesEnum",
1039
+ "possibleTypes": null
1040
+ },
1041
+ "indexType": "enum",
1042
+ "kind": [
1043
+ "NON_NULL",
1044
+ "LIST",
1045
+ "NON_NULL",
1046
+ "ENUM"
1047
+ ],
1048
+ "name": "PolicyElementPropertiesEnum",
1049
+ "non_null": false
1050
+ },
1051
+ "varName": "properties"
1052
+ },
1053
+ "section": {
1054
+ "args": {},
1055
+ "deprecationReason": null,
1056
+ "description": null,
1057
+ "id_str": "antiMalwareFileHash___moveSection___section___section",
1058
+ "isDeprecated": false,
1059
+ "name": "section",
1060
+ "path": "antiMalwareFileHash.moveSection.section.section",
1061
+ "requestStr": "$policySectionInfo:PolicySectionInfo! ",
1062
+ "required": true,
1063
+ "responseStr": "section:$policySectionInfo ",
1064
+ "type": {
1065
+ "definition": {
1066
+ "description": "Define settings for a policy section",
1067
+ "enumValues": null,
1068
+ "fields": {
1069
+ "id": {
1070
+ "args": {},
1071
+ "deprecationReason": null,
1072
+ "description": null,
1073
+ "id_str": "antiMalwareFileHash___moveSection___section___section___id",
1074
+ "isDeprecated": false,
1075
+ "name": "id",
1076
+ "path": "antiMalwareFileHash.moveSection.section.section.id",
1077
+ "requestStr": "$id:ID! ",
1078
+ "required": true,
1079
+ "responseStr": "id:$id ",
1080
+ "type": {
1081
+ "kind": [
1082
+ "NON_NULL",
1083
+ "SCALAR"
1084
+ ],
1085
+ "name": "ID",
1086
+ "non_null": false
1087
+ },
1088
+ "varName": "id"
1089
+ },
1090
+ "name": {
1091
+ "args": {},
1092
+ "deprecationReason": null,
1093
+ "description": null,
1094
+ "id_str": "antiMalwareFileHash___moveSection___section___section___name",
1095
+ "isDeprecated": false,
1096
+ "name": "name",
1097
+ "path": "antiMalwareFileHash.moveSection.section.section.name",
1098
+ "requestStr": "$name:String! ",
1099
+ "required": true,
1100
+ "responseStr": "name:$name ",
1101
+ "type": {
1102
+ "kind": [
1103
+ "NON_NULL",
1104
+ "SCALAR"
1105
+ ],
1106
+ "name": "String",
1107
+ "non_null": false
1108
+ },
1109
+ "varName": "name"
1110
+ }
1111
+ },
1112
+ "inputFields": null,
1113
+ "interfaces": {},
1114
+ "kind": "OBJECT",
1115
+ "name": "PolicySectionInfo",
1116
+ "possibleTypes": null
1117
+ },
1118
+ "indexType": "object",
1119
+ "kind": [
1120
+ "NON_NULL",
1121
+ "OBJECT"
1122
+ ],
1123
+ "name": "PolicySectionInfo",
1124
+ "non_null": false
1125
+ },
1126
+ "varName": "policySectionInfo"
1127
+ }
1128
+ },
1129
+ "inputFields": null,
1130
+ "interfaces": {},
1131
+ "kind": "OBJECT",
1132
+ "name": "PolicySectionPayload",
1133
+ "possibleTypes": null
1134
+ },
1135
+ "indexType": "object",
1136
+ "kind": [
1137
+ "OBJECT"
1138
+ ],
1139
+ "name": "PolicySectionPayload",
1140
+ "non_null": false
1141
+ },
1142
+ "varName": "policySectionPayload"
1143
+ },
1144
+ "status": {
1145
+ "alias": "statusPolicySectionMutationPayload: status",
1146
+ "args": {},
1147
+ "deprecationReason": null,
1148
+ "description": null,
1149
+ "id_str": "antiMalwareFileHash___moveSection___status",
1150
+ "isDeprecated": false,
1151
+ "name": "status",
1152
+ "path": "antiMalwareFileHash.moveSection.status",
1153
+ "requestStr": "$status:PolicyMutationStatus! ",
1154
+ "required": true,
1155
+ "responseStr": "status:$status ",
1156
+ "type": {
1157
+ "definition": {
1158
+ "description": "Enum for the status of a policy mutation",
1159
+ "enumValues": [
1160
+ {
1161
+ "deprecationReason": null,
1162
+ "description": null,
1163
+ "isDeprecated": false,
1164
+ "name": "SUCCESS"
1165
+ },
1166
+ {
1167
+ "deprecationReason": null,
1168
+ "description": null,
1169
+ "isDeprecated": false,
1170
+ "name": "FAILURE"
1171
+ }
1172
+ ],
1173
+ "fields": null,
1174
+ "inputFields": null,
1175
+ "interfaces": null,
1176
+ "kind": "ENUM",
1177
+ "name": "PolicyMutationStatus",
1178
+ "possibleTypes": null
1179
+ },
1180
+ "indexType": "enum",
1181
+ "kind": [
1182
+ "NON_NULL",
1183
+ "ENUM"
1184
+ ],
1185
+ "name": "PolicyMutationStatus",
1186
+ "non_null": false
1187
+ },
1188
+ "varName": "status"
1189
+ }
1190
+ },
1191
+ "inputFields": null,
1192
+ "interfaces": {},
1193
+ "kind": "OBJECT",
1194
+ "name": "PolicySectionMutationPayload",
1195
+ "possibleTypes": null
1196
+ },
1197
+ "indexType": "object",
1198
+ "kind": [
1199
+ "NON_NULL",
1200
+ "OBJECT"
1201
+ ],
1202
+ "name": "PolicySectionMutationPayload",
1203
+ "non_null": false
1204
+ },
1205
+ "varName": "policySectionMutationPayload"
1206
+ }
1207
+ },
1208
+ "inputFields": null,
1209
+ "interfaces": {},
1210
+ "kind": "OBJECT",
1211
+ "name": "AntiMalwareFileHashPolicyMutations",
1212
+ "possibleTypes": null
1213
+ },
1214
+ "indexType": "object",
1215
+ "kind": [
1216
+ "OBJECT"
1217
+ ],
1218
+ "name": "AntiMalwareFileHashPolicyMutations",
1219
+ "non_null": false
1220
+ },
1221
+ "varName": "antiMalwareFileHashPolicyMutations"
1222
+ }
1223
+ },
1224
+ "inputFields": null,
1225
+ "interfaces": [],
1226
+ "kind": "OBJECT",
1227
+ "name": "PolicyMutations",
1228
+ "possibleTypes": null
1229
+ },
1230
+ "indexType": "object",
1231
+ "kind": [
1232
+ "OBJECT"
1233
+ ],
1234
+ "name": "PolicyMutations",
1235
+ "non_null": false
1236
+ },
1237
+ "variablesPayload": {
1238
+ "antiMalwareFileHashPolicyMutationInput": {
1239
+ "policyMutationRevisionInput": {
1240
+ "id": "id"
1241
+ }
1242
+ },
1243
+ "policyMoveSectionInput": {
1244
+ "id": "id",
1245
+ "policySectionPositionInput": {
1246
+ "position": "AFTER_SECTION",
1247
+ "ref": "id"
1248
+ }
1249
+ }
1250
+ }
1251
+ }