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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (110) hide show
  1. thousandeyes_sdk/instant_tests/__init__.py +4 -1
  2. thousandeyes_sdk/instant_tests/api/agent_to_agent_api.py +0 -1
  3. thousandeyes_sdk/instant_tests/api/agent_to_server_api.py +0 -1
  4. thousandeyes_sdk/instant_tests/api/api_api.py +0 -1
  5. thousandeyes_sdk/instant_tests/api/dns_security_api.py +0 -1
  6. thousandeyes_sdk/instant_tests/api/dns_server_api.py +0 -1
  7. thousandeyes_sdk/instant_tests/api/dns_trace_api.py +0 -1
  8. thousandeyes_sdk/instant_tests/api/ftp_server_api.py +0 -1
  9. thousandeyes_sdk/instant_tests/api/http_page_load_api.py +0 -1
  10. thousandeyes_sdk/instant_tests/api/http_server_api.py +0 -1
  11. thousandeyes_sdk/instant_tests/api/run_api.py +0 -1
  12. thousandeyes_sdk/instant_tests/api/sip_server_api.py +0 -1
  13. thousandeyes_sdk/instant_tests/api/voice_api.py +0 -1
  14. thousandeyes_sdk/instant_tests/api/web_transaction_api.py +0 -1
  15. thousandeyes_sdk/instant_tests/models/__init__.py +4 -1
  16. thousandeyes_sdk/instant_tests/models/agent.py +0 -1
  17. thousandeyes_sdk/instant_tests/models/agent_base.py +0 -1
  18. thousandeyes_sdk/instant_tests/models/agent_interfaces.py +89 -0
  19. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py +0 -1
  20. thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py +0 -1
  21. thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py +0 -1
  22. thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py +0 -1
  23. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py +0 -1
  24. thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py +0 -1
  25. thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py +0 -1
  26. thousandeyes_sdk/instant_tests/models/api_instant_test.py +0 -1
  27. thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +0 -1
  28. thousandeyes_sdk/instant_tests/models/api_predefined_variable.py +0 -1
  29. thousandeyes_sdk/instant_tests/models/api_properties.py +0 -1
  30. thousandeyes_sdk/instant_tests/models/api_request.py +0 -1
  31. thousandeyes_sdk/instant_tests/models/api_request_assertion.py +0 -1
  32. thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py +0 -1
  33. thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py +0 -1
  34. thousandeyes_sdk/instant_tests/models/api_request_auth_type.py +0 -1
  35. thousandeyes_sdk/instant_tests/models/api_request_header.py +0 -1
  36. thousandeyes_sdk/instant_tests/models/api_request_method.py +0 -1
  37. thousandeyes_sdk/instant_tests/models/api_request_variable.py +0 -1
  38. thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py +0 -1
  39. thousandeyes_sdk/instant_tests/models/dns_query_class.py +0 -1
  40. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py +0 -1
  41. thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py +0 -1
  42. thousandeyes_sdk/instant_tests/models/dns_sec_properties.py +0 -1
  43. thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py +0 -1
  44. thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py +0 -1
  45. thousandeyes_sdk/instant_tests/models/dns_server_properties.py +0 -1
  46. thousandeyes_sdk/instant_tests/models/dns_servers_request.py +0 -1
  47. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py +0 -1
  48. thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py +0 -1
  49. thousandeyes_sdk/instant_tests/models/dns_trace_properties.py +0 -1
  50. thousandeyes_sdk/instant_tests/models/error.py +0 -1
  51. thousandeyes_sdk/instant_tests/models/expand.py +0 -1
  52. thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py +0 -1
  53. thousandeyes_sdk/instant_tests/models/ftp_server_properties.py +0 -1
  54. thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py +0 -1
  55. thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +173 -0
  56. thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +21 -8
  57. thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +21 -8
  58. thousandeyes_sdk/instant_tests/models/http_server_properties.py +21 -8
  59. thousandeyes_sdk/instant_tests/models/instant_test.py +0 -1
  60. thousandeyes_sdk/instant_tests/models/instant_test_request.py +0 -1
  61. thousandeyes_sdk/instant_tests/models/link.py +0 -1
  62. thousandeyes_sdk/instant_tests/models/o_auth.py +103 -0
  63. thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +35 -18
  64. thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +35 -18
  65. thousandeyes_sdk/instant_tests/models/page_load_properties.py +36 -19
  66. thousandeyes_sdk/instant_tests/models/request_method.py +41 -0
  67. thousandeyes_sdk/instant_tests/models/server_instant_test_request.py +0 -1
  68. thousandeyes_sdk/instant_tests/models/shared_with_account.py +0 -1
  69. thousandeyes_sdk/instant_tests/models/simple_agent.py +0 -1
  70. thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py +0 -1
  71. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py +0 -1
  72. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request1.py +0 -1
  73. thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py +0 -1
  74. thousandeyes_sdk/instant_tests/models/sip_server_properties.py +0 -1
  75. thousandeyes_sdk/instant_tests/models/sip_test_protocol.py +0 -1
  76. thousandeyes_sdk/instant_tests/models/test_agent.py +0 -1
  77. thousandeyes_sdk/instant_tests/models/test_auth_type.py +0 -1
  78. thousandeyes_sdk/instant_tests/models/test_custom_headers.py +0 -1
  79. thousandeyes_sdk/instant_tests/models/test_direction.py +0 -1
  80. thousandeyes_sdk/instant_tests/models/test_dns_server.py +0 -1
  81. thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py +0 -1
  82. thousandeyes_sdk/instant_tests/models/test_dscp_id.py +0 -1
  83. thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py +0 -1
  84. thousandeyes_sdk/instant_tests/models/test_label.py +0 -1
  85. thousandeyes_sdk/instant_tests/models/test_links.py +0 -1
  86. thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py +0 -1
  87. thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py +0 -1
  88. thousandeyes_sdk/instant_tests/models/test_probe_mode.py +0 -1
  89. thousandeyes_sdk/instant_tests/models/test_protocol.py +0 -1
  90. thousandeyes_sdk/instant_tests/models/test_self_link.py +0 -1
  91. thousandeyes_sdk/instant_tests/models/test_sip_credentials.py +0 -1
  92. thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py +0 -1
  93. thousandeyes_sdk/instant_tests/models/test_type.py +0 -1
  94. thousandeyes_sdk/instant_tests/models/unauthorized_error.py +0 -1
  95. thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py +0 -1
  96. thousandeyes_sdk/instant_tests/models/validation_error.py +0 -1
  97. thousandeyes_sdk/instant_tests/models/validation_error_item.py +0 -1
  98. thousandeyes_sdk/instant_tests/models/voice_instant_test.py +0 -1
  99. thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py +0 -1
  100. thousandeyes_sdk/instant_tests/models/voice_properties.py +0 -1
  101. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +37 -20
  102. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +37 -20
  103. thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +38 -21
  104. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/METADATA +6 -2
  105. thousandeyes_sdk_instant_tests-1.2.0.dist-info/RECORD +111 -0
  106. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/WHEEL +1 -1
  107. thousandeyes_sdk_instant_tests-1.0.0.dist-info/RECORD +0 -107
  108. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/LICENSE +0 -0
  109. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/NOTICE +0 -0
  110. {thousandeyes_sdk_instant_tests-1.0.0.dist-info → thousandeyes_sdk_instant_tests-1.2.0.dist-info}/top_level.txt +0 -0
