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

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

Potentially problematic release.


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

Files changed (98) hide show
  1. catocli/Utils/clidriver.py +16 -7
  2. catocli/Utils/cliutils.py +1 -14
  3. catocli/Utils/csv_formatter.py +652 -0
  4. catocli/__init__.py +1 -1
  5. catocli/parsers/custom/export_rules/__init__.py +0 -4
  6. catocli/parsers/custom/export_sites/__init__.py +4 -3
  7. catocli/parsers/custom/export_sites/export_sites.py +195 -52
  8. catocli/parsers/custom/import_sites_to_tf/import_sites_to_tf.py +473 -393
  9. catocli/parsers/customParserApiClient.py +444 -38
  10. catocli/parsers/custom_private/__init__.py +18 -0
  11. catocli/parsers/mutation_accountManagement/__init__.py +21 -0
  12. catocli/parsers/mutation_accountManagement_disableAccount/README.md +15 -0
  13. catocli/parsers/mutation_admin/__init__.py +12 -0
  14. catocli/parsers/mutation_container/__init__.py +18 -0
  15. catocli/parsers/mutation_enterpriseDirectory/__init__.py +8 -0
  16. catocli/parsers/mutation_groups/__init__.py +6 -0
  17. catocli/parsers/mutation_hardware/__init__.py +2 -0
  18. catocli/parsers/mutation_policy/__init__.py +378 -0
  19. catocli/parsers/mutation_policy_antiMalwareFileHash_addRule/README.md +20 -0
  20. catocli/parsers/mutation_policy_antiMalwareFileHash_addSection/README.md +20 -0
  21. catocli/parsers/mutation_policy_antiMalwareFileHash_createPolicyRevision/README.md +20 -0
  22. catocli/parsers/mutation_policy_antiMalwareFileHash_discardPolicyRevision/README.md +20 -0
  23. catocli/parsers/mutation_policy_antiMalwareFileHash_moveRule/README.md +20 -0
  24. catocli/parsers/mutation_policy_antiMalwareFileHash_moveSection/README.md +20 -0
  25. catocli/parsers/mutation_policy_antiMalwareFileHash_publishPolicyRevision/README.md +20 -0
  26. catocli/parsers/mutation_policy_antiMalwareFileHash_removeRule/README.md +20 -0
  27. catocli/parsers/mutation_policy_antiMalwareFileHash_removeSection/README.md +20 -0
  28. catocli/parsers/mutation_policy_antiMalwareFileHash_updatePolicy/README.md +20 -0
  29. catocli/parsers/mutation_policy_antiMalwareFileHash_updateRule/README.md +20 -0
  30. catocli/parsers/mutation_policy_antiMalwareFileHash_updateSection/README.md +20 -0
  31. catocli/parsers/mutation_sandbox/__init__.py +4 -0
  32. catocli/parsers/mutation_site/__init__.py +72 -0
  33. catocli/parsers/mutation_sites/__init__.py +72 -0
  34. catocli/parsers/mutation_xdr/__init__.py +6 -0
  35. catocli/parsers/query_accountBySubdomain/__init__.py +2 -0
  36. catocli/parsers/query_accountManagement/__init__.py +2 -0
  37. catocli/parsers/query_accountMetrics/__init__.py +6 -0
  38. catocli/parsers/query_accountRoles/__init__.py +2 -0
  39. catocli/parsers/query_accountSnapshot/__init__.py +2 -0
  40. catocli/parsers/query_admin/__init__.py +2 -0
  41. catocli/parsers/query_admins/__init__.py +2 -0
  42. catocli/parsers/query_appStats/__init__.py +6 -0
  43. catocli/parsers/query_appStatsTimeSeries/README.md +3 -0
  44. catocli/parsers/query_appStatsTimeSeries/__init__.py +6 -0
  45. catocli/parsers/query_auditFeed/__init__.py +2 -0
  46. catocli/parsers/query_catalogs/__init__.py +2 -0
  47. catocli/parsers/query_container/__init__.py +2 -0
  48. catocli/parsers/query_devices/README.md +1 -1
  49. catocli/parsers/query_devices/__init__.py +2 -0
  50. catocli/parsers/query_enterpriseDirectory/__init__.py +2 -0
  51. catocli/parsers/query_entityLookup/__init__.py +2 -0
  52. catocli/parsers/query_events/__init__.py +2 -0
  53. catocli/parsers/query_eventsFeed/__init__.py +2 -0
  54. catocli/parsers/query_eventsTimeSeries/__init__.py +2 -0
  55. catocli/parsers/query_groups/__init__.py +6 -0
  56. catocli/parsers/query_hardware/README.md +1 -1
  57. catocli/parsers/query_hardware/__init__.py +2 -0
  58. catocli/parsers/query_hardwareManagement/__init__.py +2 -0
  59. catocli/parsers/query_licensing/__init__.py +2 -0
  60. catocli/parsers/query_policy/__init__.py +37 -0
  61. catocli/parsers/query_policy_antiMalwareFileHash_policy/README.md +19 -0
  62. catocli/parsers/query_popLocations/__init__.py +2 -0
  63. catocli/parsers/query_sandbox/__init__.py +2 -0
  64. catocli/parsers/query_servicePrincipalAdmin/__init__.py +2 -0
  65. catocli/parsers/query_site/__init__.py +33 -0
  66. catocli/parsers/query_siteLocation/__init__.py +2 -0
  67. catocli/parsers/query_site_siteGeneralDetails/README.md +19 -0
  68. catocli/parsers/query_socketPortMetrics/__init__.py +2 -0
  69. catocli/parsers/query_socketPortMetricsTimeSeries/__init__.py +6 -0
  70. catocli/parsers/query_subDomains/__init__.py +2 -0
  71. catocli/parsers/query_xdr/__init__.py +4 -0
  72. catocli/parsers/raw/__init__.py +3 -1
  73. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/METADATA +1 -1
  74. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/RECORD +98 -67
  75. models/mutation.accountManagement.disableAccount.json +545 -0
  76. models/mutation.policy.antiMalwareFileHash.addRule.json +2068 -0
  77. models/mutation.policy.antiMalwareFileHash.addSection.json +1350 -0
  78. models/mutation.policy.antiMalwareFileHash.createPolicyRevision.json +1822 -0
  79. models/mutation.policy.antiMalwareFileHash.discardPolicyRevision.json +1758 -0
  80. models/mutation.policy.antiMalwareFileHash.moveRule.json +1552 -0
  81. models/mutation.policy.antiMalwareFileHash.moveSection.json +1251 -0
  82. models/mutation.policy.antiMalwareFileHash.publishPolicyRevision.json +1813 -0
  83. models/mutation.policy.antiMalwareFileHash.removeRule.json +1204 -0
  84. models/mutation.policy.antiMalwareFileHash.removeSection.json +954 -0
  85. models/mutation.policy.antiMalwareFileHash.updatePolicy.json +1834 -0
  86. models/mutation.policy.antiMalwareFileHash.updateRule.json +1757 -0
  87. models/mutation.policy.antiMalwareFileHash.updateSection.json +1105 -0
  88. models/mutation.site.updateSiteGeneralDetails.json +3 -3
  89. models/mutation.sites.updateSiteGeneralDetails.json +3 -3
  90. models/query.devices.json +249 -2
  91. models/query.hardware.json +224 -0
  92. models/query.policy.antiMalwareFileHash.policy.json +1583 -0
  93. models/query.site.siteGeneralDetails.json +899 -0
  94. schema/catolib.py +51 -4
  95. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/WHEEL +0 -0
  96. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/entry_points.txt +0 -0
  97. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/licenses/LICENSE +0 -0
  98. {catocli-2.1.3.dist-info → catocli-2.1.4.dist-info}/top_level.txt +0 -0
