thousandeyes-sdk-python/thousandeyes-sdk-usage/docs/UsageQuota.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.7 KiB

UsageQuota

Properties

Name Type Description Notes
month_start datetime Beginning of usage period in UTC (ISO date-time format). [optional]
month_end datetime End of usage period in UTC (ISO date-time format).. [optional]
cloud_units_included int Monthly number of cloud units allocated, as part of the contract. [optional]
endpoint_agents_included int Monthly number of endpoint agents allocated, as part of the contract. [optional]
endpoint_agents_essentials_included int Monthly number of endpoint agents essentials allocated, as part of the contract. [optional]
endpoint_agents_embedded_included int Number of embedded endpoint agents allocated monthly, as specified in the contract. [optional]
enterprise_agents_included int Monthly number of enterprise agents allocated, as part of the contract. Returns non-zero value only for organizations with legacy billing. [optional]

Example

from thousandeyes_sdk.usage.models.usage_quota import UsageQuota

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

# convert the object into a dict
usage_quota_dict = usage_quota_instance.to_dict()
# create an instance of UsageQuota from a dict
usage_quota_from_dict = UsageQuota.from_dict(usage_quota_dict)

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