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
|
@@ -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
|
|
@@ -1,10 +1,94 @@
|
|
|
1
|
-
catocli/__init__.py,sha256=
|
|
1
|
+
build/lib/catocli/__init__.py,sha256=l5hDOBUOZ_RAkcbGMhpTzcvlc1sKl4CERbC12EqbbzU,86
|
|
2
|
+
build/lib/catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
|
|
3
|
+
build/lib/catocli/Utils/clidriver.py,sha256=9VfR58RZTp7c50cXn3I7cOO8hbnPIq4PlOl2H0-E5SM,6189
|
|
4
|
+
build/lib/catocli/parsers/parserApiClient.py,sha256=aXQKw9Y024RGvv3xymsZ9v19AW2ar1IMol7ra2Cents,13364
|
|
5
|
+
build/lib/catocli/parsers/custom/__init__.py,sha256=KYes0LjBPyqGPjKSgwaAiVh-Rb9auwgENV6lXl4E-ng,2391
|
|
6
|
+
build/lib/catocli/parsers/custom/customLib.py,sha256=4yTAvPR21C9lJ5A9L4mWuLoFtD_X9leNWJeGHsFBKu0,3004
|
|
7
|
+
build/lib/catocli/parsers/mutation_admin/__init__.py,sha256=K3G9eO3BvgiBmCzVGgFLL0y4drSQUMzyH_S8Ac6IIYc,3014
|
|
8
|
+
build/lib/catocli/parsers/mutation_container/__init__.py,sha256=RwLhxfzLk2ZUisY2ElYqrngBHnJMED8ni5fwtPCW6wQ,1242
|
|
9
|
+
build/lib/catocli/parsers/mutation_policy/__init__.py,sha256=oXV9xHMqBMKvyWqak4i0Q5o8TRYk2tke8GUs9c58mq4,27229
|
|
10
|
+
build/lib/catocli/parsers/mutation_site/__init__.py,sha256=HpOLFwLczzrmIsVEhMw1CZkx4BAccGgSx2ZYOGb_ozA,15006
|
|
11
|
+
build/lib/catocli/parsers/mutation_sites/__init__.py,sha256=I7qTA8UvqxCWbao4ZoyB1QuYYBTFVg_5qOI1CkrzRJQ,15178
|
|
12
|
+
build/lib/catocli/parsers/query_accountBySubdomain/__init__.py,sha256=fwqS8kHRh0BZz56gR96MMi0zAG2QoMmvN0cX66RuckY,1007
|
|
13
|
+
build/lib/catocli/parsers/query_accountMetrics/__init__.py,sha256=I3j2bDDT9CUb0fVR1h-7riVTlpDEEZgYzenV1TRLqNI,959
|
|
14
|
+
build/lib/catocli/parsers/query_accountRoles/__init__.py,sha256=T9MNYqDvUJt_u_kVwxhwtvQQAHLHJkot5F9_ed_CMUw,935
|
|
15
|
+
build/lib/catocli/parsers/query_accountSnapshot/__init__.py,sha256=wppElgLyeXNY6eUEgcI8wmJGhy3HcccfQLnFHM_o1cU,971
|
|
16
|
+
build/lib/catocli/parsers/query_admin/__init__.py,sha256=OVbPgERvEiYsnGSGFYod-axrqXQlXUzd2HxltI9c2BY,851
|
|
17
|
+
build/lib/catocli/parsers/query_admins/__init__.py,sha256=D5A-mXkgiyNvObe9dOipU95RJ61pi-DQYaiWIvSJpyk,863
|
|
18
|
+
build/lib/catocli/parsers/query_appStats/__init__.py,sha256=wsGcPtfkesKw2ZbJf_q2wx1KHChqWizDX9SA5kXtGQE,887
|
|
19
|
+
build/lib/catocli/parsers/query_appStatsTimeSeries/__init__.py,sha256=magaX6e4MQG7kZ6DllvdqIpmL2n6fIhuqdyC_XLYvRw,1007
|
|
20
|
+
build/lib/catocli/parsers/query_auditFeed/__init__.py,sha256=bvXz3RA1EnlEYhmQx2pxbh9JAx2_NVmqrYRDlMo_XDw,899
|
|
21
|
+
build/lib/catocli/parsers/query_container/__init__.py,sha256=hoSori0Q9A56e0H3GTibFuBOkbNQikwmx2ee-8UJAr4,899
|
|
22
|
+
build/lib/catocli/parsers/query_entityLookup/__init__.py,sha256=pFsCPByvqLkcBHy0nJ3SLA_6EoCfDitve8GDBr4FQQ0,935
|
|
23
|
+
build/lib/catocli/parsers/query_events/__init__.py,sha256=qvsnQ9-4HO2otN4ZLJYY80FNcakdxRzKlI-lnChLReg,863
|
|
24
|
+
build/lib/catocli/parsers/query_eventsFeed/__init__.py,sha256=ffXdAeZUOXto_0Rv1Li95ZQ6xErfqZ7KIFG2tIFqrYQ,911
|
|
25
|
+
build/lib/catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=ATJVr5EWZ9H7VEFwKnGCIbrnY5G3NT2JzSDPhSzdc3I,983
|
|
26
|
+
build/lib/catocli/parsers/query_hardwareManagement/__init__.py,sha256=weTGaW9t2vd1PsNGTh9uQQucm8msQsZMjKMjcsJbPso,1007
|
|
27
|
+
build/lib/catocli/parsers/query_licensing/__init__.py,sha256=g8rPnSutS7VV2l8Wl-eQa5ta5mV6FIEAiQfSo0mBt1U,899
|
|
28
|
+
build/lib/catocli/parsers/query_policy/__init__.py,sha256=zH2tvG9WLqUmWWq4Z1lny-JOK5IXwapacgORo7VS2J4,863
|
|
29
|
+
build/lib/catocli/parsers/query_siteLocation/__init__.py,sha256=sMLmzUdtwlzifHjXfYWsLvjdrCkQ3lbY9U0QGUuGbtQ,941
|
|
30
|
+
build/lib/catocli/parsers/query_subDomains/__init__.py,sha256=HMAxZr_145yNx5NV2_zNzLVrocujzmhn7XaynIBJRoo,911
|
|
31
|
+
build/lib/catocli/parsers/query_xdr/__init__.py,sha256=T8hnqOImnTb1kfcWOCTNwlvnu7Ov-lYzMxL7aro9FRw,1884
|
|
32
|
+
build/lib/catocli/parsers/raw/__init__.py,sha256=f1wRd9y_99RB3Npew1UN770Xel0_lhdLvayh5NNzpFw,558
|
|
33
|
+
build/lib/graphql_client/__init__.py,sha256=2nxD4YsWoOnALXi5cXbmtIN_i0NL_eyDTQRTxs52mkI,315
|
|
34
|
+
build/lib/graphql_client/api_client.py,sha256=2Rc1Zo1xH9Jnk1AO68kLSofTShkZwSVF-WkVtczfIc4,5786
|
|
35
|
+
build/lib/graphql_client/api_client_types.py,sha256=mqOtYlO2daALVI8ESDcquOber4zdurs7alv0w_VxCdM,11428
|
|
36
|
+
build/lib/graphql_client/configuration.py,sha256=F-WDXVjbVqeZt5bsF9D38duJmU24MlSzTQEw0kIQXHQ,7648
|
|
37
|
+
build/lib/graphql_client/api/__init__.py,sha256=UjpnW5LhQScrcYDQhCfk5YkA4pGpEx0JT_G0gUI23Rg,88
|
|
38
|
+
build/lib/graphql_client/api/call_api.py,sha256=_eeNW8_B9mcHcNwMPEsIqPURAl5jUWbTDH_Lss9nnNo,2404
|
|
39
|
+
build/lib/graphql_client/models/__init__.py,sha256=beY1dq6H1z0OOWRwvCN84LFOilZKMD_GjrYHuLKJI5c,275
|
|
40
|
+
build/lib/graphql_client/models/no_schema.py,sha256=NorUxY0NQA6reSS8Os_iF0GRk6cCYxhH7_Su0B9_eJk,1972
|
|
41
|
+
build/lib/schema/catolib.py,sha256=MqkhYf4oQlnKCI1URSJ6fZSxU7stQPMI1CIeGJ8w8cI,49657
|
|
42
|
+
build/lib/schema/importSchema.py,sha256=9xg9N0MjgQUiPRczOpk0sTY1Nx9K2F6MRhpUyRTNqZ4,2795
|
|
43
|
+
build/lib/vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
|
|
44
|
+
build/lib/vendor/certifi/__init__.py,sha256=p_GYZrjUwPBUhpLlCZoGb0miKBKSqDAyZC5DvIuqbHQ,94
|
|
45
|
+
build/lib/vendor/certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
|
|
46
|
+
build/lib/vendor/certifi/core.py,sha256=qRDDFyXVJwTB_EmoGppaXU_R9qCZvhl-EzxPMuV3nTA,4426
|
|
47
|
+
build/lib/vendor/certifi/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
|
+
build/lib/vendor/urllib3/__init__.py,sha256=JMo1tg1nIV1AeJ2vENC_Txfl0e5h6Gzl9DGVk1rWRbo,6979
|
|
49
|
+
build/lib/vendor/urllib3/_base_connection.py,sha256=tH0ZlOxWKika-S9NW-MuIlI_PLFQUUmSnoE_9MeywkM,5652
|
|
50
|
+
build/lib/vendor/urllib3/_collections.py,sha256=aGhh9zCYce3o-5FW9DPSUay6O9LjHx8z6T7wDtdhrkY,17370
|
|
51
|
+
build/lib/vendor/urllib3/_request_methods.py,sha256=LTDxHenEP5XX-tVWBNkEkAgizCERkZF0JK-F-wCxqwI,9938
|
|
52
|
+
build/lib/vendor/urllib3/_version.py,sha256=gF7zM8AsdLRqhgteXesNHb7_t8ukr2zzkok2g1nvvhA,411
|
|
53
|
+
build/lib/vendor/urllib3/connection.py,sha256=QAwhOV5GOVdsFnMvX5Vv6fQ8f47EzfrROAArfxRdQOY,39508
|
|
54
|
+
build/lib/vendor/urllib3/connectionpool.py,sha256=5fPIHypPwlbKBASMs6bESTEJVEGlsj9FOY9_GGU2GpM,43393
|
|
55
|
+
build/lib/vendor/urllib3/exceptions.py,sha256=RDaiudtR7rqbVKTKpLSgZBBtwaIqV7eZtervZV_mZag,9393
|
|
56
|
+
build/lib/vendor/urllib3/fields.py,sha256=8vi0PeRo_pE5chPmJA07LZtMkVls4UrBS1k2xM506jM,10843
|
|
57
|
+
build/lib/vendor/urllib3/filepost.py,sha256=-9qJT11cNGjO9dqnI20-oErZuTvNaM18xZZPCjZSbOE,2395
|
|
58
|
+
build/lib/vendor/urllib3/poolmanager.py,sha256=2_L2AjVDgoQ0qBmYbX9u9QqyU1u5J37zQbtv_-ueZQA,22913
|
|
59
|
+
build/lib/vendor/urllib3/py.typed,sha256=UaCuPFa3H8UAakbt-5G8SPacldTOGvJv18pPjUJ5gDY,93
|
|
60
|
+
build/lib/vendor/urllib3/response.py,sha256=NS0rqwRmtwWtC_6XDqgDJN_uo-jEmBVzx0V6KCsHlwg,44801
|
|
61
|
+
build/lib/vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
build/lib/vendor/urllib3/contrib/pyopenssl.py,sha256=9iP4j8JafA4hqtX9AgJ9zxrqI-icohGrqFqAMryoNdA,19338
|
|
63
|
+
build/lib/vendor/urllib3/contrib/socks.py,sha256=-iardc61GypsJzD6W6yuRS7KVCyfowcQrl_719H7lIM,7549
|
|
64
|
+
build/lib/vendor/urllib3/contrib/emscripten/__init__.py,sha256=3bVBGVILxXLoUV-3Wlre9u6MGgx9-6bke6ZMOiNlNEI,773
|
|
65
|
+
build/lib/vendor/urllib3/contrib/emscripten/connection.py,sha256=kaBe2tWt7Yy9vNUFRBV7CSyDnfhCYILGxju9KTZj8Sw,8755
|
|
66
|
+
build/lib/vendor/urllib3/contrib/emscripten/fetch.py,sha256=ymwJlHBBuw6WTpKgPHpdmmrNBxlsr75HqoD4Rn27YXk,14131
|
|
67
|
+
build/lib/vendor/urllib3/contrib/emscripten/request.py,sha256=mL28szy1KvE3NJhWor5jNmarp8gwplDU-7gwGZY5g0Q,566
|
|
68
|
+
build/lib/vendor/urllib3/contrib/emscripten/response.py,sha256=wEYWPHCL-JsgCtpCpfnWGYA1-DcjDGpFGqWCXZLwbHY,10017
|
|
69
|
+
build/lib/vendor/urllib3/http2/__init__.py,sha256=xzrASH7R5ANRkPJOot5lGnATOq3KKuyXzI42rcnwmqs,1741
|
|
70
|
+
build/lib/vendor/urllib3/http2/connection.py,sha256=GNlp9BjI3DmfSKe1W0b9IqRBeM8Q13xd2MA3ROcJ3dY,12668
|
|
71
|
+
build/lib/vendor/urllib3/http2/probe.py,sha256=nnAkqbhAakOiF75rz7W0udZ38Eeh_uD8fjV74N73FEI,3014
|
|
72
|
+
build/lib/vendor/urllib3/util/__init__.py,sha256=-qeS0QceivazvBEKDNFCAI-6ACcdDOE4TMvo7SLNlAQ,1001
|
|
73
|
+
build/lib/vendor/urllib3/util/connection.py,sha256=0o79-5NbRfpBDyoehGPLmCA544sCSiXvx0mF9xy3GG0,4458
|
|
74
|
+
build/lib/vendor/urllib3/util/proxy.py,sha256=seP8-Q5B6bB0dMtwPj-YcZZQ30vHuLqRu-tI0JZ2fzs,1148
|
|
75
|
+
build/lib/vendor/urllib3/util/request.py,sha256=UrZ2g3y3stGpH8rm-Sx8-ollgeiiKI496DZXRCwxb9o,8064
|
|
76
|
+
build/lib/vendor/urllib3/util/response.py,sha256=vQE639uoEhj1vpjEdxu5lNIhJCSUZkd7pqllUI0BZOA,3374
|
|
77
|
+
build/lib/vendor/urllib3/util/retry.py,sha256=bj-2YUqblxLlv8THg5fxww-DM54XCbjgZXIQ71XioCY,18459
|
|
78
|
+
build/lib/vendor/urllib3/util/ssl_.py,sha256=WN8a6KPPcvukbZ0MUlBAOkGil8bYKY8NoIYOw7QeOLI,19238
|
|
79
|
+
build/lib/vendor/urllib3/util/ssl_match_hostname.py,sha256=gaWqixoYtQ_GKO8fcRGFj3VXeMoqyxQQuUTPgWeiL_M,5812
|
|
80
|
+
build/lib/vendor/urllib3/util/ssltransport.py,sha256=wprBvhkgjddhhMwwEbHyP4lygHpP6SS-45Euh7oe48k,8887
|
|
81
|
+
build/lib/vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRpA,10346
|
|
82
|
+
build/lib/vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
|
|
83
|
+
build/lib/vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
|
|
84
|
+
build/lib/vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
|
|
85
|
+
catocli/__init__.py,sha256=l5hDOBUOZ_RAkcbGMhpTzcvlc1sKl4CERbC12EqbbzU,86
|
|
2
86
|
catocli/__main__.py,sha256=6Z0ns_k_kUcz1Qtrn1u7UyUnqB-3e85jM_nppOwFsv4,217
|
|
3
87
|
catocli/Utils/clidriver.py,sha256=9VfR58RZTp7c50cXn3I7cOO8hbnPIq4PlOl2H0-E5SM,6189
|
|
4
88
|
catocli/parsers/parserApiClient.py,sha256=aXQKw9Y024RGvv3xymsZ9v19AW2ar1IMol7ra2Cents,13364
|
|
5
89
|
catocli/parsers/custom/README.md,sha256=UvCWAtF3Yh0UsvADb0ve1qJupgYHeyGu6V3Z0O5HEvo,8180
|
|
6
|
-
catocli/parsers/custom/__init__.py,sha256=
|
|
7
|
-
catocli/parsers/custom/customLib.py,sha256=
|
|
90
|
+
catocli/parsers/custom/__init__.py,sha256=KYes0LjBPyqGPjKSgwaAiVh-Rb9auwgENV6lXl4E-ng,2391
|
|
91
|
+
catocli/parsers/custom/customLib.py,sha256=4yTAvPR21C9lJ5A9L4mWuLoFtD_X9leNWJeGHsFBKu0,3004
|
|
8
92
|
catocli/parsers/mutation/README.md,sha256=mdOfOY0sOVGnf9q-GVgtGc7mtxFKigD9q0ILJAw8l0I,32
|
|
9
93
|
catocli/parsers/mutation_admin/README.md,sha256=YzXrmiZf8gPKDd2ii__NztKfYxReu3MBOmswR3BGQHk,201
|
|
10
94
|
catocli/parsers/mutation_admin/__init__.py,sha256=K3G9eO3BvgiBmCzVGgFLL0y4drSQUMzyH_S8Ac6IIYc,3014
|
|
@@ -56,7 +140,7 @@ catocli/parsers/mutation_site_updateHa/README.md,sha256=fJo6TZk6I_1yMRfHuCtdCNcN
|
|
|
56
140
|
catocli/parsers/mutation_site_updateIpsecIkeV2SiteGeneralDetails/README.md,sha256=arQUF-rwdnd_dYeKGEa3w6WLVcaaYP3m4cNKSK23DDk,1272
|
|
57
141
|
catocli/parsers/mutation_site_updateIpsecIkeV2SiteTunnels/README.md,sha256=0Nz8aeKRttEP16USKk9fRXzpERizTYpd3suQ0pQ1dvM,1312
|
|
58
142
|
catocli/parsers/mutation_site_updateNetworkRange/README.md,sha256=9qFoxDwMshKZmADKaSs7gwzC8CuSRD-6SBT0mgBODzA,1223
|
|
59
|
-
catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md,sha256=
|
|
143
|
+
catocli/parsers/mutation_site_updateSiteGeneralDetails/README.md,sha256=_HYm6XMswMyxb0HFW-c9R5txSh1ZUHy-Btl2Sgc5DKk,1096
|
|
60
144
|
catocli/parsers/mutation_site_updateSocketInterface/README.md,sha256=PvY_7H3WZrCRfzmSagN_8wbiEoyzxUA2loKZkbbqSIc,2296
|
|
61
145
|
catocli/parsers/mutation_site_updateStaticHost/README.md,sha256=aI7CLgdLDfQSbcPdweV2cC8Zduzp5pKuzKbIxW3dC58,766
|
|
62
146
|
catocli/parsers/mutation_sites/README.md,sha256=0JLG9cOfCCFgUxvhRiAYW7yPfFYL0-I3JDkI2SYqHE4,201
|
|
@@ -73,7 +157,7 @@ catocli/parsers/mutation_sites_updateHa/README.md,sha256=LDwpq8UzyZc68P_nBObFKLb
|
|
|
73
157
|
catocli/parsers/mutation_sites_updateIpsecIkeV2SiteGeneralDetails/README.md,sha256=Cr3qA88J-cIUPefcoln65rEZLToXlBzXluYo_BFkfHc,1279
|
|
74
158
|
catocli/parsers/mutation_sites_updateIpsecIkeV2SiteTunnels/README.md,sha256=wDwvARYtVsj9JyfI5QNXvuty7EWEm8Q2CdXOIGNZDi0,1319
|
|
75
159
|
catocli/parsers/mutation_sites_updateNetworkRange/README.md,sha256=aDZ7Fbf4KYfWcnqwl_34Vq6NNeRdkwW57g6YkIygx0M,1230
|
|
76
|
-
catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md,sha256=
|
|
160
|
+
catocli/parsers/mutation_sites_updateSiteGeneralDetails/README.md,sha256=4RmjG25v6xwx4WtSGrO_H0msPyjb2S3vewHGUeYaxm4,1103
|
|
77
161
|
catocli/parsers/mutation_sites_updateSocketInterface/README.md,sha256=stYkmRZCYzyV-9LQEXD9U-KqWrTdn_zykuZVwwwwMxw,2303
|
|
78
162
|
catocli/parsers/mutation_sites_updateStaticHost/README.md,sha256=pUz8oDPLR0EaEhzg3QT6eqORrU7PEKXMQEn2uYan5Ek,773
|
|
79
163
|
catocli/parsers/query/README.md,sha256=QX5L_NhJgpCSZy-bQcPRZw2gdJRxMPb6DtrRgVK9f5g,28
|
|
@@ -101,7 +185,7 @@ catocli/parsers/query_entityLookup/README.md,sha256=bdPltTcxTBweWs1DyNkmb0hB4Dkw
|
|
|
101
185
|
catocli/parsers/query_entityLookup/__init__.py,sha256=pFsCPByvqLkcBHy0nJ3SLA_6EoCfDitve8GDBr4FQQ0,935
|
|
102
186
|
catocli/parsers/query_events/README.md,sha256=rjnSO2YmTgwjcFd5mTQVjwQiz_iv5Q6cgqyEaOZRKMw,1243
|
|
103
187
|
catocli/parsers/query_events/__init__.py,sha256=qvsnQ9-4HO2otN4ZLJYY80FNcakdxRzKlI-lnChLReg,863
|
|
104
|
-
catocli/parsers/query_eventsFeed/README.md,sha256=
|
|
188
|
+
catocli/parsers/query_eventsFeed/README.md,sha256=dusOrJpcMD2muP2W2s-Y6hlloaQNdP9dxMBuDoF8bU0,4847
|
|
105
189
|
catocli/parsers/query_eventsFeed/__init__.py,sha256=ffXdAeZUOXto_0Rv1Li95ZQ6xErfqZ7KIFG2tIFqrYQ,911
|
|
106
190
|
catocli/parsers/query_eventsTimeSeries/README.md,sha256=-Jx69xcoO-dgnG_FA0jbuisH-7Xbb3-jNkr46HFf18M,1451
|
|
107
191
|
catocli/parsers/query_eventsTimeSeries/__init__.py,sha256=ATJVr5EWZ9H7VEFwKnGCIbrnY5G3NT2JzSDPhSzdc3I,983
|
|
@@ -169,7 +253,7 @@ models/mutation.site.updateHa.json,sha256=OojCWwakYyZkJNexDUqYoeiwgb47T5zlHDVC1r
|
|
|
169
253
|
models/mutation.site.updateIpsecIkeV2SiteGeneralDetails.json,sha256=vWXF_drsw4UVFVAStaA5pJCT-NCVnF1-4YqnHjQPD_0,199107
|
|
170
254
|
models/mutation.site.updateIpsecIkeV2SiteTunnels.json,sha256=n5zmltoPQugvAaSaGQMYUQlg7fSMuGCNoZ81Gv1lQqI,233024
|
|
171
255
|
models/mutation.site.updateNetworkRange.json,sha256=Dqm_y-nCPMNdyhqnWm1-nMH5mOdb6Hfu1RYbHIra4ts,76532
|
|
172
|
-
models/mutation.site.updateSiteGeneralDetails.json,sha256=
|
|
256
|
+
models/mutation.site.updateSiteGeneralDetails.json,sha256=bDW36IjT3ZRA4_saemeePdPMGkOUAOF3bL1n7HUO9FM,54912
|
|
173
257
|
models/mutation.site.updateSocketInterface.json,sha256=GCtr7Zp542yXMARR1NT2NYfCrW6z4KQnXeQXD9ZiY3c,215173
|
|
174
258
|
models/mutation.site.updateStaticHost.json,sha256=nrJbooNWAaZYedKv-FAphzXQXXZmLgpW8Mk_y5Py3hI,20637
|
|
175
259
|
models/mutation.sites.addIpsecIkeV2Site.json,sha256=MiCdZamYZjaj3IN-5wd5gE4YBdxy_GRGLJwj6b2_WPo,56960
|
|
@@ -184,23 +268,23 @@ models/mutation.sites.updateHa.json,sha256=jfWW04xOQylcgeFZ1cpqoo7Q8kzm_pjomK78t
|
|
|
184
268
|
models/mutation.sites.updateIpsecIkeV2SiteGeneralDetails.json,sha256=RSlOSj6uynfp6XmxW44yfpqVL_rgN7oGwRrb3O2dre4,199095
|
|
185
269
|
models/mutation.sites.updateIpsecIkeV2SiteTunnels.json,sha256=t4ob-5ysLx51FFytddMCLSrAQ3Czara0mg6g7CvyqsU,233012
|
|
186
270
|
models/mutation.sites.updateNetworkRange.json,sha256=4EaECaxgFYxrzGcbjMutKoYbOEcqyt7C09BAayaYyvA,76520
|
|
187
|
-
models/mutation.sites.updateSiteGeneralDetails.json,sha256=
|
|
271
|
+
models/mutation.sites.updateSiteGeneralDetails.json,sha256=rjHCIW5N_V3oX9HngjAir8x9-Ba5ZdSGe5XYZ00pNqE,54900
|
|
188
272
|
models/mutation.sites.updateSocketInterface.json,sha256=Yyh2Yvk2zdWJWt_0NVqXl2exVhy_5r1xK8NchiNBGRw,215161
|
|
189
273
|
models/mutation.sites.updateStaticHost.json,sha256=mpZiqA4YqlQJrFWxMUHbNp3Q4A47X0SpABg-nPLI0lk,20625
|
|
190
274
|
models/query.accountBySubdomain.json,sha256=cHJzmuhcjTiDNciAvp3Zs_ICGh2TPNFv_rM1lxkStGw,5660
|
|
191
|
-
models/query.accountMetrics.json,sha256=
|
|
275
|
+
models/query.accountMetrics.json,sha256=uhrsaJ_8P6Jdv4mf2afpb97AV1s6JHA9U8_6zDTOr1o,907837
|
|
192
276
|
models/query.accountRoles.json,sha256=dovSrXc2YB2SOLR5HsZEQfNGW0hvT0l11b-tzpAZdls,12668
|
|
193
|
-
models/query.accountSnapshot.json,sha256=
|
|
277
|
+
models/query.accountSnapshot.json,sha256=PvTP04XeIL_z0Eh4JNAXfchAcxvk5j_GebHp8nZcdOY,615120
|
|
194
278
|
models/query.admin.json,sha256=tJ6ljsDDH9zSR91RBRioSio498qFP5qbnugLnFoR8Fg,70639
|
|
195
279
|
models/query.admins.json,sha256=EppvUVgN14CKGl9dpYFSwKcnslsC3uqzJ55UAb-B3_Y,134988
|
|
196
280
|
models/query.appStats.json,sha256=1LhlmAc4UqUdBYopXj6NDibHdFMbPQgd0OtvLRYP1Q4,175479
|
|
197
281
|
models/query.appStatsTimeSeries.json,sha256=iA78Byy9K7vwhGhZ-7wGjTWmsS9Tx0oWIJ4npX4v9nQ,163173
|
|
198
|
-
models/query.auditFeed.json,sha256=
|
|
282
|
+
models/query.auditFeed.json,sha256=RNtbl2NzIB4DWYURbgOa1cIysL2TlUc6jmqfqOHif74,390162
|
|
199
283
|
models/query.container.json,sha256=BV0yzrDsUZ_yiOjbiObe0y2w4kGGyYWOBqu9AdS-Wvo,280227
|
|
200
284
|
models/query.entityLookup.json,sha256=nX-OpJbtNQDW-iEaG6VsVT5FRVBMZeD-0xiawVrMIBE,99998
|
|
201
|
-
models/query.events.json,sha256=
|
|
202
|
-
models/query.eventsFeed.json,sha256=
|
|
203
|
-
models/query.eventsTimeSeries.json,sha256=
|
|
285
|
+
models/query.events.json,sha256=b-qchrbc_Sy8eGdQPUv9R8lCzXay9oMLe0lZbWlHeAM,763141
|
|
286
|
+
models/query.eventsFeed.json,sha256=wk5AZNQZG_6Vcy6CsEJlIQBLQqc4pnCI6Yb-tZtugAI,206744
|
|
287
|
+
models/query.eventsTimeSeries.json,sha256=wJ8_ejbeBf9z5YlqiR90g_pA67ybYPWXPLqJqnKRnX0,603984
|
|
204
288
|
models/query.hardwareManagement.json,sha256=pfw1gbG8DKLaJuF1MebQgBcVfwfjxts_FyAq1H9IPbI,226360
|
|
205
289
|
models/query.licensing.json,sha256=2I3WrAW8KLd-6aMicS1OreG9-EwQj3E-SA7mV05dSJ0,922969
|
|
206
290
|
models/query.policy.json,sha256=QppQ7vyFmIJo1M4qbLOh9Iv6niRyJ1QSOqYm1LtBSIA,2091578
|
|
@@ -210,7 +294,6 @@ models/query.xdr.stories.json,sha256=gyU3qmf2jBwgDrf-555EhMqDyAjKWsljZp_HG37L9Tw
|
|
|
210
294
|
models/query.xdr.story.json,sha256=UftyLpKcfJSEqHCNSTn8d2cj2AdM_7BN1Vsatnl6nl4,2806387
|
|
211
295
|
schema/catolib.py,sha256=MqkhYf4oQlnKCI1URSJ6fZSxU7stQPMI1CIeGJ8w8cI,49657
|
|
212
296
|
schema/importSchema.py,sha256=9xg9N0MjgQUiPRczOpk0sTY1Nx9K2F6MRhpUyRTNqZ4,2795
|
|
213
|
-
vendor/.DS_Store,sha256=I9gKQvaXL34OLI_ft7JC7sXQERkXoYOeMLyP6pLL90k,8196
|
|
214
297
|
vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549
|
|
215
298
|
vendor/certifi/__init__.py,sha256=p_GYZrjUwPBUhpLlCZoGb0miKBKSqDAyZC5DvIuqbHQ,94
|
|
216
299
|
vendor/certifi/__main__.py,sha256=xBBoj905TUWBLRGANOcf7oi6e-3dMP4cEoG9OyMs11g,243
|
|
@@ -253,9 +336,9 @@ vendor/urllib3/util/timeout.py,sha256=4eT1FVeZZU7h7mYD1Jq2OXNe4fxekdNvhoWUkZusRp
|
|
|
253
336
|
vendor/urllib3/util/url.py,sha256=wHORhp80RAXyTlAIkTqLFzSrkU7J34ZDxX-tN65MBZk,15213
|
|
254
337
|
vendor/urllib3/util/util.py,sha256=j3lbZK1jPyiwD34T8IgJzdWEZVT-4E-0vYIJi9UjeNA,1146
|
|
255
338
|
vendor/urllib3/util/wait.py,sha256=_ph8IrUR3sqPqi0OopQgJUlH4wzkGeM5CiyA7XGGtmI,4423
|
|
256
|
-
catocli-1.0.
|
|
257
|
-
catocli-1.0.
|
|
258
|
-
catocli-1.0.
|
|
259
|
-
catocli-1.0.
|
|
260
|
-
catocli-1.0.
|
|
261
|
-
catocli-1.0.
|
|
339
|
+
catocli-1.0.13.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
340
|
+
catocli-1.0.13.dist-info/METADATA,sha256=EVJ_Gh5VXTKDDHUHKgzsEYgSFVSMDeERKMaKRUUJiCY,1085
|
|
341
|
+
catocli-1.0.13.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
342
|
+
catocli-1.0.13.dist-info/entry_points.txt,sha256=p4k9Orre6aWcqVrNmBbckmCs39h-1naMxRo2AjWmWZ4,50
|
|
343
|
+
catocli-1.0.13.dist-info/top_level.txt,sha256=2AlgvfEeKL0bTycBLIfGn-B55hegSZIajFxNoqMaJ1k,69
|
|
344
|
+
catocli-1.0.13.dist-info/RECORD,,
|
|
@@ -107,6 +107,24 @@
|
|
|
107
107
|
},
|
|
108
108
|
"varName": "address"
|
|
109
109
|
},
|
|
110
|
+
"cityName": {
|
|
111
|
+
"defaultValue": null,
|
|
112
|
+
"description": null,
|
|
113
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
114
|
+
"name": "cityName",
|
|
115
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
116
|
+
"requestStr": "$cityName:String ",
|
|
117
|
+
"required": false,
|
|
118
|
+
"responseStr": "cityName:$cityName ",
|
|
119
|
+
"type": {
|
|
120
|
+
"kind": [
|
|
121
|
+
"SCALAR"
|
|
122
|
+
],
|
|
123
|
+
"name": "String",
|
|
124
|
+
"non_null": false
|
|
125
|
+
},
|
|
126
|
+
"varName": "cityName"
|
|
127
|
+
},
|
|
110
128
|
"countryCode": {
|
|
111
129
|
"defaultValue": null,
|
|
112
130
|
"description": null,
|
|
@@ -371,6 +389,24 @@
|
|
|
371
389
|
},
|
|
372
390
|
"varName": "address"
|
|
373
391
|
},
|
|
392
|
+
"cityName": {
|
|
393
|
+
"defaultValue": null,
|
|
394
|
+
"description": null,
|
|
395
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
396
|
+
"name": "cityName",
|
|
397
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
398
|
+
"requestStr": "$cityName:String ",
|
|
399
|
+
"required": false,
|
|
400
|
+
"responseStr": "cityName:$cityName ",
|
|
401
|
+
"type": {
|
|
402
|
+
"kind": [
|
|
403
|
+
"SCALAR"
|
|
404
|
+
],
|
|
405
|
+
"name": "String",
|
|
406
|
+
"non_null": false
|
|
407
|
+
},
|
|
408
|
+
"varName": "cityName"
|
|
409
|
+
},
|
|
374
410
|
"countryCode": {
|
|
375
411
|
"defaultValue": null,
|
|
376
412
|
"description": null,
|
|
@@ -641,6 +677,24 @@
|
|
|
641
677
|
},
|
|
642
678
|
"varName": "address"
|
|
643
679
|
},
|
|
680
|
+
"cityName": {
|
|
681
|
+
"defaultValue": null,
|
|
682
|
+
"description": null,
|
|
683
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
684
|
+
"name": "cityName",
|
|
685
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
686
|
+
"requestStr": "$cityName:String ",
|
|
687
|
+
"required": false,
|
|
688
|
+
"responseStr": "cityName:$cityName ",
|
|
689
|
+
"type": {
|
|
690
|
+
"kind": [
|
|
691
|
+
"SCALAR"
|
|
692
|
+
],
|
|
693
|
+
"name": "String",
|
|
694
|
+
"non_null": false
|
|
695
|
+
},
|
|
696
|
+
"varName": "cityName"
|
|
697
|
+
},
|
|
644
698
|
"countryCode": {
|
|
645
699
|
"defaultValue": null,
|
|
646
700
|
"description": null,
|
|
@@ -872,6 +926,9 @@
|
|
|
872
926
|
"address": {
|
|
873
927
|
"address": "String"
|
|
874
928
|
},
|
|
929
|
+
"cityName": {
|
|
930
|
+
"cityName": "String"
|
|
931
|
+
},
|
|
875
932
|
"countryCode": {
|
|
876
933
|
"countryCode": "String"
|
|
877
934
|
},
|
|
@@ -107,6 +107,24 @@
|
|
|
107
107
|
},
|
|
108
108
|
"varName": "address"
|
|
109
109
|
},
|
|
110
|
+
"cityName": {
|
|
111
|
+
"defaultValue": null,
|
|
112
|
+
"description": null,
|
|
113
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
114
|
+
"name": "cityName",
|
|
115
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
116
|
+
"requestStr": "$cityName:String ",
|
|
117
|
+
"required": false,
|
|
118
|
+
"responseStr": "cityName:$cityName ",
|
|
119
|
+
"type": {
|
|
120
|
+
"kind": [
|
|
121
|
+
"SCALAR"
|
|
122
|
+
],
|
|
123
|
+
"name": "String",
|
|
124
|
+
"non_null": false
|
|
125
|
+
},
|
|
126
|
+
"varName": "cityName"
|
|
127
|
+
},
|
|
110
128
|
"countryCode": {
|
|
111
129
|
"defaultValue": null,
|
|
112
130
|
"description": null,
|
|
@@ -371,6 +389,24 @@
|
|
|
371
389
|
},
|
|
372
390
|
"varName": "address"
|
|
373
391
|
},
|
|
392
|
+
"cityName": {
|
|
393
|
+
"defaultValue": null,
|
|
394
|
+
"description": null,
|
|
395
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
396
|
+
"name": "cityName",
|
|
397
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
398
|
+
"requestStr": "$cityName:String ",
|
|
399
|
+
"required": false,
|
|
400
|
+
"responseStr": "cityName:$cityName ",
|
|
401
|
+
"type": {
|
|
402
|
+
"kind": [
|
|
403
|
+
"SCALAR"
|
|
404
|
+
],
|
|
405
|
+
"name": "String",
|
|
406
|
+
"non_null": false
|
|
407
|
+
},
|
|
408
|
+
"varName": "cityName"
|
|
409
|
+
},
|
|
374
410
|
"countryCode": {
|
|
375
411
|
"defaultValue": null,
|
|
376
412
|
"description": null,
|
|
@@ -641,6 +677,24 @@
|
|
|
641
677
|
},
|
|
642
678
|
"varName": "address"
|
|
643
679
|
},
|
|
680
|
+
"cityName": {
|
|
681
|
+
"defaultValue": null,
|
|
682
|
+
"description": null,
|
|
683
|
+
"id_str": "updateSiteGeneralDetails___input___siteLocation___cityName",
|
|
684
|
+
"name": "cityName",
|
|
685
|
+
"path": "updateSiteGeneralDetails.input.siteLocation.cityName",
|
|
686
|
+
"requestStr": "$cityName:String ",
|
|
687
|
+
"required": false,
|
|
688
|
+
"responseStr": "cityName:$cityName ",
|
|
689
|
+
"type": {
|
|
690
|
+
"kind": [
|
|
691
|
+
"SCALAR"
|
|
692
|
+
],
|
|
693
|
+
"name": "String",
|
|
694
|
+
"non_null": false
|
|
695
|
+
},
|
|
696
|
+
"varName": "cityName"
|
|
697
|
+
},
|
|
644
698
|
"countryCode": {
|
|
645
699
|
"defaultValue": null,
|
|
646
700
|
"description": null,
|
|
@@ -872,6 +926,9 @@
|
|
|
872
926
|
"address": {
|
|
873
927
|
"address": "String"
|
|
874
928
|
},
|
|
929
|
+
"cityName": {
|
|
930
|
+
"cityName": "String"
|
|
931
|
+
},
|
|
875
932
|
"countryCode": {
|
|
876
933
|
"countryCode": "String"
|
|
877
934
|
},
|
models/query.accountMetrics.json
CHANGED
|
@@ -1982,6 +1982,26 @@
|
|
|
1982
1982
|
"description": "Basic Site configuration information",
|
|
1983
1983
|
"enumValues": null,
|
|
1984
1984
|
"fields": {
|
|
1985
|
+
"cityName": {
|
|
1986
|
+
"args": {},
|
|
1987
|
+
"deprecationReason": null,
|
|
1988
|
+
"description": "City of the physical site location",
|
|
1989
|
+
"id_str": "sites___info___cityName",
|
|
1990
|
+
"isDeprecated": false,
|
|
1991
|
+
"name": "cityName",
|
|
1992
|
+
"path": "sites.info.cityName",
|
|
1993
|
+
"requestStr": "$cityName:String ",
|
|
1994
|
+
"required": false,
|
|
1995
|
+
"responseStr": "cityName:$cityName ",
|
|
1996
|
+
"type": {
|
|
1997
|
+
"kind": [
|
|
1998
|
+
"SCALAR"
|
|
1999
|
+
],
|
|
2000
|
+
"name": "String",
|
|
2001
|
+
"non_null": false
|
|
2002
|
+
},
|
|
2003
|
+
"varName": "cityName"
|
|
2004
|
+
},
|
|
1985
2005
|
"connType": {
|
|
1986
2006
|
"args": {},
|
|
1987
2007
|
"deprecationReason": null,
|
|
@@ -2126,6 +2146,26 @@
|
|
|
2126
2146
|
},
|
|
2127
2147
|
"varName": "countryName"
|
|
2128
2148
|
},
|
|
2149
|
+
"countryStateName": {
|
|
2150
|
+
"args": {},
|
|
2151
|
+
"deprecationReason": null,
|
|
2152
|
+
"description": "State of the country that is the physical site location",
|
|
2153
|
+
"id_str": "sites___info___countryStateName",
|
|
2154
|
+
"isDeprecated": false,
|
|
2155
|
+
"name": "countryStateName",
|
|
2156
|
+
"path": "sites.info.countryStateName",
|
|
2157
|
+
"requestStr": "$countryStateName:String ",
|
|
2158
|
+
"required": false,
|
|
2159
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
2160
|
+
"type": {
|
|
2161
|
+
"kind": [
|
|
2162
|
+
"SCALAR"
|
|
2163
|
+
],
|
|
2164
|
+
"name": "String",
|
|
2165
|
+
"non_null": false
|
|
2166
|
+
},
|
|
2167
|
+
"varName": "countryStateName"
|
|
2168
|
+
},
|
|
2129
2169
|
"creationTime": {
|
|
2130
2170
|
"args": {},
|
|
2131
2171
|
"deprecationReason": null,
|
|
@@ -7540,6 +7580,26 @@
|
|
|
7540
7580
|
"description": "Basic Site configuration information",
|
|
7541
7581
|
"enumValues": null,
|
|
7542
7582
|
"fields": {
|
|
7583
|
+
"cityName": {
|
|
7584
|
+
"args": {},
|
|
7585
|
+
"deprecationReason": null,
|
|
7586
|
+
"description": "City of the physical site location",
|
|
7587
|
+
"id_str": "users___info___cityName",
|
|
7588
|
+
"isDeprecated": false,
|
|
7589
|
+
"name": "cityName",
|
|
7590
|
+
"path": "users.info.cityName",
|
|
7591
|
+
"requestStr": "$cityName:String ",
|
|
7592
|
+
"required": false,
|
|
7593
|
+
"responseStr": "cityName:$cityName ",
|
|
7594
|
+
"type": {
|
|
7595
|
+
"kind": [
|
|
7596
|
+
"SCALAR"
|
|
7597
|
+
],
|
|
7598
|
+
"name": "String",
|
|
7599
|
+
"non_null": false
|
|
7600
|
+
},
|
|
7601
|
+
"varName": "cityName"
|
|
7602
|
+
},
|
|
7543
7603
|
"connType": {
|
|
7544
7604
|
"args": {},
|
|
7545
7605
|
"deprecationReason": null,
|
|
@@ -7684,6 +7744,26 @@
|
|
|
7684
7744
|
},
|
|
7685
7745
|
"varName": "countryName"
|
|
7686
7746
|
},
|
|
7747
|
+
"countryStateName": {
|
|
7748
|
+
"args": {},
|
|
7749
|
+
"deprecationReason": null,
|
|
7750
|
+
"description": "State of the country that is the physical site location",
|
|
7751
|
+
"id_str": "users___info___countryStateName",
|
|
7752
|
+
"isDeprecated": false,
|
|
7753
|
+
"name": "countryStateName",
|
|
7754
|
+
"path": "users.info.countryStateName",
|
|
7755
|
+
"requestStr": "$countryStateName:String ",
|
|
7756
|
+
"required": false,
|
|
7757
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
7758
|
+
"type": {
|
|
7759
|
+
"kind": [
|
|
7760
|
+
"SCALAR"
|
|
7761
|
+
],
|
|
7762
|
+
"name": "String",
|
|
7763
|
+
"non_null": false
|
|
7764
|
+
},
|
|
7765
|
+
"varName": "countryStateName"
|
|
7766
|
+
},
|
|
7687
7767
|
"creationTime": {
|
|
7688
7768
|
"args": {},
|
|
7689
7769
|
"deprecationReason": null,
|
|
@@ -2727,6 +2727,26 @@
|
|
|
2727
2727
|
"description": "Basic Site configuration information",
|
|
2728
2728
|
"enumValues": null,
|
|
2729
2729
|
"fields": {
|
|
2730
|
+
"cityName": {
|
|
2731
|
+
"args": {},
|
|
2732
|
+
"deprecationReason": null,
|
|
2733
|
+
"description": "City of the physical site location",
|
|
2734
|
+
"id_str": "sites___info___cityName",
|
|
2735
|
+
"isDeprecated": false,
|
|
2736
|
+
"name": "cityName",
|
|
2737
|
+
"path": "sites.info.cityName",
|
|
2738
|
+
"requestStr": "$cityName:String ",
|
|
2739
|
+
"required": false,
|
|
2740
|
+
"responseStr": "cityName:$cityName ",
|
|
2741
|
+
"type": {
|
|
2742
|
+
"kind": [
|
|
2743
|
+
"SCALAR"
|
|
2744
|
+
],
|
|
2745
|
+
"name": "String",
|
|
2746
|
+
"non_null": false
|
|
2747
|
+
},
|
|
2748
|
+
"varName": "cityName"
|
|
2749
|
+
},
|
|
2730
2750
|
"connType": {
|
|
2731
2751
|
"args": {},
|
|
2732
2752
|
"deprecationReason": null,
|
|
@@ -2871,6 +2891,26 @@
|
|
|
2871
2891
|
},
|
|
2872
2892
|
"varName": "countryName"
|
|
2873
2893
|
},
|
|
2894
|
+
"countryStateName": {
|
|
2895
|
+
"args": {},
|
|
2896
|
+
"deprecationReason": null,
|
|
2897
|
+
"description": "State of the country that is the physical site location",
|
|
2898
|
+
"id_str": "sites___info___countryStateName",
|
|
2899
|
+
"isDeprecated": false,
|
|
2900
|
+
"name": "countryStateName",
|
|
2901
|
+
"path": "sites.info.countryStateName",
|
|
2902
|
+
"requestStr": "$countryStateName:String ",
|
|
2903
|
+
"required": false,
|
|
2904
|
+
"responseStr": "countryStateName:$countryStateName ",
|
|
2905
|
+
"type": {
|
|
2906
|
+
"kind": [
|
|
2907
|
+
"SCALAR"
|
|
2908
|
+
],
|
|
2909
|
+
"name": "String",
|
|
2910
|
+
"non_null": false
|
|
2911
|
+
},
|
|
2912
|
+
"varName": "countryStateName"
|
|
2913
|
+
},
|
|
2874
2914
|
"creationTime": {
|
|
2875
2915
|
"args": {},
|
|
2876
2916
|
"deprecationReason": null,
|