@@ -110,7 +110,7 @@
110
110
  },
111
111
  "primary": {
112
112
  "defaultValue": null,
113
- "description": null,
113
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
114
114
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
115
115
  "name": "primary",
116
116
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
@@ -666,7 +666,7 @@
666
666
  },
667
667
  "primary": {
668
668
  "defaultValue": null,
669
- "description": null,
669
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
670
670
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
671
671
  "name": "primary",
672
672
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
@@ -1149,7 +1149,7 @@
1149
1149
  },
1150
1150
  "primary": {
1151
1151
  "defaultValue": null,
1152
- "description": null,
1152
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
1153
1153
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
1154
1154
  "name": "primary",
1155
1155
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
@@ -110,7 +110,7 @@
110
110
  },
111
111
  "primary": {
112
112
  "defaultValue": null,
113
- "description": null,
113
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
114
114
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
115
115
  "name": "primary",
116
116
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
@@ -666,7 +666,7 @@
666
666
  },
667
667
  "primary": {
668
668
  "defaultValue": null,
669
- "description": null,
669
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
670
670
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
671
671
  "name": "primary",
672
672
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
@@ -1149,7 +1149,7 @@
1149
1149
  },
1150
1150
  "primary": {
1151
1151
  "defaultValue": null,
1152
- "description": null,
1152
+ "description": "Set the location reference to -1, `Automatic`, or null to enable automatic selection.\nSet the location reference to -2 or `None` to disable the preferred PoP location (only allowed for secondary).",
1153
1153
  "id_str": "updateSiteGeneralDetails___input___preferredPopLocation___primary",
1154
1154
  "name": "primary",
1155
1155
  "path": "updateSiteGeneralDetails.input.preferredPopLocation.primary",
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,
@@ -55,6 +56,7 @@
55
56
  "IntFilterInput": true,
56
57
  "MacAddressFilterInput": true,
57
58
  "ObjectRefBy": true,
59
+ "OriginType": true,
58
60
  "PageInfo": true,
59
61
  "PagingInput": true,
60
62
  "SiteRef": true,
@@ -1521,6 +1523,74 @@
1521
1523
  },
