mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
1.2 KiB
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_api.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_form_dict = assign_enterprise_agent_cluster_request.from_dict(assign_enterprise_agent_cluster_request_dict)