mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-24 10:05:31 +00:00
81 lines
1.6 KiB
Python
81 lines
1.6 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Endpoint Agents API
|
|
|
|
Manage ThousandEyes Endpoint Agents using this API.
|
|
|
|
The version of the OpenAPI document: 7.0.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from agents_api.api.manage_agents_api import ManageAgentsApi
|
|
|
|
|
|
class TestManageAgentsApi(unittest.TestCase):
|
|
"""ManageAgentsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = ManageAgentsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_endpoint_agent_delete(self) -> None:
|
|
"""Test case for endpoint_agent_delete
|
|
|
|
Delete endpoint agent
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agent_disable(self) -> None:
|
|
"""Test case for endpoint_agent_disable
|
|
|
|
Disable endpoint agent
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agent_enable(self) -> None:
|
|
"""Test case for endpoint_agent_enable
|
|
|
|
Enable endpoint agent
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agent_get(self) -> None:
|
|
"""Test case for endpoint_agent_get
|
|
|
|
Retrieve endpoint agent
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agent_update(self) -> None:
|
|
"""Test case for endpoint_agent_update
|
|
|
|
Update endpoint agent
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agents_list(self) -> None:
|
|
"""Test case for endpoint_agents_list
|
|
|
|
List endpoint agents
|
|
"""
|
|
pass
|
|
|
|
def test_endpoint_agents_search(self) -> None:
|
|
"""Test case for endpoint_agents_search
|
|
|
|
Filter endpoint agents
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|