1522
1524
  "varName": "stringFilterInput"
1523
1525
  },
1526
+ "isManaged": {
1527
+ "defaultValue": null,
1528
+ "description": null,
1529
+ "id_str": "list___input___filter___isManaged",
1530
+ "name": "isManaged",
1531
+ "path": "list.input.filter.isManaged",
1532
+ "requestStr": "$booleanFilterInput:[BooleanFilterInput] ",
1533
+ "required": false,
1534
+ "responseStr": "isManaged:$booleanFilterInput ",
1535
+ "type": {
1536
+ "definition": {
1537
+ "description": null,
1538
+ "enumValues": null,
1539
+ "fields": null,
1540
+ "inputFields": {
1541
+ "eq": {
1542
+ "defaultValue": null,
1543
+ "description": null,
1544
+ "id_str": "list___input___filter___isManaged___eq",
1545
+ "name": "eq",
1546
+ "path": "list.input.filter.isManaged.eq",
1547
+ "requestStr": "$eq:Boolean ",
1548
+ "required": false,
1549
+ "responseStr": "eq:$eq ",
1550
+ "type": {
1551
+ "kind": [
1552
+ "SCALAR"
1553
+ ],
1554
+ "name": "Boolean",
1555
+ "non_null": false
1556
+ },
1557
+ "varName": "eq"
1558
+ },
1559
+ "neq": {
1560
+ "defaultValue": null,
1561
+ "description": null,
1562
+ "id_str": "list___input___filter___isManaged___neq",
1563
+ "name": "neq",
1564
+ "path": "list.input.filter.isManaged.neq",
1565
+ "requestStr": "$neq:Boolean ",
1566
+ "required": false,
1567
+ "responseStr": "neq:$neq ",
1568
+ "type": {
1569
+ "kind": [
1570
+ "SCALAR"
1571
+ ],
1572
+ "name": "Boolean",
1573
+ "non_null": false
1574
+ },
1575
+ "varName": "neq"
1576
+ }
1577
+ },
1578
+ "interfaces": null,
1579
+ "kind": "INPUT_OBJECT",
1580
+ "name": "BooleanFilterInput",
1581
+ "possibleTypes": null
1582
+ },
1583
+ "indexType": "input_object",
1584
+ "kind": [
1585
+ "LIST",
1586
+ "NON_NULL",
1587
+ "INPUT_OBJECT"
1588
+ ],
1589
+ "name": "BooleanFilterInput",
1590
+ "non_null": false
1591
+ },
1592
+ "varName": "booleanFilterInput"
1593
+ },
1524
1594
  "lastSeen": {
1525
1595
  "defaultValue": null,
1526
1596
  "description": null,
@@ -3770,7 +3840,7 @@
3770
3840
  "varName": "pagingInput"
3771
3841
  },
