thousandeyes-sdk-instant-tests 2.9.0__py3-none-any.whl → 2.10.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.
@@ -54,17 +54,16 @@ class AgentToServerInstantTest(BaseModel):
54
54
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
55
55
  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")
56
56
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
57
- port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(default=49153, description="Target port.")
58
57
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
59
58
  protocol: Optional[TestProtocol] = None
60
59
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
61
- server: StrictStr = Field(description="Target name or IP address.")
60
+ server: StrictStr = Field(description="The target name or IP address. If a port is set for the test, it is appended to the target name or IP address using a colon.")
62
61
  dscp: Optional[StrictStr] = Field(default=None, description="DSCP label.")
63
62
  dscp_id: Optional[TestDscpId] = Field(default=None, alias="dscpId")
64
63
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
65
64
  ping_payload_size: Optional[Annotated[int, Field(le=1400, strict=True, ge=0)]] = Field(default=None, description="Payload size (not total packet size) for the end-to-end metric's probes, ping payload size allows values from 0 to 1400 bytes. When set to null, payload sizes are 0 bytes for ICMP-based tests and 1 byte for TCP-based tests.", alias="pingPayloadSize")
66
65
  network_measurements: Optional[StrictBool] = Field(default=False, description="View packet loss in 1-second intervals. This is only available for 1-minute interval tests. Set to `true` to enable network measurements.", alias="networkMeasurements")
67
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "port", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements"]
66
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements"]
68
67
 
69
68
  model_config = ConfigDict(
70
69
  populate_by_name=True,
@@ -176,7 +175,6 @@ class AgentToServerInstantTest(BaseModel):
176
175
  "mtuMeasurements": obj.get("mtuMeasurements"),
177
176
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
178
177
  "pathTraceMode": obj.get("pathTraceMode"),
179
- "port": obj.get("port") if obj.get("port") is not None else 49153,
180
178
  "probeMode": obj.get("probeMode"),
181
179
  "protocol": obj.get("protocol"),
182
180
  "randomizedStartTime": obj.get("randomizedStartTime") if obj.get("randomizedStartTime") is not None else False,
@@ -53,18 +53,17 @@ class AgentToServerInstantTestRequest(BaseModel):
53
53
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
54
54
  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")
55
55
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
56
- port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(default=49153, description="Target port.")
57
56
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
58
57
  protocol: Optional[TestProtocol] = None
59
58
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
60
- server: StrictStr = Field(description="Target name or IP address.")
59
+ server: StrictStr = Field(description="The target name or IP address. If a port is set for the test, it is appended to the target name or IP address using a colon.")
61
60
  dscp: Optional[StrictStr] = Field(default=None, description="DSCP label.")
62
61
  dscp_id: Optional[TestDscpId] = Field(default=None, alias="dscpId")
63
62
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
64
63
  ping_payload_size: Optional[Annotated[int, Field(le=1400, strict=True, ge=0)]] = Field(default=None, description="Payload size (not total packet size) for the end-to-end metric's probes, ping payload size allows values from 0 to 1400 bytes. When set to null, payload sizes are 0 bytes for ICMP-based tests and 1 byte for TCP-based tests.", alias="pingPayloadSize")
65
64
  network_measurements: Optional[StrictBool] = Field(default=False, description="View packet loss in 1-second intervals. This is only available for 1-minute interval tests. Set to `true` to enable network measurements.", alias="networkMeasurements")
66
65
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
67
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "port", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "agents"]
66
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "agents"]
68
67
 
