mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 06:26:51 +00:00
32 lines
1.5 KiB
Python
32 lines
1.5 KiB
Python
# coding: utf-8
|
|
|
|
# flake8: noqa
|
|
|
|
"""
|
|
Emulation API
|
|
|
|
The Emulation API facilitates the retrieval of user-agent strings for HTTP, pageload, and transaction tests. It also enables the retrieval and addition of emulated devices for pageload and transaction tests. To access Emulation API endpoints, the following permissions are required: * `Settings Tests Read` for read operations. * `Settings Tests Update` for write operations.
|
|
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
# import apis into sdk package
|
|
from thousandeyes_sdk.emulation.api.emulation_api import EmulationApi
|
|
|
|
|
|
# import models into sdk package
|
|
from thousandeyes_sdk.emulation.models.emulated_device import EmulatedDevice
|
|
from thousandeyes_sdk.emulation.models.emulated_device_category import EmulatedDeviceCategory
|
|
from thousandeyes_sdk.emulation.models.emulated_device_response import EmulatedDeviceResponse
|
|
from thousandeyes_sdk.emulation.models.emulated_device_responses import EmulatedDeviceResponses
|
|
from thousandeyes_sdk.emulation.models.error import Error
|
|
from thousandeyes_sdk.emulation.models.expand_emulated_device_options import ExpandEmulatedDeviceOptions
|
|
from thousandeyes_sdk.emulation.models.link import Link
|
|
from thousandeyes_sdk.emulation.models.self_links import SelfLinks
|
|
from thousandeyes_sdk.emulation.models.unauthorized_error import UnauthorizedError
|
|
from thousandeyes_sdk.emulation.models.user_agent import UserAgent
|
|
from thousandeyes_sdk.emulation.models.user_agents import UserAgents
|