thousandeyes-sdk-python/thousandeyes-sdk-usage/docs/EnterpriseAgentUnits.md
Jack Browne 92b9a0126c
CP-2126 Refactor HTTP client into shared package (#5)
* CP-2126 Refactor HTTP client into shared package

* CP-2126 Regenerate Python SDK
2024-05-23 11:57:23 +01:00

1.8 KiB

EnterpriseAgentUnits

Properties

Name Type Description Notes
aid str Unique identifier of the account group owning the enterprise agent units. [optional]
account_group_name str Name of the account group which owns the enterprise agent units. [optional]
agent_id str Unique identifier of the enterprise agent generating usage. [optional]
agent_name str Name of the enterprise agent generating usage. [optional]
enterprise_units_used int Number of enterprise agent units owned by the specific account group in the usage period. [optional]
enterprise_units_projected int Number of enterprise units projected in the current usage period, based on units consumed to date and configuration of enabled tests. This value is updated hourly. Returns non-zero value only for organizations with metered billing. [optional]
vagent_id str Unique identifier of the virtual agent generating usage [optional]

Example

from thousandeyes_sdk.usage.models.enterprise_agent_units import EnterpriseAgentUnits

# TODO update the JSON string below
json = "{}"
# create an instance of EnterpriseAgentUnits from a JSON string
enterprise_agent_units_instance = EnterpriseAgentUnits.from_json(json)
# print the JSON string representation of the object
print(EnterpriseAgentUnits.to_json())

# convert the object into a dict
enterprise_agent_units_dict = enterprise_agent_units_instance.to_dict()
# create an instance of EnterpriseAgentUnits from a dict
enterprise_agent_units_from_dict = EnterpriseAgentUnits.from_dict(enterprise_agent_units_dict)

[Back to Model list] [Back to API list] [Back to README]