69
68
  model_config = ConfigDict(
70
69
  populate_by_name=True,
@@ -165,7 +164,6 @@ class AgentToServerInstantTestRequest(BaseModel):
165
164
  "mtuMeasurements": obj.get("mtuMeasurements"),
166
165
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
167
166
  "pathTraceMode": obj.get("pathTraceMode"),
168
- "port": obj.get("port") if obj.get("port") is not None else 49153,
169
167
  "probeMode": obj.get("probeMode"),
170
168
  "protocol": obj.get("protocol"),
171
169
  "randomizedStartTime": obj.get("randomizedStartTime") if obj.get("randomizedStartTime") is not None else False,
@@ -55,18 +55,17 @@ class AgentToServerInstantTestResponse(BaseModel):
55
55
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
56
56
  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")
57
57
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
58
- port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(default=49153, description="Target port.")
59
58
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
60
59
  protocol: Optional[TestProtocol] = None
61
60
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
62
- server: StrictStr = Field(description="Target name or IP address.")
61
+ server: StrictStr = Field(description="The target name or IP address. If a port is set for the test, it is appended to the target name or IP address using a colon.")
63
62
  dscp: Optional[StrictStr] = Field(default=None, description="DSCP label.")
64
63
  dscp_id: Optional[TestDscpId] = Field(default=None, alias="dscpId")
65
64
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
66
65
  ping_payload_size: Optional[Annotated[int, Field(le=1400, strict=True, ge=0)]] = Field(default=None, description="Payload size (not total packet size) for the end-to-end metric's probes, ping payload size allows values from 0 to 1400 bytes. When set to null, payload sizes are 0 bytes for ICMP-based tests and 1 byte for TCP-based tests.", alias="pingPayloadSize")
67
66
  network_measurements: Optional[StrictBool] = Field(default=False, description="View packet loss in 1-second intervals. This is only available for 1-minute interval tests. Set to `true` to enable network measurements.", alias="networkMeasurements")
68
67
  agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
69
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "port", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "agents"]
68
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "agents"]
70
69
 
