10.5.5.2. REST API Object Module for Version 7.3.314.3641

Python objects for Tanium’s API.

pytan3.api_objects.rest_7_3_314_3641.float_types = (<class 'float'>,)

tuple of type – Float types.

pytan3.api_objects.rest_7_3_314_3641.integer_types = (<class 'int'>,)

tuple of type – Integer types.

pytan3.api_objects.rest_7_3_314_3641.string_types = (<class 'str'>,)

tuple of type – String types.

pytan3.api_objects.rest_7_3_314_3641.simple_types = (<class 'int'>, <class 'str'>, <class 'float'>)

tuple of type – All types that should be considered simple types.

pytan3.api_objects.rest_7_3_314_3641.TYPE = 'rest'

str – Type of API this module was built from.

pytan3.api_objects.rest_7_3_314_3641.API_DT = '%Y-%m-%dT%H:%M:%SZ'

str – Datetime format for this API type and version.

pytan3.api_objects.rest_7_3_314_3641.api_fixes()[source]

Fix incorrect attribute definitions on auto generated ApiModel classes.

pytan3.api_objects.rest_7_3_314_3641.expand_cls_globals()[source]

Replace str values with global vars for attrs on ApiModel classes.

Quite the funky chicken dance for solving issues with order of class definition.

pytan3.api_objects.rest_7_3_314_3641.expand_global(obj)[source]

Replace str values with global vars recursively.

Parameters:obj (str or dict or list) – Object to expand into global var.
Returns:String objects are the only ones that will be expanded.
Return type:str or dict or list or object
pytan3.api_objects.rest_7_3_314_3641.get_api_all_item()[source]

Get map of class name to class for all ApiItem subclasses.

Returns:dict
pytan3.api_objects.rest_7_3_314_3641.get_api_all_list()[source]

Get map of class name to class for all ApiList subclasses.

Returns:dict
pytan3.api_objects.rest_7_3_314_3641.get_api_all_model()[source]

Get map of class name to class for all ApiItem and ApiList subclasses.

Returns:dict
class pytan3.api_objects.rest_7_3_314_3641.ApiModel[source]

Bases: pytan3.api_models.ApiModel

Model for a complex item in the API.

