thousandeyes-sdk-instant-tests 1.1.0__tar.gz → 1.2.0__tar.gz

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 (234) hide show
  1. thousandeyes_sdk_instant_tests-1.2.0/.version +1 -0
  2. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/PKG-INFO +5 -2
  3. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/README.md +4 -1
  4. thousandeyes_sdk_instant_tests-1.2.0/docs/AgentInterfaces.md +30 -0
  5. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerBaseProperties.md +5 -0
  6. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerInstantTest.md +5 -2
  7. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerInstantTestRequest.md +5 -2
  8. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerProperties.md +5 -2
  9. thousandeyes_sdk_instant_tests-1.2.0/docs/OAuth.md +37 -0
  10. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadInstantTest.md +5 -0
  11. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadInstantTestRequest.md +5 -0
  12. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadProperties.md +5 -0
  13. thousandeyes_sdk_instant_tests-1.2.0/docs/RequestMethod.md +12 -0
  14. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionInstantTest.md +5 -0
  15. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionInstantTestRequest.md +5 -0
  16. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionProperties.md +5 -0
  17. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/__init__.py +3 -1
  18. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/agent_to_agent_api.py +0 -1
  19. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/agent_to_server_api.py +0 -1
  20. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/api_api.py +0 -1
  21. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/dns_security_api.py +0 -1
  22. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/dns_server_api.py +0 -1
  23. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/dns_trace_api.py +0 -1
  24. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/ftp_server_api.py +0 -1
  25. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/http_page_load_api.py +0 -1
  26. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/http_server_api.py +0 -1
  27. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/run_api.py +0 -1
  28. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/sip_server_api.py +0 -1
  29. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/voice_api.py +0 -1
  30. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/web_transaction_api.py +0 -1
  31. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/__init__.py +3 -1
  32. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent.py +0 -1
  33. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_base.py +0 -1
  34. thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/agent_interfaces.py +89 -0
  35. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py +0 -1
  36. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py +0 -1
  37. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py +0 -1
  38. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py +0 -1
  39. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py +0 -1
  40. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py +0 -1
  41. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py +0 -1
  42. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_instant_test.py +0 -1
  43. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +0 -1
  44. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_predefined_variable.py +0 -1
  45. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_properties.py +0 -1
  46. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request.py +0 -1
  47. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_assertion.py +0 -1
  48. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py +0 -1
  49. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py +0 -1
  50. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_auth_type.py +0 -1
  51. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_header.py +0 -1
  52. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_method.py +0 -1
  53. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/api_request_variable.py +0 -1
  54. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py +0 -1
  55. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_query_class.py +0 -1
  56. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py +0 -1
  57. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py +0 -1
  58. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_sec_properties.py +0 -1
  59. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py +0 -1
  60. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py +0 -1
  61. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_server_properties.py +0 -1
  62. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_servers_request.py +0 -1
  63. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py +0 -1
  64. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py +0 -1
  65. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/dns_trace_properties.py +0 -1
  66. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/error.py +0 -1
  67. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/expand.py +0 -1
  68. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py +0 -1
  69. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/ftp_server_properties.py +0 -1
  70. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py +0 -1
  71. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +21 -4
  72. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +19 -6
  73. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +19 -6
  74. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/http_server_properties.py +19 -6
  75. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/instant_test.py +0 -1
  76. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/instant_test_request.py +0 -1
  77. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/link.py +0 -1
  78. thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/o_auth.py +103 -0
  79. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +20 -3
  80. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +20 -3
  81. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/page_load_properties.py +20 -3
  82. thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/request_method.py +41 -0
  83. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/server_instant_test_request.py +0 -1
  84. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/shared_with_account.py +0 -1
  85. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/simple_agent.py +0 -1
  86. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py +0 -1
  87. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py +0 -1
  88. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request1.py +0 -1
  89. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py +0 -1
  90. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_server_properties.py +0 -1
  91. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/sip_test_protocol.py +0 -1
  92. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_agent.py +0 -1
  93. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_auth_type.py +0 -1
  94. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_custom_headers.py +0 -1
  95. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_direction.py +0 -1
  96. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_dns_server.py +0 -1
  97. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py +0 -1
  98. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_dscp_id.py +0 -1
  99. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py +0 -1
  100. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_label.py +0 -1
  101. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_links.py +0 -1
  102. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py +0 -1
  103. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py +0 -1
  104. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_probe_mode.py +0 -1
  105. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_protocol.py +0 -1
  106. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_self_link.py +0 -1
  107. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_sip_credentials.py +0 -1
  108. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py +0 -1
  109. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/test_type.py +0 -1
  110. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/unauthorized_error.py +0 -1
  111. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py +0 -1
  112. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/validation_error.py +0 -1
  113. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/validation_error_item.py +0 -1
  114. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/voice_instant_test.py +0 -1
  115. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py +0 -1
  116. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/voice_properties.py +0 -1
  117. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +20 -3
  118. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +20 -3
  119. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +20 -3
  120. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk_instant_tests.egg-info/PKG-INFO +5 -2
  121. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk_instant_tests.egg-info/SOURCES.txt +6 -0
  122. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_agent_to_agent_api.py +0 -1
  123. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_agent_to_server_api.py +0 -1
  124. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_api_api.py +0 -1
  125. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_security_api.py +0 -1
  126. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_server_api.py +0 -1
  127. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_trace_api.py +0 -1
  128. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_ftp_server_api.py +0 -1
  129. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_http_page_load_api.py +34 -1
  130. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_http_server_api.py +76 -47
  131. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_run_api.py +0 -1
  132. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_sip_server_api.py +0 -1
  133. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_voice_api.py +0 -1
  134. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_web_transaction_api.py +34 -1
  135. thousandeyes_sdk_instant_tests-1.1.0/.version +0 -1
  136. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/LICENSE +0 -0
  137. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/MANIFEST.in +0 -0
  138. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/NOTICE +0 -0
  139. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/APIApi.md +0 -0
  140. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Agent.md +0 -0
  141. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentBase.md +0 -0
  142. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentApi.md +0 -0
  143. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentInstantTest.md +0 -0
  144. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentInstantTestRequest.md +0 -0
  145. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentProperties.md +0 -0
  146. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentTestProtocol.md +0 -0
  147. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerApi.md +0 -0
  148. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerInstantTest.md +0 -0
  149. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerInstantTestRequest.md +0 -0
  150. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerProperties.md +0 -0
  151. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiInstantTest.md +0 -0
  152. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiInstantTestRequest.md +0 -0
  153. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiPredefinedVariable.md +0 -0
  154. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiProperties.md +0 -0
  155. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequest.md +0 -0
  156. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertion.md +0 -0
  157. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertionName.md +0 -0
  158. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertionOperator.md +0 -0
  159. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAuthType.md +0 -0
  160. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestHeader.md +0 -0
  161. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestMethod.md +0 -0
  162. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestVariable.md +0 -0
  163. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/CloudEnterpriseAgentType.md +0 -0
  164. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSSecurityApi.md +0 -0
  165. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSServerApi.md +0 -0
  166. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSTraceApi.md +0 -0
  167. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsQueryClass.md +0 -0
  168. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecInstantTest.md +0 -0
  169. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecInstantTestRequest.md +0 -0
  170. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecProperties.md +0 -0
  171. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerInstantTest.md +0 -0
  172. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerInstantTestRequest.md +0 -0
  173. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerProperties.md +0 -0
  174. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServersRequest.md +0 -0
  175. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceInstantTest.md +0 -0
  176. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceInstantTestRequest.md +0 -0
  177. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceProperties.md +0 -0
  178. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Error.md +0 -0
  179. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Expand.md +0 -0
  180. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FTPServerApi.md +0 -0
  181. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerInstantTest.md +0 -0
  182. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerProperties.md +0 -0
  183. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerRequestType.md +0 -0
  184. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HTTPPageLoadApi.md +0 -0
  185. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HTTPServerApi.md +0 -0
  186. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/InstantTest.md +0 -0
  187. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/InstantTestRequest.md +0 -0
  188. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Link.md +0 -0
  189. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/RunApi.md +0 -0
  190. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SIPServerApi.md +0 -0
  191. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ServerInstantTestRequest.md +0 -0
  192. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SharedWithAccount.md +0 -0
  193. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SimpleAgent.md +0 -0
  194. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTest.md +0 -0
  195. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestRequest.md +0 -0
  196. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestRequest1.md +0 -0
  197. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestResponse.md +0 -0
  198. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerProperties.md +0 -0
  199. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipTestProtocol.md +0 -0
  200. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestAgent.md +0 -0
  201. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestAuthType.md +0 -0
  202. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestCustomHeaders.md +0 -0
  203. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDirection.md +0 -0
  204. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDnsServer.md +0 -0
  205. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDnsTransportProtocol.md +0 -0
  206. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDscpId.md +0 -0
  207. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestIpv6Policy.md +0 -0
  208. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestLabel.md +0 -0
  209. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestLinks.md +0 -0
  210. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestPageLoadingStrategy.md +0 -0
  211. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestPathTraceMode.md +0 -0
  212. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestProbeMode.md +0 -0
  213. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestProtocol.md +0 -0
  214. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSelfLink.md +0 -0
  215. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSipCredentials.md +0 -0
  216. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSslVersionId.md +0 -0
  217. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestType.md +0 -0
  218. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/UnauthorizedError.md +0 -0
  219. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/UnexpandedInstantTest.md +0 -0
  220. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ValidationError.md +0 -0
  221. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ValidationErrorItem.md +0 -0
  222. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceApi.md +0 -0
  223. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceInstantTest.md +0 -0
  224. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceInstantTestRequest.md +0 -0
  225. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceProperties.md +0 -0
  226. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionApi.md +0 -0
  227. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/pyproject.toml +0 -0
  228. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/setup.cfg +0 -0
  229. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/__init__.py +0 -0
  230. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/py.typed +0 -0
  231. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk_instant_tests.egg-info/dependency_links.txt +0 -0
  232. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk_instant_tests.egg-info/requires.txt +0 -0
  233. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk_instant_tests.egg-info/top_level.txt +0 -0
  234. {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_utils.py +0 -0
@@ -0,0 +1 @@
1
+ 1.2.0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: thousandeyes-sdk-instant-tests
3
- Version: 1.1.0
3
+ Version: 1.2.0
4
4
  Summary: ThousandEyes SDK Instant Tests API
5
5
  Author-email: ThousandEyes API Team <api-team@thousandeyes.com>
6
6
  License: Apache License
@@ -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.9
212
+ - API version: 7.0.14
213
213
  - Generator version: 7.6.0
214
214
  - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
215
215
 
@@ -321,6 +321,7 @@ Class | Method | HTTP request | Description
321
321
 
322
322
  - [Agent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Agent.md)
323
323
  - [AgentBase](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentBase.md)
324
+ - [AgentInterfaces](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentInterfaces.md)
324
325
  - [AgentToAgentInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTest.md)
325
326
  - [AgentToAgentInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTestRequest.md)
326
327
  - [AgentToAgentProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentProperties.md)
@@ -364,9 +365,11 @@ Class | Method | HTTP request | Description
364
365
  - [InstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTest.md)
365
366
  - [InstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTestRequest.md)
366
367
  - [Link](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Link.md)
368
+ - [OAuth](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/OAuth.md)
367
369
  - [PageLoadInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTest.md)
368
370
  - [PageLoadInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTestRequest.md)
369
371
  - [PageLoadProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadProperties.md)
372
+ - [RequestMethod](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/RequestMethod.md)
370
373
  - [ServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ServerInstantTestRequest.md)
371
374
  - [SharedWithAccount](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SharedWithAccount.md)
372
375
  - [SimpleAgent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SimpleAgent.md)
@@ -8,7 +8,7 @@ The response does not include the immediate test results. Use the Test Results e
8
8
 
9
9
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
10
10
 
11
- - API version: 7.0.9
11
+ - API version: 7.0.14
12
12
  - Generator version: 7.6.0
13
13
  - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
14
14
 
@@ -120,6 +120,7 @@ Class | Method | HTTP request | Description
120
120
 
121
121
  - [Agent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Agent.md)
122
122
  - [AgentBase](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentBase.md)
123
+ - [AgentInterfaces](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentInterfaces.md)
123
124
  - [AgentToAgentInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTest.md)
124
125
  - [AgentToAgentInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentInstantTestRequest.md)
125
126
  - [AgentToAgentProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/AgentToAgentProperties.md)
@@ -163,9 +164,11 @@ Class | Method | HTTP request | Description
163
164
  - [InstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTest.md)
164
165
  - [InstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTestRequest.md)
165
166
  - [Link](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/Link.md)
167
+ - [OAuth](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/OAuth.md)
166
168
  - [PageLoadInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTest.md)
167
169
  - [PageLoadInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTestRequest.md)
168
170
  - [PageLoadProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadProperties.md)
171
+ - [RequestMethod](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/RequestMethod.md)
169
172
  - [ServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ServerInstantTestRequest.md)
170
173
  - [SharedWithAccount](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SharedWithAccount.md)
171
174
  - [SimpleAgent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SimpleAgent.md)
@@ -0,0 +1,30 @@
1
+ # AgentInterfaces
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **ip_address** | **str** | IP address of the agent interface. | [optional]
9
+ **agent_id** | **str** | The agent ID of the enterprise agent for the test. | [optional]
10
+
11
+ ## Example
12
+
13
+ ```python
14
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
15
+
16
+ # TODO update the JSON string below
17
+ json = "{}"
18
+ # create an instance of AgentInterfaces from a JSON string
19
+ agent_interfaces_instance = AgentInterfaces.from_json(json)
20
+ # print the JSON string representation of the object
21
+ print(AgentInterfaces.to_json())
22
+
23
+ # convert the object into a dict
24
+ agent_interfaces_dict = agent_interfaces_instance.to_dict()
25
+ # create an instance of AgentInterfaces from a dict
26
+ agent_interfaces_from_dict = AgentInterfaces.from_dict(agent_interfaces_dict)
27
+ ```
28
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
29
+
30
+
@@ -6,11 +6,14 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
9
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
9
10
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
10
11
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
11
12
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
12
13
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
13
14
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
15
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
16
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
14
17
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
15
18
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
16
19
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
18
21
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
19
22
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
20
23
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
24
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
21
25
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
22
26
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
23
27
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -34,6 +38,7 @@ Name | Type | Description | Notes
34
38
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
35
39
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
36
40
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
41
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
37
42
 
38
43
  ## Example
39
44
 
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | [**List[TestLabel]**](TestLabel.md) | | [optional] [readonly]
20
20
  **shared_with_accounts** | [**List[SharedWithAccount]**](SharedWithAccount.md) | | [optional] [readonly]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,9 +51,8 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **headers** | **List[str]** | HTTP request headers used. | [optional]
51
- **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
52
- **dns_override** | **str** | IP address to use for DNS override. | [optional]
53
56
  **post_body** | **str** | Enter the body for the HTTP POST request in this field. No special escaping is necessary. If the post body is provided with content, the &#x60;requestMethod&#x60; is automatically set to POST. | [optional]
54
57
  **ipv6_policy** | [**TestIpv6Policy**](TestIpv6Policy.md) | | [optional]
55
58
  **agents** | [**List[Agent]**](Agent.md) | Contains list of agents. | [optional] [readonly]
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | **List[str]** | A list of test label identifiers (get &#x60;labelId&#x60; from &#x60;/labels&#x60; endpoint). | [optional]
20
20
  **shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get &#x60;aid&#x60; from &#x60;/account-groups&#x60; endpoint). | [optional]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,9 +51,8 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **headers** | **List[str]** | HTTP request headers used. | [optional]
51
- **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
52
- **dns_override** | **str** | IP address to use for DNS override. | [optional]
53
56
  **post_body** | **str** | Enter the body for the HTTP POST request in this field. No special escaping is necessary. If the post body is provided with content, the &#x60;requestMethod&#x60; is automatically set to POST. | [optional]
54
57
  **ipv6_policy** | [**TestIpv6Policy**](TestIpv6Policy.md) | | [optional]
55
58
  **agents** | [**List[TestAgent]**](TestAgent.md) | A list of objects with &#x60;agentId&#x60; (required) and &#x60;sourceIpAddress&#x60; (optional). |
@@ -6,11 +6,14 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
9
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
9
10
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
10
11
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
11
12
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
12
13
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
13
14
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
15
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
16
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
14
17
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
15
18
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
16
19
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
18
21
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
19
22
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
20
23
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
24
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
21
25
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
22
26
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
23
27
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -34,9 +38,8 @@ Name | Type | Description | Notes
34
38
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
35
39
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
36
40
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
41
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
37
42
  **headers** | **List[str]** | HTTP request headers used. | [optional]
38
- **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
39
- **dns_override** | **str** | IP address to use for DNS override. | [optional]
40
43
  **post_body** | **str** | Enter the body for the HTTP POST request in this field. No special escaping is necessary. If the post body is provided with content, the &#x60;requestMethod&#x60; is automatically set to POST. | [optional]
41
44
  **ipv6_policy** | [**TestIpv6Policy**](TestIpv6Policy.md) | | [optional]
42
45
  **type** | **str** | | [optional] [readonly]
@@ -0,0 +1,37 @@
1
+ # OAuth
2
+
3
+ Use this only if you want to use OAuth as the authentication mechanism.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **config_id** | **str** | The ID of the OAuth configuration. | [optional]
10
+ **test_url** | **str** | Target for the test. | [optional]
11
+ **request_method** | [**RequestMethod**](RequestMethod.md) | | [optional]
12
+ **post_body** | **str** | Enter the OAuth body for the HTTP POST request in this field when using OAuth as the authentication mechanism. No special escaping is required. If content is provided in the post body, the &#x60;requestMethod&#x60; is automatically set to POST. | [optional]
13
+ **headers** | **str** | Request headers used for OAuth. | [optional]
14
+ **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
15
+ **username** | **str** | OAuth username | [optional]
16
+ **password** | **str** | OAuth password | [optional]
17
+
18
+ ## Example
19
+
20
+ ```python
21
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
22
+
23
+ # TODO update the JSON string below
24
+ json = "{}"
25
+ # create an instance of OAuth from a JSON string
26
+ o_auth_instance = OAuth.from_json(json)
27
+ # print the JSON string representation of the object
28
+ print(OAuth.to_json())
29
+
30
+ # convert the object into a dict
31
+ o_auth_dict = o_auth_instance.to_dict()
32
+ # create an instance of OAuth from a dict
33
+ o_auth_from_dict = OAuth.from_dict(o_auth_dict)
34
+ ```
35
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
36
+
37
+
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | [**List[TestLabel]**](TestLabel.md) | | [optional] [readonly]
20
20
  **shared_with_accounts** | [**List[SharedWithAccount]**](SharedWithAccount.md) | | [optional] [readonly]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,6 +51,7 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **emulated_device_id** | **str** | ID of the emulated device, if one was given when the test was created. | [optional]
51
56
  **page_load_target_time** | **int** | Target time for page load completion, specified in seconds and cannot exceed the &#x60;pageLoadTimeLimit&#x60;. | [optional]
52
57
  **page_load_time_limit** | **int** | Page load time limit. Must be larger than the &#x60;httpTimeLimit&#x60;. | [optional] [default to 10]
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | **List[str]** | A list of test label identifiers (get &#x60;labelId&#x60; from &#x60;/labels&#x60; endpoint). | [optional]
20
20
  **shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get &#x60;aid&#x60; from &#x60;/account-groups&#x60; endpoint). | [optional]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,6 +51,7 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **emulated_device_id** | **str** | ID of the emulated device, if one was given when the test was created. | [optional]
51
56
  **page_load_target_time** | **int** | Target time for page load completion, specified in seconds and cannot exceed the &#x60;pageLoadTimeLimit&#x60;. | [optional]
52
57
  **page_load_time_limit** | **int** | Page load time limit. Must be larger than the &#x60;httpTimeLimit&#x60;. | [optional] [default to 10]
@@ -6,11 +6,14 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
9
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
9
10
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
10
11
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
11
12
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
12
13
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
13
14
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
15
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
16
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
14
17
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
15
18
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
16
19
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
18
21
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
19
22
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
20
23
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
24
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
21
25
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
22
26
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
23
27
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -34,6 +38,7 @@ Name | Type | Description | Notes
34
38
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
35
39
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
36
40
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
41
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
37
42
  **emulated_device_id** | **str** | ID of the emulated device, if one was given when the test was created. | [optional]
38
43
  **page_load_target_time** | **int** | Target time for page load completion, specified in seconds and cannot exceed the &#x60;pageLoadTimeLimit&#x60;. | [optional]
39
44
  **page_load_time_limit** | **int** | Page load time limit. Must be larger than the &#x60;httpTimeLimit&#x60;. | [optional] [default to 10]
@@ -0,0 +1,12 @@
1
+ # RequestMethod
2
+
3
+ HTTP request method.
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+
10
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11
+
12
+
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | [**List[TestLabel]**](TestLabel.md) | | [optional] [readonly]
20
20
  **shared_with_accounts** | [**List[SharedWithAccount]**](SharedWithAccount.md) | | [optional] [readonly]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,6 +51,7 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **emulated_device_id** | **str** | ID of the emulated device, if specified when the test was created. | [optional]
51
56
  **target_time** | **int** | Target completion time. The default is 50% of the specified time limit in seconds. (Set to 0 to use the default behavior). | [optional]
52
57
  **time_limit** | **int** | Time limit for transaction in seconds. | [optional] [default to 30]
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
19
19
  **labels** | **List[str]** | A list of test label identifiers (get &#x60;labelId&#x60; from &#x60;/labels&#x60; endpoint). | [optional]
20
20
  **shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get &#x60;aid&#x60; from &#x60;/account-groups&#x60; endpoint). | [optional]
21
21
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
22
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
22
23
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
23
24
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
24
25
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
25
26
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
26
27
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
28
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
29
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
27
30
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
28
31
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
29
32
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
31
34
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
32
35
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
33
36
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
37
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
34
38
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
35
39
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
36
40
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -47,6 +51,7 @@ Name | Type | Description | Notes
47
51
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
48
52
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
49
53
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
54
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
50
55
  **emulated_device_id** | **str** | ID of the emulated device, if specified when the test was created. | [optional]
51
56
  **target_time** | **int** | Target completion time. The default is 50% of the specified time limit in seconds. (Set to 0 to use the default behavior). | [optional]
52
57
  **time_limit** | **int** | Time limit for transaction in seconds. | [optional] [default to 30]
@@ -6,11 +6,14 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
9
+ **agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
9
10
  **bandwidth_measurements** | **bool** | Set to &#x60;true&#x60; to enable bandwidth measurements, only applies to Enterprise agents assigned to the test. | [optional]
10
11
  **client_certificate** | **str** | String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate. | [optional]
11
12
  **content_regex** | **str** | Content regex, this field does not require escaping. | [optional]
12
13
  **custom_headers** | [**TestCustomHeaders**](TestCustomHeaders.md) | | [optional]
13
14
  **desired_status_code** | **str** | Specify the HTTP status code value that indicates a successful response. | [optional] [default to '200']
15
+ **download_limit** | **int** | Specifies maximum number of bytes to download from the target object. | [optional]
16
+ **dns_override** | **str** | IP address to use for DNS override. | [optional]
14
17
  **http_target_time** | **int** | Target time for HTTP server completion, specified in milliseconds. | [optional]
15
18
  **http_time_limit** | **int** | HTTP time limit in seconds. | [optional] [default to 5]
16
19
  **http_version** | **int** | HTTP protocol version. Set to &#39;2&#39; to prefer HTTP/2, or &#39;1&#39; to use only HTTP/1.1. | [optional] [default to 2]
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
18
21
  **mtu_measurements** | **bool** | Set &#x60;true&#x60; to measure MTU sizes on network from agents to the target. | [optional]
19
22
  **network_measurements** | **bool** | Enable or disable network measurements. Set to true to enable or false to disable network measurements. | [optional] [default to True]
20
23
  **num_path_traces** | **int** | Number of path traces executed by the agent. | [optional] [default to 3]
24
+ **o_auth** | [**OAuth**](OAuth.md) | | [optional]
21
25
  **password** | **str** | Password for Basic/NTLM authentication. | [optional]
22
26
  **path_trace_mode** | [**TestPathTraceMode**](TestPathTraceMode.md) | | [optional]
23
27
  **probe_mode** | [**TestProbeMode**](TestProbeMode.md) | | [optional]
@@ -34,6 +38,7 @@ Name | Type | Description | Notes
34
38
  **fixed_packet_rate** | **int** | Sets packets rate sent to measure the network in packets per second. | [optional]
35
39
  **override_agent_proxy** | **bool** | Flag indicating if a proxy other than the default should be used. To override the default proxy for agents, set to &#x60;true&#x60; and specify a value for &#x60;overrideProxyId&#x60;. | [optional] [default to False]
36
40
  **override_proxy_id** | **str** | ID of the proxy to be used if the default proxy is overridden. | [optional]
41
+ **collect_proxy_network_data** | **bool** | Indicates whether network data to the proxy should be collected. | [optional] [default to False]
37
42
  **emulated_device_id** | **str** | ID of the emulated device, if specified when the test was created. | [optional]
38
43
  **target_time** | **int** | Target completion time. The default is 50% of the specified time limit in seconds. (Set to 0 to use the default behavior). | [optional]
39
44
  **time_limit** | **int** | Time limit for transaction in seconds. | [optional] [default to 30]
@@ -7,7 +7,6 @@
7
7
 
8
8
  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.
9
9
 
10
- The version of the OpenAPI document: 7.0.9
11
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
12
11
 
13
12
  Do not edit the class manually.
@@ -33,6 +32,7 @@ from thousandeyes_sdk.instant_tests.api.web_transaction_api import WebTransactio
33
32
  # import models into sdk package
34
33
  from thousandeyes_sdk.instant_tests.models.agent import Agent
35
34
  from thousandeyes_sdk.instant_tests.models.agent_base import AgentBase
35
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
36
36
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test import AgentToAgentInstantTest
37
37
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_instant_test_request import AgentToAgentInstantTestRequest
38
38
  from thousandeyes_sdk.instant_tests.models.agent_to_agent_properties import AgentToAgentProperties
@@ -76,9 +76,11 @@ from thousandeyes_sdk.instant_tests.models.http_server_properties import HttpSer
76
76
  from thousandeyes_sdk.instant_tests.models.instant_test import InstantTest
77
77
  from thousandeyes_sdk.instant_tests.models.instant_test_request import InstantTestRequest
78
78
  from thousandeyes_sdk.instant_tests.models.link import Link
79
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
79
80
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test import PageLoadInstantTest
80
81
  from thousandeyes_sdk.instant_tests.models.page_load_instant_test_request import PageLoadInstantTestRequest
81
82
  from thousandeyes_sdk.instant_tests.models.page_load_properties import PageLoadProperties
83
+ from thousandeyes_sdk.instant_tests.models.request_method import RequestMethod
82
84
  from thousandeyes_sdk.instant_tests.models.server_instant_test_request import ServerInstantTestRequest
83
85
  from thousandeyes_sdk.instant_tests.models.shared_with_account import SharedWithAccount
84
86
  from thousandeyes_sdk.instant_tests.models.simple_agent import SimpleAgent
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -5,7 +5,6 @@
5
5
 
6
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
7
 
8
- The version of the OpenAPI document: 7.0.9
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.