Skip to main content

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

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


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.19.tar.gz (186.1 kB view details)

Uploaded Source

Built Distribution

taegis_sdk_python-1.2.19-py3-none-any.whl (310.5 kB view details)

Uploaded Python 3

File details

Details for the file taegis_sdk_python-1.2.19.tar.gz.

File metadata

  • Download URL: taegis_sdk_python-1.2.19.tar.gz
  • Upload date:
  • Size: 186.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.9

File hashes

Hashes for taegis_sdk_python-1.2.19.tar.gz
Algorithm Hash digest
SHA256 1e06eea34389af3fc5f6d54e500fa8821fa1d49760442894b89286d1bf4422d2
MD5 9eabc21b17b0e319c3e627fd58a4ec13
BLAKE2b-256 c38ed1361454b2c690195725c9df408b2d68d8c19e802969ef5215538a79b953

See more details on using hashes here.

File details

Details for the file taegis_sdk_python-1.2.19-py3-none-any.whl.

File metadata

File hashes

Hashes for taegis_sdk_python-1.2.19-py3-none-any.whl
Algorithm Hash digest
SHA256 3e36b25b2105d6bd80a4a730ea2b195b5a5b8e17b974ca3e2376200193ef0d94
MD5 bbe1f0d0390a30f231fc0127de783664
BLAKE2b-256 bd1a2735efe385e6a6ed3f590bcefddf273af506ae3f7ba71644fce84c8ff6e2

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page