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,931 @@
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
+ "updateCommercialLicense": {
25
+ "args": {
26
+ "updateCommercialLicense___input": {
27
+ "defaultValue": null,
28
+ "description": null,
29
+ "id_str": "updateCommercialLicense___input",
30
+ "name": "input",
31
+ "path": "updateCommercialLicense.input",
32
+ "requestStr": "$updateCommercialLicenseInput:UpdateCommercialLicenseInput! ",
33
+ "required": true,
34
+ "responseStr": "input:$updateCommercialLicenseInput ",
35
+ "type": {
36
+ "definition": {
37
+ "description": null,
38
+ "enumValues": null,
39
+ "fields": null,
40
+ "inputFields": {
41
+ "licenseId": {
42
+ "defaultValue": null,
43
+ "description": "The unique identifier of the license to update",
44
+ "id_str": "updateCommercialLicense___input___licenseId",
45
+ "name": "licenseId",
46
+ "path": "updateCommercialLicense.input.licenseId",
47
+ "requestStr": "$licenseId:ID! ",
48
+ "required": true,
49
+ "responseStr": "licenseId:$licenseId ",
50
+ "type": {
51
+ "kind": [
52
+ "NON_NULL",
53
+ "SCALAR"
54
+ ],
55
+ "name": "ID",
56
+ "non_null": false
57
+ },
58
+ "varName": "licenseId"
59
+ },
60
+ "startDate": {
61
+ "defaultValue": null,
62
+ "description": "The desired start date for the license activation",
63
+ "id_str": "updateCommercialLicense___input___startDate",
64
+ "name": "startDate",
65
+ "path": "updateCommercialLicense.input.startDate",
66
+ "requestStr": "$startDate:DateTime ",
67
+ "required": false,
68
+ "responseStr": "startDate:$startDate ",
69
+ "type": {
70
+ "kind": [
71
+ "SCALAR"
72
+ ],
73
+ "name": "DateTime",
74
+ "non_null": false
75
+ },
76
+ "varName": "startDate"
77
+ }
78
+ },
79
+ "interfaces": null,
80
+ "kind": "INPUT_OBJECT",
81
+ "name": "UpdateCommercialLicenseInput",
82
+ "possibleTypes": null
83
+ },
84
+ "indexType": "input_object",
85
+ "kind": [
86
+ "NON_NULL",
87
+ "INPUT_OBJECT"
88
+ ],
89
+ "name": "UpdateCommercialLicenseInput",
90
+ "non_null": false
91
+ },
92
+ "varName": "updateCommercialLicenseInput"
93
+ }
94
+ },
95
+ "deprecationReason": null,
96
+ "description": "BETA",
97
+ "isDeprecated": false,
98
+ "name": "updateCommercialLicense",
99
+ "type": {
100
+ "kind": "OBJECT",
101
+ "name": "UpdateCommercialLicensePayload",
102
+ "ofType": null
103
+ }
104
+ }
105
+ },
106
+ "deprecationReason": null,
107
+ "description": null,
108
+ "fieldTypes": {
109
+ "License": true,
110
+ "LicensePlan": true,
111
+ "LicenseSku": true,
112
+ "LicenseStatus": true,
113
+ "UpdateCommercialLicensePayload": true
114
+ },
115
+ "isDeprecated": false,
116
+ "name": "licensing",
117
+ "operationArgs": {
118
+ "accountId": {
119
+ "defaultValue": null,
120
+ "description": null,
121
+ "id_str": "accountId",
122
+ "name": "accountId",
123
+ "path": "accountId",
124
+ "requestStr": "$accountId:ID! ",
125
+ "required": true,
126
+ "responseStr": "accountId:$accountId ",
127
+ "type": {
128
+ "kind": [
129
+ "NON_NULL",
130
+ "SCALAR"
131
+ ],
132
+ "name": "ID",
133
+ "non_null": false
134
+ },
135
+ "varName": "accountId"
136
+ },
137
+ "updateCommercialLicenseInput": {
138
+ "defaultValue": null,
139
+ "description": null,
140
+ "id_str": "updateCommercialLicense___input",
141
+ "name": "input",
142
+ "path": "updateCommercialLicense.input",
143
+ "requestStr": "$updateCommercialLicenseInput:UpdateCommercialLicenseInput! ",
144
+ "required": true,
145
+ "responseStr": "input:$updateCommercialLicenseInput ",
146
+ "type": {
147
+ "definition": {
148
+ "description": null,
149
+ "enumValues": null,
150
+ "fields": null,
151
+ "inputFields": {
152
+ "licenseId": {
153
+ "defaultValue": null,
154
+ "description": "The unique identifier of the license to update",
155
+ "id_str": "updateCommercialLicense___input___licenseId",
156
+ "name": "licenseId",
157
+ "path": "updateCommercialLicense.input.licenseId",
158
+ "requestStr": "$licenseId:ID! ",
159
+ "required": true,
160
+ "responseStr": "licenseId:$licenseId ",
161
+ "type": {
162
+ "kind": [
163
+ "NON_NULL",
164
+ "SCALAR"
165
+ ],
166
+ "name": "ID",
167
+ "non_null": false
168
+ },
169
+ "varName": "licenseId"
170
+ },
171
+ "startDate": {
172
+ "defaultValue": null,
173
+ "description": "The desired start date for the license activation",
174
+ "id_str": "updateCommercialLicense___input___startDate",
175
+ "name": "startDate",
176
+ "path": "updateCommercialLicense.input.startDate",
177
+ "requestStr": "$startDate:DateTime ",
178
+ "required": false,
179
+ "responseStr": "startDate:$startDate ",
180
+ "type": {
181
+ "kind": [
182
+ "SCALAR"
183
+ ],
184
+ "name": "DateTime",
185
+ "non_null": false
186
+ },
187
+ "varName": "startDate"
188
+ }
189
+ },
190
+ "interfaces": null,
191
+ "kind": "INPUT_OBJECT",
192
+ "name": "UpdateCommercialLicenseInput",
193
+ "possibleTypes": null
194
+ },
195
+ "indexType": "input_object",
196
+ "kind": [
197
+ "NON_NULL",
198
+ "INPUT_OBJECT"
199
+ ],
200
+ "name": "UpdateCommercialLicenseInput",
201
+ "non_null": false
202
+ },
203
+ "varName": "updateCommercialLicenseInput"
204
+ }
205
+ },
206
+ "path": "mutation.licensing.updateCommercialLicense",
207
+ "type": {
208
+ "definition": {
209
+ "description": null,
210
+ "enumValues": null,
211
+ "fields": {
212
+ "updateCommercialLicense": {
213
+ "args": {
214
+ "updateCommercialLicense___input": {
215
+ "defaultValue": null,
216
+ "description": null,
217
+ "id_str": "updateCommercialLicense___input",
218
+ "name": "input",
219
+ "path": "updateCommercialLicense.input",
220
+ "requestStr": "$updateCommercialLicenseInput:UpdateCommercialLicenseInput! ",
221
+ "required": true,
222
+ "responseStr": "input:$updateCommercialLicenseInput ",
223
+ "type": {
224
+ "definition": {
225
+ "description": null,
226
+ "enumValues": null,
227
+ "fields": null,
228
+ "inputFields": {
229
+ "licenseId": {
230
+ "defaultValue": null,
231
+ "description": "The unique identifier of the license to update",
232
+ "id_str": "updateCommercialLicense___input___licenseId",
233
+ "name": "licenseId",
234
+ "path": "updateCommercialLicense.input.licenseId",
235
+ "requestStr": "$licenseId:ID! ",
236
+ "required": true,
237
+ "responseStr": "licenseId:$licenseId ",
238
+ "type": {
239
+ "kind": [
240
+ "NON_NULL",
241
+ "SCALAR"
242
+ ],
243
+ "name": "ID",
244
+ "non_null": false
245
+ },
246
+ "varName": "licenseId"
247
+ },
248
+ "startDate": {
249
+ "defaultValue": null,
250
+ "description": "The desired start date for the license activation",
251
+ "id_str": "updateCommercialLicense___input___startDate",
252
+ "name": "startDate",
253
+ "path": "updateCommercialLicense.input.startDate",
254
+ "requestStr": "$startDate:DateTime ",
255
+ "required": false,
256
+ "responseStr": "startDate:$startDate ",
257
+ "type": {
258
+ "kind": [
259
+ "SCALAR"
260
+ ],
261
+ "name": "DateTime",
262
+ "non_null": false
263
+ },
264
+ "varName": "startDate"
265
+ }
266
+ },
267
+ "interfaces": null,
268
+ "kind": "INPUT_OBJECT",
269
+ "name": "UpdateCommercialLicenseInput",
270
+ "possibleTypes": null
271
+ },
272
+ "indexType": "input_object",
273
+ "kind": [
274
+ "NON_NULL",
275
+ "INPUT_OBJECT"
276
+ ],
277
+ "name": "UpdateCommercialLicenseInput",
278
+ "non_null": false
279
+ },
280
+ "varName": "updateCommercialLicenseInput"
281
+ }
282
+ },
283
+ "deprecationReason": null,
284
+ "description": "BETA",
285
+ "id_str": "updateCommercialLicense",
286
+ "isDeprecated": false,
287
+ "name": "updateCommercialLicense",
288
+ "path": "updateCommercialLicense",
289
+ "requestStr": "$updateCommercialLicensePayload:UpdateCommercialLicensePayload ",
290
+ "required": false,
291
+ "responseStr": "updateCommercialLicense:$updateCommercialLicensePayload ",
292
+ "type": {
293
+ "definition": {
294
+ "description": null,
295
+ "enumValues": null,
296
+ "fields": {
297
+ "license": {
298
+ "args": {},
299
+ "deprecationReason": null,
300
+ "description": "The license that was modified",
301
+ "id_str": "updateCommercialLicense___license",
302
+ "isDeprecated": false,
303
+ "name": "license",
304
+ "path": "updateCommercialLicense.license",
305
+ "requestStr": "$license:License! ",
306
+ "required": true,
307
+ "responseStr": "license:$license ",
308
+ "type": {
309
+ "definition": {
310
+ "description": "An interface containing properties that are common to all license types",
311
+ "enumValues": null,
312
+ "fields": {
313
+ "description": {
314
+ "args": {},
315
+ "deprecationReason": null,
316
+ "description": null,
317
+ "id_str": "updateCommercialLicense___license___description",
318
+ "isDeprecated": false,
319
+ "name": "description",
320
+ "path": "updateCommercialLicense.license.description",
321
+ "requestStr": "$description:String ",
322
+ "required": false,
323
+ "responseStr": "description:$description ",
324
+ "type": {
325
+ "kind": [
326
+ "SCALAR"
327
+ ],
328
+ "name": "String",
329
+ "non_null": false
330
+ },
331
+ "varName": "description"
332
+ },
333
+ "expirationDate": {
334
+ "args": {},
335
+ "deprecationReason": null,
336
+ "description": "License expiration date",
337
+ "id_str": "updateCommercialLicense___license___expirationDate",
338
+ "isDeprecated": false,
339
+ "name": "expirationDate",
340
+ "path": "updateCommercialLicense.license.expirationDate",
341
+ "requestStr": "$expirationDate:DateTime! ",
342
+ "required": true,
343
+ "responseStr": "expirationDate:$expirationDate ",
344
+ "type": {
345
+ "kind": [
346
+ "NON_NULL",
347
+ "SCALAR"
348
+ ],
349
+ "name": "DateTime",
350
+ "non_null": false
351
+ },
352
+ "varName": "expirationDate"
353
+ },
354
+ "id": {
355
+ "args": {},
356
+ "deprecationReason": null,
357
+ "description": "The unique identifier for the license. If this value is not available, you can contact Cato Support, who may be able to assist in retrieving it.",
358
+ "id_str": "updateCommercialLicense___license___id",
359
+ "isDeprecated": false,
360
+ "name": "id",
361
+ "path": "updateCommercialLicense.license.id",
362
+ "requestStr": "$id:ID ",
363
+ "required": false,
364
+ "responseStr": "id:$id ",
365
+ "type": {
366
+ "kind": [
367
+ "SCALAR"
368
+ ],
369
+ "name": "ID",
370
+ "non_null": false
371
+ },
372
+ "varName": "id"
373
+ },
374
+ "lastUpdated": {
375
+ "args": {},
376
+ "deprecationReason": null,
377
+ "description": "The date of the last update to the license",
378
+ "id_str": "updateCommercialLicense___license___lastUpdated",
379
+ "isDeprecated": false,
380
+ "name": "lastUpdated",
381
+ "path": "updateCommercialLicense.license.lastUpdated",
382
+ "requestStr": "$lastUpdated:DateTime ",
383
+ "required": false,
384
+ "responseStr": "lastUpdated:$lastUpdated ",
385
+ "type": {
386
+ "kind": [
387
+ "SCALAR"
388
+ ],
389
+ "name": "DateTime",
390
+ "non_null": false
391
+ },
392
+ "varName": "lastUpdated"
393
+ },
394
+ "plan": {
395
+ "alias": "planLicense: plan",
396
+ "args": {},
397
+ "deprecationReason": null,
398
+ "description": "License plan type",
399
+ "id_str": "updateCommercialLicense___license___plan",
400
+ "isDeprecated": false,
401
+ "name": "plan",
402
+ "path": "updateCommercialLicense.license.plan",
403
+ "requestStr": "$plan:LicensePlan! ",
404
+ "required": true,
405
+ "responseStr": "plan:$plan ",
406
+ "type": {
407
+ "definition": {
408
+ "description": "enum for license plan type (site license, service license, etc...)",
409
+ "enumValues": [
410
+ {
411
+ "deprecationReason": null,
412
+ "description": null,
413
+ "isDeprecated": false,
414
+ "name": "COMMERCIAL"
415
+ },
416
+ {
417
+ "deprecationReason": null,
418
+ "description": null,
419
+ "isDeprecated": false,
420
+ "name": "TRIAL"
421
+ }
422
+ ],
423
+ "fields": null,
424
+ "inputFields": null,
425
+ "interfaces": null,
426
+ "kind": "ENUM",
427
+ "name": "LicensePlan",
428
+ "possibleTypes": null
429
+ },
430
+ "indexType": "enum",
431
+ "kind": [
432
+ "NON_NULL",
433
+ "ENUM"
434
+ ],
435
+ "name": "LicensePlan",
436
+ "non_null": false
437
+ },
438
+ "varName": "plan"
439
+ },
440
+ "sku": {
441
+ "alias": "skuLicense: sku",
442
+ "args": {},
443
+ "deprecationReason": null,
444
+ "description": "The license SKU",
445
+ "id_str": "updateCommercialLicense___license___sku",
446
+ "isDeprecated": false,
447
+ "name": "sku",
448
+ "path": "updateCommercialLicense.license.sku",
449
+ "requestStr": "$sku:LicenseSku! ",
450
+ "required": true,
451
+ "responseStr": "sku:$sku ",
452
+ "type": {
453
+ "definition": {
454
+ "description": null,
455
+ "enumValues": [
456
+ {
457
+ "deprecationReason": null,
458
+ "description": "Site bandwidth SASE SKU",
459
+ "isDeprecated": false,
460
+ "name": "CATO_SITE"
461
+ },
462
+ {
463
+ "deprecationReason": null,
464
+ "description": "Site bandwidth SSE SKU",
465
+ "isDeprecated": false,
466
+ "name": "CATO_SSE_SITE"
467
+ },
468
+ {
469
+ "deprecationReason": null,
470
+ "description": "Site pooled bandwidth SASE SKU",
471
+ "isDeprecated": false,
472
+ "name": "CATO_PB"
473
+ },
474
+ {
475
+ "deprecationReason": null,
476
+ "description": "Site pooled bandwidth SSE SKU",
477
+ "isDeprecated": false,
478
+ "name": "CATO_PB_SSE"
479
+ },
480
+ {
481
+ "deprecationReason": "replaced with CATO_ZTNA_USERS",
482
+ "description": "ZTNA remote users SKU",
483
+ "isDeprecated": true,
484
+ "name": "MOBILE_USERS"
485
+ },
486
+ {
487
+ "deprecationReason": null,
488
+ "description": "ZTNA remote users SKU",
489
+ "isDeprecated": false,
490
+ "name": "CATO_ZTNA_USERS"
491
+ },
492
+ {
493
+ "deprecationReason": null,
494
+ "description": "Cato EPP service SKU",
495
+ "isDeprecated": false,
496
+ "name": "CATO_EPP"
497
+ },
498
+ {
499
+ "deprecationReason": null,
500
+ "description": "Cato IPS (legacy) service SKU",
501
+ "isDeprecated": false,
502
+ "name": "CATO_IPS"
503
+ },
504
+ {
505
+ "deprecationReason": null,
506
+ "description": "Cato Anti Malware (legacy) service SKU",
507
+ "isDeprecated": false,
508
+ "name": "CATO_ANTI_MALWARE"
509
+ },
510
+ {
511
+ "deprecationReason": null,
512
+ "description": "Cato Anti Malware Next Generation (legacy) service SKU",
513
+ "isDeprecated": false,
514
+ "name": "CATO_ANTI_MALWARE_NG"
515
+ },
516
+ {
517
+ "deprecationReason": null,
518
+ "description": "Cato CASB service SKU",
519
+ "isDeprecated": false,
520
+ "name": "CATO_CASB"
521
+ },
522
+ {
523
+ "deprecationReason": null,
524
+ "description": "Cato DLP service SKU",
525
+ "isDeprecated": false,
526
+ "name": "CATO_DLP"
527
+ },
528
+ {
529
+ "deprecationReason": null,
530
+ "description": "Cato ILMM service SKU",
531
+ "isDeprecated": false,
532
+ "name": "CATO_ILMM"
533
+ },
534
+ {
535
+ "deprecationReason": null,
536
+ "description": "Cato MDR service SKU",
537
+ "isDeprecated": false,
538
+ "name": "CATO_MDR"
539
+ },
540
+ {
541
+ "deprecationReason": null,
542
+ "description": "Cato Managed XDR service SKU",
543
+ "isDeprecated": false,
544
+ "name": "CATO_MANAGED_XDR"
545
+ },
546
+ {
547
+ "deprecationReason": null,
548
+ "description": "Cato NOCaaS service SKU",
549
+ "isDeprecated": false,
550
+ "name": "CATO_NOCAAS_HF"
551
+ },
552
+ {
553
+ "deprecationReason": null,
554
+ "description": "Cato Remote Browser Isolation (RBI) service SKU",
555
+ "isDeprecated": false,
556
+ "name": "CATO_RBI"
557
+ },
558
+ {
559
+ "deprecationReason": null,
560
+ "description": "Cato SAAS Group SKU",
561
+ "isDeprecated": false,
562
+ "name": "CATO_SAAS"
563
+ },
564
+ {
565
+ "deprecationReason": null,
566
+ "description": "Cato SAAS Security API with one application integration (legacy) service SKU",
567
+ "isDeprecated": false,
568
+ "name": "CATO_SAAS_SECURITY_API_ONE_APP"
569
+ },
570
+ {
571
+ "deprecationReason": null,
572
+ "description": "Cato SAAS Security API with two applications integration (legacy) service SKU",
573
+ "isDeprecated": false,
574
+ "name": "CATO_SAAS_SECURITY_API_TWO_APPS"
575
+ },
576
+ {
577
+ "deprecationReason": null,
578
+ "description": "Cato SAAS Security API with more than two Applications integration (legacy) service SKU",
579
+ "isDeprecated": false,
580
+ "name": "CATO_SAAS_SECURITY_API_ALL_APPS"
581
+ },
582
+ {
583
+ "deprecationReason": null,
584
+ "description": null,
585
+ "isDeprecated": false,
586
+ "name": "CATO_SAAS_SECURITY_API"
587
+ },
588
+ {
589
+ "deprecationReason": null,
590
+ "description": "Cato XDR service SKU",
591
+ "isDeprecated": false,
592
+ "name": "CATO_XDR_PRO"
593
+ },
594
+ {
595
+ "deprecationReason": null,
596
+ "description": "Cato DEM service SKU",
597
+ "isDeprecated": false,
598
+ "name": "CATO_DEM"
599
+ },
600
+ {
601
+ "deprecationReason": null,
602
+ "description": "Cato IoT/OT Security service SKU",
603
+ "isDeprecated": false,
604
+ "name": "CATO_IOT_OT"
605
+ },
606
+ {
607
+ "deprecationReason": null,
608
+ "description": "Cato Threat Prevention (legacy) service SKU",
609
+ "isDeprecated": false,
610
+ "name": "CATO_THREAT_PREVENTION"
611
+ },
612
+ {
613
+ "deprecationReason": null,
614
+ "description": "Cato Advanced Threat Prevention service SKU",
615
+ "isDeprecated": false,
616
+ "name": "CATO_THREAT_PREVENTION_ADV"
617
+ },
618
+ {
619
+ "deprecationReason": null,
620
+ "description": "Cato XOps service SKU",
621
+ "isDeprecated": false,
622
+ "name": "CATO_XOPS"
623
+ },
624
+ {
625
+ "deprecationReason": null,
626
+ "description": "Public IPs SKU",
627
+ "isDeprecated": false,
628
+ "name": "CATO_IP_ADD"
629
+ },
630
+ {
631
+ "deprecationReason": null,
632
+ "description": "Cato datalake Group SKU",
633
+ "isDeprecated": false,
634
+ "name": "CATO_DATALAKE"
635
+ },
636
+ {
637
+ "deprecationReason": null,
638
+ "description": "3 months data retention SKU",
639
+ "isDeprecated": false,
640
+ "name": "CATO_DATALAKE_3M"
641
+ },
642
+ {
643
+ "deprecationReason": null,
644
+ "description": "6 months data retention SKU",
645
+ "isDeprecated": false,
646
+ "name": "CATO_DATALAKE_6M"
647
+ },
648
+ {
649
+ "deprecationReason": null,
650
+ "description": "12 months data retention SKU",
651
+ "isDeprecated": false,
652
+ "name": "CATO_DATALAKE_12M"
653
+ }
654
+ ],
655
+ "fields": null,
656
+ "inputFields": null,
657
+ "interfaces": null,
658
+ "kind": "ENUM",
659
+ "name": "LicenseSku",
660
+ "possibleTypes": null
661
+ },
662
+ "indexType": "enum",
663
+ "kind": [
664
+ "NON_NULL",
665
+ "ENUM"
666
+ ],
667
+ "name": "LicenseSku",
668
+ "non_null": false
669
+ },
670
+ "varName": "sku"
671
+ },
672
+ "startDate": {
673
+ "args": {},
674
+ "deprecationReason": null,
675
+ "description": "License start date",
676
+ "id_str": "updateCommercialLicense___license___startDate",
677
+ "isDeprecated": false,
678
+ "name": "startDate",
679
+ "path": "updateCommercialLicense.license.startDate",
680
+ "requestStr": "$startDate:DateTime ",
681
+ "required": false,
682
+ "responseStr": "startDate:$startDate ",
683
+ "type": {
684
+ "kind": [
685
+ "SCALAR"
686
+ ],
687
+ "name": "DateTime",
688
+ "non_null": false
689
+ },
690
+ "varName": "startDate"
691
+ },
692
+ "status": {
693
+ "alias": "statusLicense: status",
694
+ "args": {},
695
+ "deprecationReason": null,
696
+ "description": "License activation status",
697
+ "id_str": "updateCommercialLicense___license___status",
698
+ "isDeprecated": false,
699
+ "name": "status",
700
+ "path": "updateCommercialLicense.license.status",
701
+ "requestStr": "$status:LicenseStatus! ",
702
+ "required": true,
703
+ "responseStr": "status:$status ",
704
+ "type": {
705
+ "definition": {
706
+ "description": "enum for account plan status \u2013 the current license status within the license lifecycle",
707
+ "enumValues": [
708
+ {
709
+ "deprecationReason": null,
710
+ "description": "A license that is currently active",
711
+ "isDeprecated": false,
712
+ "name": "ACTIVE"
713
+ },
714
+ {
715
+ "deprecationReason": null,
716
+ "description": "An existing license with a future start date that is not currently active",
717
+ "isDeprecated": false,
718
+ "name": "SCHEDULED"
719
+ },
720
+ {
721
+ "deprecationReason": null,
722
+ "description": "A license that is active before its start date, for partners and customers to verify the relevant configurations",
723
+ "isDeprecated": false,
724
+ "name": "STAGING"
725
+ },
726
+ {
727
+ "deprecationReason": null,
728
+ "description": "A license in a grace period",
729
+ "isDeprecated": false,
730
+ "name": "LOCKED"
731
+ },
732
+ {
733
+ "deprecationReason": null,
734
+ "description": "An expired license is no longer active",
735
+ "isDeprecated": false,
736
+ "name": "DISABLED"
737
+ },
738
+ {
739
+ "deprecationReason": null,
740
+ "description": "The license is pending customer activation by setting a start date",
741
+ "isDeprecated": false,
742
+ "name": "PENDING"
743
+ }
744
+ ],
745
+ "fields": null,
746
+ "inputFields": null,
747
+ "interfaces": null,
748
+ "kind": "ENUM",
749
+ "name": "LicenseStatus",
750
+ "possibleTypes": null
751
+ },
752
+ "indexType": "enum",
753
+ "kind": [
754
+ "NON_NULL",
755
+ "ENUM"
756
+ ],
757
+ "name": "LicenseStatus",
758
+ "non_null": false
759
+ },
760
+ "varName": "status"
761
+ }
762
+ },
763
+ "inputFields": null,
764
+ "interfaces": [],
765
+ "kind": "INTERFACE",
766
+ "name": "License",
767
+ "possibleTypes": [
768
+ {
769
+ "kind": "OBJECT",
770
+ "name": "DataLakeLicense",
771
+ "ofType": null
772
+ },
773
+ {
774
+ "kind": "OBJECT",
775
+ "name": "PublicIpsLicense",
776
+ "ofType": null
777
+ },
778
+ {
779
+ "kind": "OBJECT",
780
+ "name": "SiteLicense",
781
+ "ofType": null
782
+ },
783
+ {
784
+ "kind": "OBJECT",
785
+ "name": "PooledBandwidthLicense",
786
+ "ofType": null
787
+ },
788
+ {
789
+ "kind": "OBJECT",
790
+ "name": "ZtnaUsersLicense",
791
+ "ofType": null
792
+ },
793
+ {
794
+ "kind": "OBJECT",
795
+ "name": "EndpointProtectionLicense",
796
+ "ofType": null
797
+ },
798
+ {
799
+ "kind": "OBJECT",
800
+ "name": "IlmmLicense",
801
+ "ofType": null
802
+ },
803
+ {
804
+ "kind": "OBJECT",
805
+ "name": "IpsLicense",
806
+ "ofType": null
807
+ },
808
+ {
809
+ "kind": "OBJECT",
810
+ "name": "MalwareProtectionLicense",
811
+ "ofType": null
812
+ },
813
+ {
814
+ "kind": "OBJECT",
815
+ "name": "NextGenMalwareProtectionLicense",
816
+ "ofType": null
817
+ },
818
+ {
819
+ "kind": "OBJECT",
820
+ "name": "ThreatPreventionLicense",
821
+ "ofType": null
822
+ },
823
+ {
824
+ "kind": "OBJECT",
825
+ "name": "NOCaaSLicense",
826
+ "ofType": null
827
+ },
828
+ {
829
+ "kind": "OBJECT",
830
+ "name": "CasbLicense",
831
+ "ofType": null
832
+ },
833
+ {
834
+ "kind": "OBJECT",
835
+ "name": "DlpLicense",
836
+ "ofType": null
837
+ },
838
+ {
839
+ "kind": "OBJECT",
840
+ "name": "MdrLicense",
841
+ "ofType": null
842
+ },
843
+ {
844
+ "kind": "OBJECT",
845
+ "name": "ManagedXdrLicense",
846
+ "ofType": null
847
+ },
848
+ {
849
+ "kind": "OBJECT",
850
+ "name": "RbiLicense",
851
+ "ofType": null
852
+ },
853
+ {
854
+ "kind": "OBJECT",
855
+ "name": "SaasSecurityApiLicense",
856
+ "ofType": null
857
+ },
858
+ {
859
+ "kind": "OBJECT",
860
+ "name": "XdrProLicense",
861
+ "ofType": null
862
+ },
863
+ {
864
+ "kind": "OBJECT",
865
+ "name": "DemLicense",
866
+ "ofType": null
867
+ },
868
+ {
869
+ "kind": "OBJECT",
870
+ "name": "IotOtLicense",
871
+ "ofType": null
872
+ },
873
+ {
874
+ "kind": "OBJECT",
875
+ "name": "AtpLicense",
876
+ "ofType": null
877
+ },
878
+ {
879
+ "kind": "OBJECT",
880
+ "name": "XOpsLicense",
881
+ "ofType": null
882
+ }
883
+ ]
884
+ },
885
+ "indexType": "interface",
886
+ "kind": [
887
+ "NON_NULL",
888
+ "INTERFACE"
889
+ ],
890
+ "name": "License",
891
+ "non_null": false
892
+ },
893
+ "varName": "license"
894
+ }
895
+ },
896
+ "inputFields": null,
897
+ "interfaces": {},
898
+ "kind": "OBJECT",
899
+ "name": "UpdateCommercialLicensePayload",
900
+ "possibleTypes": null
901
+ },
902
+ "indexType": "object",
903
+ "kind": [
904
+ "OBJECT"
905
+ ],
906
+ "name": "UpdateCommercialLicensePayload",
907
+ "non_null": false
908
+ },
909
+ "varName": "updateCommercialLicensePayload"
910
+ }
911
+ },
912
+ "inputFields": null,
913
+ "interfaces": [],
914
+ "kind": "OBJECT",
915
+ "name": "LicensingMutations",
916
+ "possibleTypes": null
917
+ },
918
+ "indexType": "object",
919
+ "kind": [
920
+ "OBJECT"
921
+ ],
922
+ "name": "LicensingMutations",
923
+ "non_null": false
924
+ },
925
+ "variablesPayload": {
926
+ "updateCommercialLicenseInput": {
927
+ "licenseId": "id",
928
+ "startDate": "example_value"
929
+ }
930
+ }
931
+ }