3772
3842
  "sort": {
3773
- "defaultValue": "{lastSeen: {direction: DESC, priority: 1}}",
3843
+ "defaultValue": "{id: {direction: DESC, priority: 1}}",
3774
3844
  "description": null,
3775
3845
  "id_str": "list___input___sort",
3776
3846
  "name": "sort",
@@ -9435,6 +9505,74 @@
9435
9505
  },
9436
9506
  "varName": "stringFilterInput"
9437
9507
  },
9508
+ "isManaged": {
9509
+ "defaultValue": null,
9510
+ "description": null,
9511
+ "id_str": "list___input___filter___isManaged",
9512
+ "name": "isManaged",
9513
+ "path": "list.input.filter.isManaged",
9514
+ "requestStr": "$booleanFilterInput:[BooleanFilterInput] ",
9515
+ "required": false,
9516
+ "responseStr": "isManaged:$booleanFilterInput ",
9517
+ "type": {
9518
+ "definition": {
9519
+ "description": null,
9520
+ "enumValues": null,
9521
+ "fields": null,
9522
+ "inputFields": {
9523
+ "eq": {
9524
+ "defaultValue": null,
9525
+ "description": null,
9526
+ "id_str": "list___input___filter___isManaged___eq",
9527
+ "name": "eq",
9528
+ "path": "list.input.filter.isManaged.eq",
9529
+ "requestStr": "$eq:Boolean ",
9530
+ "required": false,
9531
+ "responseStr": "eq:$eq ",
9532
+ "type": {
9533
+ "kind": [
9534
+ "SCALAR"
9535
+ ],
9536
+ "name": "Boolean",
9537
+ "non_null": false
9538
+ },
9539
+ "varName": "eq"
9540
+ },
9541
+ "neq": {
9542
+ "defaultValue": null,
9543
+ "description": null,
9544
+ "id_str": "list___input___filter___isManaged___neq",
9545
+ "name": "neq",
9546
+ "path": "list.input.filter.isManaged.neq",
9547
+ "requestStr": "$neq:Boolean ",
9548
+ "required": false,
9549
+ "responseStr": "neq:$neq ",
9550
+ "type": {
9551
+ "kind": [
9552
+ "SCALAR"
9553
+ ],
9554
+ "name": "Boolean",
9555
+ "non_null": false
9556
+ },
9557
+ "varName": "neq"
9558
+ }
9559
+ },
9560
+ "interfaces": null,
9561
+ "kind": "INPUT_OBJECT",
9562
+ "name": "BooleanFilterInput",
9563
+ "possibleTypes": null
9564
+ },
9565
+ "indexType": "input_object",
9566
+ "kind": [
9567
+ "LIST",
9568
+ "NON_NULL",
9569
+ "INPUT_OBJECT"
9570
+ ],
9571
+ "name": "BooleanFilterInput",
9572
+ "non_null": false
9573
+ },
9574
+ "varName": "booleanFilterInput"
9575
+ },
9438
9576
  "lastSeen": {
9439
9577
  "defaultValue": null,
9440
9578
  "description": null,
@@ -11684,7 +11822,7 @@
11684
11822
  "varName": "pagingInput"
11685
11823
  },
11686
11824
  "sort": {
11687
- "defaultValue": "{lastSeen: {direction: DESC, priority: 1}}",
11825
+ "defaultValue": "{id: {direction: DESC, priority: 1}}",
11688
11826
  "description": null,
11689
11827
  "id_str": "list___input___sort",
11690
11828
  "name": "sort",
@@ -14314,6 +14452,27 @@
14314
14452
  },
14315
14453
  "varName": "ip"
14316
14454
  },
