thousandeyes-sdk-instant-tests 1.2.0__py3-none-any.whl → 2.0.0rc1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. thousandeyes_sdk/instant_tests/__init__.py +28 -18
  2. thousandeyes_sdk/instant_tests/api/__init__.py +13 -13
  3. thousandeyes_sdk/instant_tests/api/{agent_to_agent_api.py → agent_to_agent_instant_tests_api.py} +16 -16
  4. thousandeyes_sdk/instant_tests/api/{agent_to_server_api.py → agent_to_server_instant_tests_api.py} +16 -16
  5. thousandeyes_sdk/instant_tests/api/{api_api.py → api_instant_tests_api.py} +16 -16
  6. thousandeyes_sdk/instant_tests/api/{dns_server_api.py → dns_server_instant_tests_api.py} +16 -16
  7. thousandeyes_sdk/instant_tests/api/{dns_trace_api.py → dns_trace_instant_tests_api.py} +16 -16
  8. thousandeyes_sdk/instant_tests/api/{dns_security_api.py → dnssec_instant_tests_api.py} +22 -22
  9. thousandeyes_sdk/instant_tests/api/{ftp_server_api.py → ftp_server_instant_tests_api.py} +32 -32
  10. thousandeyes_sdk/instant_tests/api/{http_page_load_api.py → http_page_load_instant_tests_api.py} +16 -16
  11. thousandeyes_sdk/instant_tests/api/{http_server_api.py → http_server_instant_tests_api.py} +16 -16
  12. thousandeyes_sdk/instant_tests/api/{run_api.py → instant_tests_api.py} +3 -3
  13. thousandeyes_sdk/instant_tests/api/{sip_server_api.py → sip_server_instant_tests_api.py} +10 -10
  14. thousandeyes_sdk/instant_tests/api/{voice_api.py → voice_instant_tests_api.py} +16 -16
  15. thousandeyes_sdk/instant_tests/api/{web_transaction_api.py → web_transaction_instant_tests_api.py} +16 -16
  16. thousandeyes_sdk/instant_tests/models/__init__.py +15 -5
  17. thousandeyes_sdk/instant_tests/models/agent_base.py +1 -1
  18. thousandeyes_sdk/instant_tests/models/agent_interfaces.py +1 -1
  19. thousandeyes_sdk/instant_tests/models/{agent.py → agent_response.py} +5 -5
  20. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py +3 -15
  21. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py +1 -1
  22. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_response.py +195 -0
  23. thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py +1 -1
  24. thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py +6 -1
  25. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py +3 -15
  26. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py +1 -1
  27. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py +200 -0
  28. thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py +1 -1
  29. thousandeyes_sdk/instant_tests/models/api_instant_test.py +8 -14
  30. thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +11 -5
  31. thousandeyes_sdk/instant_tests/models/api_instant_test_response.py +217 -0
  32. thousandeyes_sdk/instant_tests/models/api_predefined_variable.py +1 -1
  33. thousandeyes_sdk/instant_tests/models/api_properties.py +8 -2
  34. thousandeyes_sdk/instant_tests/models/api_request.py +1 -1
  35. thousandeyes_sdk/instant_tests/models/api_request_assertion.py +1 -1
  36. thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py +6 -1
  37. thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py +6 -1
  38. thousandeyes_sdk/instant_tests/models/api_request_auth_type.py +6 -1
  39. thousandeyes_sdk/instant_tests/models/api_request_header.py +1 -1
  40. thousandeyes_sdk/instant_tests/models/api_request_method.py +6 -1
  41. thousandeyes_sdk/instant_tests/models/api_request_variable.py +1 -1
  42. thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py +6 -1
  43. thousandeyes_sdk/instant_tests/models/dns_query_class.py +6 -1
  44. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py +3 -15
  45. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py +1 -1
  46. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_response.py +167 -0
  47. thousandeyes_sdk/instant_tests/models/dns_sec_properties.py +1 -1
  48. thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py +3 -15
  49. thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py +1 -1
  50. thousandeyes_sdk/instant_tests/models/{sip_server_instant_test_request1.py → dns_server_instant_test_response.py} +36 -27
  51. thousandeyes_sdk/instant_tests/models/dns_server_properties.py +1 -1
  52. thousandeyes_sdk/instant_tests/models/dns_servers_request.py +1 -1
  53. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py +3 -15
  54. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py +1 -1
  55. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_response.py +170 -0
  56. thousandeyes_sdk/instant_tests/models/dns_trace_properties.py +1 -1
  57. thousandeyes_sdk/instant_tests/models/error.py +1 -1
  58. thousandeyes_sdk/instant_tests/models/expand_instant_test_options.py +42 -0
  59. thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py +3 -15
  60. thousandeyes_sdk/instant_tests/models/{server_instant_test_request.py → ftp_server_instant_test_request.py} +5 -5
  61. thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py +204 -0
  62. thousandeyes_sdk/instant_tests/models/ftp_server_properties.py +1 -1
  63. thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py +6 -1
  64. thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +3 -3
  65. thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +5 -17
  66. thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +3 -3
  67. thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py +257 -0
  68. thousandeyes_sdk/instant_tests/models/http_server_properties.py +3 -3
  69. thousandeyes_sdk/instant_tests/models/instant_test.py +1 -1
  70. thousandeyes_sdk/instant_tests/models/instant_test_request.py +1 -1
  71. thousandeyes_sdk/instant_tests/models/link.py +1 -1
  72. thousandeyes_sdk/instant_tests/models/o_auth.py +1 -1
  73. thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +5 -17
  74. thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +3 -3
  75. thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py +269 -0
  76. thousandeyes_sdk/instant_tests/models/page_load_properties.py +3 -3
  77. thousandeyes_sdk/instant_tests/models/request_method.py +6 -1
  78. thousandeyes_sdk/instant_tests/models/shared_with_account.py +1 -1
  79. thousandeyes_sdk/instant_tests/models/simple_agent.py +1 -1
  80. thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py +3 -15
  81. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py +1 -1
  82. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py +6 -8
  83. thousandeyes_sdk/instant_tests/models/sip_server_properties.py +1 -1
  84. thousandeyes_sdk/instant_tests/models/sip_test_protocol.py +6 -1
  85. thousandeyes_sdk/instant_tests/models/test_agent.py +1 -1
  86. thousandeyes_sdk/instant_tests/models/test_auth_type.py +6 -1
  87. thousandeyes_sdk/instant_tests/models/test_custom_headers.py +1 -1
  88. thousandeyes_sdk/instant_tests/models/test_direction.py +6 -1
  89. thousandeyes_sdk/instant_tests/models/test_dns_server.py +1 -1
  90. thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py +6 -1
  91. thousandeyes_sdk/instant_tests/models/test_dscp_id.py +6 -1
  92. thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py +6 -1
  93. thousandeyes_sdk/instant_tests/models/test_label.py +1 -1
  94. thousandeyes_sdk/instant_tests/models/test_links.py +1 -1
  95. thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py +6 -1
  96. thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py +6 -1
  97. thousandeyes_sdk/instant_tests/models/test_probe_mode.py +6 -1
  98. thousandeyes_sdk/instant_tests/models/test_protocol.py +6 -1
  99. thousandeyes_sdk/instant_tests/models/test_self_link.py +1 -1
  100. thousandeyes_sdk/instant_tests/models/test_sip_credentials.py +1 -1
  101. thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py +6 -1
  102. thousandeyes_sdk/instant_tests/models/test_type.py +6 -1
  103. thousandeyes_sdk/instant_tests/models/unauthorized_error.py +1 -1
  104. thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py +1 -1
  105. thousandeyes_sdk/instant_tests/models/validation_error.py +1 -1
  106. thousandeyes_sdk/instant_tests/models/validation_error_item.py +1 -1
  107. thousandeyes_sdk/instant_tests/models/voice_instant_test.py +3 -15
  108. thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py +1 -1
  109. thousandeyes_sdk/instant_tests/models/voice_instant_test_response.py +186 -0
  110. thousandeyes_sdk/instant_tests/models/voice_properties.py +1 -1
  111. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +4 -16
  112. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +7 -7
  113. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py +273 -0
  114. thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +3 -3
  115. {thousandeyes_sdk_instant_tests-1.2.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/METADATA +39 -29
  116. thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/RECORD +121 -0
  117. {thousandeyes_sdk_instant_tests-1.2.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/WHEEL +1 -1
  118. thousandeyes_sdk/instant_tests/models/expand.py +0 -37
  119. thousandeyes_sdk_instant_tests-1.2.0.dist-info/RECORD +0 -111
  120. {thousandeyes_sdk_instant_tests-1.2.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/LICENSE +0 -0
  121. {thousandeyes_sdk_instant_tests-1.2.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/NOTICE +0 -0
  122. {thousandeyes_sdk_instant_tests-1.2.0.dist-info → thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: thousandeyes-sdk-instant-tests
3
- Version: 1.2.0
3
+ Version: 2.0.0rc1
4
4
  Summary: ThousandEyes SDK Instant Tests API
5
5
  Author-email: ThousandEyes API Team <api-team@thousandeyes.com>
6
6
  License: Apache License
@@ -183,9 +183,9 @@ Requires-Python: >=3.8
183
183
  Description-Content-Type: text/markdown
184
184
  License-File: LICENSE
185
185
  License-File: NOTICE
186
- Requires-Dist: urllib3 >=1.25.3
186
+ Requires-Dist: urllib3 >=2.0.0
187
187
  Requires-Dist: python-dateutil >=2.8.2
188
- Requires-Dist: pydantic >=2
188
+ Requires-Dist: pydantic >=2.1.0
189
189
  Requires-Dist: typing-extensions >=4.7.1
190
190
  Requires-Dist: thousandeyes-sdk-core
191
191
  Provides-Extra: dev
@@ -200,7 +200,7 @@ Requires-Dist: mypy >=1.4.1 ; extra == 'test'
200
200
  Requires-Dist: types-python-dateutil >=2.8.19 ; extra == 'test'
201
201
 
202
202
  # thousandeyes-sdk-instant-tests
203
- The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions:
203
+ The Instant Tests API operations lets you create and run new instant tests. You will need to be a regular user or have the following permissions:
204
204
  * `API Access`
205
205
  * `View tests`
206
206
 
@@ -209,7 +209,7 @@ The response does not include the immediate test results. Use the Test Results e
209
209
 
210
210
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
211
211
 
212
- - API version: 7.0.14
212
+ - API version: 7.0.22
213
213
  - Generator version: 7.6.0
214
214
  - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
215
215
 
@@ -261,10 +261,10 @@ import thousandeyes_sdk.instant_tests
261
261
  from thousandeyes_sdk.core.exceptions import ApiException
262
262
  from pprint import pprint
263
263
 
264
- # Defining the host is optional and defaults to https://api.thousandeyes.com
264
+ # Defining the host is optional and defaults to https://api.thousandeyes.com/v7
265
265
  # See configuration.py for a list of all supported configuration parameters.
266
266
  configuration = thousandeyes_sdk.core.Configuration(
267
- host = "https://api.thousandeyes.com"
267
+ host = "https://api.thousandeyes.com/v7"
268
268
  )
269
269
 
270
270
  # The client must configure the authentication and authorization parameters
@@ -281,56 +281,59 @@ configuration = thousandeyes_sdk.core.Configuration(
281
281
  # Enter a context with an instance of the API client
282
282
  with thousandeyes_sdk.core.ApiClient(configuration) as api_client:
283
283
  # Create an instance of the API class
284
- api_instance = thousandeyes_sdk.instant_tests.APIApi(api_client)
284
+ api_instance = thousandeyes_sdk.instant_tests.APIInstantTestsApi(api_client)
285
285
  api_instant_test_request = thousandeyes_sdk.instant_tests.ApiInstantTestRequest() # ApiInstantTestRequest |
286
286
  aid = '1234' # str | A unique identifier associated with your account group. You can retrieve your `AccountGroupId` from the `/account-groups` endpoint. Note that you must be assigned to the target account group. Specifying this parameter without being assigned to the target account group will result in an error response. (optional)
287
- expand = [thousandeyes_sdk.instant_tests.Expand()] # List[Expand] | (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`. (optional)
287
+ expand = [thousandeyes_sdk.instant_tests.ExpandInstantTestOptions()] # List[ExpandInstantTestOptions] | (Optional) Indicates if the test sub-resources should be expanded. Defaults to no expansion. To expand the `agents` sub-resource, use the query `?expand=agent`. (optional)
288
288
 
289
289
  try:
290
290
  # Create API instant test
291
291
  api_response = api_instance.create_api_instant_test(api_instant_test_request, aid=aid, expand=expand)
292
- print("The response of APIApi->create_api_instant_test:\n")
292
+ print("The response of APIInstantTestsApi->create_api_instant_test:\n")
293
293
  pprint(api_response)
294
294
  except ApiException as e:
295
- print("Exception when calling APIApi->create_api_instant_test: %s\n" % e)
295
+ print("Exception when calling APIInstantTestsApi->create_api_instant_test: %s\n" % e)
296
296
 
297
297
  ```
298
298
 
299
299
  ## Documentation for API Endpoints
300
300
 
301
- All URIs are relative to *https://api.thousandeyes.com*
301
+ All URIs are relative to *https://api.thousandeyes.com/v7*
302
302
 
303
303
  Class | Method | HTTP request | Description
304
304
  ------------ | ------------- | ------------- | -------------
305
- *APIApi* | [**create_api_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/APIApi.md#create_api_instant_test) | **POST** /v7/tests/api/instant | Create API instant test
306
- *AgentToAgentApi* | [**create_agent_to_agent_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentApi.md#create_agent_to_agent_instant_test) | **POST** /v7/tests/agent-to-agent/instant | Create agent-to-agent instant test
307
- *AgentToServerApi* | [**create_agent_to_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerApi.md#create_agent_to_server_instant_test) | **POST** /v7/tests/agent-to-server/instant | Create agent-to-server instant test
308
- *DNSSecurityApi* | [**create_dns_sec_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSSecurityApi.md#create_dns_sec_instant_test) | **POST** /v7/tests/dnssec/instant | Create DNS security instant test
309
- *DNSServerApi* | [**create_dns_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSServerApi.md#create_dns_server_instant_test) | **POST** /v7/tests/dns-server/instant | Create DNS server instant test
310
- *DNSTraceApi* | [**create_dns_trace_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSTraceApi.md#create_dns_trace_instant_test) | **POST** /v7/tests/dns-trace/instant | Create DNS trace instant test
311
- *FTPServerApi* | [**create_ftp_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FTPServerApi.md#create_ftp_server_instant_test) | **POST** /v7/tests/ftp-server/instant | Create FTP server instant test
312
- *HTTPPageLoadApi* | [**create_page_load_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HTTPPageLoadApi.md#create_page_load_instant_test) | **POST** /v7/tests/page-load/instant | Create HTTP page load instant test
313
- *HTTPServerApi* | [**create_http_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HTTPServerApi.md#create_http_server_instant_test) | **POST** /v7/tests/http-server/instant | Create HTTP server instant test
314
- *RunApi* | [**run_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/RunApi.md#run_instant_test) | **POST** /v7/tests/{testId}/run | Run instant test
315
- *SIPServerApi* | [**create_sip_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SIPServerApi.md#create_sip_server_instant_test) | **POST** /v7/tests/sip-server/instant | Create SIP server instant test
316
- *VoiceApi* | [**create_voice_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceApi.md#create_voice_instant_test) | **POST** /v7/tests/voice/instant | Create voice instant test
317
- *WebTransactionApi* | [**create_web_transaction_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionApi.md#create_web_transaction_instant_test) | **POST** /v7/tests/web-transactions/instant | Create web transactions instant test
305
+ *APIInstantTestsApi* | [**create_api_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/APIInstantTestsApi.md#create_api_instant_test) | **POST** /tests/api/instant | Create API instant test
306
+ *AgentToAgentInstantTestsApi* | [**create_agent_to_agent_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTestsApi.md#create_agent_to_agent_instant_test) | **POST** /tests/agent-to-agent/instant | Create agent-to-agent instant test
307
+ *AgentToServerInstantTestsApi* | [**create_agent_to_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerInstantTestsApi.md#create_agent_to_server_instant_test) | **POST** /tests/agent-to-server/instant | Create agent-to-server instant test
308
+ *DNSSECInstantTestsApi* | [**create_dns_sec_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSSECInstantTestsApi.md#create_dns_sec_instant_test) | **POST** /tests/dnssec/instant | Create DNSSEC instant test
309
+ *DNSServerInstantTestsApi* | [**create_dns_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSServerInstantTestsApi.md#create_dns_server_instant_test) | **POST** /tests/dns-server/instant | Create DNS server instant test
310
+ *DNSTraceInstantTestsApi* | [**create_dns_trace_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DNSTraceInstantTestsApi.md#create_dns_trace_instant_test) | **POST** /tests/dns-trace/instant | Create DNS trace instant test
311
+ *FTPServerInstantTestsApi* | [**create_ftp_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FTPServerInstantTestsApi.md#create_ftp_server_instant_test) | **POST** /tests/ftp-server/instant | Create FTP server instant test
312
+ *HTTPPageLoadInstantTestsApi* | [**create_page_load_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HTTPPageLoadInstantTestsApi.md#create_page_load_instant_test) | **POST** /tests/page-load/instant | Create HTTP page load instant test
313
+ *HTTPServerInstantTestsApi* | [**create_http_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HTTPServerInstantTestsApi.md#create_http_server_instant_test) | **POST** /tests/http-server/instant | Create HTTP server instant test
314
+ *InstantTestsApi* | [**run_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTestsApi.md#run_instant_test) | **POST** /tests/{testId}/run | Run instant test
315
+ *SIPServerInstantTestsApi* | [**create_sip_server_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SIPServerInstantTestsApi.md#create_sip_server_instant_test) | **POST** /tests/sip-server/instant | Create SIP server instant test
316
+ *VoiceInstantTestsApi* | [**create_voice_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceInstantTestsApi.md#create_voice_instant_test) | **POST** /tests/voice/instant | Create voice instant test
317
+ *WebTransactionInstantTestsApi* | [**create_web_transaction_instant_test**](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionInstantTestsApi.md#create_web_transaction_instant_test) | **POST** /tests/web-transactions/instant | Create web transactions instant test
318
318
 
319
319
 
320
320
  ## Documentation For Models
321
321
 
322
- - [Agent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Agent.md)
323
322
  - [AgentBase](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentBase.md)
324
323
  - [AgentInterfaces](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentInterfaces.md)
324
+ - [AgentResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentResponse.md)
325
325
  - [AgentToAgentInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTest.md)
326
326
  - [AgentToAgentInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTestRequest.md)
327
+ - [AgentToAgentInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTestResponse.md)
327
328
  - [AgentToAgentProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentProperties.md)
328
329
  - [AgentToAgentTestProtocol](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentTestProtocol.md)
329
330
  - [AgentToServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerInstantTest.md)
330
331
  - [AgentToServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerInstantTestRequest.md)
332
+ - [AgentToServerInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerInstantTestResponse.md)
331
333
  - [AgentToServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToServerProperties.md)
332
334
  - [ApiInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiInstantTest.md)
333
335
  - [ApiInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiInstantTestRequest.md)
336
+ - [ApiInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiInstantTestResponse.md)
334
337
  - [ApiPredefinedVariable](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiPredefinedVariable.md)
335
338
  - [ApiProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiProperties.md)
336
339
  - [ApiRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ApiRequest.md)
@@ -345,22 +348,28 @@ Class | Method | HTTP request | Description
345
348
  - [DnsQueryClass](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsQueryClass.md)
346
349
  - [DnsSecInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsSecInstantTest.md)
347
350
  - [DnsSecInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsSecInstantTestRequest.md)
351
+ - [DnsSecInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsSecInstantTestResponse.md)
348
352
  - [DnsSecProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsSecProperties.md)
349
353
  - [DnsServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsServerInstantTest.md)
350
354
  - [DnsServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsServerInstantTestRequest.md)
355
+ - [DnsServerInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsServerInstantTestResponse.md)
351
356
  - [DnsServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsServerProperties.md)
352
357
  - [DnsServersRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsServersRequest.md)
353
358
  - [DnsTraceInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsTraceInstantTest.md)
354
359
  - [DnsTraceInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsTraceInstantTestRequest.md)
360
+ - [DnsTraceInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsTraceInstantTestResponse.md)
355
361
  - [DnsTraceProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/DnsTraceProperties.md)
356
362
  - [Error](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Error.md)
357
- - [Expand](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Expand.md)
363
+ - [ExpandInstantTestOptions](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ExpandInstantTestOptions.md)
358
364
  - [FtpServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerInstantTest.md)
365
+ - [FtpServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerInstantTestRequest.md)
366
+ - [FtpServerInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerInstantTestResponse.md)
359
367
  - [FtpServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerProperties.md)
360
368
  - [FtpServerRequestType](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerRequestType.md)
361
369
  - [HttpServerBaseProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerBaseProperties.md)
362
370
  - [HttpServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerInstantTest.md)
363
371
  - [HttpServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerInstantTestRequest.md)
372
+ - [HttpServerInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerInstantTestResponse.md)
364
373
  - [HttpServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerProperties.md)
365
374
  - [InstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTest.md)
366
375
  - [InstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTestRequest.md)
@@ -368,14 +377,13 @@ Class | Method | HTTP request | Description
368
377
  - [OAuth](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/OAuth.md)
369
378
  - [PageLoadInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTest.md)
370
379
  - [PageLoadInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTestRequest.md)
380
+ - [PageLoadInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTestResponse.md)
371
381
  - [PageLoadProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadProperties.md)
372
382
  - [RequestMethod](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/RequestMethod.md)
373
- - [ServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ServerInstantTestRequest.md)
374
383
  - [SharedWithAccount](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SharedWithAccount.md)
375
384
  - [SimpleAgent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SimpleAgent.md)
376
385
  - [SipServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipServerInstantTest.md)
377
386
  - [SipServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipServerInstantTestRequest.md)
378
- - [SipServerInstantTestRequest1](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipServerInstantTestRequest1.md)
379
387
  - [SipServerInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipServerInstantTestResponse.md)
380
388
  - [SipServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipServerProperties.md)
381
389
  - [SipTestProtocol](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SipTestProtocol.md)
@@ -403,9 +411,11 @@ Class | Method | HTTP request | Description
403
411
  - [ValidationErrorItem](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ValidationErrorItem.md)
404
412
  - [VoiceInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceInstantTest.md)
405
413
  - [VoiceInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceInstantTestRequest.md)
414
+ - [VoiceInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceInstantTestResponse.md)
406
415
  - [VoiceProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/VoiceProperties.md)
407
416
  - [WebTransactionInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionInstantTest.md)
408
417
  - [WebTransactionInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionInstantTestRequest.md)
418
+ - [WebTransactionInstantTestResponse](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionInstantTestResponse.md)
409
419
  - [WebTransactionProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/WebTransactionProperties.md)
410
420
 
411
421
 
@@ -0,0 +1,121 @@
1
+ thousandeyes_sdk/instant_tests/__init__.py,sha256=gUqh4HzKUNMYk5l-7QcSAi-vyYP6YSTq-ypcctvu2sQ,11155
2
+ thousandeyes_sdk/instant_tests/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ thousandeyes_sdk/instant_tests/api/__init__.py,sha256=whJyM_JY3cZyXSVXZZCYd1Ka4Ux9w166hW5NFC9qjW4,1345
4
+ thousandeyes_sdk/instant_tests/api/agent_to_agent_instant_tests_api.py,sha256=2UXbfk_AK0zpWjKRtPAirgw_wgzD56Pj-H4x2yXbooU,18009
5
+ thousandeyes_sdk/instant_tests/api/agent_to_server_instant_tests_api.py,sha256=E8Yq78JA_ZIf_XQSlyKxesD8WcOo1Kps02u2tG7xaDg,18057
6
+ thousandeyes_sdk/instant_tests/api/api_instant_tests_api.py,sha256=d4YTJjov4lQU1PcFANlnSANKcMENKvDN_4Oq0azN3hM,17509
7
+ thousandeyes_sdk/instant_tests/api/dns_server_instant_tests_api.py,sha256=D-I16MzuCNqEM9zWEKah4fly4mYnM7EU1a0jA6IXbDo,17831
8
+ thousandeyes_sdk/instant_tests/api/dns_trace_instant_tests_api.py,sha256=tiO2BX_lgmv6G7hfCH0DjpJaSimFxh0zUTeqsLxtc_c,17783
9
+ thousandeyes_sdk/instant_tests/api/dnssec_instant_tests_api.py,sha256=kAWWMQSfotWn87YQKNVAZ3GrRXz9d2iGUuzKI2u_pKM,17680
10
+ thousandeyes_sdk/instant_tests/api/ftp_server_instant_tests_api.py,sha256=jquVYpJPvqN87bzxZOSxEZdQ2ttsU4vSPqq51OH8-4A,17831
11
+ thousandeyes_sdk/instant_tests/api/http_page_load_instant_tests_api.py,sha256=tTsHC0TIk01jyuo1zIwiYqAIYLkSAdqOCkKa3lhw7Bw,17817
12
+ thousandeyes_sdk/instant_tests/api/http_server_instant_tests_api.py,sha256=c9CI3wnIoz9fxJaGWH3IxnxGJKxoPUEa2CzU9qkpD2M,17879
13
+ thousandeyes_sdk/instant_tests/api/instant_tests_api.py,sha256=TAdKP2KlLLY8W35WXGspnmeEX-v4oL6Ow11B4BMN0ok,14661
14
+ thousandeyes_sdk/instant_tests/api/sip_server_instant_tests_api.py,sha256=DQUsqflBiafdeMgYpI7nTKcZd2b0UqELa_DNAngVgfM,17831
15
+ thousandeyes_sdk/instant_tests/api/voice_instant_tests_api.py,sha256=Bld2W7okmposmh_iRcgE5Y_xmRgvvyN9dlI9lE3v5sU,17593
16
+ thousandeyes_sdk/instant_tests/api/web_transaction_instant_tests_api.py,sha256=9kUj0MfCnkCXXh4LROdAgkR_cNPzP72e2obw51OjezA,18078
17
+ thousandeyes_sdk/instant_tests/models/__init__.py,sha256=W41pfbvYcETBiI2slHoCHTX7eqTJUq0D-4CtegTDWxw,9826
18
+ thousandeyes_sdk/instant_tests/models/agent_base.py,sha256=UBJKa3HjeZv2npuqw5TUmSLGPQym6xlAsJ4qzxBRlFQ,3642
19
+ thousandeyes_sdk/instant_tests/models/agent_interfaces.py,sha256=wWWNL1hanHRC7r4fp0J4a1V9f_Z8PQ-71DrXdsqloi4,3210
20
+ thousandeyes_sdk/instant_tests/models/agent_response.py,sha256=ebgNnD0MZGtJdgeDRkepOWUaYMx4dCyOQuuD0bjU9ac,5612
21
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py,sha256=0HQ55m2R3mlL-mhcn_be4h-Ok1LlXWFk0K3dZu4xMqo,10527
22
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py,sha256=K6IGG0Nklp1Jo18UIH_J_QAOqIHhyI0UuStABasB8BY,10254
23
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_response.py,sha256=qTaFVsUlsLWqSa-SogSHHy6mBwSf0kP-DphIhtO0GVk,11179
24
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py,sha256=ND3Bsc-fuqNm5i6lhDX3EDMzcIByD6gAj81dul3yX48,6299
25
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py,sha256=WKOAIUrIFMjqyQumFnkaQZr_PQKHi9p3USekid3L5sk,1239
26
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py,sha256=XXcB8PVDH43j16rWKs6YeCCUuWXkh1c7g6h4UcepSQo,11434
27
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sha256=16LKthFqVDqqA6_j8KlaCCBgVkZaaYo40G3xrtKCbug,11161
28
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py,sha256=TVO_QOJ5731fcNMabvfKIp2IdrzXpTdyx9kyt6IbZe8,12086
29
+ thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py,sha256=TZ-3HCMBHwREJ2JnDmH4IOXjsWV1mseib9JKzGW9Avs,7206
30
+ thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=hqfbNmH_EchjcfcrCVBZSCrqWhL5w_RvFR6-LTBxNwI,12706
31
+ thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=IRgCfEB2qKsztXm7BsHx2-6sJ9pd8TAynnrXAYm_WfQ,12433
32
+ thousandeyes_sdk/instant_tests/models/api_instant_test_response.py,sha256=jeKnFuOb60PsNFQEZlixtGOzZKAOcTLxgPTHIbQlnTk,13358
33
+ thousandeyes_sdk/instant_tests/models/api_predefined_variable.py,sha256=PRgabUbqzCgK9UkEpIO7FX6jxqvaT3u7pY2AJTKz88s,3156
34
+ thousandeyes_sdk/instant_tests/models/api_properties.py,sha256=Cn5ZzBSXs2ISoLzXbgEx02oBdVUAlyunoBPAhD6mB1c,8247
35
+ thousandeyes_sdk/instant_tests/models/api_request.py,sha256=OeX4zNzOE4ES41mU5-gkuF-fPjEwPM1emDazAacQVCE,6848
36
+ thousandeyes_sdk/instant_tests/models/api_request_assertion.py,sha256=UFapYw6QPNAdg8Kk-9QYjN_Nfb-Ka-_AF1btRounfSw,3519
37
+ thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py,sha256=t4vYlaymcPhuO4-3f6OWFbd2cc3GWR-jsQAry4Zag8U,1450
38
+ thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py,sha256=xZva87kRk-lzVOrHiJ8PomEFVWx0iFD-Hn58ghP6nPQ,1431
39
+ thousandeyes_sdk/instant_tests/models/api_request_auth_type.py,sha256=BDoOV44sF8IH38LdvIYqO840Bd9u-TCeuWlmAGRkQE4,1296
40
+ thousandeyes_sdk/instant_tests/models/api_request_header.py,sha256=3szwlKvTX9Yut2EGgzgjggUm_emBRtw4sdKLAeRHV9o,3139
41
+ thousandeyes_sdk/instant_tests/models/api_request_method.py,sha256=9ekXake8M0VCaCSLHjvvuxX9P37dty1gX82b4nPoizQ,1279
42
+ thousandeyes_sdk/instant_tests/models/api_request_variable.py,sha256=ylDSYhO81xxQzd0Bv5zDAx68K65Xq_0wbnRBhZoNfS8,3159
43
+ thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py,sha256=8Efms3tsSRHWntCkiA3cGYZBo7d_irs7CbfnMI0jVhc,1303
44
+ thousandeyes_sdk/instant_tests/models/dns_query_class.py,sha256=DweCQwNWiGSBbu7LtGUWrMJyYo2eO4ngH7V3Z4SDdB8,1275
45
+ thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py,sha256=6WrKPiqRyPK5WYK5K8hrIq-s_bX2C5exJeziYPWQ904,7695
46
+ thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py,sha256=d3L95bj6uCXwSiycHnCwsILgmEsLKk5ROtwvvmHrk7Q,7422
47
+ thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_response.py,sha256=zD1A1FG37t8K2NqV3_R5I1i5aTCnrtJG6v2nsBi9Rvc,8347
48
+ thousandeyes_sdk/instant_tests/models/dns_sec_properties.py,sha256=zI0bcYJnjsIax2TuZFoNBN8Nnqnidk5n-LvVq8RP5dI,3455
49
+ thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py,sha256=tJjCXnJ2Yw3HU0oZ83fpCre_lwMRlDrq59TMACJBlmo,11334
50
+ thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py,sha256=FASBmx-gFW3U9-R7DyfWdypI1PN9HpTqp0vSsig5kbs,10610
51
+ thousandeyes_sdk/instant_tests/models/dns_server_instant_test_response.py,sha256=K_sw_wrh1tOpO2psVb1b8jsMF2pcEXy_4hBZZJZXwy0,11986
52
+ thousandeyes_sdk/instant_tests/models/dns_server_properties.py,sha256=f_K8iEsmOTNWhtc48QoYpDImKrkt_A3NUHmpFhu0o2A,7106
53
+ thousandeyes_sdk/instant_tests/models/dns_servers_request.py,sha256=TNiPy2jBaM8u1e_mS4xVyOGMaNw72P5hQKLuiV74YbI,3028
54
+ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py,sha256=dytd1wLYeXmAlVKMnbs8aTooScapgiVDW3NPy6UkYPo,8014
55
+ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py,sha256=SDoFWp8yLXQ2oAp8fmhFBLJZburj9gmDXqQIk_aHHC8,7741
56
+ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_response.py,sha256=bQPE92qQ_sRZCgBCvMPDu2bBgK7657EUhSsDbswMw7Y,8666
57
+ thousandeyes_sdk/instant_tests/models/dns_trace_properties.py,sha256=IebnQZ0D0KJM-dpW5BcVYI1O7jnJ9-Uy95E5ZCFx2Bg,3774
58
+ thousandeyes_sdk/instant_tests/models/error.py,sha256=wo2LHUWAaxInGfmorni1udsCb5ufZcxmlWgp59n_WEs,3810
59
+ thousandeyes_sdk/instant_tests/models/expand_instant_test_options.py,sha256=_6sv9p70vT3X3FtG6Sao7fzNDgV_HKxi3AfDgA36-rA,1307
60
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py,sha256=RoWM0WdPNSng7x-ZB7heB7rN84g3GLrBRofVmNIJKAs,11686
61
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_request.py,sha256=_0TQUEO481y3uYclDIbbEhF0W72WWyzcLJtkkYbHVeg,11413
62
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py,sha256=m49JNRdotao_tubgJZBGJkJB4M2EbT9OyfnPQkjx8jg,12338
63
+ thousandeyes_sdk/instant_tests/models/ftp_server_properties.py,sha256=prFngJYJv6AGrEvT3g4OoyVyBk85pqGNP7ji3zntnVA,7458
64
+ thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py,sha256=8qQN4ZH0a0nwJVobw5E3IB7N0XUkkYjjlyV37PhcWgM,1279
65
+ thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=oNYXE0D2l2A-hqCs0RStRu8StiZaNUhHSFxRJ5kalh8,12911
66
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=w__HebFHSuwme9PgstpbZh6siyczUywpOw9Xpl4N-Po,17967
67
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py,sha256=BRdJN-WGWW7fQaOah26xdVVE-cPUZLXrm3txA8Nr_zU,17694
68
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py,sha256=zx53n9q-vX01gMYLbSFR_m_qDV0SiS9raXmcEWLP7_A,18619
69
+ thousandeyes_sdk/instant_tests/models/http_server_properties.py,sha256=R4eIQNHxWto1BFoT1WtrGQBnw9FCKkKZKVXAmGoywI4,13739
70
+ thousandeyes_sdk/instant_tests/models/instant_test.py,sha256=qr047t1kswwkdJk0TpvlA9ydVIjjccNnmoxcqkM_eAE,7200
71
+ thousandeyes_sdk/instant_tests/models/instant_test_request.py,sha256=bJNH9HtbIF9AxXsYWYUz8wiub2WOkwv1CgisgXOO_-8,3989
72
+ thousandeyes_sdk/instant_tests/models/link.py,sha256=G9SGMU72Z6M7YVl0fsUuQuwRb2_Z4UF6DUGDR3VZ7vA,4458
73
+ thousandeyes_sdk/instant_tests/models/o_auth.py,sha256=ocdu99-3TUszhnnIL1nnDPFdDhN3kUujpJQ-ROHH2CA,4478
74
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test.py,sha256=U9UZR-tuncS7sBHESOe7cbjYjgIwMfJ0ANlQObcBSq8,19957
75
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py,sha256=_gNJI0Jf1pO2C07slbLzbGUEiRbsQVr7YJBuN9rWd6o,19684
76
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py,sha256=zHgod4J45xRUP0xIkt9DWdBz2kxkOrg949cWvmZxGEo,20609
77
+ thousandeyes_sdk/instant_tests/models/page_load_properties.py,sha256=DE0frlge2HLKrkaV59l7O9XLepNXFDpPiS6dwAmS8Dw,15729
78
+ thousandeyes_sdk/instant_tests/models/request_method.py,sha256=G3jHJw2cInYoa34aT0NlxGe4zrPxjOQJIcGchoW_pUE,1317
79
+ thousandeyes_sdk/instant_tests/models/shared_with_account.py,sha256=TwPKiGqjqhYnc-hm3de5_6ziwcNxbr0HDiYM7hA7k7s,3096
80
+ thousandeyes_sdk/instant_tests/models/simple_agent.py,sha256=UK0_4YUJLYYeIZ4whs4Eu_uI3i8G2NYj-G1r5Eq54ME,5373
81
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py,sha256=OwX_28bo1rdUtHXaiWxq1CZo0N6dMgkH_ea1JNvjlLw,10278
82
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py,sha256=6c0pk-W62k7ti6HCjrKAlAXfD-YewmF4olsyqF2DVig,10579
83
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py,sha256=Q_KLHyZdVwgpgxWTSagXB5YFUhnqTrEksjYHlEQtEnY,12091
84
+ thousandeyes_sdk/instant_tests/models/sip_server_properties.py,sha256=NNaka4YVxmrjuCWz8kG0-F-k9CJn5gNGwaBAWtNIr7A,6050
85
+ thousandeyes_sdk/instant_tests/models/sip_test_protocol.py,sha256=2BCTwaq_uF67NSOBu03f_h9tJU61ydTCEEM_z7BNFg0,1251
86
+ thousandeyes_sdk/instant_tests/models/test_agent.py,sha256=XkXReZ4ku4tqsC4g9waKaBoeezb_q655d-i2laFouvw,3320
87
+ thousandeyes_sdk/instant_tests/models/test_auth_type.py,sha256=Nc2KJ5WWn4tekBTs7W7_ZmHUWG54_wHonn75VwuDlZA,1286
88
+ thousandeyes_sdk/instant_tests/models/test_custom_headers.py,sha256=o13M_aOUPAkMAOHZOvm2sebzd2WJIUQ6vm4LBRpX8ik,3364
89
+ thousandeyes_sdk/instant_tests/models/test_direction.py,sha256=gm2U7M_KVvghpEor-OCHQFqhL8yCc46USq2AoVYOyuc,1328
90
+ thousandeyes_sdk/instant_tests/models/test_dns_server.py,sha256=cSVTiLG2dDBiDpv90Tt0yFRyuNR4gXnBtBIxmYuhyFg,3213
91
+ thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py,sha256=HQCREAVwr68p47S40q6oFGtE91poIh0oAiwhm24cyGk,1256
92
+ thousandeyes_sdk/instant_tests/models/test_dscp_id.py,sha256=dbkfUMSucLY_MOKblLqv6SdQWrLRz0s8bYa6SYQ8PI8,1701
93
+ thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py,sha256=yKi7OywGkc_RCewj8KmMoW4jEXwhbuietXQGYP1-pmY,1402
94
+ thousandeyes_sdk/instant_tests/models/test_label.py,sha256=VRO38KL54Fg0tlUiGzxF_04ASUTFW7yzp1MLOtJascQ,3358
95
+ thousandeyes_sdk/instant_tests/models/test_links.py,sha256=vGCXuT-4jlO-xYKyt2EKbucWgRQQrFSlONpkejSZcpc,3927
96
+ thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py,sha256=z1t8-Wgn8PJ8tMX0cJcp_LOouZ7cn-XKkePI0liKUTw,1903
97
+ thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py,sha256=fbg5TlSvxXpgxUf6by5nBD0fB4GpuICkttYCyEwNKdc,1295
98
+ thousandeyes_sdk/instant_tests/models/test_probe_mode.py,sha256=P6LJ0YuXrG8mBtK9QuQpxkW2ho4mDJU7vuP9pmT9YGY,1289
99
+ thousandeyes_sdk/instant_tests/models/test_protocol.py,sha256=nP89p7-g7GgoYY1BuvqY5kz5UYitYPExe8zc98HTJPc,1282
100
+ thousandeyes_sdk/instant_tests/models/test_self_link.py,sha256=HhKCM2uFQto4ZjR0R2N8Dh5BeIV0iquYv3d8f91HwRo,4444
101
+ thousandeyes_sdk/instant_tests/models/test_sip_credentials.py,sha256=8slcPI2QAOO_EY4g1gLcpnj9kbtn95Lq6ZTK5yLMemQ,4043
102
+ thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py,sha256=LUEaJPJ99Kxb1Z5PndyEXV9HOkIrWNAsVcbm5KMi2po,1402
103
+ thousandeyes_sdk/instant_tests/models/test_type.py,sha256=NHP7hh15ycu8loTC8aQi5qjgraRpQZyyXtNUszKd9SM,1666
104
+ thousandeyes_sdk/instant_tests/models/unauthorized_error.py,sha256=83H4TRqyL78xVGwumyLhu83MC4um3Ly83RKn3BryMfE,3051
105
+ thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py,sha256=F85qgzweih0Z3aGqDEcdLEVFB_4xgrS8qEewSaJBZGc,5792
106
+ thousandeyes_sdk/instant_tests/models/validation_error.py,sha256=DBNWEl_pK8FbhdBUQV0o9DnHrPIfhoVENaWb0Bf0Suw,4755
107
+ thousandeyes_sdk/instant_tests/models/validation_error_item.py,sha256=s7sipXuaInVqEYbPUkFQz3-3G-EgcnVUzidmKzk8tHo,3423
108
+ thousandeyes_sdk/instant_tests/models/voice_instant_test.py,sha256=3eIxP7jSHB_JFrIOPYF5NsucxqR1WO5HEvS-YOgO9-0,9395
109
+ thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py,sha256=rKzOR3n5vXW2YhpYuMgCdsqP8UA1z2N7XBwrUtu8r4Y,9122
110
+ thousandeyes_sdk/instant_tests/models/voice_instant_test_response.py,sha256=WY-Yne3PWQk9Hm0DxXgzQ4QPGmB3AcV1pbr5TBlNX10,10047
111
+ thousandeyes_sdk/instant_tests/models/voice_properties.py,sha256=UPJAqqRWZThQG94daWysew0F-ggjuk6jQwZalNC1c14,5155
112
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=ez7TlrPQL1sVF1jOg3aXUv09FxBz-cUsy-H9gjIdxD4,20377
113
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=3qNrZnKqSozZX2kMB6nqz2yf2rc95pexou6nQnWQMIM,20104
114
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py,sha256=aqwr-0cX4lwy2LTjgc62HsxgWv_EqZhEYIa5H9OWal4,21029
115
+ thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=WWz5UUqcZVoXFcaS4yWZEm9jYmKIllrx_Fl7uwc2tDk,15918
116
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
117
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/METADATA,sha256=TK1im-EOWDQfoERtfgjuB0RdVaxhANbtr9ugpawxUcU,35446
118
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
119
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
120
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
121
+ thousandeyes_sdk_instant_tests-2.0.0rc1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (72.1.0)
2
+ Generator: setuptools (75.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,37 +0,0 @@
1
- # coding: utf-8
2
-
3
- """
4
- Instant Tests API
5
-
6
- The Instant Tests API endpoint lets you create and run new instant tests. You will need to be a regular user or have the following permissions: * `API Access` * `View tests` The response does not include the immediate test results. Use the Test Results endpoints to get test results after creating and executing an instant test. You can find the URLs for these endpoints in the _links section of the test definition that is returned when you create the instant test.
7
-
8
- Generated by OpenAPI Generator (https://openapi-generator.tech)
9
-
10
- Do not edit the class manually.
11
- """ # noqa: E501
12
-
13
-
14
- from __future__ import annotations
15
- import json
16
- from enum import Enum
17
- from typing_extensions import Self
18
-
19
-
20
- class Expand(str, Enum):
21
- """
22
- Expand
23
- """
24
-
25
- """
26
- allowed enum values
27
- """
28
- AGENT = 'agent'
29
- LABEL = 'label'
30
- SHARED_MINUS_WITH_MINUS_ACCOUNT = 'shared-with-account'
31
-
32
- @classmethod
33
- def from_json(cls, json_str: str) -> Self:
34
- """Create an instance of Expand from a JSON string"""
35
- return cls(json.loads(json_str))
36
-
37
-
@@ -1,111 +0,0 @@
1
- thousandeyes_sdk/instant_tests/__init__.py,sha256=9e8RoNX2_e0ewgAMjBNer_ZJkB48zb6AMhnoAiws1JU,9654
2
- thousandeyes_sdk/instant_tests/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- thousandeyes_sdk/instant_tests/api/__init__.py,sha256=BHWPGYqgX2bmP_t6XijIw9TEdQt5w0XkfvWJ45D2XAE,1025
4
- thousandeyes_sdk/instant_tests/api/agent_to_agent_api.py,sha256=Yvpbyvf-LJD4NEooHsafxsPtGY6KyYPvhlAy9L_-cBc,17794
5
- thousandeyes_sdk/instant_tests/api/agent_to_server_api.py,sha256=RLBkVtqdseIFXF0SvMtsTY0E9sdgFmDz_Oiugh9RAa4,17842
6
- thousandeyes_sdk/instant_tests/api/api_api.py,sha256=lHgdqmDQ-JXtfF1v5b6nqWZUJHLch6NTa9ZF-5kFdJk,17294
7
- thousandeyes_sdk/instant_tests/api/dns_security_api.py,sha256=dmtC3CszfYtfQWEToFX24JhU96dnLKHjrIeaMgcLZLM,17506
8
- thousandeyes_sdk/instant_tests/api/dns_server_api.py,sha256=gsCUFj1FNSJeZ1JtddeuMV8YQDdiDoII14o6WrD26wM,17616
9
- thousandeyes_sdk/instant_tests/api/dns_trace_api.py,sha256=IKrL-ovJCJCao8Wf4xeLE4H44Nt4LTmITQyuKL397vs,17568
10
- thousandeyes_sdk/instant_tests/api/ftp_server_api.py,sha256=Qp5QDgqDrFgFUXWACI8KocwuDrpWsIEV__VH_dF5E-U,17519
11
- thousandeyes_sdk/instant_tests/api/http_page_load_api.py,sha256=--ZaM_FIkD93tVQLSdN6RT6omhYW-nyNE2kFb6t_dic,17602
12
- thousandeyes_sdk/instant_tests/api/http_server_api.py,sha256=-jvih5LhP_WEoOcrt_a-HQUfsGAjPnKY09zJsuz2GiA,17664
13
- thousandeyes_sdk/instant_tests/api/run_api.py,sha256=EMpu2DbNSl42NF99JNnGBqX9k50YrnWmRmYTH1pzu8M,14653
14
- thousandeyes_sdk/instant_tests/api/sip_server_api.py,sha256=1RrVyK_saV2tPjo4XzHhMN371QlMiigJDpYtl9wbUWk,17673
15
- thousandeyes_sdk/instant_tests/api/voice_api.py,sha256=GNVspIO0CXcZJ6WUHxLA1oNMvTV866G9a09eO1E2gUE,17378
16
- thousandeyes_sdk/instant_tests/api/web_transaction_api.py,sha256=JN5oIrYb_JNEVydd-o-mOjLy0aaNykWjR4VhwMffDeM,17863
17
- thousandeyes_sdk/instant_tests/models/__init__.py,sha256=jjXYBiKjqRuMoTdiAFqUpUdaaDy2-3NhUPT9H5tU8_o,8645
18
- thousandeyes_sdk/instant_tests/models/agent.py,sha256=bNFoSgLqRRRzMZGj1ykok0CCuSAhmzGkCnycCyYEcg8,5578
19
- thousandeyes_sdk/instant_tests/models/agent_base.py,sha256=TwZy94gt1zbHw5ICBmnzgyyRPk3BvSEQ06Oo0Rl1weo,3640
20
- thousandeyes_sdk/instant_tests/models/agent_interfaces.py,sha256=JSkPq5cc_hO-zdBCRG-QFYV0tleu1RsMM3l6ueDIM9s,3208
21
- thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py,sha256=8tFM9dXq5QoIy8HXj4JlHmvd9cz6hEIpo8hKVy_IkW0,11184
22
- thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py,sha256=tGZUG7QYtEU7Np9onyPVOd8NwNAHP1tzf7PV_PQ_qx0,10252
23
- thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py,sha256=1of7O801odYE4QM8lUNi3NFKc0aUbZy7D8RoZkHmFcM,6297
24
- thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py,sha256=K88F-7QWVayZn0l5BgS9dkoXuCZ7bCAkqNeAQj0-qfI,1102
25
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py,sha256=kZ5Emlz3XZNaBkjHbQJCf1gTlEAkphVlk5Q2JJcVVLo,12091
26
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sha256=z5U6FvgWuHYqHsoIwu6dZzC4NFMRt77702d41E0US3g,11159
27
- thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py,sha256=gO6QIAgMyZlMpmH8LwVzE80QY3pnO4jn7R8jy2FF5uQ,7204
28
- thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=0AgHo7wgoo2MWJW5Dk2tMqT1QQJS2KRP8GKm4DNyHgs,12344
29
- thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=DfL5rziT947-O8XgJ7LEd7qk89hjqtZbCkeQBtRT8wc,11412
30
- thousandeyes_sdk/instant_tests/models/api_predefined_variable.py,sha256=DjKv7aBuanLMaGh2rDhy6dpUvY9U8gvlkrbeEiWyc0I,3154
31
- thousandeyes_sdk/instant_tests/models/api_properties.py,sha256=q3ROJ1H8ON7_-XBlTMw2AcVMFYOaETzb6rcm9X2iOH8,7226
32
- thousandeyes_sdk/instant_tests/models/api_request.py,sha256=cQ_4KcHLDGn3-cukBCS-7_oEANPlDQhneZnAKb81ssc,6846
33
- thousandeyes_sdk/instant_tests/models/api_request_assertion.py,sha256=FGKnmdkzet6UGLhtoq7MD9ggjhD5Ls5kxRFZ0oy78wU,3517
34
- thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py,sha256=BbxON6CCsGBj5gKoxN9vioC1Q3cWzMywsHOCtFPKBwI,1313
35
- thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py,sha256=8-BBCGoVpDd0R5H1vgaO-9I7wS8BYP5Of6DYz85dTiU,1294
36
- thousandeyes_sdk/instant_tests/models/api_request_auth_type.py,sha256=BCigqa0kC5BaUmQzlbP9HWoeL5nOpT-QRA9q43MEaIo,1159
37
- thousandeyes_sdk/instant_tests/models/api_request_header.py,sha256=lcYv2sQEZSQmY_fWRVvGoE_MSzFiHxIjXvmk_Qz7L9Q,3137
38
- thousandeyes_sdk/instant_tests/models/api_request_method.py,sha256=jGwxrKNoGpw6PSvfxUd8wvri0MKxb7BwDOaJFzboxbc,1142
39
- thousandeyes_sdk/instant_tests/models/api_request_variable.py,sha256=WM_MDvEmvIzxRS_NUim5rTzeeWpTVbpnKTywMQf6FQw,3157
40
- thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py,sha256=iJjiFl3_x4xLvcy83DTmIQ5qk-EQr6Wc1UCtAg11WE8,1166
41
- thousandeyes_sdk/instant_tests/models/dns_query_class.py,sha256=OSVHWQtlL7_QF7H6j6vMfz84aZmTpvuYZqHmmPFLL_Q,1138
42
- thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py,sha256=M2P6B-FTMuqipgqaLiVxOxHOQ45BhX4I3C2b2liSoDg,8352
43
- thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py,sha256=dNdGv3yyzFl3PIIMt4Wo2sIFsrZ5nvjQ--F6-Lut11Q,7420
44
- thousandeyes_sdk/instant_tests/models/dns_sec_properties.py,sha256=Cb6wTYP9-DeB8LUcpDUTwFPD5AMCIw4yiPkBRiGTepI,3453
45
- thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py,sha256=A1hJc5YKD757z_FMVPttOHx6sa83Ol4mob2Bc_AVWRA,11991
46
- thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py,sha256=_dRwCHkaKqUShf5BhR6ILmkmwgEnOI_zuUmscEp3MaU,10608
47
- thousandeyes_sdk/instant_tests/models/dns_server_properties.py,sha256=FzD8gYPcM2FKsV64lgJe0tp83hrnE4WWA9AHs0MNRvo,7104
48
- thousandeyes_sdk/instant_tests/models/dns_servers_request.py,sha256=odDwakI0hjENfh6WCj4QRK49eQgRt-XS56P61p5ol2U,3026
49
- thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py,sha256=9Kl3annn_FBakrLgH3WjhlB7Ik5-wQIN9EoWVZ075_0,8671
50
- thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py,sha256=LH7wW7jYGl76cSnKp9S004i_Kt5D78y8WY7AmxnyUe4,7739
51
- thousandeyes_sdk/instant_tests/models/dns_trace_properties.py,sha256=2jn4eTh8DiQ-Qjk3l5XqjoEWt0Qe0D22NuR87HZmi6w,3772
52
- thousandeyes_sdk/instant_tests/models/error.py,sha256=dSCJ64XReD2_rrm5-Sw08N5kKyZSVAEMBe9svC_ongs,3808
53
- thousandeyes_sdk/instant_tests/models/expand.py,sha256=kkz1rugzox5eLzLSauXE1KP4PE1oh1I1lYzhZPtDDac,1116
54
- thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py,sha256=MRMXcq-BarpcYgU5cXZq69V8DIP10fH7-UjdFEG-LxY,12343
55
- thousandeyes_sdk/instant_tests/models/ftp_server_properties.py,sha256=hvtKNXChl-hpY7fSFOGjwBIKZiOQyrCQMsSRQme6ndQ,7456
56
- thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py,sha256=st5p9FiH7k8u5DUQVrgV59KAnT7C01pdQ_mS5cJjHYg,1142
57
- thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=lEfu6jXZJPXTiys6SLn3qyViZy3bZC_oG7tNQR63x5A,12847
58
- thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=i2HTK0T49FXkNlkiboTB4eOqOi-Sgl71Q85RZZfNC4k,18562
59
- thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py,sha256=ttY7esvCeo23xKPJYUkNxfwKHkXfQAXfZU_yEO29vwo,17630
60
- thousandeyes_sdk/instant_tests/models/http_server_properties.py,sha256=jU_RdeUJS4ggZQEFL8Aq1TZqpjWAYKuSAliaDESJsD0,13675
61
- thousandeyes_sdk/instant_tests/models/instant_test.py,sha256=yhYy09PgMLfAvzSF7sbMvwuWXqjAdy42ostnHmqQ7e8,7198
62
- thousandeyes_sdk/instant_tests/models/instant_test_request.py,sha256=aGqETXMWm3kkd43nOQ4XrTca9AccNR8GKnldTara_qA,3987
63
- thousandeyes_sdk/instant_tests/models/link.py,sha256=2hmRCbHZkwLOPBu3-y5Bj7OLYpeB4361Hwh8fc-ST5c,4456
64
- thousandeyes_sdk/instant_tests/models/o_auth.py,sha256=46LOSE-ato4WyCOh548XU8jSRJSli8OIRZKzcWe9Fyw,4476
65
- thousandeyes_sdk/instant_tests/models/page_load_instant_test.py,sha256=WAE3aGTFBY-t74ejLeqUy37pXvF4EsgRcpc5iuFvcx8,20552
66
- thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py,sha256=IUcmjxDKynTBFGzATrOZfbcXj9ol6eXOYxFkHzRa66c,19620
67
- thousandeyes_sdk/instant_tests/models/page_load_properties.py,sha256=LsiAXrf-pvnZKx91PCiIjssN2_8FIuC4G6vS9QxIkdA,15665
68
- thousandeyes_sdk/instant_tests/models/request_method.py,sha256=tIyqguqNBreAMo824y364890no8Ef-PljbCF8NT3Q_w,1180
69
- thousandeyes_sdk/instant_tests/models/server_instant_test_request.py,sha256=X_YXiDAwjusescPAWIkt3PxFhOGxYx9xFqKqtqz9Mlk,11399
70
- thousandeyes_sdk/instant_tests/models/shared_with_account.py,sha256=Wtb7Cuwgs528AVHMOGCEou-BsmZLUXh1Lx8TQKTQqJM,3094
71
- thousandeyes_sdk/instant_tests/models/simple_agent.py,sha256=XeMAzC43N9LQSsyBdqlLCzgTvEKkYjYclT-5-LVBBD8,5371
72
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py,sha256=U3FonIqupemxR_bRxOeq8yzPeAdhayqK46C36_6zvv8,10935
73
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py,sha256=YdXj7JXX0ETII1D7xWcO_RG02415EFK5qLlxdyKt7CI,10577
74
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request1.py,sha256=fAKR2aunrMIl_xWL3GKNcUdEbahUsGydlcVtBU4XMvI,11541
75
- thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py,sha256=Ie4kAVaw2MsntCEYwobkkeHa0hpzADLTzlutmdWPocs,12128
76
- thousandeyes_sdk/instant_tests/models/sip_server_properties.py,sha256=HaoA9ggs2Lw9n-mdMBfZXfBgNrP_qr5z5TCmAJTOhNs,6048
77
- thousandeyes_sdk/instant_tests/models/sip_test_protocol.py,sha256=g35v1WpOMKEAQUkb6LP5RqOXave2stW_wi8QUc0ZSzY,1114
78
- thousandeyes_sdk/instant_tests/models/test_agent.py,sha256=tL8Cx9DvIUSuUP0a4EUS078xpkXyw_QSo8H39_YM1uc,3318
79
- thousandeyes_sdk/instant_tests/models/test_auth_type.py,sha256=oaaAdiMhI_cya4QOxx54ZdqVGMNg_bfAuO_OdVZvByI,1149
80
- thousandeyes_sdk/instant_tests/models/test_custom_headers.py,sha256=OqU6LqWwmxADAJ86ldhDGBqrx64WNtc_Kpj3fQySV5Y,3362
81
- thousandeyes_sdk/instant_tests/models/test_direction.py,sha256=gkQ4QSFzkg3XpI1EyjcTsxzeOS5bM-AXZD0cUscM4Z0,1191
82
- thousandeyes_sdk/instant_tests/models/test_dns_server.py,sha256=JHWZURWOKIxUt5IBZLYcDZe5uVJRig1JCgWUpR94fmM,3211
83
- thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py,sha256=PXU1N17KRQSEPLWg4SWRuHvvfErPafoCQsqeop1BahM,1119
84
- thousandeyes_sdk/instant_tests/models/test_dscp_id.py,sha256=a3H-v_E16d8ElOLxIZnjM66O5Gbk9oUkiyocQg-pcT8,1564
85
- thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py,sha256=bT_d_BqKO4Z-GnMDAN9DYtkrnqJ9BCQWgrvF4q3xiHc,1265
86
- thousandeyes_sdk/instant_tests/models/test_label.py,sha256=8jaCl5EUom2a5Oqm9JzaXEt61SUCWLISzFCeZH-2AHM,3356
87
- thousandeyes_sdk/instant_tests/models/test_links.py,sha256=gPB1IZAz3n0f-b07-gQK0RQ516TSVjCWncfnroSjaYw,3925
88
- thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py,sha256=rT1j_xR5vtbDGmoVcsOnd1IopSOHSlgROyCnLxZPM4E,1766
89
- thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py,sha256=z5I5WAiP1rt1SnIw5su9-McymaoRv55cTTRVSMrbNlI,1158
90
- thousandeyes_sdk/instant_tests/models/test_probe_mode.py,sha256=albQhUNR3jL7cSZ-_L4Qs10zCDEZn4pRN8eamocnP0s,1152
91
- thousandeyes_sdk/instant_tests/models/test_protocol.py,sha256=OTrgsgg0OqpPngxW5nTSG947tHuqg9LbNE7W9x4hx4k,1145
92
- thousandeyes_sdk/instant_tests/models/test_self_link.py,sha256=TCJ__6i0g14wv9Mk6UR6to8kLzz7QYOn85K6IKnfMR8,4442
93
- thousandeyes_sdk/instant_tests/models/test_sip_credentials.py,sha256=s1EAy1r6V1pjhutAbMjGQiJPO-6p_L6GA_UM4HlahcM,4041
94
- thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py,sha256=ftrnKTJn9WdSGA4EqOzQ88IBSRvlqjXvbVQVNVZVWEE,1265
95
- thousandeyes_sdk/instant_tests/models/test_type.py,sha256=tQOWKvJhGqJATreiXtMHNYIZlzoVCfYWhPiVLVvaKUc,1529
96
- thousandeyes_sdk/instant_tests/models/unauthorized_error.py,sha256=BLHHB30Wq8fbpQzYJFN5szxutx-DX-q_1TIYyAFkEFs,3049
97
- thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py,sha256=inWf48-N91NL-pknoFHLqD92ufp0Yynnbgua7louD2U,5790
98
- thousandeyes_sdk/instant_tests/models/validation_error.py,sha256=b0d0fCszj1No1HrXvGnKgpkkQALNA4jr6Umy8I0MUKM,4753
99
- thousandeyes_sdk/instant_tests/models/validation_error_item.py,sha256=jUZ2GlDE6L1o5Vu10__X7AfD_3_zG2POpMwddw9tw80,3421
100
- thousandeyes_sdk/instant_tests/models/voice_instant_test.py,sha256=Qygknsaui3W3GYy_kl7fcx50erhN07IJyatfZK2ZYdk,10052
101
- thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py,sha256=nOfx9RNVN0VGwl_2kcCMp9Yi-S0ztfvibppd62UOkP8,9120
102
- thousandeyes_sdk/instant_tests/models/voice_properties.py,sha256=WmmELQDBJJ4AG3a2rqSe2Q8PP6BCUnckWho38jEpzdg,5153
103
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=OYJt5Yz9AT1EWgI17apIIC74qIuQtQV4OKNG5RTstpA,20972
104
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=Nu_mzxyB3AeIES-vHFv4QMSXD9ZxHxWcj8dRmXH3pbg,20040
105
- thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=UU55hxkvmvI7uTqsSjjGI4hRQunye_ijseYedsL1tRU,15854
106
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
107
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/METADATA,sha256=1K2Ivv7zipT-apLd56aL5ZLoN4vsMqUTKcHLtayouiQ,33352
108
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
109
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
110
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
111
- thousandeyes_sdk_instant_tests-1.2.0.dist-info/RECORD,,