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.
- thousandeyes_sdk_instant_tests-1.2.0/.version +1 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/PKG-INFO +5 -2
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/README.md +4 -1
- thousandeyes_sdk_instant_tests-1.2.0/docs/AgentInterfaces.md +30 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerBaseProperties.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerInstantTest.md +5 -2
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerInstantTestRequest.md +5 -2
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HttpServerProperties.md +5 -2
- thousandeyes_sdk_instant_tests-1.2.0/docs/OAuth.md +37 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadInstantTest.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadInstantTestRequest.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/PageLoadProperties.md +5 -0
- thousandeyes_sdk_instant_tests-1.2.0/docs/RequestMethod.md +12 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionInstantTest.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionInstantTestRequest.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionProperties.md +5 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/__init__.py +3 -1
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/__init__.py +3 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/agent.py +0 -1
- {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
- thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/agent_interfaces.py +89 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/error.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/expand.py +0 -1
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/models/link.py +0 -1
- thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/o_auth.py +103 -0
- {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
- {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
- {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
- thousandeyes_sdk_instant_tests-1.2.0/src/thousandeyes_sdk/instant_tests/models/request_method.py +41 -0
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {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
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_agent_to_agent_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_agent_to_server_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_api_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_security_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_server_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_dns_trace_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_ftp_server_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_http_page_load_api.py +34 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_http_server_api.py +76 -47
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_run_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_sip_server_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_voice_api.py +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/test/test_web_transaction_api.py +34 -1
- thousandeyes_sdk_instant_tests-1.1.0/.version +0 -1
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/LICENSE +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/MANIFEST.in +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/NOTICE +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/APIApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Agent.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentBase.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToAgentTestProtocol.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/AgentToServerProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiPredefinedVariable.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertion.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertionName.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAssertionOperator.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestAuthType.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestHeader.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestMethod.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ApiRequestVariable.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/CloudEnterpriseAgentType.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSSecurityApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSServerApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DNSTraceApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsQueryClass.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsSecProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServerProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsServersRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/DnsTraceProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Error.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Expand.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FTPServerApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/FtpServerRequestType.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HTTPPageLoadApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/HTTPServerApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/InstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/InstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/Link.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/RunApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SIPServerApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ServerInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SharedWithAccount.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SimpleAgent.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestRequest1.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerInstantTestResponse.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipServerProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/SipTestProtocol.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestAgent.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestAuthType.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestCustomHeaders.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDirection.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDnsServer.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDnsTransportProtocol.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestDscpId.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestIpv6Policy.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestLabel.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestLinks.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestPageLoadingStrategy.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestPathTraceMode.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestProbeMode.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestProtocol.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSelfLink.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSipCredentials.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestSslVersionId.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/TestType.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/UnauthorizedError.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/UnexpandedInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ValidationError.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/ValidationErrorItem.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceInstantTest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceInstantTestRequest.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/VoiceProperties.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/docs/WebTransactionApi.md +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/pyproject.toml +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/setup.cfg +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/api/__init__.py +0 -0
- {thousandeyes_sdk_instant_tests-1.1.0 → thousandeyes_sdk_instant_tests-1.2.0}/src/thousandeyes_sdk/instant_tests/py.typed +0 -0
- {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
- {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
- {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
- {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.
|
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.
|
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.
|
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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
|
|
18
21
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `requestMethod` 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 `labelId` from `/labels` endpoint). | [optional]
|
20
20
|
**shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint). | [optional]
|
21
21
|
**auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
|
22
|
+
**agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
|
22
23
|
**bandwidth_measurements** | **bool** | Set to `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `requestMethod` 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 `agentId` (required) and `sourceIpAddress` (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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
|
|
18
21
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `requestMethod` 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 `requestMethod` 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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `pageLoadTimeLimit`. | [optional]
|
52
57
|
**page_load_time_limit** | **int** | Page load time limit. Must be larger than the `httpTimeLimit`. | [optional] [default to 10]
|
@@ -19,11 +19,14 @@ Name | Type | Description | Notes
|
|
19
19
|
**labels** | **List[str]** | A list of test label identifiers (get `labelId` from `/labels` endpoint). | [optional]
|
20
20
|
**shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint). | [optional]
|
21
21
|
**auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
|
22
|
+
**agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
|
22
23
|
**bandwidth_measurements** | **bool** | Set to `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `pageLoadTimeLimit`. | [optional]
|
52
57
|
**page_load_time_limit** | **int** | Page load time limit. Must be larger than the `httpTimeLimit`. | [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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
|
|
18
21
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `pageLoadTimeLimit`. | [optional]
|
39
44
|
**page_load_time_limit** | **int** | Page load time limit. Must be larger than the `httpTimeLimit`. | [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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `labelId` from `/labels` endpoint). | [optional]
|
20
20
|
**shared_with_accounts** | **List[str]** | A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint). | [optional]
|
21
21
|
**auth_type** | [**TestAuthType**](TestAuthType.md) | | [optional]
|
22
|
+
**agent_interfaces** | [**AgentInterfaces**](AgentInterfaces.md) | | [optional]
|
22
23
|
**bandwidth_measurements** | **bool** | Set to `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -31,6 +34,7 @@ Name | Type | Description | Notes
|
|
31
34
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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 `true` 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 '2' to prefer HTTP/2, or '1' to use only HTTP/1.1. | [optional] [default to 2]
|
@@ -18,6 +21,7 @@ Name | Type | Description | Notes
|
|
18
21
|
**mtu_measurements** | **bool** | Set `true` 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 `true` and specify a value for `overrideProxyId`. | [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.
|