thousandeyes-sdk-python/thousandeyes-sdk-endpoint-agents/docs/DeploymentInfoItem.md
2026-09-10 16:54:07 +00:00

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)

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