mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 02:56:51 +00:00
30 lines
1.3 KiB
Markdown
30 lines
1.3 KiB
Markdown
# UnassignEnterpriseAgentFromClusterRequest
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**members** | **List[str]** | Contains list of member IDs. (get `memberId` from `/agents/{agentId}` endpoint) | [optional]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from agents.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_from_dict = UnassignEnterpriseAgentFromClusterRequest.from_dict(unassign_enterprise_agent_from_cluster_request_dict)
|
|
```
|
|
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
|
|
|