taegis-sdk-python 1.6.7__tar.gz → 1.6.8__tar.gz
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.
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/PKG-INFO +1 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/_version.py +1 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/service_core.py +5 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/__init__.py +13 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/access_points/mutations.py +14 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/access_points/queries.py +14 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/queries.py +16 -4
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/mutations.py +24 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/queries.py +32 -8
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/subscriptions.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts_history/queries.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/mutations.py +21 -7
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/queries.py +67 -18
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets2/mutations.py +32 -52
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets2/queries.py +72 -54
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets2/types.py +3 -29
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/audits/mutations.py +3 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/audits/queries.py +19 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/authz/mutations.py +16 -4
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/authz/queries.py +86 -18
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/byoti/mutations.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/byoti/queries.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/clients/mutations.py +21 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/clients/queries.py +10 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/collector/mutations.py +86 -22
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/collector/queries.py +143 -36
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/comments/mutations.py +20 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/comments/queries.py +32 -8
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/contracted_endpoint/queries.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/datasources/mutations.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/datasources/queries.py +30 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/datasources/types.py +17 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/detector_registry/queries.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_command_manager/mutations.py +41 -13
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_command_manager/queries.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_management_service/mutations.py +55 -14
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_management_service/queries.py +47 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/entity_context/mutations.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/entity_context/queries.py +36 -9
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/escalation_policies/mutations.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/escalation_policies/queries.py +16 -4
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/event_search/queries.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/events/queries.py +7 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/events/subscriptions.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/exports/mutations.py +78 -23
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/exports/queries.py +43 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/fast_ioc/queries.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/file_info/mutations.py +18 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/file_info/queries.py +18 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/ingest_stats/queries.py +20 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations/mutations.py +100 -25
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations/queries.py +105 -27
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations2/mutations.py +179 -46
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations2/queries.py +113 -44
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations2/types.py +6 -90
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/mitre_attack_info/queries.py +48 -12
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_context/mutations.py +24 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_context/queries.py +22 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_ioc/queries.py +12 -3
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notebooks/mutations.py +24 -4
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notebooks/queries.py +6 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications/mutations.py +32 -8
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications/queries.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications2/mutations.py +64 -16
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications2/queries.py +36 -9
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications2/subscriptions.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/preferences/mutations.py +46 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/preferences/queries.py +44 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/process_trees/queries.py +20 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/roadrunner/mutations.py +30 -9
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/roadrunner/queries.py +32 -8
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/rules/mutations.py +80 -19
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/rules/queries.py +60 -17
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/rules/types.py +31 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/sharelinks/mutations.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/sharelinks/queries.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/subjects/queries.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/subjects/types.py +9 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenant_profiles/mutations.py +112 -28
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenant_profiles/queries.py +76 -17
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants/mutations.py +104 -28
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants/queries.py +46 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants/types.py +134 -96
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants4/mutations.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants4/queries.py +22 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants4/types.py +23 -10
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat/mutations.py +4 -1
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat/queries.py +90 -105
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat/types.py +0 -40
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat_score/queries.py +8 -2
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trip/mutations.py +24 -6
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trip/queries.py +32 -7
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trip/types.py +3 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/users/mutations.py +76 -19
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/users/queries.py +34 -8
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/vdr/queries.py +48 -11
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/xdr_central_connector/mutations.py +36 -9
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/xdr_central_connector/queries.py +20 -5
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/utils.py +25 -9
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/.gitignore +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/LICENSE +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/README.md +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/pyproject.toml +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/_consts.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/authentication.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/alerts/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/alerts/federated_search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/alerts/search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/cases/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/cases/federated_search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/cases/search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/events/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/events/search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/investigations/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/investigations/federated_search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/investigations/search.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/sharelinks/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/sharelinks/create.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/commons/sharelinks/unfurl.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/config.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/errors.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/logging/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/logging/_default.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/retry/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/retry/_default.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/middlewares/utils.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/access_points/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/access_points/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/access_points/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts_history/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts_history/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts_history/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts_history/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets2/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets2/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/audits/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/audits/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/audits/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/authz/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/authz/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/authz/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/byoti/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/byoti/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/byoti/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/clients/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/clients/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/clients/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/collector/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/collector/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/collector/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/comments/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/comments/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/comments/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/contracted_endpoint/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/contracted_endpoint/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/contracted_endpoint/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/contracted_endpoint/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/cql_metadata/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/cql_metadata/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/cql_metadata/queries.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/cql_metadata/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/cql_metadata/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/datasources/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/datasources/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/detector_registry/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/detector_registry/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/detector_registry/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/detector_registry/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_command_manager/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_command_manager/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_command_manager/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_management_service/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_management_service/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/endpoint_management_service/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/entity_context/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/entity_context/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/entity_context/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/escalation_policies/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/escalation_policies/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/escalation_policies/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/event_search/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/event_search/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/event_search/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/event_search/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/events/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/events/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/events/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/exports/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/exports/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/exports/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/fast_ioc/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/fast_ioc/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/fast_ioc/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/fast_ioc/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/file_info/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/file_info/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/file_info/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/ingest_stats/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/ingest_stats/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/ingest_stats/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/ingest_stats/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations2/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/investigations2/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/isensor/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/isensor/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/isensor/queries.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/isensor/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/isensor/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/mitre_attack_info/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/mitre_attack_info/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/mitre_attack_info/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/mitre_attack_info/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_context/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_context/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_context/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_ioc/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_ioc/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_ioc/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/multi_tenant_ioc/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/nl_search/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/nl_search/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/nl_search/queries.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/nl_search/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/nl_search/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notebooks/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notebooks/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notebooks/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications2/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/notifications2/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/preferences/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/preferences/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/preferences/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/process_trees/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/process_trees/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/process_trees/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/process_trees/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/queries/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/queries/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/queries/queries.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/queries/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/queries/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/roadrunner/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/roadrunner/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/roadrunner/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/rules/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/rules/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/sharelinks/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/sharelinks/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/sharelinks/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/subjects/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/subjects/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/subjects/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenant_profiles/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenant_profiles/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenant_profiles/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants4/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/tenants4/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat_score/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat_score/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat_score/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/threat_score/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trigger_action/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trigger_action/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trigger_action/queries.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trigger_action/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trigger_action/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trip/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/trip/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/users/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/users/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/users/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/vdr/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/vdr/mutations.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/vdr/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/vdr/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/xdr_central_connector/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/xdr_central_connector/subscriptions.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/xdr_central_connector/types.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/templates/__init__.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/templates/_jinja2.py +0 -0
- {taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/tokens.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: taegis-sdk-python
|
|
3
|
-
Version: 1.6.
|
|
3
|
+
Version: 1.6.8
|
|
4
4
|
Summary: Taegis Python SDK
|
|
5
5
|
Project-URL: Homepage, https://github.com/secureworks/taegis-sdk-python
|
|
6
6
|
Project-URL: Bug Reports, https://github.com/secureworks/taegis-sdk-python/issues
|
|
@@ -182,6 +182,11 @@ class ServiceCore:
|
|
|
182
182
|
"""Syncronous URL."""
|
|
183
183
|
return self.service.url or self._urls.get(self.service.environment)
|
|
184
184
|
|
|
185
|
+
@property
|
|
186
|
+
def exclude_deprecated_output(self):
|
|
187
|
+
"""GraphQL Query Deprecated Output Fields in Schema."""
|
|
188
|
+
return self.service.exclude_deprecated_output
|
|
189
|
+
|
|
185
190
|
@property
|
|
186
191
|
def wss_url(self) -> str:
|
|
187
192
|
"""WebSockets URL."""
|
|
@@ -6,7 +6,7 @@ import logging
|
|
|
6
6
|
import threading
|
|
7
7
|
from collections.abc import Mapping
|
|
8
8
|
from ssl import SSLContext
|
|
9
|
-
from typing import Any, Dict, Literal, Optional, Union
|
|
9
|
+
from typing import Any, Callable, Dict, Literal, Optional, Tuple, Union
|
|
10
10
|
|
|
11
11
|
import aiohttp
|
|
12
12
|
from aiohttp.client_reqrep import Fingerprint
|
|
@@ -105,8 +105,9 @@ class GraphQLService:
|
|
|
105
105
|
execute_timeout: Optional[Union[int, float]] = 300,
|
|
106
106
|
max_message_size: int = 0,
|
|
107
107
|
use_universal_authentication: bool = False,
|
|
108
|
-
middlewares=None,
|
|
109
|
-
reuse_request_id=False,
|
|
108
|
+
middlewares: Optional[Tuple[Callable]] = None,
|
|
109
|
+
reuse_request_id: bool = False,
|
|
110
|
+
exclude_deprecated_output: bool = True,
|
|
110
111
|
): # pylint: disable=too-many-statements
|
|
111
112
|
"""
|
|
112
113
|
GraphQLService
|
|
@@ -186,6 +187,8 @@ class GraphQLService:
|
|
|
186
187
|
self._middlewares = middlewares or ()
|
|
187
188
|
self._reuse_request_id = reuse_request_id
|
|
188
189
|
|
|
190
|
+
self._exclude_deprecated_output = exclude_deprecated_output
|
|
191
|
+
|
|
189
192
|
self._access_points = None
|
|
190
193
|
self._agent = None
|
|
191
194
|
self._alerts = None
|
|
@@ -424,6 +427,13 @@ class GraphQLService:
|
|
|
424
427
|
"""Max Message Size for Subscriptions."""
|
|
425
428
|
return self._context_manager.get("max_message_size", self._max_message_size)
|
|
426
429
|
|
|
430
|
+
@property
|
|
431
|
+
def exclude_deprecated_output(self):
|
|
432
|
+
"""GraphQL Query Deprecated Output Fields in Schema."""
|
|
433
|
+
return self._context_manager.get(
|
|
434
|
+
"exclude_deprecated_output", self._exclude_deprecated_output
|
|
435
|
+
)
|
|
436
|
+
|
|
427
437
|
@property
|
|
428
438
|
def input_value_deprecation(self):
|
|
429
439
|
"""GraphQL Query Deprecated Input Fields in Schema."""
|
|
@@ -41,7 +41,10 @@ class TaegisSDKAccessPointsMutation:
|
|
|
41
41
|
variables={
|
|
42
42
|
"principal": prepare_input(principal),
|
|
43
43
|
},
|
|
44
|
-
output=build_output_string(
|
|
44
|
+
output=build_output_string(
|
|
45
|
+
AccessPoint,
|
|
46
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
47
|
+
),
|
|
45
48
|
)
|
|
46
49
|
if result.get(endpoint) is not None:
|
|
47
50
|
return AccessPoint.from_dict(result.get(endpoint))
|
|
@@ -56,7 +59,10 @@ class TaegisSDKAccessPointsMutation:
|
|
|
56
59
|
variables={
|
|
57
60
|
"principal": prepare_input(principal),
|
|
58
61
|
},
|
|
59
|
-
output=build_output_string(
|
|
62
|
+
output=build_output_string(
|
|
63
|
+
AccessPoint,
|
|
64
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
65
|
+
),
|
|
60
66
|
)
|
|
61
67
|
if result.get(endpoint) is not None:
|
|
62
68
|
return AccessPoint.from_dict(result.get(endpoint))
|
|
@@ -67,7 +73,12 @@ class TaegisSDKAccessPointsMutation:
|
|
|
67
73
|
endpoint = "deleteAccessPoint"
|
|
68
74
|
|
|
69
75
|
result = self.service.execute_mutation(
|
|
70
|
-
endpoint=endpoint,
|
|
76
|
+
endpoint=endpoint,
|
|
77
|
+
variables={},
|
|
78
|
+
output=build_output_string(
|
|
79
|
+
AccessPoint,
|
|
80
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
81
|
+
),
|
|
71
82
|
)
|
|
72
83
|
if result.get(endpoint) is not None:
|
|
73
84
|
return AccessPoint.from_dict(result.get(endpoint))
|
|
@@ -37,7 +37,12 @@ class TaegisSDKAccessPointsQuery:
|
|
|
37
37
|
endpoint = "getAccessPoint"
|
|
38
38
|
|
|
39
39
|
result = self.service.execute_query(
|
|
40
|
-
endpoint=endpoint,
|
|
40
|
+
endpoint=endpoint,
|
|
41
|
+
variables={},
|
|
42
|
+
output=build_output_string(
|
|
43
|
+
AccessPoint,
|
|
44
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
45
|
+
),
|
|
41
46
|
)
|
|
42
47
|
if result.get(endpoint) is not None:
|
|
43
48
|
return AccessPoint.from_dict(result.get(endpoint))
|
|
@@ -50,7 +55,10 @@ class TaegisSDKAccessPointsQuery:
|
|
|
50
55
|
result = self.service.execute_query(
|
|
51
56
|
endpoint=endpoint,
|
|
52
57
|
variables={},
|
|
53
|
-
output=build_output_string(
|
|
58
|
+
output=build_output_string(
|
|
59
|
+
AccessPointCloudFormation,
|
|
60
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
61
|
+
),
|
|
54
62
|
)
|
|
55
63
|
if result.get(endpoint) is not None:
|
|
56
64
|
return AccessPointCloudFormation.from_dict(result.get(endpoint))
|
|
@@ -63,7 +71,10 @@ class TaegisSDKAccessPointsQuery:
|
|
|
63
71
|
result = self.service.execute_query(
|
|
64
72
|
endpoint=endpoint,
|
|
65
73
|
variables={},
|
|
66
|
-
output=build_output_string(
|
|
74
|
+
output=build_output_string(
|
|
75
|
+
AccessPointPrefixes,
|
|
76
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
77
|
+
),
|
|
67
78
|
)
|
|
68
79
|
if result.get(endpoint) is not None:
|
|
69
80
|
return AccessPointPrefixes.from_dict(result.get(endpoint))
|
{taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/agent/queries.py
RENAMED
|
@@ -43,7 +43,10 @@ class TaegisSDKAgentQuery:
|
|
|
43
43
|
variables={
|
|
44
44
|
"args": prepare_input(args),
|
|
45
45
|
},
|
|
46
|
-
output=build_output_string(
|
|
46
|
+
output=build_output_string(
|
|
47
|
+
Package,
|
|
48
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
49
|
+
),
|
|
47
50
|
)
|
|
48
51
|
if result.get(endpoint) is not None:
|
|
49
52
|
return Package.schema().load(
|
|
@@ -62,7 +65,10 @@ class TaegisSDKAgentQuery:
|
|
|
62
65
|
variables={
|
|
63
66
|
"args": prepare_input(args),
|
|
64
67
|
},
|
|
65
|
-
output=build_output_string(
|
|
68
|
+
output=build_output_string(
|
|
69
|
+
PackageSignedUrl,
|
|
70
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
71
|
+
),
|
|
66
72
|
)
|
|
67
73
|
if result.get(endpoint) is not None:
|
|
68
74
|
return PackageSignedUrl.from_dict(result.get(endpoint))
|
|
@@ -77,7 +83,10 @@ class TaegisSDKAgentQuery:
|
|
|
77
83
|
variables={
|
|
78
84
|
"id": prepare_input(id_),
|
|
79
85
|
},
|
|
80
|
-
output=build_output_string(
|
|
86
|
+
output=build_output_string(
|
|
87
|
+
PackageSignedUrl,
|
|
88
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
89
|
+
),
|
|
81
90
|
)
|
|
82
91
|
if result.get(endpoint) is not None:
|
|
83
92
|
return PackageSignedUrl.from_dict(result.get(endpoint))
|
|
@@ -90,7 +99,10 @@ class TaegisSDKAgentQuery:
|
|
|
90
99
|
result = self.service.execute_query(
|
|
91
100
|
endpoint=endpoint,
|
|
92
101
|
variables={},
|
|
93
|
-
output=build_output_string(
|
|
102
|
+
output=build_output_string(
|
|
103
|
+
ReleaseChannelsConfig,
|
|
104
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
105
|
+
),
|
|
94
106
|
)
|
|
95
107
|
if result.get(endpoint) is not None:
|
|
96
108
|
return ReleaseChannelsConfig.schema().load(
|
{taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/mutations.py
RENAMED
|
@@ -43,7 +43,10 @@ class TaegisSDKAlertsMutation:
|
|
|
43
43
|
variables={
|
|
44
44
|
"in": prepare_input(in_),
|
|
45
45
|
},
|
|
46
|
-
output=build_output_string(
|
|
46
|
+
output=build_output_string(
|
|
47
|
+
UpdateInvestigationResponse,
|
|
48
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
49
|
+
),
|
|
47
50
|
)
|
|
48
51
|
if result.get(endpoint) is not None:
|
|
49
52
|
return UpdateInvestigationResponse.from_dict(result.get(endpoint))
|
|
@@ -62,7 +65,10 @@ class TaegisSDKAlertsMutation:
|
|
|
62
65
|
variables={
|
|
63
66
|
"in": prepare_input(in_),
|
|
64
67
|
},
|
|
65
|
-
output=build_output_string(
|
|
68
|
+
output=build_output_string(
|
|
69
|
+
UpdateResolutionResponse,
|
|
70
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
71
|
+
),
|
|
66
72
|
)
|
|
67
73
|
if result.get(endpoint) is not None:
|
|
68
74
|
return UpdateResolutionResponse.from_dict(result.get(endpoint))
|
|
@@ -81,7 +87,10 @@ class TaegisSDKAlertsMutation:
|
|
|
81
87
|
variables={
|
|
82
88
|
"in": prepare_input(in_),
|
|
83
89
|
},
|
|
84
|
-
output=build_output_string(
|
|
90
|
+
output=build_output_string(
|
|
91
|
+
BulkInvestigationsResponse,
|
|
92
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
93
|
+
),
|
|
85
94
|
)
|
|
86
95
|
if result.get(endpoint) is not None:
|
|
87
96
|
return BulkInvestigationsResponse.from_dict(result.get(endpoint))
|
|
@@ -104,7 +113,10 @@ class TaegisSDKAlertsMutation:
|
|
|
104
113
|
variables={
|
|
105
114
|
"in": prepare_input(in_),
|
|
106
115
|
},
|
|
107
|
-
output=build_output_string(
|
|
116
|
+
output=build_output_string(
|
|
117
|
+
EvictResponse,
|
|
118
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
119
|
+
),
|
|
108
120
|
)
|
|
109
121
|
if result.get(endpoint) is not None:
|
|
110
122
|
return EvictResponse.from_dict(result.get(endpoint))
|
|
@@ -121,7 +133,10 @@ class TaegisSDKAlertsMutation:
|
|
|
121
133
|
variables={
|
|
122
134
|
"in": prepare_input(in_),
|
|
123
135
|
},
|
|
124
|
-
output=build_output_string(
|
|
136
|
+
output=build_output_string(
|
|
137
|
+
UpdateThreatScoreResponse,
|
|
138
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
139
|
+
),
|
|
125
140
|
)
|
|
126
141
|
if result.get(endpoint) is not None:
|
|
127
142
|
return UpdateThreatScoreResponse.from_dict(result.get(endpoint))
|
|
@@ -140,7 +155,10 @@ class TaegisSDKAlertsMutation:
|
|
|
140
155
|
variables={
|
|
141
156
|
"in": prepare_input(in_),
|
|
142
157
|
},
|
|
143
|
-
output=build_output_string(
|
|
158
|
+
output=build_output_string(
|
|
159
|
+
UpdateThreatScoreResponse,
|
|
160
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
161
|
+
),
|
|
144
162
|
)
|
|
145
163
|
if result.get(endpoint) is not None:
|
|
146
164
|
return UpdateThreatScoreResponse.from_dict(result.get(endpoint))
|
{taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/alerts/queries.py
RENAMED
|
@@ -43,7 +43,10 @@ class TaegisSDKAlertsQuery:
|
|
|
43
43
|
variables={
|
|
44
44
|
"in": prepare_input(in_),
|
|
45
45
|
},
|
|
46
|
-
output=build_output_string(
|
|
46
|
+
output=build_output_string(
|
|
47
|
+
AlertsResponse,
|
|
48
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
49
|
+
),
|
|
47
50
|
)
|
|
48
51
|
if result.get(endpoint) is not None:
|
|
49
52
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -60,7 +63,10 @@ class TaegisSDKAlertsQuery:
|
|
|
60
63
|
variables={
|
|
61
64
|
"in": prepare_input(in_),
|
|
62
65
|
},
|
|
63
|
-
output=build_output_string(
|
|
66
|
+
output=build_output_string(
|
|
67
|
+
AlertsResponse,
|
|
68
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
69
|
+
),
|
|
64
70
|
)
|
|
65
71
|
if result.get(endpoint) is not None:
|
|
66
72
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -79,7 +85,10 @@ class TaegisSDKAlertsQuery:
|
|
|
79
85
|
variables={
|
|
80
86
|
"in": prepare_input(in_),
|
|
81
87
|
},
|
|
82
|
-
output=build_output_string(
|
|
88
|
+
output=build_output_string(
|
|
89
|
+
AlertsResponse,
|
|
90
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
91
|
+
),
|
|
83
92
|
)
|
|
84
93
|
if result.get(endpoint) is not None:
|
|
85
94
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -98,7 +107,10 @@ class TaegisSDKAlertsQuery:
|
|
|
98
107
|
variables={
|
|
99
108
|
"in": prepare_input(in_),
|
|
100
109
|
},
|
|
101
|
-
output=build_output_string(
|
|
110
|
+
output=build_output_string(
|
|
111
|
+
AlertsResponse,
|
|
112
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
113
|
+
),
|
|
102
114
|
)
|
|
103
115
|
if result.get(endpoint) is not None:
|
|
104
116
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -117,7 +129,10 @@ class TaegisSDKAlertsQuery:
|
|
|
117
129
|
variables={
|
|
118
130
|
"in": prepare_input(in_),
|
|
119
131
|
},
|
|
120
|
-
output=build_output_string(
|
|
132
|
+
output=build_output_string(
|
|
133
|
+
AlertsCountByTenantResponse,
|
|
134
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
135
|
+
),
|
|
121
136
|
)
|
|
122
137
|
if result.get(endpoint) is not None:
|
|
123
138
|
return AlertsCountByTenantResponse.from_dict(result.get(endpoint))
|
|
@@ -134,7 +149,10 @@ class TaegisSDKAlertsQuery:
|
|
|
134
149
|
variables={
|
|
135
150
|
"in": prepare_input(in_),
|
|
136
151
|
},
|
|
137
|
-
output=build_output_string(
|
|
152
|
+
output=build_output_string(
|
|
153
|
+
AlertsResponse,
|
|
154
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
155
|
+
),
|
|
138
156
|
)
|
|
139
157
|
if result.get(endpoint) is not None:
|
|
140
158
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -151,7 +169,10 @@ class TaegisSDKAlertsQuery:
|
|
|
151
169
|
variables={
|
|
152
170
|
"in": prepare_input(in_),
|
|
153
171
|
},
|
|
154
|
-
output=build_output_string(
|
|
172
|
+
output=build_output_string(
|
|
173
|
+
AlertsResponse,
|
|
174
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
175
|
+
),
|
|
155
176
|
)
|
|
156
177
|
if result.get(endpoint) is not None:
|
|
157
178
|
return AlertsResponse.from_dict(result.get(endpoint))
|
|
@@ -168,7 +189,10 @@ class TaegisSDKAlertsQuery:
|
|
|
168
189
|
variables={
|
|
169
190
|
"in": prepare_input(in_),
|
|
170
191
|
},
|
|
171
|
-
output=build_output_string(
|
|
192
|
+
output=build_output_string(
|
|
193
|
+
AlertsAggregateResponse,
|
|
194
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
195
|
+
),
|
|
172
196
|
)
|
|
173
197
|
if result.get(endpoint) is not None:
|
|
174
198
|
return AlertsAggregateResponse.from_dict(result.get(endpoint))
|
|
@@ -43,7 +43,10 @@ class TaegisSDKAlertsSubscription:
|
|
|
43
43
|
variables={
|
|
44
44
|
"in": prepare_input(in_),
|
|
45
45
|
},
|
|
46
|
-
output=build_output_string(
|
|
46
|
+
output=build_output_string(
|
|
47
|
+
BulkResolutionResponse,
|
|
48
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
49
|
+
),
|
|
47
50
|
)
|
|
48
51
|
if any(r.get(endpoint) for r in result):
|
|
49
52
|
return BulkResolutionResponse.schema().load(
|
|
@@ -41,7 +41,10 @@ class TaegisSDKAlertsHistoryQuery:
|
|
|
41
41
|
variables={
|
|
42
42
|
"id": prepare_input(id_),
|
|
43
43
|
},
|
|
44
|
-
output=build_output_string(
|
|
44
|
+
output=build_output_string(
|
|
45
|
+
AlertChangeRecord,
|
|
46
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
47
|
+
),
|
|
45
48
|
)
|
|
46
49
|
if result.get(endpoint) is not None:
|
|
47
50
|
return AlertChangeRecord.schema().load(
|
{taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/mutations.py
RENAMED
|
@@ -42,7 +42,9 @@ class TaegisSDKAssetsMutation:
|
|
|
42
42
|
"id": prepare_input(id_),
|
|
43
43
|
"reason": prepare_input(reason),
|
|
44
44
|
},
|
|
45
|
-
output=build_output_string(
|
|
45
|
+
output=build_output_string(
|
|
46
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
47
|
+
),
|
|
46
48
|
)
|
|
47
49
|
if result.get(endpoint) is not None:
|
|
48
50
|
return Asset.from_dict(result.get(endpoint))
|
|
@@ -58,7 +60,9 @@ class TaegisSDKAssetsMutation:
|
|
|
58
60
|
"id": prepare_input(id_),
|
|
59
61
|
"reason": prepare_input(reason),
|
|
60
62
|
},
|
|
61
|
-
output=build_output_string(
|
|
63
|
+
output=build_output_string(
|
|
64
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
65
|
+
),
|
|
62
66
|
)
|
|
63
67
|
if result.get(endpoint) is not None:
|
|
64
68
|
return Asset.from_dict(result.get(endpoint))
|
|
@@ -98,7 +102,9 @@ class TaegisSDKAssetsMutation:
|
|
|
98
102
|
"hostId": prepare_input(host_id),
|
|
99
103
|
"tag": prepare_input(tag),
|
|
100
104
|
},
|
|
101
|
-
output=build_output_string(
|
|
105
|
+
output=build_output_string(
|
|
106
|
+
Tag, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
107
|
+
),
|
|
102
108
|
)
|
|
103
109
|
if result.get(endpoint) is not None:
|
|
104
110
|
return Tag.from_dict(result.get(endpoint))
|
|
@@ -118,7 +124,9 @@ class TaegisSDKAssetsMutation:
|
|
|
118
124
|
"id": prepare_input(id_),
|
|
119
125
|
"tag": prepare_input(tag),
|
|
120
126
|
},
|
|
121
|
-
output=build_output_string(
|
|
127
|
+
output=build_output_string(
|
|
128
|
+
Tag, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
129
|
+
),
|
|
122
130
|
)
|
|
123
131
|
if result.get(endpoint) is not None:
|
|
124
132
|
return Tag.from_dict(result.get(endpoint))
|
|
@@ -137,7 +145,9 @@ class TaegisSDKAssetsMutation:
|
|
|
137
145
|
variables={
|
|
138
146
|
"id": prepare_input(id_),
|
|
139
147
|
},
|
|
140
|
-
output=build_output_string(
|
|
148
|
+
output=build_output_string(
|
|
149
|
+
Tag, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
150
|
+
),
|
|
141
151
|
)
|
|
142
152
|
if result.get(endpoint) is not None:
|
|
143
153
|
return Tag.from_dict(result.get(endpoint))
|
|
@@ -156,7 +166,9 @@ class TaegisSDKAssetsMutation:
|
|
|
156
166
|
variables={
|
|
157
167
|
"assetInput": prepare_input(asset_input),
|
|
158
168
|
},
|
|
159
|
-
output=build_output_string(
|
|
169
|
+
output=build_output_string(
|
|
170
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
171
|
+
),
|
|
160
172
|
)
|
|
161
173
|
if result.get(endpoint) is not None:
|
|
162
174
|
return Asset.from_dict(result.get(endpoint))
|
|
@@ -182,7 +194,9 @@ class TaegisSDKAssetsMutation:
|
|
|
182
194
|
"assetIds": prepare_input(asset_ids),
|
|
183
195
|
"investigationId": prepare_input(investigation_id),
|
|
184
196
|
},
|
|
185
|
-
output=build_output_string(
|
|
197
|
+
output=build_output_string(
|
|
198
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
199
|
+
),
|
|
186
200
|
)
|
|
187
201
|
if result.get(endpoint) is not None:
|
|
188
202
|
return Asset.schema().load(
|
{taegis_sdk_python-1.6.7 → taegis_sdk_python-1.6.8}/taegis_sdk_python/services/assets/queries.py
RENAMED
|
@@ -43,7 +43,9 @@ class TaegisSDKAssetsQuery:
|
|
|
43
43
|
variables={
|
|
44
44
|
"id": prepare_input(id_),
|
|
45
45
|
},
|
|
46
|
-
output=build_output_string(
|
|
46
|
+
output=build_output_string(
|
|
47
|
+
Tag, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
48
|
+
),
|
|
47
49
|
)
|
|
48
50
|
if result.get(endpoint) is not None:
|
|
49
51
|
return Tag.from_dict(result.get(endpoint))
|
|
@@ -60,7 +62,9 @@ class TaegisSDKAssetsQuery:
|
|
|
60
62
|
variables={
|
|
61
63
|
"id": prepare_input(id_),
|
|
62
64
|
},
|
|
63
|
-
output=build_output_string(
|
|
65
|
+
output=build_output_string(
|
|
66
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
67
|
+
),
|
|
64
68
|
)
|
|
65
69
|
if result.get(endpoint) is not None:
|
|
66
70
|
return Asset.from_dict(result.get(endpoint))
|
|
@@ -77,7 +81,9 @@ class TaegisSDKAssetsQuery:
|
|
|
77
81
|
variables={
|
|
78
82
|
"tags": prepare_input(tags),
|
|
79
83
|
},
|
|
80
|
-
output=build_output_string(
|
|
84
|
+
output=build_output_string(
|
|
85
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
86
|
+
),
|
|
81
87
|
)
|
|
82
88
|
if result.get(endpoint) is not None:
|
|
83
89
|
return Asset.schema().load(
|
|
@@ -105,7 +111,10 @@ class TaegisSDKAssetsQuery:
|
|
|
105
111
|
variables={
|
|
106
112
|
"id": prepare_input(id_),
|
|
107
113
|
},
|
|
108
|
-
output=build_output_string(
|
|
114
|
+
output=build_output_string(
|
|
115
|
+
EndpointInfo,
|
|
116
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
117
|
+
),
|
|
109
118
|
)
|
|
110
119
|
if result.get(endpoint) is not None:
|
|
111
120
|
return EndpointInfo.from_dict(result.get(endpoint))
|
|
@@ -135,7 +144,10 @@ class TaegisSDKAssetsQuery:
|
|
|
135
144
|
"filter_asset_state": prepare_input(filter_asset_state),
|
|
136
145
|
"only_most_recent": prepare_input(only_most_recent),
|
|
137
146
|
},
|
|
138
|
-
output=build_output_string(
|
|
147
|
+
output=build_output_string(
|
|
148
|
+
AssetsResult,
|
|
149
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
150
|
+
),
|
|
139
151
|
)
|
|
140
152
|
if result.get(endpoint) is not None:
|
|
141
153
|
return AssetsResult.from_dict(result.get(endpoint))
|
|
@@ -155,7 +167,10 @@ class TaegisSDKAssetsQuery:
|
|
|
155
167
|
"offset": prepare_input(offset),
|
|
156
168
|
"limit": prepare_input(limit),
|
|
157
169
|
},
|
|
158
|
-
output=build_output_string(
|
|
170
|
+
output=build_output_string(
|
|
171
|
+
AssetsResult,
|
|
172
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
173
|
+
),
|
|
159
174
|
)
|
|
160
175
|
if result.get(endpoint) is not None:
|
|
161
176
|
return AssetsResult.from_dict(result.get(endpoint))
|
|
@@ -174,7 +189,10 @@ class TaegisSDKAssetsQuery:
|
|
|
174
189
|
variables={
|
|
175
190
|
"endpoint_type": prepare_input(endpoint_type),
|
|
176
191
|
},
|
|
177
|
-
output=build_output_string(
|
|
192
|
+
output=build_output_string(
|
|
193
|
+
AssetCounts,
|
|
194
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
195
|
+
),
|
|
178
196
|
)
|
|
179
197
|
if result.get(endpoint) is not None:
|
|
180
198
|
return AssetCounts.from_dict(result.get(endpoint))
|
|
@@ -189,7 +207,10 @@ class TaegisSDKAssetsQuery:
|
|
|
189
207
|
result = self.service.execute_query(
|
|
190
208
|
endpoint=endpoint,
|
|
191
209
|
variables={},
|
|
192
|
-
output=build_output_string(
|
|
210
|
+
output=build_output_string(
|
|
211
|
+
AssetCountsByEndpointType,
|
|
212
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
213
|
+
),
|
|
193
214
|
)
|
|
194
215
|
if result.get(endpoint) is not None:
|
|
195
216
|
return AssetCountsByEndpointType.schema().load(
|
|
@@ -204,7 +225,12 @@ class TaegisSDKAssetsQuery:
|
|
|
204
225
|
log.warning(f"GraphQL Query `{endpoint}` is deprecated: 'No longer supported'")
|
|
205
226
|
|
|
206
227
|
result = self.service.execute_query(
|
|
207
|
-
endpoint=endpoint,
|
|
228
|
+
endpoint=endpoint,
|
|
229
|
+
variables={},
|
|
230
|
+
output=build_output_string(
|
|
231
|
+
AssetCounts,
|
|
232
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
233
|
+
),
|
|
208
234
|
)
|
|
209
235
|
if result.get(endpoint) is not None:
|
|
210
236
|
return AssetCounts.from_dict(result.get(endpoint))
|
|
@@ -221,7 +247,9 @@ class TaegisSDKAssetsQuery:
|
|
|
221
247
|
variables={
|
|
222
248
|
"ids": prepare_input(ids),
|
|
223
249
|
},
|
|
224
|
-
output=build_output_string(
|
|
250
|
+
output=build_output_string(
|
|
251
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
252
|
+
),
|
|
225
253
|
)
|
|
226
254
|
if result.get(endpoint) is not None:
|
|
227
255
|
return Asset.schema().load(
|
|
@@ -240,7 +268,9 @@ class TaegisSDKAssetsQuery:
|
|
|
240
268
|
variables={
|
|
241
269
|
"hostIds": prepare_input(host_ids),
|
|
242
270
|
},
|
|
243
|
-
output=build_output_string(
|
|
271
|
+
output=build_output_string(
|
|
272
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
273
|
+
),
|
|
244
274
|
)
|
|
245
275
|
if result.get(endpoint) is not None:
|
|
246
276
|
return Asset.schema().load(
|
|
@@ -261,7 +291,9 @@ class TaegisSDKAssetsQuery:
|
|
|
261
291
|
variables={
|
|
262
292
|
"ipAddresses": prepare_input(ip_addresses),
|
|
263
293
|
},
|
|
264
|
-
output=build_output_string(
|
|
294
|
+
output=build_output_string(
|
|
295
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
296
|
+
),
|
|
265
297
|
)
|
|
266
298
|
if result.get(endpoint) is not None:
|
|
267
299
|
return Asset.schema().load(
|
|
@@ -281,7 +313,10 @@ class TaegisSDKAssetsQuery:
|
|
|
281
313
|
"offset": prepare_input(offset),
|
|
282
314
|
"limit": prepare_input(limit),
|
|
283
315
|
},
|
|
284
|
-
output=build_output_string(
|
|
316
|
+
output=build_output_string(
|
|
317
|
+
AssetHistory,
|
|
318
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
319
|
+
),
|
|
285
320
|
)
|
|
286
321
|
if result.get(endpoint) is not None:
|
|
287
322
|
return AssetHistory.schema().load(
|
|
@@ -302,7 +337,10 @@ class TaegisSDKAssetsQuery:
|
|
|
302
337
|
"offset": prepare_input(offset),
|
|
303
338
|
"limit": prepare_input(limit),
|
|
304
339
|
},
|
|
305
|
-
output=build_output_string(
|
|
340
|
+
output=build_output_string(
|
|
341
|
+
AssetRedCloakHistory,
|
|
342
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
343
|
+
),
|
|
306
344
|
)
|
|
307
345
|
if result.get(endpoint) is not None:
|
|
308
346
|
return AssetRedCloakHistory.schema().load(
|
|
@@ -360,7 +398,10 @@ class TaegisSDKAssetsQuery:
|
|
|
360
398
|
"or_search": prepare_input(or_search),
|
|
361
399
|
"filter_asset_state": prepare_input(filter_asset_state),
|
|
362
400
|
},
|
|
363
|
-
output=build_output_string(
|
|
401
|
+
output=build_output_string(
|
|
402
|
+
AssetsResult,
|
|
403
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
404
|
+
),
|
|
364
405
|
)
|
|
365
406
|
if result.get(endpoint) is not None:
|
|
366
407
|
return AssetsResult.from_dict(result.get(endpoint))
|
|
@@ -382,7 +423,10 @@ class TaegisSDKAssetsQuery:
|
|
|
382
423
|
"input": prepare_input(input_),
|
|
383
424
|
"paginationInput": prepare_input(pagination_input),
|
|
384
425
|
},
|
|
385
|
-
output=build_output_string(
|
|
426
|
+
output=build_output_string(
|
|
427
|
+
AssetsResult,
|
|
428
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
429
|
+
),
|
|
386
430
|
)
|
|
387
431
|
if result.get(endpoint) is not None:
|
|
388
432
|
return AssetsResult.from_dict(result.get(endpoint))
|
|
@@ -406,7 +450,10 @@ class TaegisSDKAssetsQuery:
|
|
|
406
450
|
"paginationInput": prepare_input(pagination_input),
|
|
407
451
|
"legacy": prepare_input(legacy),
|
|
408
452
|
},
|
|
409
|
-
output=build_output_string(
|
|
453
|
+
output=build_output_string(
|
|
454
|
+
AssetsExportOutput,
|
|
455
|
+
exclude_deprecated_output=self.service.exclude_deprecated_output,
|
|
456
|
+
),
|
|
410
457
|
)
|
|
411
458
|
if result.get(endpoint) is not None:
|
|
412
459
|
return AssetsExportOutput.from_dict(result.get(endpoint))
|
|
@@ -421,7 +468,9 @@ class TaegisSDKAssetsQuery:
|
|
|
421
468
|
variables={
|
|
422
469
|
"arguments": prepare_input(arguments),
|
|
423
470
|
},
|
|
424
|
-
output=build_output_string(
|
|
471
|
+
output=build_output_string(
|
|
472
|
+
Asset, exclude_deprecated_output=self.service.exclude_deprecated_output
|
|
473
|
+
),
|
|
425
474
|
)
|
|
426
475
|
if result.get(endpoint) is not None:
|
|
427
476
|
return Asset.schema().load(
|