mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-09-19 08:03:56 +00:00
1.1 KiB
1.1 KiB
DeploymentInfoItem
A key-value entry containing deployment metadata reported by the endpoint agent.
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | Name of the deployment metadata item. | |
| value | str | Agent-reported value associated with `key`. |
Example
from thousandeyes_sdk.endpoint_agents.models.deployment_info_item import DeploymentInfoItem
# TODO update the JSON string below
json = "{}"
# create an instance of DeploymentInfoItem from a JSON string
deployment_info_item_instance = DeploymentInfoItem.from_json(json)
# print the JSON string representation of the object
print(DeploymentInfoItem.to_json())
# convert the object into a dict
deployment_info_item_dict = deployment_info_item_instance.to_dict()
# create an instance of DeploymentInfoItem from a dict
deployment_info_item_from_dict = DeploymentInfoItem.from_dict(deployment_info_item_dict)