catocli 1.0.12__py3-none-any.whl → 1.0.13__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.
- build/lib/catocli/Utils/clidriver.py +117 -0
- build/lib/catocli/__init__.py +2 -0
- build/lib/catocli/__main__.py +12 -0
- build/lib/catocli/parsers/custom/__init__.py +47 -0
- build/lib/catocli/parsers/custom/customLib.py +70 -0
- build/lib/catocli/parsers/mutation_admin/__init__.py +51 -0
- build/lib/catocli/parsers/mutation_container/__init__.py +23 -0
- build/lib/catocli/parsers/mutation_policy/__init__.py +357 -0
- build/lib/catocli/parsers/mutation_site/__init__.py +219 -0
- build/lib/catocli/parsers/mutation_sites/__init__.py +219 -0
- build/lib/catocli/parsers/parserApiClient.py +309 -0
- build/lib/catocli/parsers/query_accountBySubdomain/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountMetrics/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountRoles/__init__.py +17 -0
- build/lib/catocli/parsers/query_accountSnapshot/__init__.py +17 -0
- build/lib/catocli/parsers/query_admin/__init__.py +17 -0
- build/lib/catocli/parsers/query_admins/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStats/__init__.py +17 -0
- build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_auditFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_container/__init__.py +17 -0
- build/lib/catocli/parsers/query_entityLookup/__init__.py +17 -0
- build/lib/catocli/parsers/query_events/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsFeed/__init__.py +17 -0
- build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py +17 -0
- build/lib/catocli/parsers/query_hardwareManagement/__init__.py +17 -0
- build/lib/catocli/parsers/query_licensing/__init__.py +17 -0
- build/lib/catocli/parsers/query_policy/__init__.py +17 -0
- build/lib/catocli/parsers/query_siteLocation/__init__.py +17 -0
- build/lib/catocli/parsers/query_subDomains/__init__.py +17 -0
- build/lib/catocli/parsers/query_xdr/__init__.py +37 -0
- build/lib/catocli/parsers/raw/__init__.py +9 -0
- build/lib/graphql_client/__init__.py +11 -0
- build/lib/graphql_client/api/__init__.py +3 -0
- build/lib/graphql_client/api/call_api.py +73 -0
- build/lib/graphql_client/api_client.py +192 -0
- build/lib/graphql_client/api_client_types.py +404 -0
- build/lib/graphql_client/configuration.py +230 -0
- build/lib/graphql_client/models/__init__.py +13 -0
- build/lib/graphql_client/models/no_schema.py +71 -0
- build/lib/schema/catolib.py +1016 -0
- build/lib/schema/importSchema.py +60 -0
- build/lib/vendor/certifi/__init__.py +4 -0
- build/lib/vendor/certifi/__main__.py +12 -0
- build/lib/vendor/certifi/core.py +114 -0
- build/lib/vendor/certifi/py.typed +0 -0
- build/lib/vendor/six.py +998 -0
- build/lib/vendor/urllib3/__init__.py +211 -0
- build/lib/vendor/urllib3/_base_connection.py +172 -0
- build/lib/vendor/urllib3/_collections.py +483 -0
- build/lib/vendor/urllib3/_request_methods.py +278 -0
- build/lib/vendor/urllib3/_version.py +16 -0
- build/lib/vendor/urllib3/connection.py +1033 -0
- build/lib/vendor/urllib3/connectionpool.py +1182 -0
- build/lib/vendor/urllib3/contrib/__init__.py +0 -0
- build/lib/vendor/urllib3/contrib/emscripten/__init__.py +18 -0
- build/lib/vendor/urllib3/contrib/emscripten/connection.py +254 -0
- build/lib/vendor/urllib3/contrib/emscripten/fetch.py +418 -0
- build/lib/vendor/urllib3/contrib/emscripten/request.py +22 -0
- build/lib/vendor/urllib3/contrib/emscripten/response.py +285 -0
- build/lib/vendor/urllib3/contrib/pyopenssl.py +552 -0
- build/lib/vendor/urllib3/contrib/socks.py +228 -0
- build/lib/vendor/urllib3/exceptions.py +321 -0
- build/lib/vendor/urllib3/fields.py +341 -0
- build/lib/vendor/urllib3/filepost.py +89 -0
- build/lib/vendor/urllib3/http2/__init__.py +53 -0
- build/lib/vendor/urllib3/http2/connection.py +356 -0
- build/lib/vendor/urllib3/http2/probe.py +87 -0
- build/lib/vendor/urllib3/poolmanager.py +637 -0
- build/lib/vendor/urllib3/py.typed +2 -0
- build/lib/vendor/urllib3/response.py +1265 -0
- build/lib/vendor/urllib3/util/__init__.py +42 -0
- build/lib/vendor/urllib3/util/connection.py +137 -0
- build/lib/vendor/urllib3/util/proxy.py +43 -0
- build/lib/vendor/urllib3/util/request.py +256 -0
- build/lib/vendor/urllib3/util/response.py +101 -0
- build/lib/vendor/urllib3/util/retry.py +533 -0
- build/lib/vendor/urllib3/util/ssl_.py +513 -0
- build/lib/vendor/urllib3/util/ssl_match_hostname.py +159 -0
- build/lib/vendor/urllib3/util/ssltransport.py +276 -0
- build/lib/vendor/urllib3/util/timeout.py +275 -0
- build/lib/vendor/urllib3/util/url.py +471 -0
- build/lib/vendor/urllib3/util/util.py +42 -0
- build/lib/vendor/urllib3/util/wait.py +124 -0
- catocli/__init__.py +1 -1
- catocli/parsers/custom/__init__.py +1 -1
- catocli/parsers/custom/customLib.py +1 -2
- catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +1 -1
- catocli/parsers/query_eventsFeed/README.md +1 -1
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/METADATA +1 -1
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/RECORD +104 -21
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/top_level.txt +2 -0
- models/mutation.site.updateSiteGeneralDetails.json +57 -0
- models/mutation.sites.updateSiteGeneralDetails.json +57 -0
- models/query.accountMetrics.json +80 -0
- models/query.accountSnapshot.json +40 -0
- models/query.auditFeed.json +60 -0
- models/query.events.json +240 -0
- models/query.eventsFeed.json +60 -0
- models/query.eventsTimeSeries.json +180 -0
- vendor/.DS_Store +0 -0
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/LICENSE +0 -0
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/WHEEL +0 -0
- {catocli-1.0.12.dist-info → catocli-1.0.13.dist-info}/entry_points.txt +0 -0
|
@@ -1354,6 +1354,36 @@
|
|
|
1354
1354
|
"description": "Shows the id of the target user involved in an activity",
|
|
1355
1355
|
"isDeprecated": false,
|
|
1356
1356
|
"name": "vendor_collaborator_id"
|
|
1357
|
+
},
|
|
1358
|
+
{
|
|
1359
|
+
"deprecationReason": null,
|
|
1360
|
+
"description": "Device Categories",
|
|
1361
|
+
"isDeprecated": false,
|
|
1362
|
+
"name": "device_categories"
|
|
1363
|
+
},
|
|
1364
|
+
{
|
|
1365
|
+
"deprecationReason": null,
|
|
1366
|
+
"description": "Device Manufacturer",
|
|
1367
|
+
"isDeprecated": false,
|
|
1368
|
+
"name": "device_manufacturer"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"deprecationReason": null,
|
|
1372
|
+
"description": "Device Model",
|
|
1373
|
+
"isDeprecated": false,
|
|
1374
|
+
"name": "device_model"
|
|
1375
|
+
},
|
|
1376
|
+
{
|
|
1377
|
+
"deprecationReason": null,
|
|
1378
|
+
"description": "Device OS Type",
|
|
1379
|
+
"isDeprecated": false,
|
|
1380
|
+
"name": "device_os_type"
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"deprecationReason": null,
|
|
1384
|
+
"description": "Device Type",
|
|
1385
|
+
"isDeprecated": false,
|
|
1386
|
+
"name": "device_type"
|
|
1357
1387
|
}
|
|
1358
1388
|
],
|
|
1359
1389
|
"fields": null,
|
|
@@ -2724,6 +2754,36 @@
|
|
|
2724
2754
|
"description": "Shows the id of the target user involved in an activity",
|
|
2725
2755
|
"isDeprecated": false,
|
|
2726
2756
|
"name": "vendor_collaborator_id"
|
|
2757
|
+
},
|
|
2758
|
+
{
|
|
2759
|
+
"deprecationReason": null,
|
|
2760
|
+
"description": "Device Categories",
|
|
2761
|
+
"isDeprecated": false,
|
|
2762
|
+
"name": "device_categories"
|
|
2763
|
+
},
|
|
2764
|
+
{
|
|
2765
|
+
"deprecationReason": null,
|
|
2766
|
+
"description": "Device Manufacturer",
|
|
2767
|
+
"isDeprecated": false,
|
|
2768
|
+
"name": "device_manufacturer"
|
|
2769
|
+
},
|
|
2770
|
+
{
|
|
2771
|
+
"deprecationReason": null,
|
|
2772
|
+
"description": "Device Model",
|
|
2773
|
+
"isDeprecated": false,
|
|
2774
|
+
"name": "device_model"
|
|
2775
|
+
},
|
|
2776
|
+
{
|
|
2777
|
+
"deprecationReason": null,
|
|
2778
|
+
"description": "Device OS Type",
|
|
2779
|
+
"isDeprecated": false,
|
|
2780
|
+
"name": "device_os_type"
|
|
2781
|
+
},
|
|
2782
|
+
{
|
|
2783
|
+
"deprecationReason": null,
|
|
2784
|
+
"description": "Device Type",
|
|
2785
|
+
"isDeprecated": false,
|
|
2786
|
+
"name": "device_type"
|
|
2727
2787
|
}
|
|
2728
2788
|
],
|
|
2729
2789
|
"fields": null,
|
|
@@ -4310,6 +4370,36 @@
|
|
|
4310
4370
|
"description": "Shows the id of the target user involved in an activity",
|
|
4311
4371
|
"isDeprecated": false,
|
|
4312
4372
|
"name": "vendor_collaborator_id"
|
|
4373
|
+
},
|
|
4374
|
+
{
|
|
4375
|
+
"deprecationReason": null,
|
|
4376
|
+
"description": "Device Categories",
|
|
4377
|
+
"isDeprecated": false,
|
|
4378
|
+
"name": "device_categories"
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
"deprecationReason": null,
|
|
4382
|
+
"description": "Device Manufacturer",
|
|
4383
|
+
"isDeprecated": false,
|
|
4384
|
+
"name": "device_manufacturer"
|
|
4385
|
+
},
|
|
4386
|
+
{
|
|
4387
|
+
"deprecationReason": null,
|
|
4388
|
+
"description": "Device Model",
|
|
4389
|
+
"isDeprecated": false,
|
|
4390
|
+
"name": "device_model"
|
|
4391
|
+
},
|
|
4392
|
+
{
|
|
4393
|
+
"deprecationReason": null,
|
|
4394
|
+
"description": "Device OS Type",
|
|
4395
|
+
"isDeprecated": false,
|
|
4396
|
+
"name": "device_os_type"
|
|
4397
|
+
},
|
|
4398
|
+
{
|
|
4399
|
+
"deprecationReason": null,
|
|
4400
|
+
"description": "Device Type",
|
|
4401
|
+
"isDeprecated": false,
|
|
4402
|
+
"name": "device_type"
|
|
4313
4403
|
}
|
|
4314
4404
|
],
|
|
4315
4405
|
"fields": null,
|
|
@@ -5730,6 +5820,36 @@
|
|
|
5730
5820
|
"description": "Shows the id of the target user involved in an activity",
|
|
5731
5821
|
"isDeprecated": false,
|
|
5732
5822
|
"name": "vendor_collaborator_id"
|
|
5823
|
+
},
|
|
5824
|
+
{
|
|
5825
|
+
"deprecationReason": null,
|
|
5826
|
+
"description": "Device Categories",
|
|
5827
|
+
"isDeprecated": false,
|
|
5828
|
+
"name": "device_categories"
|
|
5829
|
+
},
|
|
5830
|
+
{
|
|
5831
|
+
"deprecationReason": null,
|
|
5832
|
+
"description": "Device Manufacturer",
|
|
5833
|
+
"isDeprecated": false,
|
|
5834
|
+
"name": "device_manufacturer"
|
|
5835
|
+
},
|
|
5836
|
+
{
|
|
5837
|
+
"deprecationReason": null,
|
|
5838
|
+
"description": "Device Model",
|
|
5839
|
+
"isDeprecated": false,
|
|
5840
|
+
"name": "device_model"
|
|
5841
|
+
},
|
|
5842
|
+
{
|
|
5843
|
+
"deprecationReason": null,
|
|
5844
|
+
"description": "Device OS Type",
|
|
5845
|
+
"isDeprecated": false,
|
|
5846
|
+
"name": "device_os_type"
|
|
5847
|
+
},
|
|
5848
|
+
{
|
|
5849
|
+
"deprecationReason": null,
|
|
5850
|
+
"description": "Device Type",
|
|
5851
|
+
"isDeprecated": false,
|
|
5852
|
+
"name": "device_type"
|
|
5733
5853
|
}
|
|
5734
5854
|
],
|
|
5735
5855
|
"fields": null,
|
|
@@ -7100,6 +7220,36 @@
|
|
|
7100
7220
|
"description": "Shows the id of the target user involved in an activity",
|
|
7101
7221
|
"isDeprecated": false,
|
|
7102
7222
|
"name": "vendor_collaborator_id"
|
|
7223
|
+
},
|
|
7224
|
+
{
|
|
7225
|
+
"deprecationReason": null,
|
|
7226
|
+
"description": "Device Categories",
|
|
7227
|
+
"isDeprecated": false,
|
|
7228
|
+
"name": "device_categories"
|
|
7229
|
+
},
|
|
7230
|
+
{
|
|
7231
|
+
"deprecationReason": null,
|
|
7232
|
+
"description": "Device Manufacturer",
|
|
7233
|
+
"isDeprecated": false,
|
|
7234
|
+
"name": "device_manufacturer"
|
|
7235
|
+
},
|
|
7236
|
+
{
|
|
7237
|
+
"deprecationReason": null,
|
|
7238
|
+
"description": "Device Model",
|
|
7239
|
+
"isDeprecated": false,
|
|
7240
|
+
"name": "device_model"
|
|
7241
|
+
},
|
|
7242
|
+
{
|
|
7243
|
+
"deprecationReason": null,
|
|
7244
|
+
"description": "Device OS Type",
|
|
7245
|
+
"isDeprecated": false,
|
|
7246
|
+
"name": "device_os_type"
|
|
7247
|
+
},
|
|
7248
|
+
{
|
|
7249
|
+
"deprecationReason": null,
|
|
7250
|
+
"description": "Device Type",
|
|
7251
|
+
"isDeprecated": false,
|
|
7252
|
+
"name": "device_type"
|
|
7103
7253
|
}
|
|
7104
7254
|
],
|
|
7105
7255
|
"fields": null,
|
|
@@ -8686,6 +8836,36 @@
|
|
|
8686
8836
|
"description": "Shows the id of the target user involved in an activity",
|
|
8687
8837
|
"isDeprecated": false,
|
|
8688
8838
|
"name": "vendor_collaborator_id"
|
|
8839
|
+
},
|
|
8840
|
+
{
|
|
8841
|
+
"deprecationReason": null,
|
|
8842
|
+
"description": "Device Categories",
|
|
8843
|
+
"isDeprecated": false,
|
|
8844
|
+
"name": "device_categories"
|
|
8845
|
+
},
|
|
8846
|
+
{
|
|
8847
|
+
"deprecationReason": null,
|
|
8848
|
+
"description": "Device Manufacturer",
|
|
8849
|
+
"isDeprecated": false,
|
|
8850
|
+
"name": "device_manufacturer"
|
|
8851
|
+
},
|
|
8852
|
+
{
|
|
8853
|
+
"deprecationReason": null,
|
|
8854
|
+
"description": "Device Model",
|
|
8855
|
+
"isDeprecated": false,
|
|
8856
|
+
"name": "device_model"
|
|
8857
|
+
},
|
|
8858
|
+
{
|
|
8859
|
+
"deprecationReason": null,
|
|
8860
|
+
"description": "Device OS Type",
|
|
8861
|
+
"isDeprecated": false,
|
|
8862
|
+
"name": "device_os_type"
|
|
8863
|
+
},
|
|
8864
|
+
{
|
|
8865
|
+
"deprecationReason": null,
|
|
8866
|
+
"description": "Device Type",
|
|
8867
|
+
"isDeprecated": false,
|
|
8868
|
+
"name": "device_type"
|
|
8689
8869
|
}
|
|
8690
8870
|
],
|
|
8691
8871
|
"fields": null,
|
vendor/.DS_Store
DELETED
|
Binary file
|
|
File without changes
|
|
File without changes
|
|
File without changes
|