71
70
  model_config = ConfigDict(
72
71
  populate_by_name=True,
@@ -185,7 +184,6 @@ class AgentToServerInstantTestResponse(BaseModel):
185
184
  "mtuMeasurements": obj.get("mtuMeasurements"),
186
185
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
187
186
  "pathTraceMode": obj.get("pathTraceMode"),
188
- "port": obj.get("port") if obj.get("port") is not None else 49153,
189
187
  "probeMode": obj.get("probeMode"),
190
188
  "protocol": obj.get("protocol"),
191
189
  "randomizedStartTime": obj.get("randomizedStartTime") if obj.get("randomizedStartTime") is not None else False,
@@ -37,18 +37,17 @@ class AgentToServerProperties(BaseModel):
37
37
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
38
38
  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")
39
39
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
40
- port: Optional[Annotated[int, Field(le=65535, strict=True, ge=1)]] = Field(default=49153, description="Target port.")
41
40
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
42
41
  protocol: Optional[TestProtocol] = None
43
42
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
44
- server: StrictStr = Field(description="Target name or IP address.")
43
+ server: StrictStr = Field(description="The target name or IP address. If a port is set for the test, it is appended to the target name or IP address using a colon.")
45
44
  dscp: Optional[StrictStr] = Field(default=None, description="DSCP label.")
46
45
  dscp_id: Optional[TestDscpId] = Field(default=None, alias="dscpId")
47
46
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
48
47
  ping_payload_size: Optional[Annotated[int, Field(le=1400, strict=True, ge=0)]] = Field(default=None, description="Payload size (not total packet size) for the end-to-end metric's probes, ping payload size allows values from 0 to 1400 bytes. When set to null, payload sizes are 0 bytes for ICMP-based tests and 1 byte for TCP-based tests.", alias="pingPayloadSize")
49
48
  network_measurements: Optional[StrictBool] = Field(default=False, description="View packet loss in 1-second intervals. This is only available for 1-minute interval tests. Set to `true` to enable network measurements.", alias="networkMeasurements")
50
49
  type: Optional[StrictStr] = None
51
- __properties: ClassVar[List[str]] = ["bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "port", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "type"]
50
+ __properties: ClassVar[List[str]] = ["bandwidthMeasurements", "continuousMode", "fixedPacketRate", "mtuMeasurements", "numPathTraces", "pathTraceMode", "probeMode", "protocol", "randomizedStartTime", "server", "dscp", "dscpId", "ipv6Policy", "pingPayloadSize", "networkMeasurements", "type"]
52
51
 
53
52
  model_config = ConfigDict(
54
53
  populate_by_name=True,
@@ -112,7 +111,6 @@ class AgentToServerProperties(BaseModel):
112
111
  "mtuMeasurements": obj.get("mtuMeasurements"),
113
112
  "numPathTraces": obj.get("numPathTraces") if obj.get("numPathTraces") is not None else 3,
114
113
  "pathTraceMode": obj.get("pathTraceMode"),
115
- "port": obj.get("port") if obj.get("port") is not None else 49153,
116
114
  "probeMode": obj.get("probeMode"),
117
115
  "protocol": obj.get("protocol"),
118
116
  "randomizedStartTime": obj.get("randomizedStartTime") if obj.get("randomizedStartTime") is not None else False,
@@ -55,7 +55,7 @@ class FtpServerInstantTest(BaseModel):
55
55
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
56
56
  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")
57
57
  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")
58
- password: StrictStr = Field(description="Password for Basic/NTLM authentication.")
58
+ password: Optional[StrictStr] = Field(default=None, description="Password for Basic/NTLM authentication.")
59
59
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
60
60
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
61
61
  protocol: Optional[TestProtocol] = None
@@ -56,7 +56,7 @@ class FtpServerInstantTestResponse(BaseModel):
56
56
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
57
57
  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")
58
58
  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")
59
- password: StrictStr = Field(description="Password for Basic/NTLM authentication.")
59
+ password: Optional[StrictStr] = Field(default=None, description="Password for Basic/NTLM authentication.")
60
60
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
61
61
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
62
62
  protocol: Optional[TestProtocol] = None
@@ -38,7 +38,7 @@ class FtpServerProperties(BaseModel):
38
38
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
39
39
  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")
40
40
  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")
41
- password: StrictStr = Field(description="Password for Basic/NTLM authentication.")
41
+ password: Optional[StrictStr] = Field(default=None, description="Password for Basic/NTLM authentication.")
42
42
  path_trace_mode: Optional[TestPathTraceMode] = Field(default=None, alias="pathTraceMode")
43
43
  probe_mode: Optional[TestProbeMode] = Field(default=None, alias="probeMode")
44
44
  protocol: Optional[TestProtocol] = None
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thousandeyes-sdk-instant-tests
3
- Version: 2.9.0
3
+ Version: 2.10.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
@@ -208,7 +208,7 @@ The response does not include the immediate test results. Use the Test Results e
208
208
 
209
209
  This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
210
210
 
211
- - API version: 7.0.41
211
+ - API version: 7.0.42
212
212
  - Generator version: 7.6.0
213
213
  - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
214
214
 
@@ -23,10 +23,10 @@ thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_request.py,sha
23
23
  thousandeyes_sdk/instant_tests/models/agent_to_agent_instant_test_response.py,sha256=WccZCInGnbwXMnuJAi9ohjh2Ws6cflyGL5pBqtXpWDo,11688
24
24
  thousandeyes_sdk/instant_tests/models/agent_to_agent_properties.py,sha256=Qp4sGwxdYqgU9htHY9P_hTKnx80vBLn0yupTOxwTe2o,6572
25
25
  thousandeyes_sdk/instant_tests/models/agent_to_agent_test_protocol.py,sha256=b2aMqA0WrRmwpGQoSWm6993Pz8qPOatrww9Xnq82J1c,1173
26
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py,sha256=X77jK2Lz6FQoplCXvfMff9R_E7D2by-y-g2yQrScPrE,11943
27
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sha256=OWfigs_FIb5CdqOHI9QyXc5usA1ieyKlwMqkhj9mncE,11556
28
- thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py,sha256=mjcdZ2w0atsevLrpDBBl6Ut8dgJ2hdNSLKcKC7s9I_E,12595
29
- thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py,sha256=TKGzHVS5ynYYA_bjtcuwNpWpL87ozJwVYYqnIfFypRk,7479
26
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test.py,sha256=BYKnPYBSwO5h5A-foCxuOL-LloAvybUPUZB2DUqnG-o,11832
27
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sha256=RQdgTktFYow5QnpXVMMlTdXdlPBCnXG5Esamz7KJ57M,11445
28
+ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py,sha256=GaW-Y2OAhlg8BSYfXQh2viZ6T3kRcTCWUN8QXSMN7pw,12484
29
+ thousandeyes_sdk/instant_tests/models/agent_to_server_properties.py,sha256=b5bzS_1RJ_YbE17eVR3zSufmBHnHBTGEAbdnXAA2wp0,7368
30
30
  thousandeyes_sdk/instant_tests/models/api_client_authentication.py,sha256=0UThkiEam4faNgTLvG8MBgWBI4peR4Hs7sJzfUu2a8E,1248
31
31
  thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=FCH3_1nXTL4VAIYyVCzbusz0Q4ebmPTxC7_e6ncR14w,13215
32
32
  thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=gTT4jnwjtT3ZPo7Af9QF7DXyG_TNrPcvdKkRfk-SICs,12828
@@ -58,10 +58,10 @@ thousandeyes_sdk/instant_tests/models/dns_trace_instant_test_response.py,sha256=
58
58
  thousandeyes_sdk/instant_tests/models/dns_trace_properties.py,sha256=ObXgMASaQIKdzGblFGrVnO87XlXDAAtACg3QSrT6NQ4,4059
59
59
  thousandeyes_sdk/instant_tests/models/error.py,sha256=ScBOttheCTjWf4DsDJMI03kRwCojAOMT7gUjxYUxl5I,3744
60
60
  thousandeyes_sdk/instant_tests/models/expand_instant_test_options.py,sha256=VImSDM5y13sppTUUSuhegsy8GMU7KgGdSi834k_pl9k,1241
61
- thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py,sha256=vKfxsOCR3pbVvROUlluBEdA6G8muH1XfXqTeUJfAnXE,12195
61
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test.py,sha256=S_p8jTMNO556gbVs4hbnU-FDbzn6dxcrdUX4hfsHz6g,12219
62
62
  thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_request.py,sha256=Jl-o5Z8I9QHT-MklxbPm0SeOQRd2hyni_RWjApJH6_Y,11808
63
- thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py,sha256=q2XPdI9Gpu31HqxLWP_VTRkgvsNCf2Td72jVAhs8iLE,12847
64
- thousandeyes_sdk/instant_tests/models/ftp_server_properties.py,sha256=Qkm0bbwuxQkTOTvwtWlQpArchNmNYIEO8IrSuaNFxaU,7731
63
+ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py,sha256=0zRAHmOTirMX1SwaRluBgC4cAPlqlSGnh_JSyBaqdcw,12871
64
+ thousandeyes_sdk/instant_tests/models/ftp_server_properties.py,sha256=QmDyxNjwaeQkXn4FWmoVZSoWkWDFYtj02cl8rvnF76k,7755
65
65
  thousandeyes_sdk/instant_tests/models/ftp_server_request_type.py,sha256=4KNMPK0gUywvdme_KhQGOwxJPf9Ubs_X8AJpa_L95Qw,1213
66
66
  thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=Sr_vI_y9rUhrjo9a_FR45M0Z0npBSg6mS5zxJmvnr3E,12845
67
67
  thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=bbCmX_nLLO0-6nr6ogGqP5T6PPPrkVi69J3IWFt2eGE,18476
@@ -114,9 +114,9 @@ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=xMk
114
114
  thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=YQwpLjdjgFvEmaESynfP9b-kFKBQ5VzZup0O338Kolo,20499
115
115
  thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py,sha256=diVHbLk-6qsRxl9zBW0tZV-Qwr908u-kXXFX3N6ok1Y,21538
116
116
  thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=85iIMb2zv4ocsu6Kul_DbBtwgYChchZbULRpHuPeBbQ,16191
117
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/licenses/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
118
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/licenses/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
119
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/METADATA,sha256=gRAgPVeAK5qTYyxvq74nVOx6R2rWdx_k2Hs4SXzdkek,35572
120
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
121
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
122
- thousandeyes_sdk_instant_tests-2.9.0.dist-info/RECORD,,
117
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/licenses/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
118
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/licenses/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
119
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/METADATA,sha256=nQXfEbVWufsqwOEKGzwk7mEs4dpkGASm0v7j4MYB0tE,35573
120
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
121
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
122
+ thousandeyes_sdk_instant_tests-2.10.0.dist-info/RECORD,,