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