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
models/query.devices.json CHANGED
@@ -23,6 +23,7 @@
23
23
  "deprecationReason": null,
24
24
  "description": null,
25
25
  "fieldTypes": {
26
+ "BooleanFilterInput": true,
26
27
  "DateTimeFilterInput": true,
27
28
  "DeviceAttributeCatalogPayload": true,
28
29
  "DeviceAttributesCatalogQueries": true,
@@ -51,10 +52,12 @@
51
52
  "ExportJobResponse": true,
52
53
  "ExportJobStatus": true,
53
54
  "ExportStatusResponse": true,
55
+ "IPAddressFilterInput": true,
54
56
  "IdFilterInput": true,
55
57
  "IntFilterInput": true,
56
58
  "MacAddressFilterInput": true,
57
59
  "ObjectRefBy": true,
60
+ "OriginType": true,
58
61
  "PageInfo": true,
59
62
  "PagingInput": true,
60
63
  "SiteRef": true,
@@ -1413,35 +1416,55 @@
1413
1416
  },
1414
1417
  "varName": "idFilterInput"
1415
1418
  },
1416
- "ip": {
1419
+ "ipAddress": {
1417
1420
  "defaultValue": null,
1418
1421
  "description": null,
1419
- "id_str": "list___input___filter___ip",
1420
- "name": "ip",
1421
- "path": "list.input.filter.ip",
1422
- "requestStr": "$stringFilterInput:[StringFilterInput] ",
1422
+ "id_str": "list___input___filter___ipAddress",
1423
+ "name": "ipAddress",
1424
+ "path": "list.input.filter.ipAddress",
1425
+ "requestStr": "$iPAddressFilterInput:[IPAddressFilterInput] ",
1423
1426
  "required": false,
1424
- "responseStr": "ip:$stringFilterInput ",
1427
+ "responseStr": "ipAddress:$iPAddressFilterInput ",
1425
1428
  "type": {
1426
1429
  "definition": {
1427
1430
  "description": null,
1428
1431
  "enumValues": null,
1429
1432
  "fields": null,
1430
1433
  "inputFields": {
1434
+ "between": {
1435
+ "defaultValue": null,
1436
+ "description": null,
1437
+ "id_str": "list___input___filter___ipAddress___between",
1438
+ "name": "between",
1439
+ "path": "list.input.filter.ipAddress.between",
1440
+ "requestStr": "$between:[IPAddress] ",
1441
+ "required": false,
1442
+ "responseStr": "between:$between ",
1443
+ "type": {
1444
+ "kind": [
1445
+ "LIST",
1446
+ "NON_NULL",
1447
+ "SCALAR"
1448
+ ],
1449
+ "name": "IPAddress",
1450
+ "non_null": false
1451
+ },
1452
+ "varName": "between"
1453
+ },
1431
1454
  "eq": {
1432
1455
  "defaultValue": null,
1433
1456
  "description": null,
1434
- "id_str": "list___input___filter___ip___eq",
1457
+ "id_str": "list___input___filter___ipAddress___eq",
1435
1458
  "name": "eq",
1436
- "path": "list.input.filter.ip.eq",
1437
- "requestStr": "$eq:String ",
1459
+ "path": "list.input.filter.ipAddress.eq",
1460
+ "requestStr": "$eq:IPAddress ",
1438
1461
  "required": false,
1439
1462
  "responseStr": "eq:$eq ",
1440
1463
  "type": {
1441
1464
  "kind": [
1442
1465
  "SCALAR"
1443
1466
  ],
1444
- "name": "String",
1467
+ "name": "IPAddress",
1445
1468
  "non_null": false
1446
1469
  },
1447
1470
  "varName": "eq"
@@ -1449,10 +1472,10 @@
1449
1472
  "in": {
1450
1473
  "defaultValue": null,
1451
1474
  "description": null,
1452
- "id_str": "list___input___filter___ip___in",
1475
+ "id_str": "list___input___filter___ipAddress___in",
1453
1476
  "name": "in",
1454
- "path": "list.input.filter.ip.in",
1455
- "requestStr": "$in:[String] ",
1477
+ "path": "list.input.filter.ipAddress.in",
1478
+ "requestStr": "$in:[IPAddress] ",
1456
1479
  "required": false,
1457
1480
  "responseStr": "in:$in ",
1458
1481
  "type": {
@@ -1461,7 +1484,7 @@
1461
1484
  "NON_NULL",
1462
1485
  "SCALAR"
1463
1486
  ],
1464
- "name": "String",
1487
+ "name": "IPAddress",
1465
1488
  "non_null": false
1466
1489
  },
1467
1490
  "varName": "in"
@@ -1469,17 +1492,17 @@
1469
1492
  "neq": {
1470
1493
  "defaultValue": null,
1471
1494
  "description": null,
1472
- "id_str": "list___input___filter___ip___neq",
1495
+ "id_str": "list___input___filter___ipAddress___neq",
1473
1496
  "name": "neq",
1474
- "path": "list.input.filter.ip.neq",
1475
- "requestStr": "$neq:String ",
1497
+ "path": "list.input.filter.ipAddress.neq",
1498
+ "requestStr": "$neq:IPAddress ",
1476
1499
  "required": false,
1477
1500
  "responseStr": "neq:$neq ",
1478
1501
  "type": {
1479
1502
  "kind": [
1480
1503
  "SCALAR"
1481
1504
  ],
1482
- "name": "String",
1505
+ "name": "IPAddress",
1483
1506
  "non_null": false
1484
1507
  },
1485
1508
  "varName": "neq"
@@ -1487,10 +1510,10 @@
1487
1510
  "nin": {
1488
1511
  "defaultValue": null,
1489
1512
  "description": null,
1490
- "id_str": "list___input___filter___ip___nin",
1513
+ "id_str": "list___input___filter___ipAddress___nin",
1491
1514
  "name": "nin",
1492
- "path": "list.input.filter.ip.nin",
1493
- "requestStr": "$nin:[String] ",
1515
+ "path": "list.input.filter.ipAddress.nin",
1516
+ "requestStr": "$nin:[IPAddress] ",
1494
1517
  "required": false,
1495
1518
  "responseStr": "nin:$nin ",
1496
1519
  "type": {
@@ -1499,15 +1522,51 @@
1499
1522
  "NON_NULL",
1500
1523
  "SCALAR"
1501
1524
  ],
1502
- "name": "String",
1525
+ "name": "IPAddress",
1503
1526
  "non_null": false
1504
1527
  },
1505
1528
  "varName": "nin"
1529
+ },
1530
+ "nwithin": {
1531
+ "defaultValue": null,
1532
+ "description": null,
1533
+ "id_str": "list___input___filter___ipAddress___nwithin",
1534
+ "name": "nwithin",
1535
+ "path": "list.input.filter.ipAddress.nwithin",
1536
+ "requestStr": "$nwithin:NetworkSubnet ",
1537
+ "required": false,
1538
+ "responseStr": "nwithin:$nwithin ",
1539
+ "type": {
1540
+ "kind": [
1541
+ "SCALAR"
1542
+ ],
1543
+ "name": "NetworkSubnet",
1544
+ "non_null": false
1545
+ },
1546
+ "varName": "nwithin"
1547
+ },
1548
+ "within": {
1549
+ "defaultValue": null,
1550
+ "description": null,
1551
+ "id_str": "list___input___filter___ipAddress___within",
1552
+ "name": "within",
1553
+ "path": "list.input.filter.ipAddress.within",
1554
+ "requestStr": "$within:NetworkSubnet ",
1555
+ "required": false,
1556
+ "responseStr": "within:$within ",
1557
+ "type": {
1558
+ "kind": [
1559
+ "SCALAR"
1560
+ ],
1561
+ "name": "NetworkSubnet",
1562
+ "non_null": false
1563
+ },
1564
+ "varName": "within"
1506
1565
  }
1507
1566
  },
1508
1567
  "interfaces": null,
1509
1568
  "kind": "INPUT_OBJECT",
1510
- "name": "StringFilterInput",
1569
+ "name": "IPAddressFilterInput",
1511
1570
  "possibleTypes": null
1512
1571
  },
1513
1572
  "indexType": "input_object",
@@ -1516,10 +1575,78 @@
1516
1575
  "NON_NULL",
1517
1576
  "INPUT_OBJECT"
1518
1577
  ],
1519
- "name": "StringFilterInput",
1578
+ "name": "IPAddressFilterInput",
1520
1579
  "non_null": false
1521
1580
  },
1522
- "varName": "stringFilterInput"
1581
+ "varName": "iPAddressFilterInput"
1582
+ },
1583
+ "isManaged": {
1584
+ "defaultValue": null,
1585
+ "description": null,
1586
+ "id_str": "list___input___filter___isManaged",
1587
+ "name": "isManaged",
1588
+ "path": "list.input.filter.isManaged",
1589
+ "requestStr": "$booleanFilterInput:[BooleanFilterInput] ",
1590
+ "required": false,
1591
+ "responseStr": "isManaged:$booleanFilterInput ",
1592
+ "type": {
1593
+ "definition": {
1594
+ "description": null,
1595
+ "enumValues": null,
1596
+ "fields": null,
1597
+ "inputFields": {
1598
+ "eq": {
1599
+ "defaultValue": null,
1600
+ "description": null,
1601
+ "id_str": "list___input___filter___isManaged___eq",
1602
+ "name": "eq",
1603
+ "path": "list.input.filter.isManaged.eq",
1604
+ "requestStr": "$eq:Boolean ",
1605
+ "required": false,
1606
+ "responseStr": "eq:$eq ",
1607
+ "type": {
1608
+ "kind": [
1609
+ "SCALAR"
1610
+ ],
1611
+ "name": "Boolean",
1612
+ "non_null": false
1613
+ },
1614
+ "varName": "eq"
1615
+ },
1616
+ "neq": {
1617
+ "defaultValue": null,
1618
+ "description": null,
1619
+ "id_str": "list___input___filter___isManaged___neq",
1620
+ "name": "neq",
1621
+ "path": "list.input.filter.isManaged.neq",
1622
+ "requestStr": "$neq:Boolean ",
1623
+ "required": false,
1624
+ "responseStr": "neq:$neq ",
1625
+ "type": {
1626
+ "kind": [
1627
+ "SCALAR"
1628
+ ],
1629
+ "name": "Boolean",
1630
+ "non_null": false
1631
+ },
1632
+ "varName": "neq"
1633
+ }
1634
+ },
1635
+ "interfaces": null,
1636
+ "kind": "INPUT_OBJECT",
1637
+ "name": "BooleanFilterInput",
1638
+ "possibleTypes": null
1639
+ },
1640
+ "indexType": "input_object",
1641
+ "kind": [
1642
+ "LIST",
1643
+ "NON_NULL",
1644
+ "INPUT_OBJECT"
1645
+ ],
1646
+ "name": "BooleanFilterInput",
1647
+ "non_null": false
1648
+ },
1649
+ "varName": "booleanFilterInput"
1523
1650
  },
1524
1651
  "lastSeen": {
1525
1652
  "defaultValue": null,
@@ -3770,7 +3897,7 @@
3770
3897
  "varName": "pagingInput"
3771
3898
  },
3772
3899
  "sort": {
3773
- "defaultValue": "{lastSeen: {direction: DESC, priority: 1}}",
3900
+ "defaultValue": "{id: {direction: DESC, priority: 1}}",
3774
3901
  "description": null,
3775
3902
  "id_str": "list___input___sort",
3776
3903
  "name": "sort",
@@ -9327,35 +9454,55 @@
9327
9454
  },
9328
9455
  "varName": "idFilterInput"
9329
9456
  },
