thousandeyes-sdk-python/agents/docs/AssignEnterpriseAgentClusterRequest.md

1.2 KiB

AssignEnterpriseAgentClusterRequest

Properties

Name Type Description Notes
agents List[str] Contains list of agent IDs (get `agentId` from `/agents` endpoint) [optional]

Example

from agents.models.assign_enterprise_agent_cluster_request import AssignEnterpriseAgentClusterRequest

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

# convert the object into a dict
assign_enterprise_agent_cluster_request_dict = assign_enterprise_agent_cluster_request_instance.to_dict()
# create an instance of AssignEnterpriseAgentClusterRequest from a dict
assign_enterprise_agent_cluster_request_from_dict = AssignEnterpriseAgentClusterRequest.from_dict(assign_enterprise_agent_cluster_request_dict)

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