class pytan3.api_objects.rest_7_3_314_3641.ApiItem(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiModel, pytan3.api_models.ApiItem

Model for a complex item in the API.

class pytan3.api_objects.rest_7_3_314_3641.ApiList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiModel, pytan3.api_models.ApiList

Model for an array in the API.

api_coerce_items_hook(attr, value, op)[source]

Check hook that allows subclasses to modify list items.

Parameters:
  • attr (str) – Attribute being set on this object.
  • value (ApiList or list or tuple) – The list object holding items.
  • op (str) – Operation being performed that called this method.

Notes

REST arrays can include a CacheInfo object in them. This checks to see if any item is a CacheInfo object, and if so:

  • “cache_info” gets added as a complex attr.
  • “cache_info” attribute is set to value of item.
  • item is not included in return list.
Returns:The list of items modified or as is.
Return type:list
class pytan3.api_objects.rest_7_3_314_3641.ResultInfoList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'result_infos'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'max_available_age': (<class 'int'>,), 'now': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['now', 'max_available_age']

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'result_infos'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ResultInfo

__repr__()[source]

Make repr output be same as str output.

Returns:str
class pytan3.api_objects.rest_7_3_314_3641.ResultInfo(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'result_info'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'age': (<class 'int'>,), 'archived_question_id': (<class 'int'>,), 'error_count': (<class 'int'>,), 'estimated_total': (<class 'int'>,), 'expire_seconds': (<class 'int'>,), 'id': (<class 'int'>,), 'issue_seconds': (<class 'int'>,), 'mr_passed': (<class 'int'>,), 'mr_tested': (<class 'int'>,), 'no_results_count': (<class 'int'>,), 'passed': (<class 'int'>,), 'question_id': (<class 'int'>,), 'report_count': (<class 'int'>,), 'row_count': (<class 'int'>,), 'row_count_flag': (<class 'int'>,), 'row_count_machines': (<class 'int'>,), 'saved_question_id': (<class 'int'>,), 'seconds_since_issued': (<class 'int'>,), 'select_count': (<class 'int'>,), 'tested': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['question_id', 'estimated_total', 'row_count', 'mr_tested', 'mr_passed']

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ResultInfoList

API_LIST_API_NAME = 'result_infos'

str – Name of API_LIST_CLS used in API calls.

__repr__()[source]

Make repr output be same as str output.

Returns:str
class pytan3.api_objects.rest_7_3_314_3641.ResultSetList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'result_sets'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'max_available_age': (<class 'int'>,), 'now': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['now', 'max_available_age']

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'result_sets'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ResultSet

class pytan3.api_objects.rest_7_3_314_3641.MergedResultSet(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'merged_result_set'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'max_available_age': (<class 'str'>,), 'now': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'result_infos': <class 'pytan3.api_objects.rest_7_3_314_3641.ResultInfoList'>, 'result_sets': <class 'pytan3.api_objects.rest_7_3_314_3641.ResultSetList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['now', 'max_available_age']

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ResultSet(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'result_set'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'age': (<class 'int'>,), 'archived_question_id': (<class 'int'>,), 'cache_id': (<class 'int'>,), 'error_count': (<class 'int'>,), 'estimated_total': (<class 'int'>,), 'expiration': (<class 'int'>,), 'expire_seconds': (<class 'int'>,), 'filtered_row_count': (<class 'int'>,), 'filtered_row_count_machines': (<class 'int'>,), 'id': (<class 'int'>,), 'issue_seconds': (<class 'int'>,), 'item_count': (<class 'int'>,), 'mr_passed': (<class 'int'>,), 'mr_tested': (<class 'int'>,), 'no_results_count': (<class 'int'>,), 'passed': (<class 'int'>,), 'question_id': (<class 'int'>,), 'report_count': (<class 'int'>,), 'row_count': (<class 'int'>,), 'row_count_machines': (<class 'int'>,), 'saved_question_id': (<class 'int'>,), 'seconds_since_issued': (<class 'int'>,), 'select_count': (<class 'int'>,), 'tested': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'columns': <class 'pytan3.api_objects.rest_7_3_314_3641.ColumnList'>, 'rows': <class 'pytan3.api_objects.rest_7_3_314_3641.RowList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['question_id', 'estimated_total', 'mr_tested', 'mr_passed', 'row_count', 'columns']

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ResultSetList

API_LIST_API_NAME = 'result_sets'

str – Name of API_LIST_CLS used in API calls.

__init__(**kwargs)[source]

Constructor.

Notes

Sets Column.API_DATA_SET so column objects can access rows.

Sets RowColumn.API_COLUMN to the index correlated Column so row columns can access the column name, result type, etc.

Sets Column.API_IDX and RowColumn.API_IDX so column objects know what their index is without having to do lookups.

Parameters:**kwargs – Passed back to parent class.
class pytan3.api_objects.rest_7_3_314_3641.ColumnList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'cs'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['names']

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'c'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Column

__repr__()[source]

Make repr output be same as str output.

Returns:str
names

Expose column names of all Column in this obj.

Returns:list of str
__getitem__(value)[source]

Support indexing of names.

Parameters:value (int or str) – If int: Index of item to retrieve from self. If str: Column name to index correlate from ColumnList.names
Returns:The RowColumn object at index value from names.
Return type:RowColumn
class pytan3.api_objects.rest_7_3_314_3641.Column(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_DATA_SET = None

ResultSet – Parent of this object, set by ResultSet.__init__().

API_IDX = None

int – Index of this object in ColumnList.

API_NAME = 'c'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'hash': (<class 'int'>,), 'name': (<class 'str'>,), 'type': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['name', 'result_type', 'hash']

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ColumnList

API_LIST_API_NAME = 'cs'

str – Name of API_LIST_CLS used in API calls.

result_type

Expose simple attr “rt” as result_type.

Notes

Will try to map str from “rt” as int to constants from Sensor.API_CONSTANTS.

Returns:str
get_values(attr='value', join=None)[source]

Get values of this column from all rows.

Parameters:
  • attr (str, optional) –

    Attribute to get values of.

    Defaults to: “value”.

  • join (str, optional) –

    String to join multi value columns.

    Defaults to: None.

Returns:

list of str

class pytan3.api_objects.rest_7_3_314_3641.RowList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'rs'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'r'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Row

__repr__()[source]

Make repr output be same as str output.

Returns:str
class pytan3.api_objects.rest_7_3_314_3641.Row(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'r'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'cid': (<class 'int'>,), 'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'data': <class 'pytan3.api_objects.rest_7_3_314_3641.RowColumnList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['id', 'cid', 'columns']

list or str – Attributes to add to str formatting.

API_LIST_API_NAME = 'rs'

str – Name of API_LIST_CLS used in API calls.

API_LIST_CLS

ApiItem: Item class this list class holds.

alias of RowList

__repr__()[source]

Make repr output be same as str output.

Returns:str
__getitem__(value)[source]

Support indexing of columns.

Parameters:value (int or str) – If int: Index of item to retrieve from columns. If str: Column name to index correlate from ColumnList.names
Returns:The RowColumn object at index value from columns.
Return type:RowColumn
names

Return the names of each row column from RowColumn.API_COLUMN.

Returns:list of str
columns

Expose complex attr “data” as “columns”.

Returns:RowColumnList
__len__()[source]

Expose length of columns.

Returns:int
get_values(meta=False, hashes=False, join=None)[source]

Get all values from all columns in this row.

Parameters:
  • meta (bool, optional) –

    Include sensor hash and result type for each column.

    Defaults to: False.

  • hashes (bool, optional) –

    Include hashes of values.

    Defaults to: False.

  • join (str, optional) –

    String to join multi value columns.

    Defaults to: None.

Returns:

dict

class pytan3.api_objects.rest_7_3_314_3641.RowColumnList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'rc'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'row_columns'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of RowColumn

class pytan3.api_objects.rest_7_3_314_3641.RowColumn(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_COLUMN = None

Column – Index correlated column, set by ResultSet.__init__().

API_IDX = None

int – Index of this object in RowColumnList.

API_NAME = 'row_column'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['name', 'hash', 'result_type']

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'v'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of RowValue

name

Expose column name from API_COLUMN.

Returns:str
result_type

Expose column result type from API_COLUMN.

Returns:str
hash

Expose column sensor hash from API_COLUMN.

Returns:str
get_values(attr='value', join=None)[source]

Get all values from this row column.

Parameters:
  • attr (str, optional) –

    Attribute to get values of.

    Defaults to: “value”.

  • join (str, optional) –

    String to join multi value columns.

    Defaults to: None.

Returns:

list or str

class pytan3.api_objects.rest_7_3_314_3641.RowValue(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'v'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'hash': (<class 'int'>,), 'text': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['hash', 'value']

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of RowColumn

API_LIST_API_NAME = 'row_column'

str – Name of API_LIST_CLS used in API calls.

value

Expose simple attr “text” as value.

Returns:str
class pytan3.api_objects.rest_7_3_314_3641.ParseQuestionResultList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Manually defined API array object.

API_NAME = 'parse_question_results'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'parse_question_result'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ParseQuestionResult

class pytan3.api_objects.rest_7_3_314_3641.ParseQuestionResult(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Manually defined API object.

API_NAME = 'parse_question_result'

str – Name of object used in API calls.

API_NAME_SRC = ''

str – Name of object in source file.

API_SIMPLE = {'force_computer_id_flag': (<class 'int'>,), 'from_canonical_text': (<class 'int'>,), 'question_text': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'selects': <class 'pytan3.api_objects.rest_7_3_314_3641.SelectList'>, 'sensor_references': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorReferenceList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = ['hash', 'text']

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ParseQuestionResultList

API_LIST_API_NAME = 'questions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SensorQuery(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'sensor_query'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_query'

str – Name of object in source file.

API_SIMPLE = {'platform': (<class 'str'>,), 'script': (<class 'str'>,), 'script_type': (<class 'str'>,), 'signature': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SensorQueryList

API_LIST_API_NAME = 'sensor_querys'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SensorSubcolumn(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'sensor_subcolumn'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_subcolumn'

str – Name of object in source file.

API_SIMPLE = {'exclude_from_parse_flag': (<class 'int'>,), 'hidden_flag': (<class 'int'>,), 'ignore_case_flag': (<class 'int'>,), 'index': (<class 'int'>,), 'name': (<class 'str'>,), 'value_type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SensorSubcolumnList

API_LIST_API_NAME = 'sensor_subcolumns'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SensorStat(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'sensor_stat'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_stat'

str – Name of object in source file.

API_SIMPLE = {'count': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'other_bytes_avg': (<class 'float'>,), 'other_bytes_std': (<class 'float'>,), 'read_bytes_avg': (<class 'float'>,), 'read_bytes_std': (<class 'float'>,), 'real_ms_avg': (<class 'float'>,), 'real_ms_max': (<class 'float'>,), 'real_ms_min': (<class 'float'>,), 'real_ms_std': (<class 'float'>,), 'sys_ms_avg': (<class 'float'>,), 'sys_ms_std': (<class 'float'>,), 'user_ms_avg': (<class 'float'>,), 'user_ms_std': (<class 'float'>,), 'what_hash': (<class 'int'>,), 'write_bytes_avg': (<class 'float'>,), 'write_bytes_std': (<class 'float'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SensorStatList

API_LIST_API_NAME = 'sensor_stats'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedActionPolicy(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_action_policy'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action_policy'

str – Name of object in source file.

API_SIMPLE = {'max_age': (<class 'int'>,), 'min_count': (<class 'int'>,), 'row_filter_group_id': (<class 'int'>,), 'saved_question_group_id': (<class 'int'>,), 'saved_question_id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'row_filter_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'saved_question_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedActionApproval(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_action_approval'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action_approval'

str – Name of object in source file.

API_SIMPLE = {'approved_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'owner_user_id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SavedActionApprovalList

API_LIST_API_NAME = 'saved_action_approvals'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedAction(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_action'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action'

str – Name of object in source file.

API_SIMPLE = {'action_group_id': (<class 'int'>,), 'approved_flag': (<class 'int'>,), 'cache_row_id': (<class 'int'>,), 'comment': (<class 'str'>,), 'creation_time': (<class 'str'>,), 'distribute_seconds': (<class 'int'>,), 'end_time': (<class 'str'>,), 'expire_seconds': (<class 'int'>,), 'id': (<class 'int'>,), 'issue_count': (<class 'int'>,), 'issue_seconds': (<class 'int'>,), 'last_start_time': (<class 'str'>,), 'name': (<class 'str'>,), 'next_start_time': (<class 'str'>,), 'policy_flag': (<class 'int'>,), 'public_flag': (<class 'int'>,), 'start_time': (<class 'str'>,), 'status': (<class 'int'>,), 'user_start_time': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'action_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'approver': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'last_action': <class 'pytan3.api_objects.rest_7_3_314_3641.Action'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'package_spec': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpec'>, 'policy': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionPolicy'>, 'row_ids': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionRowIdList'>, 'target_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SavedActionList

API_LIST_API_NAME = 'saved_actions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Sensor(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'sensor'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor'

str – Name of object in source file.

API_SIMPLE = {'cache_row_id': (<class 'int'>,), 'category': (<class 'str'>,), 'creation_time': (<class 'str'>,), 'deleted_flag': (<class 'int'>,), 'delimiter': (<class 'str'>,), 'description': (<class 'str'>,), 'exclude_from_parse_flag': (<class 'int'>,), 'hash': (<class 'int'>,), 'hidden_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'ignore_case_flag': (<class 'int'>,), 'keep_duplicates_flag': (<class 'int'>,), 'last_modified_by': (<class 'str'>,), 'max_age_seconds': (<class 'int'>,), 'modification_time': (<class 'str'>,), 'name': (<class 'str'>,), 'parameter_definition': (<class 'str'>,), 'preview_sensor_flag': (<class 'int'>,), 'source_hash': (<class 'int'>,), 'source_id': (<class 'int'>,), 'source_name': (<class 'str'>,), 'string_count': (<class 'int'>,), 'value_type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'parameters': <class 'pytan3.api_objects.rest_7_3_314_3641.ParameterList'>, 'queries': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorQueryList'>, 'string_hints': <class 'pytan3.api_objects.rest_7_3_314_3641.StringHintList'>, 'subcolumns': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorSubcolumnList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {'BES_DATETIME_RESULT': 4, 'BES_SENSOR': 2, 'DATASIZE_RESULT': 8, 'HASH_RESULT': 0, 'IP_RESULT': 5, 'JS_SENSOR': 7, 'MULTITYPE_SENSOR': 6, 'NUMERIC_INTEGER_RESULT': 9, 'NUMERIC_RESULT': 3, 'PSHELL_SENSOR': 5, 'PY_SENSOR': 8, 'REGEX_RESULT': 11, 'TEXT_RESULT': 1, 'TIMEDIFF_REUSLT': 7, 'VBS_SENSOR': 4, 'VERSION_RESULT': 2, 'WMI_DATETIME_RESULT': 6, 'WMI_SENSOR': 1}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SensorList

API_LIST_API_NAME = 'sensors'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.AuditData(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'audit_data'

str – Name of object used in API calls.

API_NAME_SRC = 'audit_data'

str – Name of object in source file.

API_SIMPLE = {'cache_row_id': (<class 'int'>,), 'creation_time': (<class 'str'>,), 'details': (<class 'str'>,), 'last_modified_by': (<class 'str'>,), 'modification_time': (<class 'str'>,), 'modifier_user_id': (<class 'int'>,), 'object_id': (<class 'int'>,), 'type': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of AuditDataList

API_LIST_API_NAME = 'audit_datas'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.AuditLog(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'audit_log'

str – Name of object used in API calls.

API_NAME_SRC = 'audit_log'

str – Name of object in source file.

API_SIMPLE = {'creation_time': (<class 'str'>,), 'details': (<class 'str'>,), 'end_time': (<class 'str'>,), 'id': (<class 'int'>,), 'last_modified_by': (<class 'str'>,), 'modification_time': (<class 'str'>,), 'modifier_user_id': (<class 'int'>,), 'object_id': (<class 'int'>,), 'start_time': (<class 'str'>,), 'type': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>, 'entries': <class 'pytan3.api_objects.rest_7_3_314_3641.AuditDataList'>, 'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of AuditLogList

API_LIST_API_NAME = 'audit_logs'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Server(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'server'

str – Name of object used in API calls.

API_NAME_SRC = 'server'

str – Name of object in source file.

API_SIMPLE = {'heart_beat': (<class 'str'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ServerList

API_LIST_API_NAME = 'servers'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.MetadataItem(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'metadata_item'

str – Name of object used in API calls.

API_NAME_SRC = 'metadata_item'

str – Name of object in source file.

API_SIMPLE = {'admin_flag': (<class 'int'>,), 'name': (<class 'str'>,), 'value': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of MetadataList

API_LIST_API_NAME = 'metadatas'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Filter(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'filter'

str – Name of object used in API calls.

API_NAME_SRC = 'filter'

str – Name of object in source file.

API_SIMPLE = {'aggregation': (<class 'str'>,), 'all_times_flag': (<class 'int'>,), 'all_values_flag': (<class 'int'>,), 'delimiter': (<class 'str'>,), 'delimiter_index': (<class 'int'>,), 'end_time': (<class 'str'>,), 'id': (<class 'int'>,), 'ignore_case_flag': (<class 'int'>,), 'max_age_seconds': (<class 'int'>,), 'not_flag': (<class 'int'>,), 'operator': (<class 'str'>,), 'start_time': (<class 'str'>,), 'substring_flag': (<class 'int'>,), 'substring_length': (<class 'int'>,), 'substring_start': (<class 'int'>,), 'utf8_flag': (<class 'int'>,), 'value': (<class 'str'>,), 'value_type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'sensor': <class 'pytan3.api_objects.rest_7_3_314_3641.Sensor'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of FilterList

API_LIST_API_NAME = 'filters'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.IdReference(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'id_reference'

str – Name of object used in API calls.

API_NAME_SRC = 'id_reference'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Group(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'group'

str – Name of object used in API calls.

API_NAME_SRC = 'group'

str – Name of object in source file.

API_SIMPLE = {'and_flag': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'not_flag': (<class 'int'>,), 'saved_question_id': (<class 'int'>,), 'source_id': (<class 'int'>,), 'text': (<class 'str'>,), 'track_computer_id_flag': (<class 'int'>,), 'track_computer_id_interval': (<class 'int'>,), 'type': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'filters': <class 'pytan3.api_objects.rest_7_3_314_3641.FilterList'>, 'parameters': <class 'pytan3.api_objects.rest_7_3_314_3641.ParameterList'>, 'sub_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.GroupList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of GroupList

API_LIST_API_NAME = 'groups'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Select(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'select'

str – Name of object used in API calls.

API_NAME_SRC = 'select'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'filter': <class 'pytan3.api_objects.rest_7_3_314_3641.Filter'>, 'group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'sensor': <class 'pytan3.api_objects.rest_7_3_314_3641.Sensor'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SelectList

API_LIST_API_NAME = 'selects'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.XmlError(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'xml_error'

str – Name of object used in API calls.

API_NAME_SRC = 'xml_error'

str – Name of object in source file.

API_SIMPLE = {'error_context': (<class 'str'>,), 'exception': (<class 'str'>,), 'type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ErrorList

API_LIST_API_NAME = 'errors'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.CacheInfo(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'cache_info'

str – Name of object used in API calls.

API_NAME_SRC = 'cache_info'

str – Name of object in source file.

API_SIMPLE = {'cache_id': (<class 'int'>,), 'cache_row_count': (<class 'int'>,), 'expiration': (<class 'str'>,), 'filtered_row_count': (<class 'int'>,), 'page_row_count': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'errors': <class 'pytan3.api_objects.rest_7_3_314_3641.ErrorList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.QuestionListInfo(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'question_list_info'

str – Name of object used in API calls.

API_NAME_SRC = 'question_list_info'

str – Name of object in source file.

API_SIMPLE = {'highest_id': (<class 'int'>,), 'total_count': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Question(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'question'

str – Name of object used in API calls.

API_NAME_SRC = 'question'

str – Name of object in source file.

API_SIMPLE = {'action_tracking_flag': (<class 'int'>,), 'cache_row_id': (<class 'int'>,), 'expiration': (<class 'str'>,), 'expire_seconds': (<class 'int'>,), 'force_computer_id_flag': (<class 'int'>,), 'from_canonical_text': (<class 'int'>,), 'hidden_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'index': (<class 'int'>,), 'is_expired': (<class 'int'>,), 'name': (<class 'str'>,), 'query_text': (<class 'str'>,), 'skip_lock_flag': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'context_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'management_rights_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'saved_question': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestion'>, 'selects': <class 'pytan3.api_objects.rest_7_3_314_3641.SelectList'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of QuestionList

API_LIST_API_NAME = 'questions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PackageFileTemplate(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'package_file_template'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file_template'

str – Name of object in source file.

API_SIMPLE = {'download_seconds': (<class 'int'>,), 'hash': (<class 'str'>,), 'name': (<class 'str'>,), 'source': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PackageFileTemplateList

API_LIST_API_NAME = 'package_file_templates'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PackageFileStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'package_file_status'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file_status'

str – Name of object in source file.

API_SIMPLE = {'bytes_downloaded': (<class 'int'>,), 'bytes_total': (<class 'int'>,), 'cache_message': (<class 'str'>,), 'cache_status': (<class 'str'>,), 'download_start_time': (<class 'str'>,), 'last_download_progress_time': (<class 'str'>,), 'server_id': (<class 'int'>,), 'server_name': (<class 'str'>,), 'status': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PackageFileStatusList

API_LIST_API_NAME = 'package_file_statuss'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PackageFile(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'package_file'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file'

str – Name of object in source file.

API_SIMPLE = {'bytes_downloaded': (<class 'int'>,), 'bytes_total': (<class 'int'>,), 'cache_status': (<class 'str'>,), 'deleted_flag': (<class 'int'>,), 'download_seconds': (<class 'int'>,), 'download_start_time': (<class 'str'>,), 'hash': (<class 'str'>,), 'id': (<class 'int'>,), 'last_download_progress_time': (<class 'str'>,), 'name': (<class 'str'>,), 'size': (<class 'int'>,), 'source': (<class 'str'>,), 'status': (<class 'int'>,), 'trigger_download': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'file_status': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageFileStatusList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PackageFileList

API_LIST_API_NAME = 'package_files'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PackageSpec(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'package_spec'

str – Name of object used in API calls.

API_NAME_SRC = 'package_spec'

str – Name of object in source file.

API_SIMPLE = {'available_time': (<class 'str'>,), 'cache_row_id': (<class 'int'>,), 'command': (<class 'str'>,), 'command_timeout': (<class 'int'>,), 'creation_time': (<class 'str'>,), 'deleted_flag': (<class 'int'>,), 'display_name': (<class 'str'>,), 'expire_seconds': (<class 'int'>,), 'hidden_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'last_modified_by': (<class 'str'>,), 'last_update': (<class 'str'>,), 'modification_time': (<class 'str'>,), 'name': (<class 'str'>,), 'parameter_definition': (<class 'str'>,), 'process_group_flag': (<class 'int'>,), 'signature': (<class 'str'>,), 'skip_lock_flag': (<class 'int'>,), 'source_hash': (<class 'str'>,), 'source_hash_changed_flag': (<class 'int'>,), 'source_id': (<class 'int'>,), 'source_name': (<class 'str'>,), 'verify_expire_seconds': (<class 'int'>,), 'verify_group_id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'file_templates': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageFileTemplateList'>, 'files': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageFileList'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'parameters': <class 'pytan3.api_objects.rest_7_3_314_3641.ParameterList'>, 'sensors': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorList'>, 'verify_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PackageSpecList

API_LIST_API_NAME = 'package_specs'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ClientStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'client_status'

str – Name of object used in API calls.

API_NAME_SRC = 'client_status'

str – Name of object in source file.

API_SIMPLE = {'cache_row_id': (<class 'int'>,), 'computer_id': (<class 'str'>,), 'full_version': (<class 'str'>,), 'host_name': (<class 'str'>,), 'ipaddress_client': (<class 'str'>,), 'ipaddress_server': (<class 'str'>,), 'last_registration': (<class 'str'>,), 'port_number': (<class 'int'>,), 'protocol_version': (<class 'int'>,), 'public_key_valid': (<class 'int'>,), 'receive_state': (<class 'str'>,), 'registered_with_tls': (<class 'int'>,), 'send_state': (<class 'str'>,), 'status': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SystemStatusList

API_LIST_API_NAME = 'system_status'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SystemSetting(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'system_setting'

str – Name of object used in API calls.

API_NAME_SRC = 'system_setting'

str – Name of object in source file.

API_SIMPLE = {'cache_row_id': (<class 'int'>,), 'default_value': (<class 'str'>,), 'hidden_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'read_only_flag': (<class 'int'>,), 'setting_type': (<class 'str'>,), 'value': (<class 'str'>,), 'value_type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'audit_data': <class 'pytan3.api_objects.rest_7_3_314_3641.AuditData'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SystemSettingList

API_LIST_API_NAME = 'system_settings'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SoapError(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'soap_error'

str – Name of object used in API calls.

API_NAME_SRC = 'soap_error'

str – Name of object in source file.

API_SIMPLE = {'context': (<class 'str'>,), 'exception_name': (<class 'str'>,), 'object_name': (<class 'str'>,), 'object_request': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.WhiteListedUrl(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'white_listed_url'

str – Name of object used in API calls.

API_NAME_SRC = 'white_listed_url'

str – Name of object in source file.

API_SIMPLE = {'chunk_id': (<class 'str'>,), 'download_seconds': (<class 'int'>,), 'expire_seconds': (<class 'int'>,), 'id': (<class 'int'>,), 'url_regex': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of WhiteListedUrlList

API_LIST_API_NAME = 'white_listed_urls'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.VersionAggregate(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'version_aggregate'

str – Name of object used in API calls.

API_NAME_SRC = 'version_aggregate'

str – Name of object in source file.

API_SIMPLE = {'count': (<class 'int'>,), 'filtered': (<class 'int'>,), 'version_string': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of VersionAggregateList

API_LIST_API_NAME = 'version_aggregates'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SystemStatusAggregate(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'system_status_aggregate'

str – Name of object used in API calls.

API_NAME_SRC = 'system_status_aggregate'

str – Name of object in source file.

API_SIMPLE = {'blocked_count': (<class 'int'>,), 'leader_count': (<class 'int'>,), 'normal_count': (<class 'int'>,), 'receive_backward_count': (<class 'int'>,), 'receive_forward_count': (<class 'int'>,), 'receive_none_count': (<class 'int'>,), 'receive_ok_count': (<class 'int'>,), 'registered_with_tls_count': (<class 'int'>,), 'send_backward_count': (<class 'int'>,), 'send_forward_count': (<class 'int'>,), 'send_none_count': (<class 'int'>,), 'send_ok_count': (<class 'int'>,), 'slowlink_count': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'versions': <class 'pytan3.api_objects.rest_7_3_314_3641.VersionAggregateList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.UserRole(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'user_role'

str – Name of object used in API calls.

API_NAME_SRC = 'user_role'

str – Name of object in source file.

API_SIMPLE = {'description': (<class 'str'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'permissions': <class 'pytan3.api_objects.rest_7_3_314_3641.PermissionList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of UserRoleList

API_LIST_API_NAME = 'roles'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.UserOwnedObjectIds(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'user_owned_object_ids'

str – Name of object used in API calls.

API_NAME_SRC = 'user_owned_object_ids'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'plugin_schedules': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginScheduleList'>, 'saved_actions': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionList'>, 'saved_questions': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.User(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'user'

str – Name of object used in API calls.

API_NAME_SRC = 'user'

str – Name of object in source file.

API_SIMPLE = {'active_session_count': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'display_name': (<class 'str'>,), 'domain': (<class 'str'>,), 'effective_group_id': (<class 'int'>,), 'external_flag': (<class 'int'>,), 'group_id': (<class 'int'>,), 'id': (<class 'int'>,), 'last_login': (<class 'str'>,), 'local_admin_flag': (<class 'int'>,), 'locked_out': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set_roles': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleList'>, 'effective_content_set_privileges': <class 'pytan3.api_objects.rest_7_3_314_3641.EffectiveContentSetPrivilegeList'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'owned_object_ids': <class 'pytan3.api_objects.rest_7_3_314_3641.UserOwnedObjectIds'>, 'permissions': <class 'pytan3.api_objects.rest_7_3_314_3641.PermissionList'>, 'roles': <class 'pytan3.api_objects.rest_7_3_314_3641.UserRoleList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of UserList

API_LIST_API_NAME = 'users'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ActionListInfo(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'action_list_info'

str – Name of object used in API calls.

API_NAME_SRC = 'action_list_info'

str – Name of object in source file.

API_SIMPLE = {'highest_id': (<class 'int'>,), 'total_count': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Action(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'action'

str – Name of object used in API calls.

API_NAME_SRC = 'action'

str – Name of object in source file.

API_SIMPLE = {'cache_row_id': (<class 'int'>,), 'comment': (<class 'str'>,), 'creation_time': (<class 'str'>,), 'distribute_seconds': (<class 'int'>,), 'expiration_time': (<class 'str'>,), 'expire_seconds': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'skip_lock_flag': (<class 'int'>,), 'start_time': (<class 'str'>,), 'status': (<class 'str'>,), 'stopped_flag': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'action_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'approver': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'history_saved_question': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestion'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'package_spec': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpec'>, 'saved_action': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedAction'>, 'target_group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ActionList

API_LIST_API_NAME = 'actions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ActionStop(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'action_stop'

str – Name of object used in API calls.

API_NAME_SRC = 'action_stop'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'action': <class 'pytan3.api_objects.rest_7_3_314_3641.Action'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ActionStopList

API_LIST_API_NAME = 'action_stops'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ArchivedQuestion(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'archived_question'

str – Name of object used in API calls.

API_NAME_SRC = 'archived_question'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ArchivedQuestionList

API_LIST_API_NAME = 'archived_questions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedQuestion(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_question'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_question'

str – Name of object in source file.

API_SIMPLE = {'action_tracking_flag': (<class 'int'>,), 'archive_enabled_flag': (<class 'int'>,), 'cache_row_id': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'expire_seconds': (<class 'int'>,), 'hidden_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'index': (<class 'int'>,), 'issue_seconds': (<class 'int'>,), 'issue_seconds_never_flag': (<class 'int'>,), 'keep_seconds': (<class 'int'>,), 'mod_time': (<class 'str'>,), 'most_recent_question_id': (<class 'int'>,), 'name': (<class 'str'>,), 'public_flag': (<class 'int'>,), 'query_text': (<class 'str'>,), 'row_count_flag': (<class 'int'>,), 'seeding_question_ids': (<class 'str'>,), 'skip_schedule_on_update_flag': (<class 'int'>,), 'sort_column': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'archive_owner': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'packages': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpecList'>, 'question': <class 'pytan3.api_objects.rest_7_3_314_3641.Question'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SavedQuestionList

API_LIST_API_NAME = 'saved_questions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ParseJob(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'parse_job'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_job'

str – Name of object in source file.

API_SIMPLE = {'parser_version': (<class 'int'>,), 'question_text': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ParseJobList

API_LIST_API_NAME = 'parse_jobs'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Parameter(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'parameter'

str – Name of object used in API calls.

API_NAME_SRC = 'parameter'

str – Name of object in source file.

API_SIMPLE = {'key': (<class 'str'>,), 'type': (<class 'int'>,), 'value': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ParameterList

API_LIST_API_NAME = 'parameters'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ParseResult(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'parse_result'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_result'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'parameter_definition': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'parameters': <class 'pytan3.api_objects.rest_7_3_314_3641.ParameterList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ParseResultList

API_LIST_API_NAME = 'parse_results'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SensorReference(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'sensor_reference'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_reference'

str – Name of object in source file.

API_SIMPLE = {'name': (<class 'str'>,), 'real_ms_avg': (<class 'int'>,), 'start_char': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SensorReferenceList

API_LIST_API_NAME = 'sensor_references'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ParseResultGroup(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'parse_result_group'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_result_group'

str – Name of object in source file.

API_SIMPLE = {'question_text': (<class 'str'>,), 'score': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'parameter_values': <class 'pytan3.api_objects.rest_7_3_314_3641.ParameterValueList'>, 'parse_results': <class 'pytan3.api_objects.rest_7_3_314_3641.ParseResultList'>, 'question': <class 'pytan3.api_objects.rest_7_3_314_3641.Question'>, 'question_group_sensors': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorList'>, 'sensor_references': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorReferenceList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ParseResultGroupList

API_LIST_API_NAME = 'parse_result_groups'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ClientCount(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'client_count'

str – Name of object used in API calls.

API_NAME_SRC = 'client_count'

str – Name of object in source file.

API_SIMPLE = {'count': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PluginArgument(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'plugin_argument'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_argument'

str – Name of object in source file.

API_SIMPLE = {'name': (<class 'str'>,), 'type': (<class 'str'>,), 'value': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PluginArgumentList

API_LIST_API_NAME = 'plugin_arguments'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.UploadFile(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'upload_file'

str – Name of object used in API calls.

API_NAME_SRC = 'upload_file'

str – Name of object in source file.

API_SIMPLE = {'bytes': (<class 'str'>,), 'destination_file': (<class 'str'>,), 'file_cached': (<class 'int'>,), 'file_size': (<class 'int'>,), 'force_overwrite': (<class 'int'>,), 'hash': (<class 'str'>,), 'id': (<class 'int'>,), 'key': (<class 'str'>,), 'part_size': (<class 'int'>,), 'percent_complete': (<class 'int'>,), 'start_pos': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of UploadFileList

API_LIST_API_NAME = 'upload_files'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.UploadFileStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'upload_file_status'

str – Name of object used in API calls.

API_NAME_SRC = 'upload_file_status'

str – Name of object in source file.

API_SIMPLE = {'file_cached': (<class 'int'>,), 'hash': (<class 'str'>,), 'percent_complete': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'file_parts': <class 'pytan3.api_objects.rest_7_3_314_3641.UploadFileList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Plugin(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'plugin'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin'

str – Name of object in source file.

API_SIMPLE = {'allow_rest': (<class 'int'>,), 'bundle': (<class 'str'>,), 'cache_row_id': (<class 'int'>,), 'execution_id': (<class 'int'>,), 'exit_code': (<class 'int'>,), 'filename': (<class 'str'>,), 'input': (<class 'str'>,), 'local_admin_flag': (<class 'int'>,), 'name': (<class 'str'>,), 'path': (<class 'str'>,), 'plugin_server': (<class 'str'>,), 'plugin_url': (<class 'str'>,), 'raw_http_request': (<class 'int'>,), 'raw_http_response': (<class 'int'>,), 'run_detached_flag': (<class 'int'>,), 'script_response': (<class 'str'>,), 'status': (<class 'str'>,), 'status_file_content': (<class 'str'>,), 'timeout_seconds': (<class 'int'>,), 'type': (<class 'str'>,), 'use_json_flag': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'arguments': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginArgumentList'>, 'commands': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginCommandList'>, 'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSet'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'permissions': <class 'pytan3.api_objects.rest_7_3_314_3641.PermissionList'>, 'sql_response': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginSql'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {'SCRIPT': 'Script', 'SQL': 'SQL'}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PluginList

API_LIST_API_NAME = 'plugins'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.PluginSchedule(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'plugin_schedule'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_schedule'

str – Name of object in source file.

API_SIMPLE = {'deleted_flag': (<class 'int'>,), 'enabled': (<class 'int'>,), 'end_date': (<class 'str'>,), 'end_hour': (<class 'int'>,), 'id': (<class 'int'>,), 'input': (<class 'str'>,), 'last_exit_code': (<class 'int'>,), 'last_run_text': (<class 'str'>,), 'last_run_time': (<class 'str'>,), 'modification_time': (<class 'str'>,), 'name': (<class 'str'>,), 'plugin_bundle': (<class 'str'>,), 'plugin_name': (<class 'str'>,), 'plugin_server': (<class 'str'>,), 'run_interval_seconds': (<class 'int'>,), 'run_on_days': (<class 'str'>,), 'start_date': (<class 'str'>,), 'start_hour': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'arguments': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginArgumentList'>, 'last_run_sql': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginSql'>, 'mod_user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of PluginScheduleList

API_LIST_API_NAME = 'plugin_schedules'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ComputerGroupSpec(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'computer_group_spec'

str – Name of object used in API calls.

API_NAME_SRC = 'computer_group_spec'

str – Name of object in source file.

API_SIMPLE = {'computer_name': (<class 'str'>,), 'id': (<class 'int'>,), 'ip_address': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ComputerSpecList

API_LIST_API_NAME = 'computer_specs'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ComputerGroup(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'computer_group'

str – Name of object used in API calls.

API_NAME_SRC = 'computer_group'

str – Name of object in source file.

API_SIMPLE = {'deleted_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'computer_specs': <class 'pytan3.api_objects.rest_7_3_314_3641.ComputerSpecList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ComputerGroupList

API_LIST_API_NAME = 'computer_groups'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.VerifySignature(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'verify_signature'

str – Name of object used in API calls.

API_NAME_SRC = 'verify_signature'

str – Name of object in source file.

API_SIMPLE = {'bytes': (<class 'str'>,), 'id': (<class 'int'>,), 'type': (<class 'str'>,), 'verified': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ObjectList(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'object_list'

str – Name of object used in API calls.

API_NAME_SRC = 'object_list'

str – Name of object in source file.

API_SIMPLE = {'export_id': (<class 'str'>,), 'export_version': (<class 'int'>,), 'import_content': (<class 'str'>,), 'server_info': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'action': <class 'pytan3.api_objects.rest_7_3_314_3641.Action'>, 'action_group': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionGroup'>, 'action_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionGroupList'>, 'action_stop': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionStop'>, 'action_stops': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionStopList'>, 'actions': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionList'>, 'archived_question': <class 'pytan3.api_objects.rest_7_3_314_3641.ArchivedQuestion'>, 'archived_questions': <class 'pytan3.api_objects.rest_7_3_314_3641.ArchivedQuestionList'>, 'audit_log': <class 'pytan3.api_objects.rest_7_3_314_3641.AuditLog'>, 'audit_logs': <class 'pytan3.api_objects.rest_7_3_314_3641.AuditLogList'>, 'client_count': <class 'pytan3.api_objects.rest_7_3_314_3641.ClientCount'>, 'client_status': <class 'pytan3.api_objects.rest_7_3_314_3641.ClientStatus'>, 'computer_group': <class 'pytan3.api_objects.rest_7_3_314_3641.ComputerGroup'>, 'computer_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.ComputerGroupList'>, 'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSet'>, 'content_set_privilege': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetPrivilege'>, 'content_set_privileges': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetPrivilegeList'>, 'content_set_role': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRole'>, 'content_set_role_membership': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleMembership'>, 'content_set_role_memberships': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleMembershipList'>, 'content_set_role_privilege': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilege'>, 'content_set_role_privileges': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilegeList'>, 'content_set_roles': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleList'>, 'content_set_user_group_role_membership': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetUserGroupRoleMembership'>, 'content_set_user_group_role_memberships': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetUserGroupRoleMembershipList'>, 'content_sets': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetList'>, 'effective_content_set_privileges': <class 'pytan3.api_objects.rest_7_3_314_3641.EffectiveContentSetPrivilegeRequest'>, 'group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'groups': <class 'pytan3.api_objects.rest_7_3_314_3641.GroupList'>, 'hashed_string': <class 'pytan3.api_objects.rest_7_3_314_3641.HashedString'>, 'hashed_strings': <class 'pytan3.api_objects.rest_7_3_314_3641.HashedStringList'>, 'import_conflict_details': <class 'pytan3.api_objects.rest_7_3_314_3641.ImportConflictDetailList'>, 'ldap_sync_connector': <class 'pytan3.api_objects.rest_7_3_314_3641.LdapSyncConnector'>, 'ldap_sync_connectors': <class 'pytan3.api_objects.rest_7_3_314_3641.LdapSyncConnectorList'>, 'package_file': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageFile'>, 'package_files': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageFileList'>, 'package_spec': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpec'>, 'package_specs': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpecList'>, 'parse_job': <class 'pytan3.api_objects.rest_7_3_314_3641.ParseJob'>, 'parse_jobs': <class 'pytan3.api_objects.rest_7_3_314_3641.ParseJobList'>, 'parse_result_group': <class 'pytan3.api_objects.rest_7_3_314_3641.ParseResultGroup'>, 'parse_result_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.ParseResultGroupList'>, 'plugin': <class 'pytan3.api_objects.rest_7_3_314_3641.Plugin'>, 'plugin_schedule': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginSchedule'>, 'plugin_schedules': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginScheduleList'>, 'plugins': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginList'>, 'question': <class 'pytan3.api_objects.rest_7_3_314_3641.Question'>, 'questions': <class 'pytan3.api_objects.rest_7_3_314_3641.QuestionList'>, 'roles': <class 'pytan3.api_objects.rest_7_3_314_3641.UserRoleList'>, 'saved_action': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedAction'>, 'saved_action_approval': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionApproval'>, 'saved_action_approvals': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionApprovalList'>, 'saved_actions': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedActionList'>, 'saved_question': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestion'>, 'saved_question_package_specs': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionPackageSpecs'>, 'saved_question_question': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionQuestion'>, 'saved_question_questions': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionQuestionList'>, 'saved_questions': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionList'>, 'sensor': <class 'pytan3.api_objects.rest_7_3_314_3641.Sensor'>, 'sensor_stat': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorStat'>, 'sensor_stats': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorStatList'>, 'sensors': <class 'pytan3.api_objects.rest_7_3_314_3641.SensorList'>, 'server_host': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerHost'>, 'server_hosts': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerHostList'>, 'server_throttle': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerThrottle'>, 'server_throttle_status': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerThrottleStatus'>, 'server_throttle_statuses': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerThrottleStatusList'>, 'server_throttles': <class 'pytan3.api_objects.rest_7_3_314_3641.ServerThrottleList'>, 'site_throttle': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottle'>, 'site_throttle_status': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottleStatus'>, 'site_throttles': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottleList'>, 'site_throttles_statuses': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottleStatusList'>, 'soap_error': <class 'pytan3.api_objects.rest_7_3_314_3641.SoapError'>, 'solution': <class 'pytan3.api_objects.rest_7_3_314_3641.Solution'>, 'solutions': <class 'pytan3.api_objects.rest_7_3_314_3641.SolutionList'>, 'system_setting': <class 'pytan3.api_objects.rest_7_3_314_3641.SystemSetting'>, 'system_settings': <class 'pytan3.api_objects.rest_7_3_314_3641.SystemSettingList'>, 'system_status': <class 'pytan3.api_objects.rest_7_3_314_3641.SystemStatusList'>, 'upload_file': <class 'pytan3.api_objects.rest_7_3_314_3641.UploadFile'>, 'upload_file_status': <class 'pytan3.api_objects.rest_7_3_314_3641.UploadFileStatus'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>, 'user_group': <class 'pytan3.api_objects.rest_7_3_314_3641.UserGroup'>, 'user_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.UserGroupList'>, 'users': <class 'pytan3.api_objects.rest_7_3_314_3641.UserList'>, 'verify_signature': <class 'pytan3.api_objects.rest_7_3_314_3641.VerifySignature'>, 'white_listed_url': <class 'pytan3.api_objects.rest_7_3_314_3641.WhiteListedUrl'>, 'white_listed_urls': <class 'pytan3.api_objects.rest_7_3_314_3641.WhiteListedUrlList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ImportConflictDetail(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'import_conflict_detail'

str – Name of object used in API calls.

API_NAME_SRC = 'import_conflict_detail'

str – Name of object in source file.

API_SIMPLE = {'diff': (<class 'str'>,), 'is_new': (<class 'int'>,), 'name': (<class 'str'>,), 'type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ImportConflictDetailList

API_LIST_API_NAME = 'import_conflict_details'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.CacheFilter(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'cache_filter'

str – Name of object used in API calls.

API_NAME_SRC = 'cache_filter'

str – Name of object in source file.

API_SIMPLE = {'and_flag': (<class 'int'>,), 'field': (<class 'str'>,), 'not_flag': (<class 'int'>,), 'operator': (<class 'str'>,), 'type': (<class 'str'>,), 'value': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'sub_filters': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheFilterList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of CacheFilterList

API_LIST_API_NAME = 'cache_filters'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Options(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'options'

str – Name of object used in API calls.

API_NAME_SRC = 'options'

str – Name of object in source file.

API_SIMPLE = {'aggregate_by_value_flag': (<class 'int'>,), 'aggregate_over_time_flag': (<class 'int'>,), 'allow_cdata_base64_encode_flag': (<class 'int'>,), 'audit_history_size': (<class 'int'>,), 'cache_expiration': (<class 'int'>,), 'cache_id': (<class 'int'>,), 'cache_sort_fields': (<class 'str'>,), 'cdata_base64_encoded': (<class 'int'>,), 'context_id': (<class 'int'>,), 'disable_live_snapshots': (<class 'int'>,), 'export_dont_include_related': (<class 'int'>,), 'export_flag': (<class 'int'>,), 'export_format': (<class 'int'>,), 'export_hide_csv_header_flag': (<class 'int'>,), 'export_leading_text': (<class 'str'>,), 'export_omit_soap_envelope': (<class 'int'>,), 'export_trailing_text': (<class 'str'>,), 'filter_not_flag': (<class 'int'>,), 'filter_string': (<class 'str'>,), 'flags': (<class 'int'>,), 'hide_errors_flag': (<class 'int'>,), 'hide_no_results_flag': (<class 'int'>,), 'import_analyze_conflicts_only': (<class 'int'>,), 'import_existing_ignore_content_set': (<class 'int'>,), 'include_answer_times_flag': (<class 'int'>,), 'include_hashes_flag': (<class 'int'>,), 'include_hidden_flag': (<class 'int'>,), 'include_user_details': (<class 'int'>,), 'include_user_owned_object_ids_flag': (<class 'int'>,), 'json_pretty_print': (<class 'int'>,), 'live_snapshot_always_use_seconds': (<class 'int'>,), 'live_snapshot_expiration_seconds': (<class 'int'>,), 'live_snapshot_invalidate_report_count_percentage': (<class 'int'>,), 'live_snapshot_report_count_threshold': (<class 'int'>,), 'most_recent_flag': (<class 'int'>,), 'no_result_row_collation_flag': (<class 'int'>,), 'pct_done_limit': (<class 'int'>,), 'recent_result_buckets': (<class 'str'>,), 'return_cdata_flag': (<class 'int'>,), 'return_lists_flag': (<class 'int'>,), 'row_count': (<class 'int'>,), 'row_counts_only_flag': (<class 'int'>,), 'row_start': (<class 'int'>,), 'sample_count': (<class 'int'>,), 'sample_frequency': (<class 'int'>,), 'sample_start': (<class 'int'>,), 'saved_question_qids_allow_multiple_flag': (<class 'int'>,), 'saved_question_qids_ignore_mr_group_flag': (<class 'int'>,), 'saved_question_qids_include_expired_flag': (<class 'int'>,), 'saved_question_qids_reissue_flag': (<class 'int'>,), 'script_data': (<class 'str'>,), 'sort_order': (<class 'str'>,), 'suppress_object_list': (<class 'int'>,), 'suppress_scripts': (<class 'int'>,), 'use_error_objects': (<class 'int'>,), 'use_json': (<class 'int'>,), 'use_user_context_flag': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_filters': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheFilterList'>, 'import_conflict_options': <class 'pytan3.api_objects.rest_7_3_314_3641.ImportConflictOptions'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSet(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set'

str – Name of object in source file.

API_SIMPLE = {'description': (<class 'str'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'reserved_name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetList

API_LIST_API_NAME = 'content_sets'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilegeOnRole(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_role_privilege_on_role'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_privilege_on_role'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'content_set_privilege': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetRolePrivilegeOnRoleList

API_LIST_API_NAME = 'content_set_role_privilege_on_roles'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRole(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_role'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role'

str – Name of object in source file.

API_SIMPLE = {'all_content_sets_flag': (<class 'int'>,), 'category': (<class 'str'>,), 'deny_flag': (<class 'int'>,), 'description': (<class 'str'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'reserved_name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set_role_privileges': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilegeOnRoleList'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetRoleList

API_LIST_API_NAME = 'content_set_roles'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleMembership(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_role_membership'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_membership'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set_role': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetRoleMembershipList

API_LIST_API_NAME = 'content_set_role_memberships'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetUserGroupRoleMembership(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_user_group_role_membership'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_user_group_role_membership'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set_role': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'user_group': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetUserGroupRoleMembershipList

API_LIST_API_NAME = 'content_set_user_group_role_memberships'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetPrivilege(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_privilege'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_privilege'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'name': (<class 'str'>,), 'privilege_module': (<class 'str'>,), 'privilege_type': (<class 'str'>,), 'reserved_name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetPrivilegeList

API_LIST_API_NAME = 'content_set_privileges'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilege(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'content_set_role_privilege'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_privilege'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'content_set_privilege': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>, 'content_set_role': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ContentSetRolePrivilegeList

API_LIST_API_NAME = 'content_set_role_privileges'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.EffectiveContentSetPrivilege(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'effective_content_set_privilege'

str – Name of object used in API calls.

API_NAME_SRC = 'effective_content_set_privilege'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSet'>, 'content_set_privilege_list': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetPrivilegeList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of EffectiveContentSetPrivilegeList

API_LIST_API_NAME = 'effective_content_set_privileges'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Dashboard(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'dashboard'

str – Name of object used in API calls.

API_NAME_SRC = 'dashboard'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'name': (<class 'str'>,), 'public_flag': (<class 'int'>,), 'text': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSet'>, 'group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'saved_question_list': <class 'pytan3.api_objects.rest_7_3_314_3641.SavedQuestionList'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of DashboardList

API_LIST_API_NAME = 'dashboards'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.DashboardGroup(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'dashboard_group'

str – Name of object used in API calls.

API_NAME_SRC = 'dashboard_group'

str – Name of object in source file.

API_SIMPLE = {'display_index': (<class 'int'>,), 'editable_flag': (<class 'int'>,), 'icon': (<class 'str'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'other_flag': (<class 'int'>,), 'public_flag': (<class 'int'>,), 'text': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSet'>, 'dashboard_list': <class 'pytan3.api_objects.rest_7_3_314_3641.DashboardList'>, 'user': <class 'pytan3.api_objects.rest_7_3_314_3641.User'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.UserGroup(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'user_group'

str – Name of object used in API calls.

API_NAME_SRC = 'user_group'

str – Name of object in source file.

API_SIMPLE = {'deleted_flag': (<class 'int'>,), 'exclusive_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'content_set_roles': <class 'pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleList'>, 'group': <class 'pytan3.api_objects.rest_7_3_314_3641.Group'>, 'metadata': <class 'pytan3.api_objects.rest_7_3_314_3641.MetadataList'>, 'user_list': <class 'pytan3.api_objects.rest_7_3_314_3641.UserList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of UserGroupList

API_LIST_API_NAME = 'user_groups'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.Solution(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'solution'

str – Name of object used in API calls.

API_NAME_SRC = 'solution'

str – Name of object in source file.

API_SIMPLE = {'category': (<class 'str'>,), 'delete_xml_url': (<class 'str'>,), 'deleted_flag': (<class 'int'>,), 'description': (<class 'str'>,), 'dup_resolve_type': (<class 'int'>,), 'id': (<class 'int'>,), 'imported_by': (<class 'str'>,), 'imported_version': (<class 'str'>,), 'installed_xml_url': (<class 'str'>,), 'last_update': (<class 'str'>,), 'name': (<class 'str'>,), 'signature': (<class 'str'>,), 'solution_id': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SolutionList

API_LIST_API_NAME = 'solutions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ActionGroup(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'action_group'

str – Name of object used in API calls.

API_NAME_SRC = 'action_group'

str – Name of object in source file.

API_SIMPLE = {'and_flag': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'public_flag': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'groups': <class 'pytan3.api_objects.rest_7_3_314_3641.GroupList'>, 'user_groups': <class 'pytan3.api_objects.rest_7_3_314_3641.UserGroupList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ActionGroupList

API_LIST_API_NAME = 'action_groups'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedQuestionPackageSpecs(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_question_package_specs'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_question_package_specs'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'packages': <class 'pytan3.api_objects.rest_7_3_314_3641.PackageSpecList'>, 'saved_question': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS = None

ApiList – List class that holds this item class.

API_LIST_API_NAME = ''

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SavedQuestionQuestion(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'saved_question_question'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_question_question'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'questions': <class 'pytan3.api_objects.rest_7_3_314_3641.QuestionList'>, 'saved_question': <class 'pytan3.api_objects.rest_7_3_314_3641.IdReference'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SavedQuestionQuestionList

API_LIST_API_NAME = 'saved_question_questions'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.LdapSyncConnector(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'ldap_sync_connector'

str – Name of object used in API calls.

API_NAME_SRC = 'ldap_sync_connector'

str – Name of object in source file.

API_SIMPLE = {'base_groups': (<class 'str'>,), 'base_users': (<class 'str'>,), 'disable_ldap_auth': (<class 'int'>,), 'disable_referrals_flag': (<class 'int'>,), 'enable': (<class 'int'>,), 'filter_groups': (<class 'str'>,), 'filter_users': (<class 'str'>,), 'group_id': (<class 'str'>,), 'group_member': (<class 'str'>,), 'group_name': (<class 'str'>,), 'host': (<class 'str'>,), 'id': (<class 'int'>,), 'last_sync_result': (<class 'str'>,), 'last_sync_timestamp': (<class 'str'>,), 'ldap_password': (<class 'str'>,), 'ldap_user': (<class 'str'>,), 'members_only_flag': (<class 'int'>,), 'name': (<class 'str'>,), 'port': (<class 'int'>,), 'secure': (<class 'int'>,), 'sync_individual_members_flag': (<class 'int'>,), 'use_ntlm': (<class 'int'>,), 'user_display_name': (<class 'str'>,), 'user_domain': (<class 'str'>,), 'user_id': (<class 'str'>,), 'user_member_of': (<class 'str'>,), 'user_name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of LdapSyncConnectorList

API_LIST_API_NAME = 'ldap_sync_connectors'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ServerThrottle(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'server_throttle'

str – Name of object used in API calls.

API_NAME_SRC = 'server_throttle'

str – Name of object in source file.

API_SIMPLE = {'bandwidth_bytes_limit': (<class 'int'>,), 'connection_limit': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'download_bandwidth_bytes_limit': (<class 'int'>,), 'download_connection_limit': (<class 'int'>,), 'id': (<class 'int'>,), 'ip_address': (<class 'str'>,), 'name': (<class 'str'>,), 'sensor_bandwidth_bytes_limit': (<class 'int'>,), 'sensor_connection_limit': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ServerThrottleList

API_LIST_API_NAME = 'server_throttles'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottle(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'site_throttle'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle'

str – Name of object in source file.

API_SIMPLE = {'all_subnets_flag': (<class 'int'>,), 'bandwidth_bytes_limit': (<class 'int'>,), 'deleted_flag': (<class 'int'>,), 'download_bandwidth_bytes_limit': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'sensor_bandwidth_bytes_limit': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'subnets': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnetList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SiteThrottleList

API_LIST_API_NAME = 'site_throttles'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnet(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'site_throttle_subnet'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_subnet'

str – Name of object in source file.

API_SIMPLE = {'range': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SiteThrottleSubnetList

API_LIST_API_NAME = 'site_throttle_subnets'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.ServerThrottleStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'server_throttle_status'

str – Name of object used in API calls.

API_NAME_SRC = 'server_throttle_status'

str – Name of object in source file.

API_SIMPLE = {'download_queue_delay_milliseconds': (<class 'int'>,), 'id': (<class 'int'>,), 'name': (<class 'str'>,), 'queue_delay_milliseconds': (<class 'int'>,), 'sensor_queue_delay_milliseconds': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of ServerThrottleStatusList

API_LIST_API_NAME = 'server_throttle_statuses'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'site_throttle_status'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_status'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'name': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'subnets': <class 'pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnetStatusList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SiteThrottleStatusList

API_LIST_API_NAME = 'site_throttles_statuses'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnetStatus(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'site_throttle_subnet_status'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_subnet_status'

str – Name of object in source file.

API_SIMPLE = {'download_queue_delay_milliseconds': (<class 'int'>,), 'queue_delay_milliseconds': (<class 'int'>,), 'range': (<class 'str'>,), 'sensor_queue_delay_milliseconds': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of SiteThrottleSubnetStatusList

API_LIST_API_NAME = 'site_throttle_subnet_statuss'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.HashedString(**kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiItem

Automagically generated API object.

API_NAME = 'hashed_string'

str – Name of object used in API calls.

API_NAME_SRC = 'hashed_string'

str – Name of object in source file.

API_SIMPLE = {'collision_flag': (<class 'int'>,), 'error_flag': (<class 'int'>,), 'first_collision': (<class 'str'>,), 'second_collision': (<class 'str'>,), 'sensor_hash': (<class 'int'>,), 'value': (<class 'str'>,), 'value_hash': (<class 'int'>,), 'which_computer_id': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'first_computer_id': <class 'pytan3.api_objects.rest_7_3_314_3641.ComputerIdList'>, 'second_computer_id': <class 'pytan3.api_objects.rest_7_3_314_3641.ComputerIdList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_LIST_CLS

ApiList: List class that holds this item class.

alias of HashedStringList

API_LIST_API_NAME = 'hashed_strings'

str – Name of API_LIST_CLS used in API calls.

class pytan3.api_objects.rest_7_3_314_3641.SensorQueryList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'sensor_querys'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_query_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'query'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SensorQuery

class pytan3.api_objects.rest_7_3_314_3641.SensorSubcolumnList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'sensor_subcolumns'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_subcolumn_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'subcolumn'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SensorSubcolumn

class pytan3.api_objects.rest_7_3_314_3641.StringHintList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'string_hints'

str – Name of object used in API calls.

API_NAME_SRC = 'string_hint_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'string_hint'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.SensorList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'sensors'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'sensor'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Sensor

class pytan3.api_objects.rest_7_3_314_3641.SensorStatList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'sensor_stats'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_stat_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'sensor_stat'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SensorStat

class pytan3.api_objects.rest_7_3_314_3641.SavedActionApprovalList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'saved_action_approvals'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action_approval_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'saved_action_approval'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SavedActionApproval

class pytan3.api_objects.rest_7_3_314_3641.SavedActionRowIdList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'saved_action_row_ids'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action_row_id_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'row_id'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'int'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.SavedActionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'saved_actions'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_action_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'saved_action'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SavedAction

class pytan3.api_objects.rest_7_3_314_3641.AuditDataList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'audit_datas'

str – Name of object used in API calls.

API_NAME_SRC = 'audit_data_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'entry'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of AuditData

class pytan3.api_objects.rest_7_3_314_3641.AuditLogList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'audit_logs'

str – Name of object used in API calls.

API_NAME_SRC = 'audit_log_list'

str – Name of object in source file.

API_SIMPLE = {'id': (<class 'int'>,), 'type': (<class 'str'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'entries'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of AuditLog

class pytan3.api_objects.rest_7_3_314_3641.ServerList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'servers'

str – Name of object used in API calls.

API_NAME_SRC = 'server_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'server'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Server

class pytan3.api_objects.rest_7_3_314_3641.ServerHost(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'server_host'

str – Name of object used in API calls.

API_NAME_SRC = 'server_host'

str – Name of object in source file.

API_SIMPLE = {'heart_beat_age_in_minute': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'servers'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ServerList

class pytan3.api_objects.rest_7_3_314_3641.ServerHostList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'server_hosts'

str – Name of object used in API calls.

API_NAME_SRC = 'server_host_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'server_host'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ServerHost

class pytan3.api_objects.rest_7_3_314_3641.MetadataList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'metadatas'

str – Name of object used in API calls.

API_NAME_SRC = 'metadata_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'item'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of MetadataItem

class pytan3.api_objects.rest_7_3_314_3641.GroupList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'groups'

str – Name of object used in API calls.

API_NAME_SRC = 'group_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'group'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Group

class pytan3.api_objects.rest_7_3_314_3641.FilterList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'filters'

str – Name of object used in API calls.

API_NAME_SRC = 'filter_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'filter'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Filter

class pytan3.api_objects.rest_7_3_314_3641.SelectList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'selects'

str – Name of object used in API calls.

API_NAME_SRC = 'select_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'select'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Select

class pytan3.api_objects.rest_7_3_314_3641.ErrorList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'errors'

str – Name of object used in API calls.

API_NAME_SRC = 'error_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'error'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of XmlError

class pytan3.api_objects.rest_7_3_314_3641.QuestionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'questions'

str – Name of object used in API calls.

API_NAME_SRC = 'question_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>, 'info': <class 'pytan3.api_objects.rest_7_3_314_3641.QuestionListInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'question'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Question

class pytan3.api_objects.rest_7_3_314_3641.PackageFileTemplateList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'package_file_templates'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file_template_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'file_template'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PackageFileTemplate

class pytan3.api_objects.rest_7_3_314_3641.PackageFileStatusList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'package_file_statuss'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file_status_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'status'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PackageFileStatus

class pytan3.api_objects.rest_7_3_314_3641.PackageFileList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'package_files'

str – Name of object used in API calls.

API_NAME_SRC = 'package_file_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'file'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PackageFile

class pytan3.api_objects.rest_7_3_314_3641.PackageSpecList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'package_specs'

str – Name of object used in API calls.

API_NAME_SRC = 'package_spec_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'package_spec'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PackageSpec

class pytan3.api_objects.rest_7_3_314_3641.WhiteListedUrlList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'white_listed_urls'

str – Name of object used in API calls.

API_NAME_SRC = 'white_listed_url_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'white_listed_url'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of WhiteListedUrl

class pytan3.api_objects.rest_7_3_314_3641.VersionAggregateList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'version_aggregates'

str – Name of object used in API calls.

API_NAME_SRC = 'version_aggregate_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'version'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of VersionAggregate

class pytan3.api_objects.rest_7_3_314_3641.SystemStatusList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'system_status'

str – Name of object used in API calls.

API_NAME_SRC = 'system_status_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'aggregate': <class 'pytan3.api_objects.rest_7_3_314_3641.SystemStatusAggregate'>, 'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'client_status'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ClientStatus

class pytan3.api_objects.rest_7_3_314_3641.SystemSettingList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'system_settings'

str – Name of object used in API calls.

API_NAME_SRC = 'system_setting_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'system_setting'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SystemSetting

class pytan3.api_objects.rest_7_3_314_3641.UserList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'users'

str – Name of object used in API calls.

API_NAME_SRC = 'user_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'user'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of User

class pytan3.api_objects.rest_7_3_314_3641.PermissionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'permissions'

str – Name of object used in API calls.

API_NAME_SRC = 'permission_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {'ACTION_APPROVE': 'action_approval', 'ACTION_READ': 'action_read', 'ACTION_WRITE': 'action_write', 'ADMIN': 'admin', 'CLIENTS_READ': 'clients_read', 'CONTENT_ADMIN': 'content_admin', 'NOTIFICATION_WRITE': 'notification_write', 'QUESTION_LOG_READ': 'question_log_read', 'QUESTION_READ': 'question_read', 'QUESTION_WRITE': 'question_write', 'SENSOR_READ': 'sensor_read', 'SENSOR_WRITE': 'sensor_write'}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'permission'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.UserRoleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'roles'

str – Name of object used in API calls.

API_NAME_SRC = 'user_role_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'role'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of UserRole

class pytan3.api_objects.rest_7_3_314_3641.ActionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'actions'

str – Name of object used in API calls.

API_NAME_SRC = 'action_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>, 'info': <class 'pytan3.api_objects.rest_7_3_314_3641.ActionListInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'action'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Action

class pytan3.api_objects.rest_7_3_314_3641.ActionStopList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'action_stops'

str – Name of object used in API calls.

API_NAME_SRC = 'action_stop_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'action_stop'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ActionStop

class pytan3.api_objects.rest_7_3_314_3641.ArchivedQuestionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'archived_questions'

str – Name of object used in API calls.

API_NAME_SRC = 'archived_question_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'archived_question'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ArchivedQuestion

class pytan3.api_objects.rest_7_3_314_3641.SavedQuestionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'saved_questions'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_question_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'saved_question'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SavedQuestion

class pytan3.api_objects.rest_7_3_314_3641.ParseJobList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'parse_jobs'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_job_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'parse_job'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ParseJob

class pytan3.api_objects.rest_7_3_314_3641.ParseResultGroupList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'parse_result_groups'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_result_group_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'parse_result_group'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ParseResultGroup

class pytan3.api_objects.rest_7_3_314_3641.ParseResultList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'parse_results'

str – Name of object used in API calls.

API_NAME_SRC = 'parse_result_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'parse_result'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ParseResult

class pytan3.api_objects.rest_7_3_314_3641.ParameterList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'parameters'

str – Name of object used in API calls.

API_NAME_SRC = 'parameter_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'parameter'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Parameter

class pytan3.api_objects.rest_7_3_314_3641.ParameterValueList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'parameter_values'

str – Name of object used in API calls.

API_NAME_SRC = 'parameter_value_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'value'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.SensorReferenceList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'sensor_references'

str – Name of object used in API calls.

API_NAME_SRC = 'sensor_reference_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'sensor_reference'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SensorReference

class pytan3.api_objects.rest_7_3_314_3641.PluginArgumentList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_arguments'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_argument_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'argument'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PluginArgument

class pytan3.api_objects.rest_7_3_314_3641.PluginSqlResultList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_sql_results'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_sql_result_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'value'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.PluginSqlColumnList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_sql_columns'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_sql_column_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'name'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.PluginSql(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_sql'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_sql'

str – Name of object in source file.

API_SIMPLE = {'result_count': (<class 'int'>,), 'rows_affected': (<class 'int'>,)}

dict – Map of simple attributes to their types.

API_COMPLEX = {'columns': <class 'pytan3.api_objects.rest_7_3_314_3641.PluginSqlColumnList'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'result_row'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PluginSqlResultList

class pytan3.api_objects.rest_7_3_314_3641.PluginCommandList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_commands'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_command_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'command'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'str'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.UploadFileList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'upload_files'

str – Name of object used in API calls.

API_NAME_SRC = 'upload_file_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'upload_file'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of UploadFile

class pytan3.api_objects.rest_7_3_314_3641.PluginList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugins'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'plugin'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Plugin

class pytan3.api_objects.rest_7_3_314_3641.PluginScheduleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'plugin_schedules'

str – Name of object used in API calls.

API_NAME_SRC = 'plugin_schedule_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'plugin_schedule'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of PluginSchedule

class pytan3.api_objects.rest_7_3_314_3641.ComputerSpecList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'computer_specs'

str – Name of object used in API calls.

API_NAME_SRC = 'computer_spec_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'computer_spec'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ComputerGroupSpec

class pytan3.api_objects.rest_7_3_314_3641.ComputerGroupList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'computer_groups'

str – Name of object used in API calls.

API_NAME_SRC = 'computer_group_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {'cache_info': <class 'pytan3.api_objects.rest_7_3_314_3641.CacheInfo'>}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'computer_group'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ComputerGroup

class pytan3.api_objects.rest_7_3_314_3641.ImportConflictDetailList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'import_conflict_details'

str – Name of object used in API calls.

API_NAME_SRC = 'import_conflict_detail_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'import_conflict_detail'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ImportConflictDetail

class pytan3.api_objects.rest_7_3_314_3641.CacheFilterList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'cache_filters'

str – Name of object used in API calls.

API_NAME_SRC = 'cache_filter_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'filter'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of CacheFilter

class pytan3.api_objects.rest_7_3_314_3641.ImportConflictOptions(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'import_conflict_options'

str – Name of object used in API calls.

API_NAME_SRC = 'import_conflict_options'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'import_conflict_option'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'int'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.ContentSetList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_sets'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSet

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilegeOnRoleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_role_privilege_on_roles'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_privilege_on_role_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_role_privilege'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetRolePrivilegeOnRole

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_roles'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_role'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetRole

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRoleMembershipList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_role_memberships'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_membership_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_role_membership'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetRoleMembership

class pytan3.api_objects.rest_7_3_314_3641.ContentSetUserGroupRoleMembershipList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_user_group_role_memberships'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_user_group_role_membership_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_user_group_role_membership'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetUserGroupRoleMembership

class pytan3.api_objects.rest_7_3_314_3641.ContentSetPrivilegeList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_privileges'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_privilege_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_privilege'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetPrivilege

class pytan3.api_objects.rest_7_3_314_3641.ContentSetRolePrivilegeList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'content_set_role_privileges'

str – Name of object used in API calls.

API_NAME_SRC = 'content_set_role_privilege_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'content_set_role_privilege'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ContentSetRolePrivilege

class pytan3.api_objects.rest_7_3_314_3641.EffectiveContentSetPrivilegeRequest(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'effective_content_set_privilege_request'

str – Name of object used in API calls.

API_NAME_SRC = 'effective_content_set_privilege_request'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'user'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of User

class pytan3.api_objects.rest_7_3_314_3641.EffectiveContentSetPrivilegeList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'effective_content_set_privileges'

str – Name of object used in API calls.

API_NAME_SRC = 'effective_content_set_privilege_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'effective_content_set_privilege'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of EffectiveContentSetPrivilege

class pytan3.api_objects.rest_7_3_314_3641.DashboardList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'dashboards'

str – Name of object used in API calls.

API_NAME_SRC = 'dashboard_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'dashboard'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Dashboard

class pytan3.api_objects.rest_7_3_314_3641.UserGroupList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'user_groups'

str – Name of object used in API calls.

API_NAME_SRC = 'user_group_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'user_group'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of UserGroup

class pytan3.api_objects.rest_7_3_314_3641.SolutionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'solutions'

str – Name of object used in API calls.

API_NAME_SRC = 'solution_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'solution'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of Solution

class pytan3.api_objects.rest_7_3_314_3641.ActionGroupList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'action_groups'

str – Name of object used in API calls.

API_NAME_SRC = 'action_group_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'action_group'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ActionGroup

class pytan3.api_objects.rest_7_3_314_3641.SavedQuestionQuestionList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'saved_question_questions'

str – Name of object used in API calls.

API_NAME_SRC = 'saved_question_question_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'saved_question_question'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SavedQuestionQuestion

class pytan3.api_objects.rest_7_3_314_3641.LdapSyncConnectorList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'ldap_sync_connectors'

str – Name of object used in API calls.

API_NAME_SRC = 'ldap_sync_connector_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'ldap_sync_connector'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of LdapSyncConnector

class pytan3.api_objects.rest_7_3_314_3641.ServerThrottleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'server_throttles'

str – Name of object used in API calls.

API_NAME_SRC = 'server_throttle_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'server_throttle'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ServerThrottle

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'site_throttles'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'site_throttle'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SiteThrottle

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnetList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'site_throttle_subnets'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_subnet_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'subnet'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SiteThrottleSubnet

class pytan3.api_objects.rest_7_3_314_3641.ServerThrottleStatusList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'server_throttle_statuses'

str – Name of object used in API calls.

API_NAME_SRC = 'server_throttle_status_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'server_throttle_status'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of ServerThrottleStatus

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleStatusList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'site_throttles_statuses'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_status_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'site_throttle_status'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SiteThrottleStatus

class pytan3.api_objects.rest_7_3_314_3641.SiteThrottleSubnetStatusList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'site_throttle_subnet_statuss'

str – Name of object used in API calls.

API_NAME_SRC = 'site_throttle_subnet_status_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'subnet'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of SiteThrottleSubnetStatus

class pytan3.api_objects.rest_7_3_314_3641.ComputerIdList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'computer_ids'

str – Name of object used in API calls.

API_NAME_SRC = 'computer_id_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'id'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS = (<class 'int'>,)

ApiItem – Item class this list class holds.

class pytan3.api_objects.rest_7_3_314_3641.HashedStringList(*args, **kwargs)[source]

Bases: pytan3.api_objects.rest_7_3_314_3641.ApiList

Automagically generated API array object.

API_NAME = 'hashed_strings'

str – Name of object used in API calls.

API_NAME_SRC = 'hashed_string_list'

str – Name of object in source file.

API_SIMPLE = {}

dict – Map of simple attributes to their types.

API_COMPLEX = {}

dict – Map of complex attributes to their types.

API_CONSTANTS = {}

dict – Map of constants to their values.

API_STR_ADD = []

list or str – Attributes to add to str formatting.

API_ITEM_ATTR = 'hashed_string'

str – Name of API_ITEM_CLS used in API calls.

API_ITEM_CLS

ApiItem: Item class this list class holds.

alias of HashedString

pytan3.api_objects.rest_7_3_314_3641.BUILD_META = {'date': '2019-02-22 07:46:08.408656', 'script': 'build_objects_from_wsdl.py', 'script_platform': 'Darwin-18.2.0-x86_64-i386-64bit', 'script_python': '3.7.2 (default, Feb 20 2019, 14:09:01) ', 'script_version': '3.0.0', 'source_file': '/libraries/taniumjs/console.wsdl', 'source_file_date': '2019-02-22 07:29:24.912505'}

dict – How this module was built (date/time in UTC format).

pytan3.api_objects.rest_7_3_314_3641.COMMANDS = ['AddObject', 'GetObject', 'MoveObject', 'TransferObject', 'UpdateObject', 'DeleteObject', 'GetSavedQuestions', 'GetResultInfo', 'GetResultData', 'GetMergedResultData', 'UploadFile', 'RunPlugin', 'ExportObject', 'ImportObject', 'VerifySignature']

list of str – API commands.

pytan3.api_objects.rest_7_3_314_3641.VERSION = {'build': 3641, 'major': 7, 'minor': 3, 'protocol': 314, 'string': '7.3.314.3641'}

dict – Tanium API version these objects are intended to be used for.