Skip to main content

Python package for Nexthink API

Project description

nexthink_api Module

This module provides functionality to interact with the Nexthink Infinity API.

Installation

To install the Nexthink module, use the following command:

pip install nexthink_api

Usage

authentification:

from nexthink_api import NxtApiClient, NxtRegionName

# Fill these in with your Nexthink environment details
client_id = 'your_client_id'
client_secret = 'your_client_secret'
tenant = "tenant_string"
# proxies = { https=os.getenv('https_proxy'), http=os.getenv('http_proxy')}

# Create an instance of the client with the proxy parameters and credentials
nxtClient = NxtApiClient(tenant, 
                         NxtRegionName.eu, 
                         client_id=client_id, 
                         client_secret=client_secret,
                         # proxies=proxies       # If you need a proxy
                         )

Enrichment:

from datetime import datetime, timedelta
from nexthink_api import (
  NxtIdentification,
  NxtIdentificationName,
  NxtField,
  NxtFieldName,
  NxtEnrichment,
  NxtEndpoint,
  NxtEnrichmentRequest,
) 

# Will update Custom Fields for PC12345
# The 3 Custom Fields have been created before in Nexthink admin
# For demo, the 3 CF are named cf_demo1, cf_demo2, cf_demo3

# Data to set in CF
now = datetime.now()
tomorrow = now + timedelta(days=1)
yesterday = now - timedelta(days=1)

# Identification of the device where CF will be updated
identification = NxtIdentification(name=NxtIdentificationName.DEVICE_DEVICE_NAME, value="PC12345")

# The 3 CF with  their value (value should be a string)
field1 = NxtField(name=NxtFieldName.CUSTOM_DEVICE, value=str(now), customValue="cf_demo1")
field2 = NxtField(name=NxtFieldName.CUSTOM_DEVICE, value=str(tomorrow), customValue="cf_demo2")
field3 = NxtField(name=NxtFieldName.CUSTOM_DEVICE, value=str(yesterday), customValue="cf_demo3")

# Create the Enrichment record
enrichments = [NxtEnrichment(identification=[identification], fields=[field1, field2, field3])]
# Prepare the enrichment Request object
enrichmentRequest = NxtEnrichmentRequest(enrichments=enrichments, domain="test_fdj")

# This is the way to see the json payload of the enrichment request 
payload = enrichmentRequest.model_dump()
print(payload)

# use the client to run perform the enrichment on the Enrichment endpoint
response = nxtClient.run_enrichment(endpoint=NxtEndpoint.Enrichment, data=enrichmentRequest)
print(response)

NQL Requests:

  • NQL Queries are optimized for relatively small requests at a high frequency.

The NQL query must have been previously created in the Nexthink admin (admin/NQL API queries) For the example, the NQL query ID will be #get_pilot_collector_devices

The NQL query is :

devices | where collector.update_group == 'Pilot'
from nexthink_api import (
    NxtNqlApiExecuteRequest,
    NxtEndpoint
)

# Query ID
MyRequestID = "#get_pilot_collector_devices"
# Create a nql request object 
nqlRequest = NxtNqlApiExecuteRequest(queryId=MyRequestID)
# Use the client to run the query on the Nql endpoint
response = nxtClient.run_nql(NxtEndpoint.Nql, data=nqlRequest)
print(response)

NQL Export:

  • NQL Export are optimized for large queries at low frequency

This request is asynchronous. You start the execution and get an exportID. You have to wait the end of export by querying the exportID status. Once the export is ready, you will get the S3 URL to download the export.

The NQL query must have been previously created in the Nexthink admin (admin/NQL API queries) For the example, the NQL query ID will be #get_windows_devices.

The NQL query is :

devices | where operating_system.platform == windows
from nexthink_api import (
    NxtNqlApiExecuteRequest,
    NxtEndpoint,
    NxtNqlApiExportResponse,
    NxtErrorResponse
)

# Query ID
MyRequestID = "#get_pilot_collector_devices"
# Create a nql request object 
nqlRequest = NxtNqlApiExecuteRequest(queryId=MyRequestID)
# This time, use the client to run the query on the NqlExport endpoint
response = nxtClient.run_nql(NxtEndpoint.NqlExport, data=nqlRequest)
# If response is NqlNqlApiExportResponse, there is no error
if isinstance(response, NxtNqlApiExportResponse):
    # Response will contain the exportID
    print(response)
    # The client can wait for end of query
    response = nxtClient.wait_status(response)
    # This response will contain the S3 URL
    print(response)
    # You can use the nxtClient to download the export
    # The export will be a csv data 
    res = nxtClient.download_export(response)
    # Print first 5 lines
    first_lines = [ line for line in res.text.split('\n')[:5]]
    for line in first_lines:
        print(line)
# Probably an NxtErrorResponse
else:
    print(response)

API Classes

All Classes of the nexthink_api are build with Pydantic, so they can be serialize to dict with the method model_dump()

In the same way, any serialized version of a class can be transformed into an object with the model_validate(json_data) method.

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

nexthink_api-0.0.4.tar.gz (73.2 kB view details)

Uploaded Source

Built Distribution

nexthink_api-0.0.4-py3-none-any.whl (60.4 kB view details)

Uploaded Python 3

File details

Details for the file nexthink_api-0.0.4.tar.gz.

File metadata

  • Download URL: nexthink_api-0.0.4.tar.gz
  • Upload date:
  • Size: 73.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for nexthink_api-0.0.4.tar.gz
Algorithm Hash digest
SHA256 77c5d6ec5bfc4d851e23865131714c58fba4401ebd8e7beb5940d4db3170614b
MD5 f562b37798bf4caced48085421b5a91b
BLAKE2b-256 e4c013d058ef629d8bcf36b5d2398faef01176071977138c9d6addbd291c4911

See more details on using hashes here.

File details

Details for the file nexthink_api-0.0.4-py3-none-any.whl.

File metadata

  • Download URL: nexthink_api-0.0.4-py3-none-any.whl
  • Upload date:
  • Size: 60.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.4

File hashes

Hashes for nexthink_api-0.0.4-py3-none-any.whl
Algorithm Hash digest
SHA256 001db5f5b15c68bae3e4486da3c87058836117e92214474399984d7220feb776
MD5 7c68319665cae1899add146acc48e0bf
BLAKE2b-256 bd6d0c93a5b552547662ec7553bfcc137aed12f537ed0e9b0cdc291000b1116c

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