9330
- "ip": {
9457
+ "ipAddress": {
9331
9458
  "defaultValue": null,
9332
9459
  "description": null,
9333
- "id_str": "list___input___filter___ip",
9334
- "name": "ip",
9335
- "path": "list.input.filter.ip",
9336
- "requestStr": "$stringFilterInput:[StringFilterInput] ",
9460
+ "id_str": "list___input___filter___ipAddress",
9461
+ "name": "ipAddress",
9462
+ "path": "list.input.filter.ipAddress",
9463
+ "requestStr": "$iPAddressFilterInput:[IPAddressFilterInput] ",
9337
9464
  "required": false,
9338
- "responseStr": "ip:$stringFilterInput ",
9465
+ "responseStr": "ipAddress:$iPAddressFilterInput ",
9339
9466
  "type": {
9340
9467
  "definition": {
9341
9468
  "description": null,
9342
9469
  "enumValues": null,
9343
9470
  "fields": null,
9344
9471
  "inputFields": {
9472
+ "between": {
9473
+ "defaultValue": null,
9474
+ "description": null,
9475
+ "id_str": "list___input___filter___ipAddress___between",
9476
+ "name": "between",
9477
+ "path": "list.input.filter.ipAddress.between",
9478
+ "requestStr": "$between:[IPAddress] ",
9479
+ "required": false,
9480
+ "responseStr": "between:$between ",
9481
+ "type": {
9482
+ "kind": [
9483
+ "LIST",
9484
+ "NON_NULL",
9485
+ "SCALAR"
9486
+ ],
9487
+ "name": "IPAddress",
9488
+ "non_null": false
9489
+ },
9490
+ "varName": "between"
9491
+ },
9345
9492
  "eq": {
9346
9493
  "defaultValue": null,
9347
9494
  "description": null,
9348
- "id_str": "list___input___filter___ip___eq",
9495
+ "id_str": "list___input___filter___ipAddress___eq",
9349
9496
  "name": "eq",
9350
- "path": "list.input.filter.ip.eq",
9351
- "requestStr": "$eq:String ",
9497
+ "path": "list.input.filter.ipAddress.eq",
9498
+ "requestStr": "$eq:IPAddress ",
9352
9499
  "required": false,
9353
9500
  "responseStr": "eq:$eq ",
9354
9501
  "type": {
9355
9502
  "kind": [
9356
9503
  "SCALAR"
9357
9504
  ],
9358
- "name": "String",
9505
+ "name": "IPAddress",
9359
9506
  "non_null": false
9360
9507
  },
9361
9508
  "varName": "eq"
@@ -9363,10 +9510,10 @@
9363
9510
  "in": {
9364
9511
  "defaultValue": null,
9365
9512
  "description": null,
9366
- "id_str": "list___input___filter___ip___in",
9513
+ "id_str": "list___input___filter___ipAddress___in",
9367
9514
  "name": "in",
9368
- "path": "list.input.filter.ip.in",
9369
- "requestStr": "$in:[String] ",
9515
+ "path": "list.input.filter.ipAddress.in",
9516
+ "requestStr": "$in:[IPAddress] ",
9370
9517
  "required": false,
9371
9518
  "responseStr": "in:$in ",
9372
9519
  "type": {
@@ -9375,7 +9522,7 @@
9375
9522
  "NON_NULL",
9376
9523
  "SCALAR"
9377
9524
  ],
9378
- "name": "String",
9525
+ "name": "IPAddress",
9379
9526
  "non_null": false
9380
9527
  },
9381
9528
  "varName": "in"
@@ -9383,17 +9530,17 @@
9383
9530
  "neq": {
9384
9531
  "defaultValue": null,
9385
9532
  "description": null,
9386
- "id_str": "list___input___filter___ip___neq",
9533
+ "id_str": "list___input___filter___ipAddress___neq",
9387
9534
  "name": "neq",
9388
- "path": "list.input.filter.ip.neq",
9389
- "requestStr": "$neq:String ",
9535
+ "path": "list.input.filter.ipAddress.neq",
9536
+ "requestStr": "$neq:IPAddress ",
9390
9537
  "required": false,
9391
9538
  "responseStr": "neq:$neq ",
9392
9539
  "type": {
9393
9540
  "kind": [
9394
9541
  "SCALAR"
9395
9542
  ],
9396
- "name": "String",
9543
+ "name": "IPAddress",
9397
9544
  "non_null": false
9398
9545
  },
9399
9546
  "varName": "neq"
@@ -9401,10 +9548,10 @@
9401
9548
  "nin": {
9402
9549
  "defaultValue": null,
9403
9550
  "description": null,
9404
- "id_str": "list___input___filter___ip___nin",
9551
+ "id_str": "list___input___filter___ipAddress___nin",
9405
9552
  "name": "nin",
9406
- "path": "list.input.filter.ip.nin",
9407
- "requestStr": "$nin:[String] ",
9553
+ "path": "list.input.filter.ipAddress.nin",
9554
+ "requestStr": "$nin:[IPAddress] ",
9408
9555
  "required": false,
9409
9556
  "responseStr": "nin:$nin ",
9410
9557
  "type": {
@@ -9413,15 +9560,51 @@
9413
9560
  "NON_NULL",
9414
9561
  "SCALAR"
9415
9562
  ],
9416
- "name": "String",
9563
+ "name": "IPAddress",
9417
9564
  "non_null": false
9418
9565
  },
9419
9566
  "varName": "nin"
9567
+ },
9568
+ "nwithin": {
9569
+ "defaultValue": null,
9570
+ "description": null,
9571
+ "id_str": "list___input___filter___ipAddress___nwithin",
9572
+ "name": "nwithin",
9573
+ "path": "list.input.filter.ipAddress.nwithin",
9574
+ "requestStr": "$nwithin:NetworkSubnet ",
9575
+ "required": false,
9576
+ "responseStr": "nwithin:$nwithin ",
9577
+ "type": {
9578
+ "kind": [
9579
+ "SCALAR"
9580
+ ],
9581
+ "name": "NetworkSubnet",
9582
+ "non_null": false
9583
+ },
9584
+ "varName": "nwithin"
9585
+ },
9586
+ "within": {
9587
+ "defaultValue": null,
9588
+ "description": null,
9589
+ "id_str": "list___input___filter___ipAddress___within",
9590
+ "name": "within",
9591
+ "path": "list.input.filter.ipAddress.within",
9592
+ "requestStr": "$within:NetworkSubnet ",
9593
+ "required": false,
9594
+ "responseStr": "within:$within ",
9595
+ "type": {
9596
+ "kind": [
9597
+ "SCALAR"
9598
+ ],
9599
+ "name": "NetworkSubnet",
9600
+ "non_null": false
9601
+ },
9602
+ "varName": "within"
9420
9603
  }
9421
9604
  },
9422
9605
  "interfaces": null,
9423
9606
  "kind": "INPUT_OBJECT",
9424
- "name": "StringFilterInput",
9607
+ "name": "IPAddressFilterInput",
9425
9608
  "possibleTypes": null
9426
9609
  },
9427
9610
  "indexType": "input_object",
@@ -9430,10 +9613,78 @@
9430
9613
  "NON_NULL",
9431
9614
  "INPUT_OBJECT"
9432
9615
  ],
9433
- "name": "StringFilterInput",
9616
+ "name": "IPAddressFilterInput",
9434
9617
  "non_null": false
9435
9618
  },
9436
- "varName": "stringFilterInput"
9619
+ "varName": "iPAddressFilterInput"
9620
+ },
9621
+ "isManaged": {
9622
+ "defaultValue": null,
9623
+ "description": null,
9624
+ "id_str": "list___input___filter___isManaged",
9625
+ "name": "isManaged",
9626
+ "path": "list.input.filter.isManaged",
9627
+ "requestStr": "$booleanFilterInput:[BooleanFilterInput] ",
9628
+ "required": false,
9629
+ "responseStr": "isManaged:$booleanFilterInput ",
9630
+ "type": {
9631
+ "definition": {
9632
+ "description": null,
9633
+ "enumValues": null,
9634
+ "fields": null,
9635
+ "inputFields": {
9636
+ "eq": {
9637
+ "defaultValue": null,
9638
+ "description": null,
9639
+ "id_str": "list___input___filter___isManaged___eq",
9640
+ "name": "eq",
9641
+ "path": "list.input.filter.isManaged.eq",
9642
+ "requestStr": "$eq:Boolean ",
9643
+ "required": false,
9644
+ "responseStr": "eq:$eq ",
9645
+ "type": {
9646
+ "kind": [
9647
+ "SCALAR"
9648
+ ],
9649
+ "name": "Boolean",
9650
+ "non_null": false
9651
+ },
9652
+ "varName": "eq"
9653
+ },
9654
+ "neq": {
9655
+ "defaultValue": null,
9656
+ "description": null,
9657
+ "id_str": "list___input___filter___isManaged___neq",
9658
+ "name": "neq",
9659
+ "path": "list.input.filter.isManaged.neq",
9660
+ "requestStr": "$neq:Boolean ",
9661
+ "required": false,
9662
+ "responseStr": "neq:$neq ",
9663
+ "type": {
9664
+ "kind": [
9665
+ "SCALAR"
9666
+ ],
9667
+ "name": "Boolean",
9668
+ "non_null": false
9669
+ },
9670
+ "varName": "neq"
9671
+ }
9672
+ },
9673
+ "interfaces": null,
9674
+ "kind": "INPUT_OBJECT",
9675
+ "name": "BooleanFilterInput",
9676
+ "possibleTypes": null
9677
+ },
9678
+ "indexType": "input_object",
9679
+ "kind": [
9680
+ "LIST",
9681
+ "NON_NULL",
9682
+ "INPUT_OBJECT"
9683
+ ],
9684
+ "name": "BooleanFilterInput",
9685
+ "non_null": false
9686
+ },
9687
+ "varName": "booleanFilterInput"
9437
9688
  },
9438
9689
  "lastSeen": {
9439
9690
  "defaultValue": null,
@@ -11684,7 +11935,7 @@
11684
11935
  "varName": "pagingInput"
11685
11936
  },
11686
11937
  "sort": {
11687
- "defaultValue": "{lastSeen: {direction: DESC, priority: 1}}",
11938
+ "defaultValue": "{id: {direction: DESC, priority: 1}}",
11688
11939
  "description": null,
11689
11940
  "id_str": "list___input___sort",
11690
11941
  "name": "sort",
@@ -14296,10 +14547,10 @@
14296
14547
  },
14297
14548
  "ip": {
14298
14549
  "args": {},
14299
- "deprecationReason": null,
14550
+ "deprecationReason": "Use ipAddress instead",
14300
14551
  "description": null,
14301
14552
  "id_str": "list___device___ip",
14302
- "isDeprecated": false,
14553
+ "isDeprecated": true,
14303
14554
  "name": "ip",
14304
14555
  "path": "list.device.ip",
14305
14556
  "requestStr": "$ip:String ",
@@ -14314,6 +14565,47 @@
14314
14565
  },
14315
14566
  "varName": "ip"
14316
14567
  },
