catocli 1.0.11__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_admin/__init__.py +3 -3
- catocli/parsers/mutation_admin_addAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_removeAdmin/README.md +1 -1
- catocli/parsers/mutation_admin_updateAdmin/README.md +1 -1
- catocli/parsers/mutation_container/__init__.py +1 -1
- catocli/parsers/mutation_container_delete/README.md +1 -1
- catocli/parsers/mutation_policy/__init__.py +24 -24
- catocli/parsers/mutation_policy_internetFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_internetFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_addSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_createPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_discardPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_moveSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_publishPolicyRevision/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_removeSection/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updatePolicy/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateRule/README.md +1 -1
- catocli/parsers/mutation_policy_wanFirewall_updateSection/README.md +1 -1
- catocli/parsers/mutation_site/__init__.py +15 -15
- catocli/parsers/mutation_site_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_site_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_site_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_removeSite/README.md +1 -1
- catocli/parsers/mutation_site_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_site_updateHa/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_site_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_site_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_site_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_site_updateStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites/__init__.py +15 -15
- catocli/parsers/mutation_sites_addIpsecIkeV2Site/README.md +1 -1
- catocli/parsers/mutation_sites_addIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_addNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_addSocketSite/README.md +1 -1
- catocli/parsers/mutation_sites_addStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_removeNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_removeSite/README.md +1 -1
- catocli/parsers/mutation_sites_removeStaticHost/README.md +1 -1
- catocli/parsers/mutation_sites_updateHa/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteGeneralDetails/README.md +1 -1
- catocli/parsers/mutation_sites_updateIpsecIkeV2SiteTunnels/README.md +1 -1
- catocli/parsers/mutation_sites_updateNetworkRange/README.md +1 -1
- catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md +2 -2
- catocli/parsers/mutation_sites_updateSocketInterface/README.md +1 -1
- catocli/parsers/mutation_sites_updateStaticHost/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/README.md +1 -1
- catocli/parsers/query_accountBySubdomain/__init__.py +1 -1
- catocli/parsers/query_accountMetrics/README.md +1 -1
- catocli/parsers/query_accountMetrics/__init__.py +1 -1
- catocli/parsers/query_accountRoles/README.md +1 -1
- catocli/parsers/query_accountRoles/__init__.py +1 -1
- catocli/parsers/query_accountSnapshot/README.md +1 -1
- catocli/parsers/query_accountSnapshot/__init__.py +1 -1
- catocli/parsers/query_admin/README.md +1 -1
- catocli/parsers/query_admin/__init__.py +1 -1
- catocli/parsers/query_admins/README.md +1 -1
- catocli/parsers/query_admins/__init__.py +1 -1
- catocli/parsers/query_appStats/README.md +1 -1
- catocli/parsers/query_appStats/__init__.py +1 -1
- catocli/parsers/query_appStatsTimeSeries/README.md +1 -1
- catocli/parsers/query_appStatsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_auditFeed/README.md +1 -1
- catocli/parsers/query_auditFeed/__init__.py +1 -1
- catocli/parsers/query_container/README.md +1 -1
- catocli/parsers/query_container/__init__.py +1 -1
- catocli/parsers/query_entityLookup/README.md +1 -1
- catocli/parsers/query_entityLookup/__init__.py +1 -1
- catocli/parsers/query_events/README.md +1 -1
- catocli/parsers/query_events/__init__.py +1 -1
- catocli/parsers/query_eventsFeed/README.md +2 -2
- catocli/parsers/query_eventsFeed/__init__.py +1 -1
- catocli/parsers/query_eventsTimeSeries/README.md +1 -1
- catocli/parsers/query_eventsTimeSeries/__init__.py +1 -1
- catocli/parsers/query_hardwareManagement/README.md +1 -1
- catocli/parsers/query_hardwareManagement/__init__.py +1 -1
- catocli/parsers/query_licensing/README.md +1 -1
- catocli/parsers/query_licensing/__init__.py +1 -1
- catocli/parsers/query_policy/README.md +1 -1
- catocli/parsers/query_policy/__init__.py +1 -1
- catocli/parsers/query_siteLocation/README.md +1 -1
- catocli/parsers/query_siteLocation/__init__.py +1 -1
- catocli/parsers/query_subDomains/README.md +1 -1
- catocli/parsers/query_subDomains/__init__.py +1 -1
- catocli/parsers/query_xdr/__init__.py +2 -2
- catocli/parsers/query_xdr_stories/README.md +1 -1
- catocli/parsers/query_xdr_story/README.md +1 -1
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/METADATA +1 -1
- catocli-1.0.13.dist-info/RECORD +344 -0
- {catocli-1.0.11.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
- schema/catolib.py +6 -6
- catocli-1.0.11.dist-info/RECORD +0 -261
- vendor/.DS_Store +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/LICENSE +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/WHEEL +0 -0
- {catocli-1.0.11.dist-info → catocli-1.0.13.dist-info}/entry_points.txt +0 -0
|
@@ -7,7 +7,7 @@ def query_accountMetrics_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_accountMetrics"))
|
|
8
8
|
|
|
9
9
|
query_accountMetrics_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_accountMetrics_parser.add_argument('-accountID', help='
|
|
10
|
+
query_accountMetrics_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_accountMetrics_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_accountMetrics_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_accountRoles_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_accountRoles"))
|
|
8
8
|
|
|
9
9
|
query_accountRoles_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_accountRoles_parser.add_argument('-accountID', help='
|
|
10
|
+
query_accountRoles_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_accountRoles_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_accountRoles_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_accountSnapshot_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_accountSnapshot"))
|
|
8
8
|
|
|
9
9
|
query_accountSnapshot_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_accountSnapshot_parser.add_argument('-accountID', help='
|
|
10
|
+
query_accountSnapshot_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_accountSnapshot_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_accountSnapshot_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_admin_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_admin"))
|
|
8
8
|
|
|
9
9
|
query_admin_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_admin_parser.add_argument('-accountID', help='
|
|
10
|
+
query_admin_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_admin_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_admin_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_admins_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_admins"))
|
|
8
8
|
|
|
9
9
|
query_admins_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_admins_parser.add_argument('-accountID', help='
|
|
10
|
+
query_admins_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_admins_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_admins_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_appStats_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_appStats"))
|
|
8
8
|
|
|
9
9
|
query_appStats_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_appStats_parser.add_argument('-accountID', help='
|
|
10
|
+
query_appStats_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_appStats_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_appStats_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_appStatsTimeSeries_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_appStatsTimeSeries"))
|
|
8
8
|
|
|
9
9
|
query_appStatsTimeSeries_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_appStatsTimeSeries_parser.add_argument('-accountID', help='
|
|
10
|
+
query_appStatsTimeSeries_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_appStatsTimeSeries_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_appStatsTimeSeries_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_auditFeed_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_auditFeed"))
|
|
8
8
|
|
|
9
9
|
query_auditFeed_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_auditFeed_parser.add_argument('-accountID', help='
|
|
10
|
+
query_auditFeed_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_auditFeed_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_auditFeed_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_container_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_container"))
|
|
8
8
|
|
|
9
9
|
query_container_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_container_parser.add_argument('-accountID', help='
|
|
10
|
+
query_container_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_container_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_container_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_entityLookup_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_entityLookup"))
|
|
8
8
|
|
|
9
9
|
query_entityLookup_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_entityLookup_parser.add_argument('-accountID', help='
|
|
10
|
+
query_entityLookup_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_entityLookup_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_entityLookup_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_events_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_events"))
|
|
8
8
|
|
|
9
9
|
query_events_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_events_parser.add_argument('-accountID', help='
|
|
10
|
+
query_events_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_events_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_events_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
`catocli query eventsFeed -h`
|
|
8
8
|
|
|
9
|
-
`catocli query eventsFeed <
|
|
9
|
+
`catocli query eventsFeed <json>`
|
|
10
10
|
|
|
11
11
|
`catocli query eventsFeed "$(cat < eventsFeed.json)"`
|
|
12
12
|
|
|
@@ -15,5 +15,5 @@
|
|
|
15
15
|
#### Operation Arguments for query.eventsFeed ####
|
|
16
16
|
`EventFeedFieldFilterInput` [EventFeedFieldFilterInput[]] - (optional) N/A
|
|
17
17
|
`accountIDs` [ID[]] - (optional) List of Unique Account Identifiers.
|
|
18
|
-
`fieldNames` [EventFieldName[]] - (optional) N/A Default Value: ['src_site', 'src_site_id', 'static_host', 'user_id', 'dest_site', 'dest_site_id', 'src_or_dest_site_id', 'rule', 'ISP_name', 'socket_interface', 'custom_category', 'directory_host_name', 'dest_port', 'bgp_peer_asn', 'user_reference_id', 'src_port', 'link_health_pkt_loss', 'pop_name', 'host_ip', 'event_message', 'src_site_name', 'domain_name', 'dest_ip', 'file_hash', 'src_isp_ip', 'authentication_type', 'rule_name', 'directory_sync_result', 'host_mac', 'threat_type', 'threat_verdict', 'device_name', 'link_type', 'login_type', 'configured_host_name', 'internalId', 'directory_sync_type', 'vpn_user_email', 'client_class', 'incident_aggregation', 'socket_reset', 'user_name', 'client_version', 'file_size', 'registration_code', 'bgp_error_code', 'bgp_peer_description', 'threat_name', 'qos_reported_time', 'ip_protocol', 'bgp_cato_asn', 'src_ip', 'threat_reference', 'action', 'windows_domain_name', 'risk_level', 'socket_old_version', 'link_health_latency', 'tunnel_protocol', 'socket_new_version', 'socket_version', 'link_health_jitter', 'upgrade_start_time', 'bgp_cato_ip', 'categories', 'rule_id', 'socket_role', 'targets_cardinality', 'upgrade_initiated_by', 'dest_is_site_or_vpn', 'bgp_peer_ip', 'src_is_site_or_vpn', 'ad_name', 'user_awareness_method', 'link_health_is_congested', 'subnet_name', 'os_version', 'event_sub_type', 'os_type', 'traffic_direction', 'bgp_suberror_code', 'bgp_route_cidr', 'incident_id', 'application', 'application_name', 'application_id', 'upgrade_end_time', 'socket_interface_id', 'custom_categories', 'custom_category_id', 'custom_category_name', 'src_country', 'src_country_code', 'event_count', 'file_name', 'directory_ip', 'time', 'url', 'dest_country', 'dest_country_code', 'flows_cardinality', 'dest_site_name', 'event_type', 'account_id', 'signature_id', 'client_cert_expires', 'client_cert_name', 'is_sanctioned_app', 'app_activity', 'app_activity_type', 'device_posture_profile', 'device_posture_profiles', 'full_path_url', 'application_risk', 'mitre_attack_techniques', 'mitre_attack_subtechniques', 'mitre_attack_tactics', 'indicator', 'connector_type', 'connector_name', 'connector_status', 'parent_connector_name', 'file_type', 'dlp_fail_mode', 'dlp_profiles', 'matched_data_types', 'severity', 'owner', 'collaborators', 'email_subject', 'sharing_scope', 'dns_protection_category', 'final_object_status', 'object_name', 'object_type', 'object_id', 'alert_id', 'vendor', 'vendor_user_id', 'status', 'classification', 'quarantine_folder_path', 'title', 'recommended_actions', 'pid', 'parent_pid', 'process_path', 'failure_reason', 'out_of_band_access', 'logged_in_user', 'http_request_method', 'xff', 'dns_query', 'key_name', 'api_type', 'api_name', 'app_stack', 'tls_rule_name', 'tls_certificate_error', 'tls_version', 'tls_error_type', 'tls_error_description', 'cato_app', 'prompt_action', 'device_id', 'visible_device_id', 'auth_method', 'bypass_method', 'bypass_duration_sec', 'bypass_reason', 'sign_in_event_types', 'tenant_id', 'tenant_name', 'user_agent', 'vendor_event_id', 'vendor_device_id', 'vendor_device_name', 'is_compliant', 'is_managed', 'trust_type', 'confidence_level', 'dlp_scan_types', 'network_access', 'analyst_verdict', 'criticality', 'indication', 'producer', 'story_id', 'raw_data', 'trigger', 'network_rule', 'congestion_algorithm', 'tcp_acceleration', 'tls_inspection', 'public_ip', 'egress_site_name', 'egress_pop_name', 'qos_priority', 'split_tunnel_configuration', 'pac_file', 'always_on_configuration', 'vpn_lan_access', 'connect_on_boot', 'trusted_networks', 'office_mode', 'device_certificate', 'tunnel_ip_protocol', 'notification_description', 'notification_api_error', 'reference_url', 'app_activity_category', 'is_admin_activity', 'is_admin', 'collaborator_name', 'dest_group_id', 'dest_group_name', 'access_method', 'vendor_collaborator_id']
|
|
18
|
+
`fieldNames` [EventFieldName[]] - (optional) N/A Default Value: ['src_site', 'src_site_id', 'static_host', 'user_id', 'dest_site', 'dest_site_id', 'src_or_dest_site_id', 'rule', 'ISP_name', 'socket_interface', 'custom_category', 'directory_host_name', 'dest_port', 'bgp_peer_asn', 'user_reference_id', 'src_port', 'link_health_pkt_loss', 'pop_name', 'host_ip', 'event_message', 'src_site_name', 'domain_name', 'dest_ip', 'file_hash', 'src_isp_ip', 'authentication_type', 'rule_name', 'directory_sync_result', 'host_mac', 'threat_type', 'threat_verdict', 'device_name', 'link_type', 'login_type', 'configured_host_name', 'internalId', 'directory_sync_type', 'vpn_user_email', 'client_class', 'incident_aggregation', 'socket_reset', 'user_name', 'client_version', 'file_size', 'registration_code', 'bgp_error_code', 'bgp_peer_description', 'threat_name', 'qos_reported_time', 'ip_protocol', 'bgp_cato_asn', 'src_ip', 'threat_reference', 'action', 'windows_domain_name', 'risk_level', 'socket_old_version', 'link_health_latency', 'tunnel_protocol', 'socket_new_version', 'socket_version', 'link_health_jitter', 'upgrade_start_time', 'bgp_cato_ip', 'categories', 'rule_id', 'socket_role', 'targets_cardinality', 'upgrade_initiated_by', 'dest_is_site_or_vpn', 'bgp_peer_ip', 'src_is_site_or_vpn', 'ad_name', 'user_awareness_method', 'link_health_is_congested', 'subnet_name', 'os_version', 'event_sub_type', 'os_type', 'traffic_direction', 'bgp_suberror_code', 'bgp_route_cidr', 'incident_id', 'application', 'application_name', 'application_id', 'upgrade_end_time', 'socket_interface_id', 'custom_categories', 'custom_category_id', 'custom_category_name', 'src_country', 'src_country_code', 'event_count', 'file_name', 'directory_ip', 'time', 'url', 'dest_country', 'dest_country_code', 'flows_cardinality', 'dest_site_name', 'event_type', 'account_id', 'signature_id', 'client_cert_expires', 'client_cert_name', 'is_sanctioned_app', 'app_activity', 'app_activity_type', 'device_posture_profile', 'device_posture_profiles', 'full_path_url', 'application_risk', 'mitre_attack_techniques', 'mitre_attack_subtechniques', 'mitre_attack_tactics', 'indicator', 'connector_type', 'connector_name', 'connector_status', 'parent_connector_name', 'file_type', 'dlp_fail_mode', 'dlp_profiles', 'matched_data_types', 'severity', 'owner', 'collaborators', 'email_subject', 'sharing_scope', 'dns_protection_category', 'final_object_status', 'object_name', 'object_type', 'object_id', 'alert_id', 'vendor', 'vendor_user_id', 'status', 'classification', 'quarantine_folder_path', 'title', 'recommended_actions', 'pid', 'parent_pid', 'process_path', 'failure_reason', 'out_of_band_access', 'logged_in_user', 'http_request_method', 'xff', 'dns_query', 'key_name', 'api_type', 'api_name', 'app_stack', 'tls_rule_name', 'tls_certificate_error', 'tls_version', 'tls_error_type', 'tls_error_description', 'cato_app', 'prompt_action', 'device_id', 'visible_device_id', 'auth_method', 'bypass_method', 'bypass_duration_sec', 'bypass_reason', 'sign_in_event_types', 'tenant_id', 'tenant_name', 'user_agent', 'vendor_event_id', 'vendor_device_id', 'vendor_device_name', 'is_compliant', 'is_managed', 'trust_type', 'confidence_level', 'dlp_scan_types', 'network_access', 'analyst_verdict', 'criticality', 'indication', 'producer', 'story_id', 'raw_data', 'trigger', 'network_rule', 'congestion_algorithm', 'tcp_acceleration', 'tls_inspection', 'public_ip', 'egress_site_name', 'egress_pop_name', 'qos_priority', 'split_tunnel_configuration', 'pac_file', 'always_on_configuration', 'vpn_lan_access', 'connect_on_boot', 'trusted_networks', 'office_mode', 'device_certificate', 'tunnel_ip_protocol', 'notification_description', 'notification_api_error', 'reference_url', 'app_activity_category', 'is_admin_activity', 'is_admin', 'collaborator_name', 'dest_group_id', 'dest_group_name', 'access_method', 'vendor_collaborator_id', 'device_categories', 'device_manufacturer', 'device_model', 'device_os_type', 'device_type']
|
|
19
19
|
`marker` [String] - (optional) Marker to use to get results from
|
|
@@ -7,7 +7,7 @@ def query_eventsFeed_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_eventsFeed"))
|
|
8
8
|
|
|
9
9
|
query_eventsFeed_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_eventsFeed_parser.add_argument('-accountID', help='
|
|
10
|
+
query_eventsFeed_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_eventsFeed_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_eventsFeed_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_eventsTimeSeries_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_eventsTimeSeries"))
|
|
8
8
|
|
|
9
9
|
query_eventsTimeSeries_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_eventsTimeSeries_parser.add_argument('-accountID', help='
|
|
10
|
+
query_eventsTimeSeries_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_eventsTimeSeries_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_eventsTimeSeries_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_hardwareManagement_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_hardwareManagement"))
|
|
8
8
|
|
|
9
9
|
query_hardwareManagement_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_hardwareManagement_parser.add_argument('-accountID', help='
|
|
10
|
+
query_hardwareManagement_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_hardwareManagement_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_hardwareManagement_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_licensing_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_licensing"))
|
|
8
8
|
|
|
9
9
|
query_licensing_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_licensing_parser.add_argument('-accountID', help='
|
|
10
|
+
query_licensing_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_licensing_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_licensing_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_policy_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_policy"))
|
|
8
8
|
|
|
9
9
|
query_policy_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_policy_parser.add_argument('-accountID', help='
|
|
10
|
+
query_policy_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_policy_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_policy_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_siteLocation_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_siteLocation"))
|
|
8
8
|
|
|
9
9
|
query_siteLocation_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_siteLocation_parser.add_argument('-accountID', help='
|
|
10
|
+
query_siteLocation_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_siteLocation_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_siteLocation_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -7,7 +7,7 @@ def query_subDomains_parse(query_subparsers):
|
|
|
7
7
|
usage=get_help("query_subDomains"))
|
|
8
8
|
|
|
9
9
|
query_subDomains_parser.add_argument('json', help='Variables in JSON format.')
|
|
10
|
-
query_subDomains_parser.add_argument('-accountID', help='
|
|
10
|
+
query_subDomains_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
11
11
|
query_subDomains_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
12
12
|
help='Print test request preview without sending api call')
|
|
13
13
|
query_subDomains_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -13,7 +13,7 @@ def query_xdr_parse(query_subparsers):
|
|
|
13
13
|
usage=get_help("query_xdr_stories"))
|
|
14
14
|
|
|
15
15
|
query_xdr_stories_parser.add_argument('json', help='Variables in JSON format.')
|
|
16
|
-
query_xdr_stories_parser.add_argument('-accountID', help='
|
|
16
|
+
query_xdr_stories_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
17
17
|
query_xdr_stories_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
18
18
|
help='Print test request preview without sending api call')
|
|
19
19
|
query_xdr_stories_parser.add_argument('-v', const=True, default=False, nargs='?',
|
|
@@ -27,7 +27,7 @@ def query_xdr_parse(query_subparsers):
|
|
|
27
27
|
usage=get_help("query_xdr_story"))
|
|
28
28
|
|
|
29
29
|
query_xdr_story_parser.add_argument('json', help='Variables in JSON format.')
|
|
30
|
-
query_xdr_story_parser.add_argument('-accountID', help='
|
|
30
|
+
query_xdr_story_parser.add_argument('-accountID', help='Override the CATO_ACCOUNT_ID environment variable with this value.')
|
|
31
31
|
query_xdr_story_parser.add_argument('-t', const=True, default=False, nargs='?',
|
|
32
32
|
help='Print test request preview without sending api call')
|
|
33
33
|
query_xdr_story_parser.add_argument('-v', const=True, default=False, nargs='?',
|