Tenable.ot¶
Tenable.ot base package¶
This package covers the Tenable.ad interface.
- class TenableOT(**kwargs)[source]¶
The Tenable.ot object is the primary interaction point for users to interface with Tenable.OT via the pyTenable library. All the API endpoint classes that have been written will be grafted onto this class.
- Parameters
api_key (str, optional) – The user’s API key for Tenable.ot. If an api key isn’t specified, then the library will attempt to read the environment variable
TOT_API_KEYto acquire the key.url (str, optional) – The base URL used to connect to the Tenable.ot application. If a URL isn’t specified, then the library will attempt to read the environment variable
TOT_URLto acquire the URL.**kwargs – arguments passed to
tenable.base.platform.APIPlatformfor connection management.
Examples
Basic Example:
>>> from tenable.ot import TenableOT >>> ot = TenableOT(api_key='SECRET_KEY', .. url='https://ot.example.com')
Example with proper identification:
>>> ot = TenableOT(api_key='SECRET_KEY', ... url='https://ot.example.com', ... vendor='Company Name', ... product='My Awesome Widget', ... build='1.0.0')
Example with proper identification leveraging environment variables for the connection parameters:
>>> ot = TenableOT(vendor='Company', product='Widget', build='1.0.0')
- property assets¶
The interface object for the Tenable.ot Assets APIs.
- property events¶
The interface object for the Tenable.ot Events APIs.
- graphql(**kwargs)[source]¶
GraphQL Endpoint
This singular method exposes the GraphQL API to the library. As all keyword arguments are passed directly to the JSON body, it allows for a freeform interface into the GraphQL API.
- Parameters
**kwargs (dict, optional) – The key/values that should be passed to the body of the GraphQL request.
Example
>>> ot.graphql( ... variables={'asset': 'b64 id string'}, ... query=''' ... query getAssetDetails($asset: ID!) { ... asset(id: $asset) { ... id ... type ... name ... criticality ... location ... } ... } ... ''')
- property plugins¶
The interface object for the Tenable.ot Plugins APIs.