14455
+ "isManaged": {
14456
+ "args": {},
14457
+ "deprecationReason": null,
14458
+ "description": null,
14459
+ "id_str": "list___device___isManaged",
14460
+ "isDeprecated": false,
14461
+ "name": "isManaged",
14462
+ "path": "list.device.isManaged",
14463
+ "requestStr": "$isManaged:Boolean! ",
14464
+ "required": true,
14465
+ "responseStr": "isManaged:$isManaged ",
14466
+ "type": {
14467
+ "kind": [
14468
+ "NON_NULL",
14469
+ "SCALAR"
14470
+ ],
14471
+ "name": "Boolean",
14472
+ "non_null": false
14473
+ },
14474
+ "varName": "isManaged"
14475
+ },
14317
14476
  "lastSeen": {
14318
14477
  "args": {},
14319
14478
  "deprecationReason": null,
@@ -14631,6 +14790,90 @@
14631
14790
  },
14632
14791
  "varName": "deviceNic"
14633
14792
  },
14793
+ "originTypes": {
14794
+ "alias": "originTypesDeviceV2: originTypes",
14795
+ "args": {},
14796
+ "deprecationReason": null,
14797
+ "description": null,
14798
+ "id_str": "list___device___originTypes",
14799
+ "isDeprecated": false,
14800
+ "name": "originTypes",
14801
+ "path": "list.device.originTypes",
14802
+ "requestStr": "$originTypes:[OriginType]! ",
14803
+ "required": true,
14804
+ "responseStr": "originTypes:$originTypes ",
14805
+ "type": {
14806
+ "definition": {
14807
+ "description": null,
14808
+ "enumValues": [
14809
+ {
14810
+ "deprecationReason": null,
14811
+ "description": null,
14812
+ "isDeprecated": false,
14813
+ "name": "Unknown"
14814
+ },
14815
+ {
14816
+ "deprecationReason": null,
14817
+ "description": null,
14818
+ "isDeprecated": false,
14819
+ "name": "CatoNetworks"
14820
+ },
14821
+ {
14822
+ "deprecationReason": null,
14823
+ "description": null,
14824
+ "isDeprecated": false,
14825
+ "name": "MicrosoftIntune"
14826
+ },
14827
+ {
14828
+ "deprecationReason": null,
14829
+ "description": null,
14830
+ "isDeprecated": false,
14831
+ "name": "Armis"
14832
+ },
14833
+ {
14834
+ "deprecationReason": null,
14835
+ "description": null,
14836
+ "isDeprecated": false,
14837
+ "name": "Claroty"
14838
+ },
14839
+ {
14840
+ "deprecationReason": null,
14841
+ "description": null,
14842
+ "isDeprecated": false,
14843
+ "name": "Zoom"
14844
+ },
14845
+ {
14846
+ "deprecationReason": null,
14847
+ "description": null,
14848
+ "isDeprecated": false,
14849
+ "name": "Crowdstrike"
14850
+ },
14851
+ {
14852
+ "deprecationReason": null,
14853
+ "description": null,
14854
+ "isDeprecated": false,
14855
+ "name": "SentinelOne"
14856
+ }
14857
+ ],
14858
+ "fields": null,
14859
+ "inputFields": null,
14860
+ "interfaces": null,
14861
+ "kind": "ENUM",
14862
+ "name": "OriginType",
14863
+ "possibleTypes": null
14864
+ },
14865
+ "indexType": "enum",
14866
+ "kind": [
14867
+ "NON_NULL",
14868
+ "LIST",
14869
+ "NON_NULL",
14870
+ "ENUM"
14871
+ ],
14872
+ "name": "OriginType",
14873
+ "non_null": false
14874
+ },
14875
+ "varName": "originTypes"
14876
+ },
14634
14877
  "os": {
14635
14878
  "alias": "osDeviceV2: os",
14636
14879
  "args": {},
@@ -15225,6 +15468,10 @@
15225
15468
  "string2"
15226
15469
  ]
15227
15470
  },
15471
+ "isManaged": {
15472
+ "eq": true,
15473
+ "neq": true
15474
+ },
15228
15475
  "lastSeen": {
15229
15476
  "between": [
15230
15477
  "example1",
@@ -193,6 +193,112 @@
193
193
  },
194
194
  "varName": "accountFilter"
195
195
  },