@@ -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.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -18,9 +17,11 @@ import re # noqa: F401
18
17
  import json
19
18
 
20
19
  from datetime import datetime
21
- from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
20
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
22
21
  from typing import Any, ClassVar, Dict, List, Optional
23
22
  from typing_extensions import Annotated
23
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
24
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
24
25
  from thousandeyes_sdk.instant_tests.models.test_agent import TestAgent
25
26
  from thousandeyes_sdk.instant_tests.models.test_auth_type import TestAuthType
26
27
  from thousandeyes_sdk.instant_tests.models.test_custom_headers import TestCustomHeaders
@@ -51,13 +52,14 @@ class WebTransactionInstantTestRequest(BaseModel):
51
52
  labels: Optional[List[StrictStr]] = Field(default=None, description="A list of test label identifiers (get `labelId` from `/labels` endpoint).")
52
53
  shared_with_accounts: Optional[List[StrictStr]] = Field(default=None, description="A list of account group identifiers that the test is shared with (get `aid` from `/account-groups` endpoint).", alias="sharedWithAccounts")
53
54
  auth_type: Optional[TestAuthType] = Field(default=None, alias="authType")
55
+ agent_interfaces: Optional[AgentInterfaces] = Field(default=None, alias="agentInterfaces")
54
56
  bandwidth_measurements: Optional[StrictBool] = Field(default=None, description="Set to `true` to enable bandwidth measurements, only applies to Enterprise agents assigned to the test.", alias="bandwidthMeasurements")
55
57
  client_certificate: Optional[StrictStr] = Field(default=None, description="String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate.", alias="clientCertificate")
56
- content_regex: Optional[StrictStr] = Field(default=None, description="Verify content using a regular expression. This field does not require escaping.", alias="contentRegex")
58
+ content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
57
59
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
58
60
  desired_status_code: Optional[StrictStr] = Field(default='200', description="Specify the HTTP status code value that indicates a successful response.", alias="desiredStatusCode")
59
- emulated_device_id: Optional[StrictStr] = Field(default=None, description="id of the emulated device, if one was given when the test was created", alias="emulatedDeviceId")
60
- follow_redirects: Optional[StrictBool] = Field(default=True, description="To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to `false`.", alias="followRedirects")
61
+ download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
62
+ dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
61
63
  http_target_time: Optional[Annotated[int, Field(le=5000, strict=True, ge=100)]] = Field(default=None, description="Target time for HTTP server completion, specified in milliseconds.", alias="httpTargetTime")
62
64
  http_time_limit: Optional[Annotated[int, Field(le=60, strict=True, ge=5)]] = Field(default=5, description="HTTP time limit in seconds.", alias="httpTimeLimit")
63
65
  http_version: Optional[Annotated[int, Field(le=2, strict=True, ge=1)]] = Field(default=2, description="HTTP protocol version. Set to '2' to prefer HTTP/2, or '1' to use only HTTP/1.1.", alias="httpVersion")
@@ -65,33 +67,37 @@ class WebTransactionInstantTestRequest(BaseModel):
65
67
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
66
68
  network_measurements: Optional[StrictBool] = Field(default=True, description="Enable or disable network measurements. Set to true to enable or false to disable network measurements.", alias="networkMeasurements")
67
69
  num_path_traces: Optional[Annotated[int, Field(le=10, strict=True, ge=1)]] = Field(default=3, description="Number of path traces executed by the agent.", alias="numPathTraces")
70
+ o_auth: Optional[OAuth] = Field(default=None, alias="oAuth")
68
71
  password: Optional[StrictStr] = Field(default=None, description="Password for Basic/NTLM authentication.")
69
72
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
70
73
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
71
74
  protocol: Optional[TestProtocol] = None
72
75
  ssl_version: Optional[StrictStr] = Field(default=None, description="Reflects the verbose SSL protocol version used by a test.", alias="sslVersion")
73
76
  ssl_version_id: Optional[TestSslVersionId] = Field(default=None, alias="sslVersionId")
74
- target_time: Optional[Annotated[int, Field(le=60, strict=True, ge=0)]] = Field(default=None, description="Target time for completion, defaults to 50% of time limit specified in seconds. (0 means default behavior)", alias="targetTime")
75
- time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds.", alias="timeLimit")
76
- transaction_script: StrictStr = Field(description="JavaScript of a web transaction test. Quotes must be escaped (precede \" characters with \\ ).", alias="transactionScript")
77
77
  url: StrictStr = Field(description="Target for the test.")
78
78
  use_ntlm: Optional[StrictBool] = Field(default=None, description="Set to true to use NTLM, false to use Basic Authentication. Requires username and password to be set.", alias="useNtlm")
79
79
  user_agent: Optional[StrictStr] = Field(default=None, description="User-agent string to be provided during the test.", alias="userAgent")
80
80
  username: Optional[StrictStr] = Field(default=None, description="Username for Basic/NTLM authentication.")
81
81
  verify_certificate: Optional[StrictBool] = Field(default=False, description="Ignore or acknowledge certificate errors. Set to false to ignore certificate errors.", alias="verifyCertificate")
82
82
  allow_unsafe_legacy_renegotiation: Optional[StrictBool] = Field(default=True, description="Allows TLS renegotiation with servers not supporting RFC 5746. Default Set to true to allow unsafe legacy renegotiation.", alias="allowUnsafeLegacyRenegotiation")