14568
+ "ipAddress": {
14569
+ "args": {},
14570
+ "deprecationReason": null,
14571
+ "description": null,
14572
+ "id_str": "list___device___ipAddress",
14573
+ "isDeprecated": false,
14574
+ "name": "ipAddress",
14575
+ "path": "list.device.ipAddress",
14576
+ "requestStr": "$ipAddress:IPAddress ",
14577
+ "required": false,
14578
+ "responseStr": "ipAddress:$ipAddress ",
14579
+ "type": {
14580
+ "kind": [
14581
+ "SCALAR"
14582
+ ],
14583
+ "name": "IPAddress",
14584
+ "non_null": false
14585
+ },
14586
+ "varName": "ipAddress"
14587
+ },
14588
+ "isManaged": {
14589
+ "args": {},
14590
+ "deprecationReason": null,
14591
+ "description": null,
14592
+ "id_str": "list___device___isManaged",
14593
+ "isDeprecated": false,
14594
+ "name": "isManaged",
14595
+ "path": "list.device.isManaged",
14596
+ "requestStr": "$isManaged:Boolean! ",
14597
+ "required": true,
14598
+ "responseStr": "isManaged:$isManaged ",
14599
+ "type": {
14600
+ "kind": [
14601
+ "NON_NULL",
14602
+ "SCALAR"
14603
+ ],
14604
+ "name": "Boolean",
14605
+ "non_null": false
14606
+ },
14607
+ "varName": "isManaged"
14608
+ },
14317
14609
  "lastSeen": {
14318
14610
  "args": {},
14319
14611
  "deprecationReason": null,
@@ -14631,6 +14923,90 @@
14631
14923
  },
