mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-03-22 01:25:29 +00:00
60 lines
1.3 KiB
Python
60 lines
1.3 KiB
Python
# coding: utf-8
|
|
|
|
"""
|
|
Agents API
|
|
|
|
## Overview Manage all agents available to your account in ThousandEyes, including both Cloud and Enterprise Agents.
|
|
|
|
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.cloud_and_enterprise_agents_api import CloudAndEnterpriseAgentsApi
|
|
|
|
|
|
class TestCloudAndEnterpriseAgentsApi(unittest.TestCase):
|
|
"""CloudAndEnterpriseAgentsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = CloudAndEnterpriseAgentsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_delete_enterprise_agent(self) -> None:
|
|
"""Test case for delete_enterprise_agent
|
|
|
|
Delete Enterprise Agent
|
|
"""
|
|
pass
|
|
|
|
def test_get_agent_details(self) -> None:
|
|
"""Test case for get_agent_details
|
|
|
|
Retrieve Cloud and Enterprise Agent
|
|
"""
|
|
pass
|
|
|
|
def test_get_agents(self) -> None:
|
|
"""Test case for get_agents
|
|
|
|
List Cloud and Enterprise Agents
|
|
"""
|
|
pass
|
|
|
|
def test_update_enterprise_agent_details(self) -> None:
|
|
"""Test case for update_enterprise_agent_details
|
|
|
|
Update Enterprise Agent
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|