83
+ follow_redirects: Optional[StrictBool] = Field(default=True, description="To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to `false`.", alias="followRedirects")
84
+ fixed_packet_rate: Optional[Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(default=None, description="Sets packets rate sent to measure the network in packets per second.", alias="fixedPacketRate")
85
+ override_agent_proxy: Optional[StrictBool] = Field(default=False, description="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`.", alias="overrideAgentProxy")
86
+ override_proxy_id: Optional[StrictStr] = Field(default=None, description="ID of the proxy to be used if the default proxy is overridden.", alias="overrideProxyId")
87
+ collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
88
+ emulated_device_id: Optional[StrictStr] = Field(default=None, description="ID of the emulated device, if specified when the test was created.", alias="emulatedDeviceId")
89
+ target_time: Optional[Annotated[int, Field(le=60, strict=True, ge=0)]] = Field(default=None, description="Target completion time. The default is 50% of the specified time limit in seconds. (Set to 0 to use the default behavior).", alias="targetTime")
90
+ time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds.", alias="timeLimit")
91
+ transaction_script: StrictStr = Field(description="JavaScript of a web transaction test. Quotes must be escaped (precede \" characters with \\ ).", alias="transactionScript")
83
92
  block_domains: Optional[StrictStr] = Field(default=None, description="Domains or full object URLs to be excluded from metrics and waterfall data for transaction tests.", alias="blockDomains")
84
93
  disable_screenshot: Optional[StrictBool] = Field(default=False, description="Enables or disables screenshots on error. Set true to not capture", alias="disableScreenshot")
85
94
  allow_mic_and_camera: Optional[StrictBool] = Field(default=False, description="Set true allow the use of a fake mic and camera in the browser.", alias="allowMicAndCamera")
86
95
  allow_geolocation: Optional[StrictBool] = Field(default=False, description="Set true to use the agent’s geolocation by the web page.", alias="allowGeolocation")
87
96
  browser_language: Optional[StrictStr] = Field(default=None, description="Set one of the available browser language that you want to use to configure the browser.", alias="browserLanguage")
88
97
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
89
- fixed_packet_rate: Optional[Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(default=None, description="Sets packets rate sent to measure the network in packets per second.", alias="fixedPacketRate")
90
- override_agent_proxy: Optional[StrictBool] = Field(default=False, description="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`.", alias="overrideAgentProxy")
91
- override_proxy_id: Optional[StrictStr] = Field(default=None, description="ID of the proxy to be used if the default proxy is overridden.", alias="overrideProxyId")
92
98
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
93
99
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
94
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "emulatedDeviceId", "followRedirects", "httpTargetTime", "httpTimeLimit", "httpVersion", "includeHeaders", "mtuMeasurements", "networkMeasurements", "numPathTraces", "password", "pathTraceMode", "probeMode", "protocol", "sslVersion", "sslVersionId", "targetTime", "timeLimit", "transactionScript", "url", "useNtlm", "userAgent", "username", "verifyCertificate", "allowUnsafeLegacyRenegotiation", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "fixedPacketRate", "overrideAgentProxy", "overrideProxyId", "agents", "credentials"]
100
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "downloadLimit", "dnsOverride", "httpTargetTime", "httpTimeLimit", "httpVersion", "includeHeaders", "mtuMeasurements", "networkMeasurements", "numPathTraces", "oAuth", "password", "pathTraceMode", "probeMode", "protocol", "sslVersion", "sslVersionId", "url", "useNtlm", "userAgent", "username", "verifyCertificate", "allowUnsafeLegacyRenegotiation", "followRedirects", "fixedPacketRate", "overrideAgentProxy", "overrideProxyId", "collectProxyNetworkData", "emulatedDeviceId", "targetTime", "timeLimit", "transactionScript", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "agents", "credentials"]
95
101
 
96
102
  model_config = ConfigDict(
97
103
  populate_by_name=True,
@@ -154,9 +160,15 @@ class WebTransactionInstantTestRequest(BaseModel):
154
160
  # override the default output from pydantic by calling `to_dict()` of links
155
161
  if self.links:
156
162
  _dict['_links'] = self.links.to_dict()
163
+ # override the default output from pydantic by calling `to_dict()` of agent_interfaces
164
+ if self.agent_interfaces:
165
+ _dict['agentInterfaces'] = self.agent_interfaces.to_dict()
157
166
  # override the default output from pydantic by calling `to_dict()` of custom_headers
158
167
  if self.custom_headers:
159
168
  _dict['customHeaders'] = self.custom_headers.to_dict()
169
+ # override the default output from pydantic by calling `to_dict()` of o_auth
170
+ if self.o_auth:
171
+ _dict['oAuth'] = self.o_auth.to_dict()
160
172
  # override the default output from pydantic by calling `to_dict()` of each item in agents (list)
161
173
  _items = []
162
174
  if self.agents:
@@ -190,13 +202,14 @@ class WebTransactionInstantTestRequest(BaseModel):
190
202
  "labels": obj.get("labels"),
191
203
  "sharedWithAccounts": obj.get("sharedWithAccounts"),
192
204
  "authType": obj.get("authType"),
205
+ "agentInterfaces": AgentInterfaces.from_dict(obj["agentInterfaces"]) if obj.get("agentInterfaces") is not None else None,
193
206
  "bandwidthMeasurements": obj.get("bandwidthMeasurements"),
194
207
  "clientCertificate": obj.get("clientCertificate"),
195
208
  "contentRegex": obj.get("contentRegex"),
196
209
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
197
210
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else '200',
198
- "emulatedDeviceId": obj.get("emulatedDeviceId"),
199
- "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
211
+ "downloadLimit": obj.get("downloadLimit"),
212
+ "dnsOverride": obj.get("dnsOverride"),
200
213
  "httpTargetTime": obj.get("httpTargetTime"),
201
214
  "httpTimeLimit": obj.get("httpTimeLimit") if obj.get("httpTimeLimit") is not None else 5,
202
215
  "httpVersion": obj.get("httpVersion") if obj.get("httpVersion") is not None else 2,
@@ -204,30 +217,34 @@ class WebTransactionInstantTestRequest(BaseModel):
204
217
  "mtuMeasurements": obj.get("mtuMeasurements"),
205
218
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
206
219
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
220
+ "oAuth": OAuth.from_dict(obj["oAuth"]) if obj.get("oAuth") is not None else None,
207
221
  "password": obj.get("password"),
208
222
  "pathTraceMode": obj.get("pathTraceMode"),
209
223
  "probeMode": obj.get("probeMode"),
210
224
  "protocol": obj.get("protocol"),
211
225
  "sslVersion": obj.get("sslVersion"),
212
226
  "sslVersionId": obj.get("sslVersionId"),
213
- "targetTime": obj.get("targetTime"),
214
- "timeLimit": obj.get("timeLimit") if obj.get("timeLimit") is not None else 30,
215
- "transactionScript": obj.get("transactionScript"),
216
227
  "url": obj.get("url"),
217
228
  "useNtlm": obj.get("useNtlm"),
218
229
  "userAgent": obj.get("userAgent"),
219
230
  "username": obj.get("username"),
220
231
  "verifyCertificate": obj.get("verifyCertificate") if obj.get("verifyCertificate") is not None else False,
221
232
  "allowUnsafeLegacyRenegotiation": obj.get("allowUnsafeLegacyRenegotiation") if obj.get("allowUnsafeLegacyRenegotiation") is not None else True,
233
+ "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
234
+ "fixedPacketRate": obj.get("fixedPacketRate"),
235
+ "overrideAgentProxy": obj.get("overrideAgentProxy") if obj.get("overrideAgentProxy") is not None else False,
236
+ "overrideProxyId": obj.get("overrideProxyId"),
237
+ "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
238
+ "emulatedDeviceId": obj.get("emulatedDeviceId"),
239
+ "targetTime": obj.get("targetTime"),
240
+ "timeLimit": obj.get("timeLimit") if obj.get("timeLimit") is not None else 30,
241
+ "transactionScript": obj.get("transactionScript"),
222
242
  "blockDomains": obj.get("blockDomains"),
223
243
  "disableScreenshot": obj.get("disableScreenshot") if obj.get("disableScreenshot") is not None else False,
224
244
  "allowMicAndCamera": obj.get("allowMicAndCamera") if obj.get("allowMicAndCamera") is not None else False,
225
245
  "allowGeolocation": obj.get("allowGeolocation") if obj.get("allowGeolocation") is not None else False,
226
246
  "browserLanguage": obj.get("browserLanguage"),
227
247
  "pageLoadingStrategy": obj.get("pageLoadingStrategy"),
228
- "fixedPacketRate": obj.get("fixedPacketRate"),
229
- "overrideAgentProxy": obj.get("overrideAgentProxy") if obj.get("overrideAgentProxy") is not None else False,
230
- "overrideProxyId": obj.get("overrideProxyId"),
231
248
  "agents": [TestAgent.from_dict(_item) for _item in obj["agents"]] if obj.get("agents") is not None else None,
232
249
  "credentials": obj.get("credentials")
233
250
  })