14632
14924
  "varName": "deviceNic"
14633
14925
  },
14926
+ "originTypes": {
14927
+ "alias": "originTypesDeviceV2: originTypes",
14928
+ "args": {},
14929
+ "deprecationReason": null,
14930
+ "description": null,
14931
+ "id_str": "list___device___originTypes",
14932
+ "isDeprecated": false,
14933
+ "name": "originTypes",
14934
+ "path": "list.device.originTypes",
14935
+ "requestStr": "$originTypes:[OriginType]! ",
14936
+ "required": true,
14937
+ "responseStr": "originTypes:$originTypes ",
14938
+ "type": {
14939
+ "definition": {
14940
+ "description": null,
14941
+ "enumValues": [
14942
+ {
14943
+ "deprecationReason": null,
14944
+ "description": null,
14945
+ "isDeprecated": false,
14946
+ "name": "Unknown"
14947
+ },
14948
+ {
14949
+ "deprecationReason": null,
14950
+ "description": null,
14951
+ "isDeprecated": false,
14952
+ "name": "CatoNetworks"
14953
+ },
14954
+ {
14955
+ "deprecationReason": null,
14956
+ "description": null,
14957
+ "isDeprecated": false,
14958
+ "name": "MicrosoftIntune"
14959
+ },
14960
+ {
14961
+ "deprecationReason": null,
14962
+ "description": null,
14963
+ "isDeprecated": false,
14964
+ "name": "Armis"
14965
+ },
14966
+ {
14967
+ "deprecationReason": null,
14968
+ "description": null,
14969
+ "isDeprecated": false,
14970
+ "name": "Claroty"
14971
+ },
14972
+ {
14973
+ "deprecationReason": null,
14974
+ "description": null,
14975
+ "isDeprecated": false,
14976
+ "name": "Zoom"
14977
+ },
14978
+ {
14979
+ "deprecationReason": null,
14980
+ "description": null,
14981
+ "isDeprecated": false,
14982
+ "name": "Crowdstrike"
14983
+ },
14984
+ {
14985
+ "deprecationReason": null,
14986
+ "description": null,
14987
+ "isDeprecated": false,
14988
+ "name": "SentinelOne"
14989
+ }
14990
+ ],
14991
+ "fields": null,
14992
+ "inputFields": null,
14993
+ "interfaces": null,
14994
+ "kind": "ENUM",
14995
+ "name": "OriginType",
14996
+ "possibleTypes": null
14997
+ },
14998
+ "indexType": "enum",
14999
+ "kind": [
15000
+ "NON_NULL",
15001
+ "LIST",
15002
+ "NON_NULL",
15003
+ "ENUM"
15004
+ ],
15005
+ "name": "OriginType",
15006
+ "non_null": false
15007
+ },
15008
+ "varName": "originTypes"
15009
+ },
14634
15010
  "os": {
14635
15011
  "alias": "osDeviceV2: os",
14636
15012
  "args": {},
@@ -15213,17 +15589,27 @@
15213
15589
  "id2"
15214
15590
  ]
15215
15591
  },
15216
- "ip": {
15217
- "eq": "string",
15592
+ "ipAddress": {
15593
+ "between": [
15594
+ "example1",
15595
+ "example2"
15596
+ ],
15597
+ "eq": "example_value",
15218
15598
  "in": [
15219
- "string1",
15220
- "string2"
15599
+ "example1",
15600
+ "example2"
15221
15601
  ],
15222
- "neq": "string",
15602
+ "neq": "example_value",
15223
15603
  "nin": [
15224
- "string1",
15225
- "string2"
15226
- ]
15604
+ "example1",
15605
+ "example2"
15606
+ ],
15607
+ "nwithin": "example_value",
15608
+ "within": "example_value"
15609
+ },
15610
+ "isManaged": {
15611
+ "eq": true,
15612
+ "neq": true
15227
15613
  },
15228
15614
  "lastSeen": {
15229
15615
  "between": [