196
+ "countryCode": {
197
+ "defaultValue": null,
198
+ "description": null,
199
+ "id_str": "hardware___input___filter___countryCode",
200
+ "name": "countryCode",
201
+ "path": "hardware.input.filter.countryCode",
202
+ "requestStr": "$stringFilterInput:StringFilterInput ",
203
+ "required": false,
204
+ "responseStr": "countryCode:$stringFilterInput ",
205
+ "type": {
206
+ "definition": {
207
+ "description": null,
208
+ "enumValues": null,
209
+ "fields": null,
210
+ "inputFields": {
211
+ "eq": {
212
+ "defaultValue": null,
213
+ "description": null,
214
+ "id_str": "hardware___input___filter___countryCode___eq",
215
+ "name": "eq",
216
+ "path": "hardware.input.filter.countryCode.eq",
217
+ "requestStr": "$eq:String ",
218
+ "required": false,
219
+ "responseStr": "eq:$eq ",
220
+ "type": {
221
+ "kind": [
222
+ "SCALAR"
223
+ ],
224
+ "name": "String",
225
+ "non_null": false
226
+ },
227
+ "varName": "eq"
228
+ },
229
+ "in": {
230
+ "defaultValue": null,
231
+ "description": null,
232
+ "id_str": "hardware___input___filter___countryCode___in",
233
+ "name": "in",
234
+ "path": "hardware.input.filter.countryCode.in",
235
+ "requestStr": "$in:[String] ",
236
+ "required": false,
237
+ "responseStr": "in:$in ",
238
+ "type": {
239
+ "kind": [
240
+ "LIST",
241
+ "NON_NULL",
242
+ "SCALAR"
243
+ ],
244
+ "name": "String",
245
+ "non_null": false
246
+ },
247
+ "varName": "in"
248
+ },
249
+ "neq": {
250
+ "defaultValue": null,
251
+ "description": null,
252
+ "id_str": "hardware___input___filter___countryCode___neq",
253
+ "name": "neq",
254
+ "path": "hardware.input.filter.countryCode.neq",
255
+ "requestStr": "$neq:String ",
256
+ "required": false,
257
+ "responseStr": "neq:$neq ",
258
+ "type": {
259
+ "kind": [
260
+ "SCALAR"
261
+ ],
262
+ "name": "String",
263
+ "non_null": false
264
+ },
265
+ "varName": "neq"
266
+ },
267
+ "nin": {
268
+ "defaultValue": null,
269
+ "description": null,
270
+ "id_str": "hardware___input___filter___countryCode___nin",
271
+ "name": "nin",
272
+ "path": "hardware.input.filter.countryCode.nin",
273
+ "requestStr": "$nin:[String] ",
274
+ "required": false,
275
+ "responseStr": "nin:$nin ",
276
+ "type": {
277
+ "kind": [
278
+ "LIST",
279
+ "NON_NULL",
280
+ "SCALAR"
281
+ ],
282
+ "name": "String",
283
+ "non_null": false
284
+ },
285
+ "varName": "nin"
286
+ }
287
+ },
288
+ "interfaces": null,
289
+ "kind": "INPUT_OBJECT",
290
+ "name": "StringFilterInput",
291
+ "possibleTypes": null
292
+ },
293
+ "indexType": "input_object",
294
+ "kind": [
295
+ "INPUT_OBJECT"
296
+ ],
297
+ "name": "StringFilterInput",
298
+ "non_null": false
299
+ },
300
+ "varName": "stringFilterInput"
301
+ },
196
302
  "countryName": {
197
303
  "defaultValue": null,
198
304
  "description": null,
@@ -2373,6 +2479,112 @@
2373
2479
  },
2374
2480
  "varName": "accountFilter"
2375
2481
  },