@@ -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.8
9
8
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
9
 
11
10
  Do not edit the class manually.
@@ -17,9 +16,11 @@ import pprint
17
16
  import re # noqa: F401
18
17
  import json
19
18
 
20
- from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictStr
19
+ from pydantic import BaseModel, ConfigDict, Field, StrictBool, StrictInt, StrictStr
21
20
  from typing import Any, ClassVar, Dict, List, Optional
22
21
  from typing_extensions import Annotated
22
+ from thousandeyes_sdk.instant_tests.models.agent_interfaces import AgentInterfaces
23
+ from thousandeyes_sdk.instant_tests.models.o_auth import OAuth
23
24
  from thousandeyes_sdk.instant_tests.models.test_auth_type import TestAuthType
24
25
  from thousandeyes_sdk.instant_tests.models.test_custom_headers import TestCustomHeaders
25
26
  from thousandeyes_sdk.instant_tests.models.test_page_loading_strategy import TestPageLoadingStrategy
@@ -35,13 +36,14 @@ class WebTransactionProperties(BaseModel):
35
36
  WebTransactionProperties
36
37
  """ # noqa: E501
37
38
  auth_type: Optional[TestAuthType] = Field(default=None, alias="authType")
39
+ agent_interfaces: Optional[AgentInterfaces] = Field(default=None, alias="agentInterfaces")
38
40
  bandwidth_measurements: Optional[StrictBool] = Field(default=None, description="Set to `true` to enable bandwidth measurements, only applies to Enterprise agents assigned to the test.", alias="bandwidthMeasurements")
39
41
  client_certificate: Optional[StrictStr] = Field(default=None, description="String representation (containing newline characters) of client certificate, the private key must be placed first, then the certificate.", alias="clientCertificate")
40
- content_regex: Optional[StrictStr] = Field(default=None, description="Verify content using a regular expression. This field does not require escaping.", alias="contentRegex")
42
+ content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
41
43
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
42
44
  desired_status_code: Optional[StrictStr] = Field(default='200', description="Specify the HTTP status code value that indicates a successful response.", alias="desiredStatusCode")
43
- emulated_device_id: Optional[StrictStr] = Field(default=None, description="id of the emulated device, if one was given when the test was created", alias="emulatedDeviceId")
44
- follow_redirects: Optional[StrictBool] = Field(default=True, description="To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to `false`.", alias="followRedirects")
45
+ download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
46
+ dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
45
47
  http_target_time: Optional[Annotated[int, Field(le=5000, strict=True, ge=100)]] = Field(default=None, description="Target time for HTTP server completion, specified in milliseconds.", alias="httpTargetTime")
46
48
  http_time_limit: Optional[Annotated[int, Field(le=60, strict=True, ge=5)]] = Field(default=5, description="HTTP time limit in seconds.", alias="httpTimeLimit")
47
49
  http_version: Optional[Annotated[int, Field(le=2, strict=True, ge=1)]] = Field(default=2, description="HTTP protocol version. Set to '2' to prefer HTTP/2, or '1' to use only HTTP/1.1.", alias="httpVersion")
@@ -49,32 +51,36 @@ class WebTransactionProperties(BaseModel):
49
51
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
50
52
  network_measurements: Optional[StrictBool] = Field(default=True, description="Enable or disable network measurements. Set to true to enable or false to disable network measurements.", alias="networkMeasurements")
51
53
  num_path_traces: Optional[Annotated[int, Field(le=10, strict=True, ge=1)]] = Field(default=3, description="Number of path traces executed by the agent.", alias="numPathTraces")
54
+ o_auth: Optional[OAuth] = Field(default=None, alias="oAuth")
52
55
  password: Optional[StrictStr] = Field(default=None, description="Password for Basic/NTLM authentication.")
53
56
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
54
57
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
55
58
  protocol: Optional[TestProtocol] = None
56
59
  ssl_version: Optional[StrictStr] = Field(default=None, description="Reflects the verbose SSL protocol version used by a test.", alias="sslVersion")
57
60
  ssl_version_id: Optional[TestSslVersionId] = Field(default=None, alias="sslVersionId")
58
- target_time: Optional[Annotated[int, Field(le=60, strict=True, ge=0)]] = Field(default=None, description="Target time for completion, defaults to 50% of time limit specified in seconds. (0 means default behavior)", alias="targetTime")
59
- time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds.", alias="timeLimit")
60
- transaction_script: StrictStr = Field(description="JavaScript of a web transaction test. Quotes must be escaped (precede \" characters with \\ ).", alias="transactionScript")
61
61
  url: StrictStr = Field(description="Target for the test.")
62
62
  use_ntlm: Optional[StrictBool] = Field(default=None, description="Set to true to use NTLM, false to use Basic Authentication. Requires username and password to be set.", alias="useNtlm")
63
63
  user_agent: Optional[StrictStr] = Field(default=None, description="User-agent string to be provided during the test.", alias="userAgent")
64
64
  username: Optional[StrictStr] = Field(default=None, description="Username for Basic/NTLM authentication.")
65
65
  verify_certificate: Optional[StrictBool] = Field(default=False, description="Ignore or acknowledge certificate errors. Set to false to ignore certificate errors.", alias="verifyCertificate")
66
66
  allow_unsafe_legacy_renegotiation: Optional[StrictBool] = Field(default=True, description="Allows TLS renegotiation with servers not supporting RFC 5746. Default Set to true to allow unsafe legacy renegotiation.", alias="allowUnsafeLegacyRenegotiation")
67
+ follow_redirects: Optional[StrictBool] = Field(default=True, description="To disable following HTTP/301 or HTTP/302 redirect directives, set this parameter to `false`.", alias="followRedirects")
68
+ fixed_packet_rate: Optional[Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(default=None, description="Sets packets rate sent to measure the network in packets per second.", alias="fixedPacketRate")
69
+ override_agent_proxy: Optional[StrictBool] = Field(default=False, description="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`.", alias="overrideAgentProxy")
70
+ override_proxy_id: Optional[StrictStr] = Field(default=None, description="ID of the proxy to be used if the default proxy is overridden.", alias="overrideProxyId")
71
+ collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
72
+ emulated_device_id: Optional[StrictStr] = Field(default=None, description="ID of the emulated device, if specified when the test was created.", alias="emulatedDeviceId")
73
+ target_time: Optional[Annotated[int, Field(le=60, strict=True, ge=0)]] = Field(default=None, description="Target completion time. The default is 50% of the specified time limit in seconds. (Set to 0 to use the default behavior).", alias="targetTime")
74
+ time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds.", alias="timeLimit")
75
+ transaction_script: StrictStr = Field(description="JavaScript of a web transaction test. Quotes must be escaped (precede \" characters with \\ ).", alias="transactionScript")
67
76
  block_domains: Optional[StrictStr] = Field(default=None, description="Domains or full object URLs to be excluded from metrics and waterfall data for transaction tests.", alias="blockDomains")
68
77
  disable_screenshot: Optional[StrictBool] = Field(default=False, description="Enables or disables screenshots on error. Set true to not capture", alias="disableScreenshot")
69
78
  allow_mic_and_camera: Optional[StrictBool] = Field(default=False, description="Set true allow the use of a fake mic and camera in the browser.", alias="allowMicAndCamera")
70
79
  allow_geolocation: Optional[StrictBool] = Field(default=False, description="Set true to use the agent’s geolocation by the web page.", alias="allowGeolocation")
71
80
  browser_language: Optional[StrictStr] = Field(default=None, description="Set one of the available browser language that you want to use to configure the browser.", alias="browserLanguage")
72
81
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
73
- fixed_packet_rate: Optional[Annotated[int, Field(le=100, strict=True, ge=0)]] = Field(default=None, description="Sets packets rate sent to measure the network in packets per second.", alias="fixedPacketRate")
74
82
  type: Optional[StrictStr] = None
75
- override_agent_proxy: Optional[StrictBool] = Field(default=False, description="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`.", alias="overrideAgentProxy")
76
- override_proxy_id: Optional[StrictStr] = Field(default=None, description="ID of the proxy to be used if the default proxy is overridden.", alias="overrideProxyId")
77
- __properties: ClassVar[List[str]] = ["authType", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "emulatedDeviceId", "followRedirects", "httpTargetTime", "httpTimeLimit", "httpVersion", "includeHeaders", "mtuMeasurements", "networkMeasurements", "numPathTraces", "password", "pathTraceMode", "probeMode", "protocol", "sslVersion", "sslVersionId", "targetTime", "timeLimit", "transactionScript", "url", "useNtlm", "userAgent", "username", "verifyCertificate", "allowUnsafeLegacyRenegotiation", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "fixedPacketRate", "type", "overrideAgentProxy", "overrideProxyId"]
83
+ __properties: ClassVar[List[str]] = ["authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "downloadLimit", "dnsOverride", "httpTargetTime", "httpTimeLimit", "httpVersion", "includeHeaders", "mtuMeasurements", "networkMeasurements", "numPathTraces", "oAuth", "password", "pathTraceMode", "probeMode", "protocol", "sslVersion", "sslVersionId", "url", "useNtlm", "userAgent", "username", "verifyCertificate", "allowUnsafeLegacyRenegotiation", "followRedirects", "fixedPacketRate", "overrideAgentProxy", "overrideProxyId", "collectProxyNetworkData", "emulatedDeviceId", "targetTime", "timeLimit", "transactionScript", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "type"]
78
84
 
79
85
  model_config = ConfigDict(
80
86
  populate_by_name=True,
@@ -120,9 +126,15 @@ class WebTransactionProperties(BaseModel):
120
126
  exclude=excluded_fields,
121
127
  exclude_none=True,
122
128
  )
129
+ # override the default output from pydantic by calling `to_dict()` of agent_interfaces
130
+ if self.agent_interfaces:
131
+ _dict['agentInterfaces'] = self.agent_interfaces.to_dict()
123
132
  # override the default output from pydantic by calling `to_dict()` of custom_headers
124
133
  if self.custom_headers:
125
134
  _dict['customHeaders'] = self.custom_headers.to_dict()
135
+ # override the default output from pydantic by calling `to_dict()` of o_auth
136
+ if self.o_auth:
137
+ _dict['oAuth'] = self.o_auth.to_dict()
126
138
  return _dict
127
139
 
128
140
  @classmethod
@@ -136,13 +148,14 @@ class WebTransactionProperties(BaseModel):
136
148
 
137
149
  _obj = cls.model_validate({
138
150
  "authType": obj.get("authType"),
151
+ "agentInterfaces": AgentInterfaces.from_dict(obj["agentInterfaces"]) if obj.get("agentInterfaces") is not None else None,
139
152
  "bandwidthMeasurements": obj.get("bandwidthMeasurements"),
140
153
  "clientCertificate": obj.get("clientCertificate"),
141
154
  "contentRegex": obj.get("contentRegex"),
142
155
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
143
156
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else '200',
144
- "emulatedDeviceId": obj.get("emulatedDeviceId"),
145
- "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
157
+ "downloadLimit": obj.get("downloadLimit"),
158
+ "dnsOverride": obj.get("dnsOverride"),
146
159
  "httpTargetTime": obj.get("httpTargetTime"),
147
160
  "httpTimeLimit": obj.get("httpTimeLimit") if obj.get("httpTimeLimit") is not None else 5,
148
161
  "httpVersion": obj.get("httpVersion") if obj.get("httpVersion") is not None else 2,
@@ -150,31 +163,35 @@ class WebTransactionProperties(BaseModel):
150
163
  "mtuMeasurements": obj.get("mtuMeasurements"),
151
164
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
152
165
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
166
+ "oAuth": OAuth.from_dict(obj["oAuth"]) if obj.get("oAuth") is not None else None,
153
167
  "password": obj.get("password"),
154
168
  "pathTraceMode": obj.get("pathTraceMode"),
155
169
  "probeMode": obj.get("probeMode"),
156
170
  "protocol": obj.get("protocol"),
157
171
  "sslVersion": obj.get("sslVersion"),
158
172
  "sslVersionId": obj.get("sslVersionId"),
159
- "targetTime": obj.get("targetTime"),
160
- "timeLimit": obj.get("timeLimit") if obj.get("timeLimit") is not None else 30,
161
- "transactionScript": obj.get("transactionScript"),
162
173
  "url": obj.get("url"),
163
174
  "useNtlm": obj.get("useNtlm"),
164
175
  "userAgent": obj.get("userAgent"),
165
176
  "username": obj.get("username"),
166
177
  "verifyCertificate": obj.get("verifyCertificate") if obj.get("verifyCertificate") is not None else False,
167
178
  "allowUnsafeLegacyRenegotiation": obj.get("allowUnsafeLegacyRenegotiation") if obj.get("allowUnsafeLegacyRenegotiation") is not None else True,
179
+ "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
180
+ "fixedPacketRate": obj.get("fixedPacketRate"),
181
+ "overrideAgentProxy": obj.get("overrideAgentProxy") if obj.get("overrideAgentProxy") is not None else False,
182
+ "overrideProxyId": obj.get("overrideProxyId"),
183
+ "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
184
+ "emulatedDeviceId": obj.get("emulatedDeviceId"),
185
+ "targetTime": obj.get("targetTime"),
186
+ "timeLimit": obj.get("timeLimit") if obj.get("timeLimit") is not None else 30,
187
+ "transactionScript": obj.get("transactionScript"),
168
188
  "blockDomains": obj.get("blockDomains"),
169
189
  "disableScreenshot": obj.get("disableScreenshot") if obj.get("disableScreenshot") is not None else False,
170
190
  "allowMicAndCamera": obj.get("allowMicAndCamera") if obj.get("allowMicAndCamera") is not None else False,
171
191
  "allowGeolocation": obj.get("allowGeolocation") if obj.get("allowGeolocation") is not None else False,
172
192
  "browserLanguage": obj.get("browserLanguage"),
173
193
  "pageLoadingStrategy": obj.get("pageLoadingStrategy"),
174
- "fixedPacketRate": obj.get("fixedPacketRate"),
175
- "type": obj.get("type"),
176
- "overrideAgentProxy": obj.get("overrideAgentProxy") if obj.get("overrideAgentProxy") is not None else False,
177
- "overrideProxyId": obj.get("overrideProxyId")
194
+ "type": obj.get("type")
178
195
  })
179
196
  return _obj
180
197
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: thousandeyes-sdk-instant-tests
3
- Version: 1.0.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.8
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)
@@ -357,15 +358,18 @@ Class | Method | HTTP request | Description
357
358
  - [FtpServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerInstantTest.md)
358
359
  - [FtpServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerProperties.md)
359
360
  - [FtpServerRequestType](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/FtpServerRequestType.md)
361
+ - [HttpServerBaseProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerBaseProperties.md)
360
362
  - [HttpServerInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerInstantTest.md)
361
363
  - [HttpServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerInstantTestRequest.md)
362
364
  - [HttpServerProperties](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/HttpServerProperties.md)
363
365
  - [InstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTest.md)
364
366
  - [InstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/InstantTestRequest.md)
365
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)
366
369
  - [PageLoadInstantTest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTest.md)
367
370
  - [PageLoadInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/PageLoadInstantTestRequest.md)
368
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)
369
373
  - [ServerInstantTestRequest](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/ServerInstantTestRequest.md)
370
374
  - [SharedWithAccount](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SharedWithAccount.md)
371
375
  - [SimpleAgent](https://github.com/thousandeyes/thousandeyes-sdk-python//tree/main/thousandeyes-sdk-instant-tests/docs/SimpleAgent.md)
@@ -0,0 +1,111 @@
1
+ thousandeyes_sdk/instant_tests/__init__.py,sha256=9e8RoNX2_e0ewgAMjBNer_ZJkB48zb6AMhnoAiws1JU,9654
2
+ thousandeyes_sdk/instant_tests/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ thousandeyes_sdk/instant_tests/api/__init__.py,sha256=BHWPGYqgX2bmP_t6XijIw9TEdQt5w0XkfvWJ45D2XAE,1025
4
+ thousandeyes_sdk/instant_tests/api/agent_to_agent_api.py,sha256=Yvpbyvf-LJD4NEooHsafxsPtGY6KyYPvhlAy9L_-cBc,17794
5
+ thousandeyes_sdk/instant_tests/api/agent_to_server_api.py,sha256=RLBkVtqdseIFXF0SvMtsTY0E9sdgFmDz_Oiugh9RAa4,17842
6
+ thousandeyes_sdk/instant_tests/api/api_api.py,sha256=lHgdqmDQ-JXtfF1v5b6nqWZUJHLch6NTa9ZF-5kFdJk,17294
7
+ thousandeyes_sdk/instant_tests/api/dns_security_api.py,sha256=dmtC3CszfYtfQWEToFX24JhU96dnLKHjrIeaMgcLZLM,17506
8
+ thousandeyes_sdk/instant_tests/api/dns_server_api.py,sha256=gsCUFj1FNSJeZ1JtddeuMV8YQDdiDoII14o6WrD26wM,17616
9
+ thousandeyes_sdk/instant_tests/api/dns_trace_api.py,sha256=IKrL-ovJCJCao8Wf4xeLE4H44Nt4LTmITQyuKL397vs,17568
10
+ thousandeyes_sdk/instant_tests/api/ftp_server_api.py,sha256=Qp5QDgqDrFgFUXWACI8KocwuDrpWsIEV__VH_dF5E-U,17519
11
+ thousandeyes_sdk/instant_tests/api/http_page_load_api.py,sha256=--ZaM_FIkD93tVQLSdN6RT6omhYW-nyNE2kFb6t_dic,17602
12
+ thousandeyes_sdk/instant_tests/api/http_server_api.py,sha256=-jvih5LhP_WEoOcrt_a-HQUfsGAjPnKY09zJsuz2GiA,17664
13
+ thousandeyes_sdk/instant_tests/api/run_api.py,sha256=EMpu2DbNSl42NF99JNnGBqX9k50YrnWmRmYTH1pzu8M,14653
14
+ thousandeyes_sdk/instant_tests/api/sip_server_api.py,sha256=1RrVyK_saV2tPjo4XzHhMN371QlMiigJDpYtl9wbUWk,17673
15
+ thousandeyes_sdk/instant_tests/api/voice_api.py,sha256=GNVspIO0CXcZJ6WUHxLA1oNMvTV866G9a09eO1E2gUE,17378
16
+ thousandeyes_sdk/instant_tests/api/web_transaction_api.py,sha256=JN5oIrYb_JNEVydd-o-mOjLy0aaNykWjR4VhwMffDeM,17863
17
+ thousandeyes_sdk/instant_tests/models/__init__.py,sha256=jjXYBiKjqRuMoTdiAFqUpUdaaDy2-3NhUPT9H5tU8_o,8645
18
+ thousandeyes_sdk/instant_tests/models/agent.py,sha256=bNFoSgLqRRRzMZGj1ykok0CCuSAhmzGkCnycCyYEcg8,5578
19
+ thousandeyes_sdk/instant_tests/models/agent_base.py,sha256=TwZy94gt1zbHw5ICBmnzgyyRPk3BvSEQ06Oo0Rl1weo,3640
20
+ thousandeyes_sdk/instant_tests/models/agent_interfaces.py,sha256=JSkPq5cc_hO-zdBCRG-QFYV0tleu1RsMM3l6ueDIM9s,3208
21
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test.py,sha256=8tFM9dXq5QoIy8HXj4JlHmvd9cz6hEIpo8hKVy_IkW0,11184
22
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py,sha256=tGZUG7QYtEU7Np9onyPVOd8NwNAHP1tzf7PV_PQ_qx0,10252
23
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py,sha256=1of7O801odYE4QM8lUNi3NFKc0aUbZy7D8RoZkHmFcM,6297
24
+ thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py,sha256=K88F-7QWVayZn0l5BgS9dkoXuCZ7bCAkqNeAQj0-qfI,1102
25
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py,sha256=kZ5Emlz3XZNaBkjHbQJCf1gTlEAkphVlk5Q2JJcVVLo,12091
26
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sha256=z5U6FvgWuHYqHsoIwu6dZzC4NFMRt77702d41E0US3g,11159
27
+ thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py,sha256=gO6QIAgMyZlMpmH8LwVzE80QY3pnO4jn7R8jy2FF5uQ,7204
28
+ thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=0AgHo7wgoo2MWJW5Dk2tMqT1QQJS2KRP8GKm4DNyHgs,12344
29
+ thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=DfL5rziT947-O8XgJ7LEd7qk89hjqtZbCkeQBtRT8wc,11412
30
+ thousandeyes_sdk/instant_tests/models/api_predefined_variable.py,sha256=DjKv7aBuanLMaGh2rDhy6dpUvY9U8gvlkrbeEiWyc0I,3154
31
+ thousandeyes_sdk/instant_tests/models/api_properties.py,sha256=q3ROJ1H8ON7_-XBlTMw2AcVMFYOaETzb6rcm9X2iOH8,7226
32
+ thousandeyes_sdk/instant_tests/models/api_request.py,sha256=cQ_4KcHLDGn3-cukBCS-7_oEANPlDQhneZnAKb81ssc,6846
33
+ thousandeyes_sdk/instant_tests/models/api_request_assertion.py,sha256=FGKnmdkzet6UGLhtoq7MD9ggjhD5Ls5kxRFZ0oy78wU,3517
34
+ thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py,sha256=BbxON6CCsGBj5gKoxN9vioC1Q3cWzMywsHOCtFPKBwI,1313
35
+ thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py,sha256=8-BBCGoVpDd0R5H1vgaO-9I7wS8BYP5Of6DYz85dTiU,1294
36
+ thousandeyes_sdk/instant_tests/models/api_request_auth_type.py,sha256=BCigqa0kC5BaUmQzlbP9HWoeL5nOpT-QRA9q43MEaIo,1159
37
+ thousandeyes_sdk/instant_tests/models/api_request_header.py,sha256=lcYv2sQEZSQmY_fWRVvGoE_MSzFiHxIjXvmk_Qz7L9Q,3137
38
+ thousandeyes_sdk/instant_tests/models/api_request_method.py,sha256=jGwxrKNoGpw6PSvfxUd8wvri0MKxb7BwDOaJFzboxbc,1142
39
+ thousandeyes_sdk/instant_tests/models/api_request_variable.py,sha256=WM_MDvEmvIzxRS_NUim5rTzeeWpTVbpnKTywMQf6FQw,3157
40
+ thousandeyes_sdk/instant_tests/models/cloud_enterprise_agent_type.py,sha256=iJjiFl3_x4xLvcy83DTmIQ5qk-EQr6Wc1UCtAg11WE8,1166
41
+ thousandeyes_sdk/instant_tests/models/dns_query_class.py,sha256=OSVHWQtlL7_QF7H6j6vMfz84aZmTpvuYZqHmmPFLL_Q,1138
42
+ thousandeyes_sdk/instant_tests/models/dns_sec_instant_test.py,sha256=M2P6B-FTMuqipgqaLiVxOxHOQ45BhX4I3C2b2liSoDg,8352
43
+ thousandeyes_sdk/instant_tests/models/dns_sec_instant_test_request.py,sha256=dNdGv3yyzFl3PIIMt4Wo2sIFsrZ5nvjQ--F6-Lut11Q,7420
44
+ thousandeyes_sdk/instant_tests/models/dns_sec_properties.py,sha256=Cb6wTYP9-DeB8LUcpDUTwFPD5AMCIw4yiPkBRiGTepI,3453
45
+ thousandeyes_sdk/instant_tests/models/dns_server_instant_test.py,sha256=A1hJc5YKD757z_FMVPttOHx6sa83Ol4mob2Bc_AVWRA,11991
46
+ thousandeyes_sdk/instant_tests/models/dns_server_instant_test_request.py,sha256=_dRwCHkaKqUShf5BhR6ILmkmwgEnOI_zuUmscEp3MaU,10608
47
+ thousandeyes_sdk/instant_tests/models/dns_server_properties.py,sha256=FzD8gYPcM2FKsV64lgJe0tp83hrnE4WWA9AHs0MNRvo,7104
48
+ thousandeyes_sdk/instant_tests/models/dns_servers_request.py,sha256=odDwakI0hjENfh6WCj4QRK49eQgRt-XS56P61p5ol2U,3026
49
+ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test.py,sha256=9Kl3annn_FBakrLgH3WjhlB7Ik5-wQIN9EoWVZ075_0,8671
50
+ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_request.py,sha256=LH7wW7jYGl76cSnKp9S004i_Kt5D78y8WY7AmxnyUe4,7739
51
+ thousandeyes_sdk/instant_tests/models/dns_trace_properties.py,sha256=2jn4eTh8DiQ-Qjk3l5XqjoEWt0Qe0D22NuR87HZmi6w,3772
52
+ thousandeyes_sdk/instant_tests/models/error.py,sha256=dSCJ64XReD2_rrm5-Sw08N5kKyZSVAEMBe9svC_ongs,3808
53
+ thousandeyes_sdk/instant_tests/models/expand.py,sha256=kkz1rugzox5eLzLSauXE1KP4PE1oh1I1lYzhZPtDDac,1116
54
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py,sha256=MRMXcq-BarpcYgU5cXZq69V8DIP10fH7-UjdFEG-LxY,12343
55
+ thousandeyes_sdk/instant_tests/models/ftp_server_properties.py,sha256=hvtKNXChl-hpY7fSFOGjwBIKZiOQyrCQMsSRQme6ndQ,7456
56
+ thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py,sha256=st5p9FiH7k8u5DUQVrgV59KAnT7C01pdQ_mS5cJjHYg,1142
57
+ thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=lEfu6jXZJPXTiys6SLn3qyViZy3bZC_oG7tNQR63x5A,12847
58
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=i2HTK0T49FXkNlkiboTB4eOqOi-Sgl71Q85RZZfNC4k,18562
59
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py,sha256=ttY7esvCeo23xKPJYUkNxfwKHkXfQAXfZU_yEO29vwo,17630
60
+ thousandeyes_sdk/instant_tests/models/http_server_properties.py,sha256=jU_RdeUJS4ggZQEFL8Aq1TZqpjWAYKuSAliaDESJsD0,13675
61
+ thousandeyes_sdk/instant_tests/models/instant_test.py,sha256=yhYy09PgMLfAvzSF7sbMvwuWXqjAdy42ostnHmqQ7e8,7198
62
+ thousandeyes_sdk/instant_tests/models/instant_test_request.py,sha256=aGqETXMWm3kkd43nOQ4XrTca9AccNR8GKnldTara_qA,3987
63
+ thousandeyes_sdk/instant_tests/models/link.py,sha256=2hmRCbHZkwLOPBu3-y5Bj7OLYpeB4361Hwh8fc-ST5c,4456
64
+ thousandeyes_sdk/instant_tests/models/o_auth.py,sha256=46LOSE-ato4WyCOh548XU8jSRJSli8OIRZKzcWe9Fyw,4476
65
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test.py,sha256=WAE3aGTFBY-t74ejLeqUy37pXvF4EsgRcpc5iuFvcx8,20552
66
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py,sha256=IUcmjxDKynTBFGzATrOZfbcXj9ol6eXOYxFkHzRa66c,19620
67
+ thousandeyes_sdk/instant_tests/models/page_load_properties.py,sha256=LsiAXrf-pvnZKx91PCiIjssN2_8FIuC4G6vS9QxIkdA,15665
68
+ thousandeyes_sdk/instant_tests/models/request_method.py,sha256=tIyqguqNBreAMo824y364890no8Ef-PljbCF8NT3Q_w,1180
69
+ thousandeyes_sdk/instant_tests/models/server_instant_test_request.py,sha256=X_YXiDAwjusescPAWIkt3PxFhOGxYx9xFqKqtqz9Mlk,11399
70
+ thousandeyes_sdk/instant_tests/models/shared_with_account.py,sha256=Wtb7Cuwgs528AVHMOGCEou-BsmZLUXh1Lx8TQKTQqJM,3094
71
+ thousandeyes_sdk/instant_tests/models/simple_agent.py,sha256=XeMAzC43N9LQSsyBdqlLCzgTvEKkYjYclT-5-LVBBD8,5371
72
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test.py,sha256=U3FonIqupemxR_bRxOeq8yzPeAdhayqK46C36_6zvv8,10935
73
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request.py,sha256=YdXj7JXX0ETII1D7xWcO_RG02415EFK5qLlxdyKt7CI,10577
74
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test_request1.py,sha256=fAKR2aunrMIl_xWL3GKNcUdEbahUsGydlcVtBU4XMvI,11541
75
+ thousandeyes_sdk/instant_tests/models/sip_server_instant_test_response.py,sha256=Ie4kAVaw2MsntCEYwobkkeHa0hpzADLTzlutmdWPocs,12128
76
+ thousandeyes_sdk/instant_tests/models/sip_server_properties.py,sha256=HaoA9ggs2Lw9n-mdMBfZXfBgNrP_qr5z5TCmAJTOhNs,6048
77
+ thousandeyes_sdk/instant_tests/models/sip_test_protocol.py,sha256=g35v1WpOMKEAQUkb6LP5RqOXave2stW_wi8QUc0ZSzY,1114
78
+ thousandeyes_sdk/instant_tests/models/test_agent.py,sha256=tL8Cx9DvIUSuUP0a4EUS078xpkXyw_QSo8H39_YM1uc,3318
79
+ thousandeyes_sdk/instant_tests/models/test_auth_type.py,sha256=oaaAdiMhI_cya4QOxx54ZdqVGMNg_bfAuO_OdVZvByI,1149
80
+ thousandeyes_sdk/instant_tests/models/test_custom_headers.py,sha256=OqU6LqWwmxADAJ86ldhDGBqrx64WNtc_Kpj3fQySV5Y,3362
81
+ thousandeyes_sdk/instant_tests/models/test_direction.py,sha256=gkQ4QSFzkg3XpI1EyjcTsxzeOS5bM-AXZD0cUscM4Z0,1191
82
+ thousandeyes_sdk/instant_tests/models/test_dns_server.py,sha256=JHWZURWOKIxUt5IBZLYcDZe5uVJRig1JCgWUpR94fmM,3211
83
+ thousandeyes_sdk/instant_tests/models/test_dns_transport_protocol.py,sha256=PXU1N17KRQSEPLWg4SWRuHvvfErPafoCQsqeop1BahM,1119
84
+ thousandeyes_sdk/instant_tests/models/test_dscp_id.py,sha256=a3H-v_E16d8ElOLxIZnjM66O5Gbk9oUkiyocQg-pcT8,1564
85
+ thousandeyes_sdk/instant_tests/models/test_ipv6_policy.py,sha256=bT_d_BqKO4Z-GnMDAN9DYtkrnqJ9BCQWgrvF4q3xiHc,1265
86
+ thousandeyes_sdk/instant_tests/models/test_label.py,sha256=8jaCl5EUom2a5Oqm9JzaXEt61SUCWLISzFCeZH-2AHM,3356
87
+ thousandeyes_sdk/instant_tests/models/test_links.py,sha256=gPB1IZAz3n0f-b07-gQK0RQ516TSVjCWncfnroSjaYw,3925
88
+ thousandeyes_sdk/instant_tests/models/test_page_loading_strategy.py,sha256=rT1j_xR5vtbDGmoVcsOnd1IopSOHSlgROyCnLxZPM4E,1766
89
+ thousandeyes_sdk/instant_tests/models/test_path_trace_mode.py,sha256=z5I5WAiP1rt1SnIw5su9-McymaoRv55cTTRVSMrbNlI,1158
90
+ thousandeyes_sdk/instant_tests/models/test_probe_mode.py,sha256=albQhUNR3jL7cSZ-_L4Qs10zCDEZn4pRN8eamocnP0s,1152
91
+ thousandeyes_sdk/instant_tests/models/test_protocol.py,sha256=OTrgsgg0OqpPngxW5nTSG947tHuqg9LbNE7W9x4hx4k,1145
92
+ thousandeyes_sdk/instant_tests/models/test_self_link.py,sha256=TCJ__6i0g14wv9Mk6UR6to8kLzz7QYOn85K6IKnfMR8,4442
93
+ thousandeyes_sdk/instant_tests/models/test_sip_credentials.py,sha256=s1EAy1r6V1pjhutAbMjGQiJPO-6p_L6GA_UM4HlahcM,4041
94
+ thousandeyes_sdk/instant_tests/models/test_ssl_version_id.py,sha256=ftrnKTJn9WdSGA4EqOzQ88IBSRvlqjXvbVQVNVZVWEE,1265
95
+ thousandeyes_sdk/instant_tests/models/test_type.py,sha256=tQOWKvJhGqJATreiXtMHNYIZlzoVCfYWhPiVLVvaKUc,1529
96
+ thousandeyes_sdk/instant_tests/models/unauthorized_error.py,sha256=BLHHB30Wq8fbpQzYJFN5szxutx-DX-q_1TIYyAFkEFs,3049
97
+ thousandeyes_sdk/instant_tests/models/unexpanded_instant_test.py,sha256=inWf48-N91NL-pknoFHLqD92ufp0Yynnbgua7louD2U,5790
98
+ thousandeyes_sdk/instant_tests/models/validation_error.py,sha256=b0d0fCszj1No1HrXvGnKgpkkQALNA4jr6Umy8I0MUKM,4753
99
+ thousandeyes_sdk/instant_tests/models/validation_error_item.py,sha256=jUZ2GlDE6L1o5Vu10__X7AfD_3_zG2POpMwddw9tw80,3421
100
+ thousandeyes_sdk/instant_tests/models/voice_instant_test.py,sha256=Qygknsaui3W3GYy_kl7fcx50erhN07IJyatfZK2ZYdk,10052
101
+ thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py,sha256=nOfx9RNVN0VGwl_2kcCMp9Yi-S0ztfvibppd62UOkP8,9120
102
+ thousandeyes_sdk/instant_tests/models/voice_properties.py,sha256=WmmELQDBJJ4AG3a2rqSe2Q8PP6BCUnckWho38jEpzdg,5153
103
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=OYJt5Yz9AT1EWgI17apIIC74qIuQtQV4OKNG5RTstpA,20972
104
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=Nu_mzxyB3AeIES-vHFv4QMSXD9ZxHxWcj8dRmXH3pbg,20040
105
+ thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=UU55hxkvmvI7uTqsSjjGI4hRQunye_ijseYedsL1tRU,15854
106
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
107
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/METADATA,sha256=1K2Ivv7zipT-apLd56aL5ZLoN4vsMqUTKcHLtayouiQ,33352
108
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
109
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/WHEEL,sha256=R0nc6qTxuoLk7ShA2_Y-UWkN8ZdfDBG2B6Eqpz2WXbs,91
110
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
111
+ thousandeyes_sdk_instant_tests-1.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.3.0)
2
+ Generator: setuptools (72.1.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5