mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-02-04 10:15:30 +00:00
1.3 KiB
1.3 KiB
EnterpriseAgentsInner
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| aid | object | A unique identifier that specifies the account group that owns the enterprise agents. | [optional] |
| account_group_name | object | Name of the account group which owns the enterprise agents. | [optional] |
| enterprise_agents_used | int | Number of enterprise agents owned by the specific account group in the usage period. | [optional] |
Example
from usage.models.enterprise_agents_inner import EnterpriseAgentsInner
# TODO update the JSON string below
json = "{}"
# create an instance of EnterpriseAgentsInner from a JSON string
enterprise_agents_inner_instance = EnterpriseAgentsInner.from_json(json)
# print the JSON string representation of the object
print(EnterpriseAgentsInner.to_json())
# convert the object into a dict
enterprise_agents_inner_dict = enterprise_agents_inner_instance.to_dict()
# create an instance of EnterpriseAgentsInner from a dict
enterprise_agents_inner_from_dict = EnterpriseAgentsInner.from_dict(enterprise_agents_inner_dict)