2482
+ "countryCode": {
2483
+ "defaultValue": null,
2484
+ "description": null,
2485
+ "id_str": "hardware___input___filter___countryCode",
2486
+ "name": "countryCode",
2487
+ "path": "hardware.input.filter.countryCode",
2488
+ "requestStr": "$stringFilterInput:StringFilterInput ",
2489
+ "required": false,
2490
+ "responseStr": "countryCode:$stringFilterInput ",
2491
+ "type": {
2492
+ "definition": {
2493
+ "description": null,
2494
+ "enumValues": null,
2495
+ "fields": null,
2496
+ "inputFields": {
2497
+ "eq": {
2498
+ "defaultValue": null,
2499
+ "description": null,
2500
+ "id_str": "hardware___input___filter___countryCode___eq",
2501
+ "name": "eq",
2502
+ "path": "hardware.input.filter.countryCode.eq",
2503
+ "requestStr": "$eq:String ",
2504
+ "required": false,
2505
+ "responseStr": "eq:$eq ",
2506
+ "type": {
2507
+ "kind": [
2508
+ "SCALAR"
2509
+ ],
2510
+ "name": "String",
2511
+ "non_null": false
2512
+ },
2513
+ "varName": "eq"
2514
+ },
2515
+ "in": {
2516
+ "defaultValue": null,
2517
+ "description": null,
2518
+ "id_str": "hardware___input___filter___countryCode___in",
2519
+ "name": "in",
2520
+ "path": "hardware.input.filter.countryCode.in",
2521
+ "requestStr": "$in:[String] ",
2522
+ "required": false,
2523
+ "responseStr": "in:$in ",
2524
+ "type": {
2525
+ "kind": [
2526
+ "LIST",
2527
+ "NON_NULL",
2528
+ "SCALAR"
2529
+ ],
2530
+ "name": "String",
2531
+ "non_null": false
2532
+ },
2533
+ "varName": "in"
2534
+ },
2535
+ "neq": {
2536
+ "defaultValue": null,
2537
+ "description": null,
2538
+ "id_str": "hardware___input___filter___countryCode___neq",
2539
+ "name": "neq",
2540
+ "path": "hardware.input.filter.countryCode.neq",
2541
+ "requestStr": "$neq:String ",
2542
+ "required": false,
2543
+ "responseStr": "neq:$neq ",
2544
+ "type": {
2545
+ "kind": [
2546
+ "SCALAR"
2547
+ ],
2548
+ "name": "String",
2549
+ "non_null": false
2550
+ },
2551
+ "varName": "neq"
2552
+ },
2553
+ "nin": {
2554
+ "defaultValue": null,
2555
+ "description": null,
2556
+ "id_str": "hardware___input___filter___countryCode___nin",
2557
+ "name": "nin",
2558
+ "path": "hardware.input.filter.countryCode.nin",
2559
+ "requestStr": "$nin:[String] ",
2560
+ "required": false,
2561
+ "responseStr": "nin:$nin ",
2562
+ "type": {
2563
+ "kind": [
2564
+ "LIST",
2565
+ "NON_NULL",
2566
+ "SCALAR"
2567
+ ],
2568
+ "name": "String",
2569
+ "non_null": false
2570
+ },
2571
+ "varName": "nin"
2572
+ }
2573
+ },
2574
+ "interfaces": null,
2575
+ "kind": "INPUT_OBJECT",
2576
+ "name": "StringFilterInput",
2577
+ "possibleTypes": null
2578
+ },
2579
+ "indexType": "input_object",
2580
+ "kind": [
2581
+ "INPUT_OBJECT"
2582
+ ],
2583
+ "name": "StringFilterInput",
2584
+ "non_null": false
2585
+ },
2586
+ "varName": "stringFilterInput"
2587
+ },
2376
2588
  "countryName": {
2377
2589
  "defaultValue": null,
2378
2590
  "description": null,
@@ -5517,6 +5729,18 @@
5517
5729
  "id2"
5518
5730
  ]
5519
5731
  },
5732
+ "countryCode": {
5733
+ "eq": "string",
5734
+ "in": [
5735
+ "string1",
5736
+ "string2"
5737
+ ],
5738
+ "neq": "string",
5739
+ "nin": [
5740
+ "string1",
5741
+ "string2"
5742
+ ]
5743
+ },
5520
5744
  "countryName": {
5521
5745
  "eq": "string",
5522
5746
  "in": [