thousandeyes-sdk-python/agents_api/docs/UnassignEnterpriseAgentFromClusterRequest.md
2023-12-11 09:29:15 +00:00

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)

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