mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.3 KiB
1.3 KiB
UnassignEnterpriseAgentFromClusterRequest
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| members | List[str] | Contains list of member IDs. (get `memberId` from `/agents/{agentId}` endpoint) | [optional] |
Example
from agents_api.models.unassign_enterprise_agent_from_cluster_request import UnassignEnterpriseAgentFromClusterRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UnassignEnterpriseAgentFromClusterRequest from a JSON string
unassign_enterprise_agent_from_cluster_request_instance = UnassignEnterpriseAgentFromClusterRequest.from_json(json)
# print the JSON string representation of the object
print UnassignEnterpriseAgentFromClusterRequest.to_json()
# convert the object into a dict
unassign_enterprise_agent_from_cluster_request_dict = unassign_enterprise_agent_from_cluster_request_instance.to_dict()
# create an instance of UnassignEnterpriseAgentFromClusterRequest from a dict
unassign_enterprise_agent_from_cluster_request_form_dict = unassign_enterprise_agent_from_cluster_request.from_dict(unassign_enterprise_agent_from_cluster_request_dict)