Taegis Python SDK
Project description
Taegis SDK for Python
The Taegis SDK is a Python library for interfacing with the GraphQL APIs in Taegis.
Prerequisites
- Python 3.8 or higher.
Authentication
- Set
CLIENT_ID
andCLIENT_SECRET
environment variables as described in the Taegis XDR Documenation.
OR
- Login using username/password with mfa upon service creation
OR
- Device Code SSO
Installation
python -m pip install taegis-sdk-python
Using the SDK
To use the SDK, you must first import the GraphQLService
from taegis_sdk_python import GraphQLService
from pprint import pprint as pp
service = GraphQLService()
Now that you have the GraphQLService
, you can make requests and process responses for Taegis XDR Services
. The following example uses the Investigations Service
to send a query to get all available investigations
result = service.investigations.query.investigations_search(
page=1,
per_page=3,
query="WHERE deleted_at IS NOT NULL EARLIEST=-90d"
)
pp(result)
result = service.tenants.query.tenants(tenants_query=TenantsQuery(
max_results=10,
page_num=1,
))
pp(result)
results = service.events.subscription.event_query(
query="FROM process EARLIEST=-30d",
options=EventQueryOptions(
max_rows=20,
page_size=10,
skip_cache=True,
),
)
pp(results)
print()
try:
next_page = next(
iter(
{
result.next
for result in results
if result.next
}
)
)
except StopIteration:
next_page = None
if next_page:
results = service.events.subscription.event_page(page_id=next_page)
pp(results)
Getting Started Exploring the Schema
from taegis_sdk_python import GraphQLService
service = GraphQLService()
schema = service.core.get_sync_schema()
For more in depth analysis see: Exploring the Schema
For more information see the Getting Started
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
taegis_sdk_python-1.2.21.tar.gz
(188.4 kB
view details)
Built Distribution
File details
Details for the file taegis_sdk_python-1.2.21.tar.gz
.
File metadata
- Download URL: taegis_sdk_python-1.2.21.tar.gz
- Upload date:
- Size: 188.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e3dd1802b8252c501da7e82ef4d39b54b4d19611b272f698a2e07d6ad408064 |
|
MD5 | 20cca93706b6e3909a886193556332f2 |
|
BLAKE2b-256 | 2341712530c2ee2a25e8a39f00a8abe6565e29f2570cadfb1bf2868bc98742fc |
File details
Details for the file taegis_sdk_python-1.2.21-py3-none-any.whl
.
File metadata
- Download URL: taegis_sdk_python-1.2.21-py3-none-any.whl
- Upload date:
- Size: 315.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 996b43f6b15cd29ccbb1d2e31ec011f44d04e0fb3c1138220b242f694b2ebcf5 |
|
MD5 | d80d69cc87c8b7411303dd1b398e8979 |
|
BLAKE2b-256 | fa753e922d47e38d986e5e19c62db540b8a1342881f8ed1f6f856c4e770ad075 |