thousandeyes-sdk-instant-tests 2.10.0__py3-none-any.whl → 2.12.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 (24) hide show
  1. thousandeyes_sdk/instant_tests/models/api_instant_test.py +7 -1
  2. thousandeyes_sdk/instant_tests/models/api_instant_test_request.py +7 -1
  3. thousandeyes_sdk/instant_tests/models/api_instant_test_response.py +7 -1
  4. thousandeyes_sdk/instant_tests/models/api_properties.py +10 -4
  5. thousandeyes_sdk/instant_tests/models/api_request.py +3 -1
  6. thousandeyes_sdk/instant_tests/models/http_server_base_properties.py +3 -1
  7. thousandeyes_sdk/instant_tests/models/http_server_instant_test.py +3 -1
  8. thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py +3 -1
  9. thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py +3 -1
  10. thousandeyes_sdk/instant_tests/models/http_server_properties.py +3 -1
  11. thousandeyes_sdk/instant_tests/models/page_load_instant_test.py +3 -1
  12. thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py +3 -1
  13. thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py +3 -1
  14. thousandeyes_sdk/instant_tests/models/page_load_properties.py +3 -1
  15. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py +3 -1
  16. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py +3 -1
  17. thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py +3 -1
  18. thousandeyes_sdk/instant_tests/models/web_transaction_properties.py +3 -1
  19. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/METADATA +2 -2
  20. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/RECORD +24 -24
  21. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/WHEEL +1 -1
  22. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/licenses/LICENSE +0 -0
  23. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/licenses/NOTICE +0 -0
  24. {thousandeyes_sdk_instant_tests-2.10.0.dist-info → thousandeyes_sdk_instant_tests-2.12.0.dist-info}/top_level.txt +0 -0
@@ -49,7 +49,10 @@ class ApiInstantTest(BaseModel):
49
49
  links: Optional[TestLinks] = Field(default=None, alias="_links")
50
50
  labels: Optional[List[TestLabel]] = Field(default=None, description="Labels to which the test is assigned. This field is not returned for Instant Tests.")
51
51
  shared_with_accounts: Optional[List[SharedWithAccount]] = Field(default=None, alias="sharedWithAccounts")
52
+ 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")
53
+ client_cert_domains_allow_list: Optional[StrictStr] = Field(default=None, description="Comma separated list of domains to send the client certificate.", alias="clientCertDomainsAllowList")
52
54
  collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
55
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
53
56
  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")
54
57
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
55
58
  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,7 +70,7 @@ class ApiInstantTest(BaseModel):
67
70
  time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds. Exceeding this limit will result in a Timeout error.", alias="timeLimit")
68
71
  url: StrictStr = Field(description="Target for the test.")
69
72
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
70
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "collectProxyNetworkData", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials"]
73
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "clientCertificate", "clientCertDomainsAllowList", "collectProxyNetworkData", "distributedTracing", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials"]
71
74
 
72
75
  model_config = ConfigDict(
73
76
  populate_by_name=True,
@@ -185,7 +188,10 @@ class ApiInstantTest(BaseModel):
185
188
  "_links": TestLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None,
186
189
  "labels": [TestLabel.from_dict(_item) for _item in obj["labels"]] if obj.get("labels") is not None else None,
187
190
  "sharedWithAccounts": [SharedWithAccount.from_dict(_item) for _item in obj["sharedWithAccounts"]] if obj.get("sharedWithAccounts") is not None else None,
191
+ "clientCertificate": obj.get("clientCertificate"),
192
+ "clientCertDomainsAllowList": obj.get("clientCertDomainsAllowList"),
188
193
  "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
194
+ "distributedTracing": obj.get("distributedTracing"),
189
195
  "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
190
196
  "mtuMeasurements": obj.get("mtuMeasurements"),
191
197
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
@@ -48,7 +48,10 @@ class ApiInstantTestRequest(BaseModel):
48
48
  links: Optional[TestLinks] = Field(default=None, alias="_links")
49
49
  labels: Optional[List[StrictStr]] = Field(default=None, description="A list of test label identifiers (get `labelId` from `/labels` endpoint).")
50
50
  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")
51
+ 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")
52
+ client_cert_domains_allow_list: Optional[StrictStr] = Field(default=None, description="Comma separated list of domains to send the client certificate.", alias="clientCertDomainsAllowList")
51
53
  collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
54
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
52
55
  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")
53
56
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
54
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")
@@ -67,7 +70,7 @@ class ApiInstantTestRequest(BaseModel):
67
70
  url: StrictStr = Field(description="Target for the test.")
68
71
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
69
72
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
70
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "collectProxyNetworkData", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials", "agents"]
73
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "clientCertificate", "clientCertDomainsAllowList", "collectProxyNetworkData", "distributedTracing", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials", "agents"]
71
74
 
72
75
  model_config = ConfigDict(
73
76
  populate_by_name=True,
@@ -174,7 +177,10 @@ class ApiInstantTestRequest(BaseModel):
174
177
  "_links": TestLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None,
175
178
  "labels": obj.get("labels"),
176
179
  "sharedWithAccounts": obj.get("sharedWithAccounts"),
180
+ "clientCertificate": obj.get("clientCertificate"),
181
+ "clientCertDomainsAllowList": obj.get("clientCertDomainsAllowList"),
177
182
  "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
183
+ "distributedTracing": obj.get("distributedTracing"),
178
184
  "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
179
185
  "mtuMeasurements": obj.get("mtuMeasurements"),
180
186
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
@@ -50,7 +50,10 @@ class ApiInstantTestResponse(BaseModel):
50
50
  links: Optional[TestLinks] = Field(default=None, alias="_links")
51
51
  labels: Optional[List[TestLabel]] = Field(default=None, description="Labels to which the test is assigned. This field is not returned for Instant Tests.")
52
52
  shared_with_accounts: Optional[List[SharedWithAccount]] = Field(default=None, alias="sharedWithAccounts")
53
+ 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")
54
+ client_cert_domains_allow_list: Optional[StrictStr] = Field(default=None, description="Comma separated list of domains to send the client certificate.", alias="clientCertDomainsAllowList")
53
55
  collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
56
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
54
57
  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")
55
58
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
56
59
  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")
@@ -69,7 +72,7 @@ class ApiInstantTestResponse(BaseModel):
69
72
  url: StrictStr = Field(description="Target for the test.")
70
73
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
71
74
  agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
72
- __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "collectProxyNetworkData", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials", "agents"]
75
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "clientCertificate", "clientCertDomainsAllowList", "collectProxyNetworkData", "distributedTracing", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "credentials", "agents"]
73
76
 
74
77
  model_config = ConfigDict(
75
78
  populate_by_name=True,
@@ -194,7 +197,10 @@ class ApiInstantTestResponse(BaseModel):
194
197
  "_links": TestLinks.from_dict(obj["_links"]) if obj.get("_links") is not None else None,
195
198
  "labels": [TestLabel.from_dict(_item) for _item in obj["labels"]] if obj.get("labels") is not None else None,
196
199
  "sharedWithAccounts": [SharedWithAccount.from_dict(_item) for _item in obj["sharedWithAccounts"]] if obj.get("sharedWithAccounts") is not None else None,
200
+ "clientCertificate": obj.get("clientCertificate"),
201
+ "clientCertDomainsAllowList": obj.get("clientCertDomainsAllowList"),
197
202
  "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
203
+ "distributedTracing": obj.get("distributedTracing"),
198
204
  "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
199
205
  "mtuMeasurements": obj.get("mtuMeasurements"),
200
206
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
@@ -32,7 +32,10 @@ class ApiProperties(BaseModel):
32
32
  """
33
33
  ApiProperties
34
34
  """ # noqa: E501
35
+ 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")
36
+ client_cert_domains_allow_list: Optional[StrictStr] = Field(default=None, description="Comma separated list of domains to send the client certificate.", alias="clientCertDomainsAllowList")
35
37
  collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
38
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
36
39
  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")
37
40
  mtu_measurements: Optional[StrictBool] = Field(default=None, description="Set `true` to measure MTU sizes on network from agents to the target.", alias="mtuMeasurements")
38
41
  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")
@@ -48,9 +51,9 @@ class ApiProperties(BaseModel):
48
51
  ssl_version_id: Optional[TestSslVersionId] = Field(default=None, alias="sslVersionId")
49
52
  target_time: Optional[Annotated[int, Field(le=60, strict=True, ge=0)]] = Field(default=None, description="Target time for completion metric, defaults to 50% of time limit specified in seconds. (0 means default behavior)", alias="targetTime")
50
53
  time_limit: Optional[Annotated[int, Field(le=180, strict=True, ge=5)]] = Field(default=30, description="Time limit for transaction in seconds. Exceeding this limit will result in a Timeout error.", alias="timeLimit")
51
- url: StrictStr = Field(description="Target for the test.")
52
54
  type: Optional[StrictStr] = None
53
- __properties: ClassVar[List[str]] = ["collectProxyNetworkData", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "url", "type"]
55
+ url: StrictStr = Field(description="Target for the test.")
56
+ __properties: ClassVar[List[str]] = ["clientCertificate", "clientCertDomainsAllowList", "collectProxyNetworkData", "distributedTracing", "followRedirects", "mtuMeasurements", "networkMeasurements", "numPathTraces", "overrideAgentProxy", "overrideProxyId", "pathTraceMode", "predefinedVariables", "probeMode", "protocol", "randomizedStartTime", "requests", "sslVersionId", "targetTime", "timeLimit", "type", "url"]
54
57
 
55
58
  model_config = ConfigDict(
56
59
  populate_by_name=True,
@@ -120,7 +123,10 @@ class ApiProperties(BaseModel):
120
123
  return cls.model_validate(obj)
121
124
 
122
125
  _obj = cls.model_validate({
126
+ "clientCertificate": obj.get("clientCertificate"),
127
+ "clientCertDomainsAllowList": obj.get("clientCertDomainsAllowList"),
123
128
  "collectProxyNetworkData": obj.get("collectProxyNetworkData") if obj.get("collectProxyNetworkData") is not None else False,
129
+ "distributedTracing": obj.get("distributedTracing"),
124
130
  "followRedirects": obj.get("followRedirects") if obj.get("followRedirects") is not None else True,
125
131
  "mtuMeasurements": obj.get("mtuMeasurements"),
126
132
  "networkMeasurements": obj.get("networkMeasurements") if obj.get("networkMeasurements") is not None else True,
@@ -136,8 +142,8 @@ class ApiProperties(BaseModel):
136
142
  "sslVersionId": obj.get("sslVersionId"),
137
143
  "targetTime": obj.get("targetTime"),
138
144
  "timeLimit": obj.get("timeLimit") if obj.get("timeLimit") is not None else 30,
139
- "url": obj.get("url"),
140
- "type": obj.get("type")
145
+ "type": obj.get("type"),
146
+ "url": obj.get("url")
141
147
  })
142
148
  return _obj
143
149
 
@@ -48,8 +48,9 @@ class ApiRequest(BaseModel):
48
48
  url: StrictStr = Field(description="Request url. Supports variables in the format `{{variableName}}`.")
49
49
  username: Optional[StrictStr] = Field(default=None, description="The username if `authType = basic`.")
50
50
  variables: Optional[List[ApiRequestVariable]] = Field(default=None, description="Array of API post request variable objects.")
51
+ verify_certificate: Optional[StrictBool] = Field(default=False, description="Ignore or acknowledge certificate errors. Set to false to ignore certificate errors.", alias="verifyCertificate")
51
52
  wait_time_ms: Optional[StrictInt] = Field(default=None, description="Post request delay before executing the next API requests, in milliseconds.", alias="waitTimeMs")
52
- __properties: ClassVar[List[str]] = ["assertions", "authType", "bearerToken", "body", "clientAuthentication", "clientId", "clientSecret", "collectApiResponse", "headers", "method", "name", "password", "scope", "tokenUrl", "url", "username", "variables", "waitTimeMs"]
53
+ __properties: ClassVar[List[str]] = ["assertions", "authType", "bearerToken", "body", "clientAuthentication", "clientId", "clientSecret", "collectApiResponse", "headers", "method", "name", "password", "scope", "tokenUrl", "url", "username", "variables", "verifyCertificate", "waitTimeMs"]
53
54
 
54
55
  model_config = ConfigDict(
55
56
  populate_by_name=True,
@@ -141,6 +142,7 @@ class ApiRequest(BaseModel):
141
142
  "url": obj.get("url"),
142
143
  "username": obj.get("username"),
143
144
  "variables": [ApiRequestVariable.from_dict(_item) for _item in obj["variables"]] if obj.get("variables") is not None else None,
145
+ "verifyCertificate": obj.get("verifyCertificate") if obj.get("verifyCertificate") is not None else False,
144
146
  "waitTimeMs": obj.get("waitTimeMs")
145
147
  })
146
148
  return _obj
@@ -41,6 +41,7 @@ class HttpServerBaseProperties(BaseModel):
41
41
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
42
42
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
43
43
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
44
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
44
45
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
45
46
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
46
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")
@@ -68,7 +69,7 @@ class HttpServerBaseProperties(BaseModel):
68
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")
69
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")
70
71
  collect_proxy_network_data: Optional[StrictBool] = Field(default=False, description="Indicates whether network data to the proxy should be collected.", alias="collectProxyNetworkData")
71
- __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"]
72
+ __properties: ClassVar[List[str]] = ["authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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"]
72
73
 
73
74
  model_config = ConfigDict(
74
75
  populate_by_name=True,
@@ -140,6 +141,7 @@ class HttpServerBaseProperties(BaseModel):
140
141
  "contentRegex": obj.get("contentRegex"),
141
142
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
142
143
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
144
+ "distributedTracing": obj.get("distributedTracing"),
143
145
  "downloadLimit": obj.get("downloadLimit"),
144
146
  "dnsOverride": obj.get("dnsOverride"),
145
147
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -59,6 +59,7 @@ class HttpServerInstantTest(BaseModel):
59
59
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
60
60
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
61
61
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
62
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
62
63
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
63
64
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
64
65
  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")
@@ -90,7 +91,7 @@ class HttpServerInstantTest(BaseModel):
90
91
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
91
92
  post_body: Optional[StrictStr] = Field(default=None, description="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.", alias="postBody")
92
93
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
93
- __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", "headers", "randomizedStartTime", "postBody", "ipv6Policy"]
94
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "headers", "randomizedStartTime", "postBody", "ipv6Policy"]
94
95
 
95
96
  model_config = ConfigDict(
96
97
  populate_by_name=True,
@@ -212,6 +213,7 @@ class HttpServerInstantTest(BaseModel):
212
213
  "contentRegex": obj.get("contentRegex"),
213
214
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
214
215
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
216
+ "distributedTracing": obj.get("distributedTracing"),
215
217
  "downloadLimit": obj.get("downloadLimit"),
216
218
  "dnsOverride": obj.get("dnsOverride"),
217
219
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -58,6 +58,7 @@ class HttpServerInstantTestRequest(BaseModel):
58
58
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
59
59
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
60
60
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
61
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
61
62
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
62
63
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
63
64
  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")
@@ -90,7 +91,7 @@ class HttpServerInstantTestRequest(BaseModel):
90
91
  post_body: Optional[StrictStr] = Field(default=None, description="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.", alias="postBody")
91
92
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
92
93
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
93
- __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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "agents"]
94
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "agents"]
94
95
 
95
96
  model_config = ConfigDict(
96
97
  populate_by_name=True,
@@ -201,6 +202,7 @@ class HttpServerInstantTestRequest(BaseModel):
201
202
  "contentRegex": obj.get("contentRegex"),
202
203
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
203
204
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
205
+ "distributedTracing": obj.get("distributedTracing"),
204
206
  "downloadLimit": obj.get("downloadLimit"),
205
207
  "dnsOverride": obj.get("dnsOverride"),
206
208
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -60,6 +60,7 @@ class HttpServerInstantTestResponse(BaseModel):
60
60
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
61
61
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
62
62
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
63
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
63
64
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
64
65
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
65
66
  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")
@@ -92,7 +93,7 @@ class HttpServerInstantTestResponse(BaseModel):
92
93
  post_body: Optional[StrictStr] = Field(default=None, description="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.", alias="postBody")
93
94
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
94
95
  agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
95
- __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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "agents"]
96
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "agents"]
96
97
 
97
98
  model_config = ConfigDict(
98
99
  populate_by_name=True,
@@ -221,6 +222,7 @@ class HttpServerInstantTestResponse(BaseModel):
221
222
  "contentRegex": obj.get("contentRegex"),
222
223
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
223
224
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
225
+ "distributedTracing": obj.get("distributedTracing"),
224
226
  "downloadLimit": obj.get("downloadLimit"),
225
227
  "dnsOverride": obj.get("dnsOverride"),
226
228
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -42,6 +42,7 @@ class HttpServerProperties(BaseModel):
42
42
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
43
43
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
44
44
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
45
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
45
46
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
46
47
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
47
48
  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")
@@ -74,7 +75,7 @@ class HttpServerProperties(BaseModel):
74
75
  post_body: Optional[StrictStr] = Field(default=None, description="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.", alias="postBody")
75
76
  ipv6_policy: Optional[TestIpv6Policy] = Field(default=None, alias="ipv6Policy")
76
77
  type: Optional[StrictStr] = None
77
- __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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "type"]
78
+ __properties: ClassVar[List[str]] = ["authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "headers", "randomizedStartTime", "postBody", "ipv6Policy", "type"]
78
79
 
79
80
  model_config = ConfigDict(
80
81
  populate_by_name=True,
@@ -148,6 +149,7 @@ class HttpServerProperties(BaseModel):
148
149
  "contentRegex": obj.get("contentRegex"),
149
150
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
150
151
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
152
+ "distributedTracing": obj.get("distributedTracing"),
151
153
  "downloadLimit": obj.get("downloadLimit"),
152
154
  "dnsOverride": obj.get("dnsOverride"),
153
155
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -59,6 +59,7 @@ class PageLoadInstantTest(BaseModel):
59
59
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
60
60
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
61
61
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
62
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
62
63
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
63
64
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
64
65
  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")
@@ -96,7 +97,7 @@ class PageLoadInstantTest(BaseModel):
96
97
  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")
97
98
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
98
99
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
99
- __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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime"]
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", "distributedTracing", "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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime"]
100
101
 
101
102
  model_config = ConfigDict(
102
103
  populate_by_name=True,
@@ -218,6 +219,7 @@ class PageLoadInstantTest(BaseModel):
218
219
  "contentRegex": obj.get("contentRegex"),
219
220
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
220
221
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
222
+ "distributedTracing": obj.get("distributedTracing"),
221
223
  "downloadLimit": obj.get("downloadLimit"),
222
224
  "dnsOverride": obj.get("dnsOverride"),
223
225
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -58,6 +58,7 @@ class PageLoadInstantTestRequest(BaseModel):
58
58
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
59
59
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
60
60
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
61
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
61
62
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
62
63
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
63
64
  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")
@@ -96,7 +97,7 @@ class PageLoadInstantTestRequest(BaseModel):
96
97
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
97
98
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
98
99
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
99
- __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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "agents"]
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", "distributedTracing", "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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "agents"]
100
101
 
101
102
  model_config = ConfigDict(
102
103
  populate_by_name=True,
@@ -207,6 +208,7 @@ class PageLoadInstantTestRequest(BaseModel):
207
208
  "contentRegex": obj.get("contentRegex"),
208
209
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
209
210
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
211
+ "distributedTracing": obj.get("distributedTracing"),
210
212
  "downloadLimit": obj.get("downloadLimit"),
211
213
  "dnsOverride": obj.get("dnsOverride"),
212
214
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -60,6 +60,7 @@ class PageLoadInstantTestResponse(BaseModel):
60
60
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
61
61
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
62
62
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
63
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
63
64
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
64
65
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
65
66
  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")
@@ -98,7 +99,7 @@ class PageLoadInstantTestResponse(BaseModel):
98
99
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
99
100
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
100
101
  agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
101
- __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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "agents"]
102
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "agents"]
102
103
 
103
104
  model_config = ConfigDict(
104
105
  populate_by_name=True,
@@ -227,6 +228,7 @@ class PageLoadInstantTestResponse(BaseModel):
227
228
  "contentRegex": obj.get("contentRegex"),
228
229
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
229
230
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
231
+ "distributedTracing": obj.get("distributedTracing"),
230
232
  "downloadLimit": obj.get("downloadLimit"),
231
233
  "dnsOverride": obj.get("dnsOverride"),
232
234
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -42,6 +42,7 @@ class PageLoadProperties(BaseModel):
42
42
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
43
43
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
44
44
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
45
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
45
46
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
46
47
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
47
48
  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")
@@ -80,7 +81,7 @@ class PageLoadProperties(BaseModel):
80
81
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
81
82
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
82
83
  type: Optional[StrictStr] = None
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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "type"]
84
+ __properties: ClassVar[List[str]] = ["authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "pageLoadTargetTime", "pageLoadTimeLimit", "blockDomains", "disableScreenshot", "allowMicAndCamera", "allowGeolocation", "browserLanguage", "pageLoadingStrategy", "randomizedStartTime", "type"]
84
85
 
85
86
  model_config = ConfigDict(
86
87
  populate_by_name=True,
@@ -154,6 +155,7 @@ class PageLoadProperties(BaseModel):
154
155
  "contentRegex": obj.get("contentRegex"),
155
156
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
156
157
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
158
+ "distributedTracing": obj.get("distributedTracing"),
157
159
  "downloadLimit": obj.get("downloadLimit"),
158
160
  "dnsOverride": obj.get("dnsOverride"),
159
161
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -59,6 +59,7 @@ class WebTransactionInstantTest(BaseModel):
59
59
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
60
60
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
61
61
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
62
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
62
63
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
63
64
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
64
65
  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")
@@ -98,7 +99,7 @@ class WebTransactionInstantTest(BaseModel):
98
99
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
99
100
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
100
101
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
101
- __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", "randomizedStartTime", "credentials"]
102
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "randomizedStartTime", "credentials"]
102
103
 
103
104
  model_config = ConfigDict(
104
105
  populate_by_name=True,
@@ -220,6 +221,7 @@ class WebTransactionInstantTest(BaseModel):
220
221
  "contentRegex": obj.get("contentRegex"),
221
222
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
222
223
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
224
+ "distributedTracing": obj.get("distributedTracing"),
223
225
  "downloadLimit": obj.get("downloadLimit"),
224
226
  "dnsOverride": obj.get("dnsOverride"),
225
227
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -58,6 +58,7 @@ class WebTransactionInstantTestRequest(BaseModel):
58
58
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
59
59
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
60
60
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
61
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
61
62
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
62
63
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
63
64
  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")
@@ -98,7 +99,7 @@ class WebTransactionInstantTestRequest(BaseModel):
98
99
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
99
100
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
100
101
  agents: List[TestAgent] = Field(description="A list of objects with `agentId` (required) and `sourceIpAddress` (optional).")
101
- __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", "randomizedStartTime", "credentials", "agents"]
102
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "randomizedStartTime", "credentials", "agents"]
102
103
 
103
104
  model_config = ConfigDict(
104
105
  populate_by_name=True,
@@ -209,6 +210,7 @@ class WebTransactionInstantTestRequest(BaseModel):
209
210
  "contentRegex": obj.get("contentRegex"),
210
211
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
211
212
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
213
+ "distributedTracing": obj.get("distributedTracing"),
212
214
  "downloadLimit": obj.get("downloadLimit"),
213
215
  "dnsOverride": obj.get("dnsOverride"),
214
216
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -60,6 +60,7 @@ class WebTransactionInstantTestResponse(BaseModel):
60
60
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
61
61
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
62
62
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
63
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
63
64
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
64
65
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
65
66
  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")
@@ -100,7 +101,7 @@ class WebTransactionInstantTestResponse(BaseModel):
100
101
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
101
102
  credentials: Optional[List[StrictStr]] = Field(default=None, description="Contains a list of credential IDs (get `credentialId` from `/credentials` endpoint).")
102
103
  agents: Optional[List[AgentResponse]] = Field(default=None, description="Contains list of agents.")
103
- __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", "randomizedStartTime", "credentials", "agents"]
104
+ __properties: ClassVar[List[str]] = ["createdBy", "createdDate", "description", "liveShare", "modifiedBy", "modifiedDate", "savedEvent", "testId", "testName", "type", "_links", "labels", "sharedWithAccounts", "authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "randomizedStartTime", "credentials", "agents"]
104
105
 
105
106
  model_config = ConfigDict(
106
107
  populate_by_name=True,
@@ -229,6 +230,7 @@ class WebTransactionInstantTestResponse(BaseModel):
229
230
  "contentRegex": obj.get("contentRegex"),
230
231
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
231
232
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
233
+ "distributedTracing": obj.get("distributedTracing"),
232
234
  "downloadLimit": obj.get("downloadLimit"),
233
235
  "dnsOverride": obj.get("dnsOverride"),
234
236
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -42,6 +42,7 @@ class WebTransactionProperties(BaseModel):
42
42
  content_regex: Optional[StrictStr] = Field(default=None, description="Content regex, this field does not require escaping.", alias="contentRegex")
43
43
  custom_headers: Optional[TestCustomHeaders] = Field(default=None, alias="customHeaders")
44
44
  desired_status_code: Optional[StrictStr] = Field(default='default', description="Specify the HTTP status code value that indicates a successful response. The default value accepts any 2xx or 3xx status code.", alias="desiredStatusCode")
45
+ distributed_tracing: Optional[StrictBool] = Field(default=None, description="Adds distributed tracing headers to API requests using B3 and W3C standards.", alias="distributedTracing")
45
46
  download_limit: Optional[StrictInt] = Field(default=None, description="Specifies maximum number of bytes to download from the target object.", alias="downloadLimit")
46
47
  dns_override: Optional[StrictStr] = Field(default=None, description="IP address to use for DNS override.", alias="dnsOverride")
47
48
  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")
@@ -81,7 +82,7 @@ class WebTransactionProperties(BaseModel):
81
82
  page_loading_strategy: Optional[TestPageLoadingStrategy] = Field(default=None, alias="pageLoadingStrategy")
82
83
  randomized_start_time: Optional[StrictBool] = Field(default=False, description="Indicates whether agents should randomize the start time in each test round.", alias="randomizedStartTime")
83
84
  type: Optional[StrictStr] = None
84
- __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", "randomizedStartTime", "type"]
85
+ __properties: ClassVar[List[str]] = ["authType", "agentInterfaces", "bandwidthMeasurements", "clientCertificate", "contentRegex", "customHeaders", "desiredStatusCode", "distributedTracing", "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", "randomizedStartTime", "type"]
85
86
 
86
87
  model_config = ConfigDict(
87
88
  populate_by_name=True,
@@ -155,6 +156,7 @@ class WebTransactionProperties(BaseModel):
155
156
  "contentRegex": obj.get("contentRegex"),
156
157
  "customHeaders": TestCustomHeaders.from_dict(obj["customHeaders"]) if obj.get("customHeaders") is not None else None,
157
158
  "desiredStatusCode": obj.get("desiredStatusCode") if obj.get("desiredStatusCode") is not None else 'default',
159
+ "distributedTracing": obj.get("distributedTracing"),
158
160
  "downloadLimit": obj.get("downloadLimit"),
159
161
  "dnsOverride": obj.get("dnsOverride"),
160
162
  "httpTargetTime": obj.get("httpTargetTime"),
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: thousandeyes-sdk-instant-tests
3
- Version: 2.10.0
3
+ Version: 2.12.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.42
211
+ - API version: 7.0.52
212
212
  - Generator version: 7.6.0
213
213
  - Build package: com.thousandeyes.api.codegen.ThousandeyesPythonGenerator
214
214
 
@@ -28,12 +28,12 @@ thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_request.py,sh
28
28
  thousandeyes_sdk/instant_tests/models/agent_to_server_instant_test_response.py,sha256=GaW-Y2OAhlg8BSYfXQh2viZ6T3kRcTCWUN8QXSMN7pw,12484
29
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
- thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=FCH3_1nXTL4VAIYyVCzbusz0Q4ebmPTxC7_e6ncR14w,13215
32
- thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=gTT4jnwjtT3ZPo7Af9QF7DXyG_TNrPcvdKkRfk-SICs,12828
33
- thousandeyes_sdk/instant_tests/models/api_instant_test_response.py,sha256=7CTrrErB1xUtnOsSyWDQIbTpHWR6xoYdI5TFz5zkTHM,13867
31
+ thousandeyes_sdk/instant_tests/models/api_instant_test.py,sha256=kUwITLJM-T-NxaAaEh3l2zzdBK8Uq2nKJkI9qcXh61M,14123
32
+ thousandeyes_sdk/instant_tests/models/api_instant_test_request.py,sha256=u7t07TfAtOZQn1auxgK1LXPPJfoZE1HL2fUgV2ONitA,13736
33
+ thousandeyes_sdk/instant_tests/models/api_instant_test_response.py,sha256=uWYQHFyO1r2Z35KvWNVkIwYTO3bzSAfbR0eBYmFKM7Q,14775
34
34
  thousandeyes_sdk/instant_tests/models/api_predefined_variable.py,sha256=qlK5h_LphTkFLYOw7Im0UQzeIRUCGWjMns8cv5ANHs8,3090
35
- thousandeyes_sdk/instant_tests/models/api_properties.py,sha256=hHWzQD4GRBslAR4pMVAFdHHtF-7gZw_FY9BhIf4uces,8520
36
- thousandeyes_sdk/instant_tests/models/api_request.py,sha256=s8FD80jZsr9V9C8s-TG9uUA2FIVEykYJTukK8l7XYXo,7959
35
+ thousandeyes_sdk/instant_tests/models/api_properties.py,sha256=PmNGFSLYfhdCeQJqg_e1FAtPciEZG1t_qLDnlih9k6Q,9428
36
+ thousandeyes_sdk/instant_tests/models/api_request.py,sha256=no-w8_NkNgsbH0b6H_GQapZ2cihgk7WlZKKe8yEknLE,8293
37
37
  thousandeyes_sdk/instant_tests/models/api_request_assertion.py,sha256=-lRhN1hu5lLcuZjnNGr46U7m9wny2dBslGSE_7i6QhE,3453
38
38
  thousandeyes_sdk/instant_tests/models/api_request_assertion_name.py,sha256=flIh69rdBKq_Q-oy5FcBtko3ska-8PKpSiIPkdbmrn4,1384
39
39
  thousandeyes_sdk/instant_tests/models/api_request_assertion_operator.py,sha256=OC6igrb8aWyrFHTFrTiRqWIk0VhRjPBryDkPoZWv0Vg,1365
@@ -63,19 +63,19 @@ thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_request.py,sha256=
63
63
  thousandeyes_sdk/instant_tests/models/ftp_server_instant_test_response.py,sha256=0zRAHmOTirMX1SwaRluBgC4cAPlqlSGnh_JSyBaqdcw,12871
64
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
- thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=Sr_vI_y9rUhrjo9a_FR45M0Z0npBSg6mS5zxJmvnr3E,12845
67
- thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=bbCmX_nLLO0-6nr6ogGqP5T6PPPrkVi69J3IWFt2eGE,18476
68
- thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py,sha256=CQxt-ff-4wFQ0IK7_sB6sbxKyW-0Yo1s4gfqxCqkWyQ,18089
69
- thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py,sha256=Ho-yoHzuPJ7sNjft03eWeDieqMrFP590uejWtIN4zSM,19128
70
- thousandeyes_sdk/instant_tests/models/http_server_properties.py,sha256=60Den2qYY94aQBeaWv5QJoPEZgRaVTkQGvNO1lAE1iI,14012
66
+ thousandeyes_sdk/instant_tests/models/http_server_base_properties.py,sha256=OdeLV0SM6BOgkdN7Wqtd_0CzeOC-qLDj3wE3Ryh3zeY,13120
67
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test.py,sha256=yTxyT_5v0KAQB98P-f7IeyoG-hGktOuXiyOLXPup9JM,18751
68
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test_request.py,sha256=ybfw4AsFjSA4CEqHcmdC8023SWZBEF4vUWV0U7JUH2c,18364
69
+ thousandeyes_sdk/instant_tests/models/http_server_instant_test_response.py,sha256=WcanqbHCdwBnCiFU_nLGVxlSTprFFU1DOhHSHZG3GNY,19403
70
+ thousandeyes_sdk/instant_tests/models/http_server_properties.py,sha256=Ssq-jUqGQrotwalNtxHF8UFWeuDf1-O6mik9mA_tR3Q,14287
71
71
  thousandeyes_sdk/instant_tests/models/instant_test.py,sha256=6XzlaGU5tCUiYy62YviqtH6AfknJj9RHwMJmG_8nexg,7370
72
72
  thousandeyes_sdk/instant_tests/models/instant_test_request.py,sha256=KNS_adtDTU8CxNX6reemX4xr9K-lmiklrqAjX8euyFs,3923
73
73
  thousandeyes_sdk/instant_tests/models/link.py,sha256=lmpHavfjS1L-6kEuLkJVzPeJBDIktKz9lBhJX9thapk,4392
74
74
  thousandeyes_sdk/instant_tests/models/o_auth.py,sha256=QLyHKZXqw6Ak-BaCBPFGoTnkByolTlhJqJF7YMQF1LM,4412
75
- thousandeyes_sdk/instant_tests/models/page_load_instant_test.py,sha256=x0Vp7QPFzCbCwW3TumwqRSbGx0U66JXvZ_cHID0_ZQU,20466
76
- thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py,sha256=jjstb_4Bl79-q8G-Q4BNaXUdjNrokh4DGPdUXnmgufU,20079
77
- thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py,sha256=QEXqDbKVmxvPX4gnN0TNjO-MU2fOPiDsamb68Dk55MU,21118
78
- thousandeyes_sdk/instant_tests/models/page_load_properties.py,sha256=owSMulAcfsGpT3R-JM2w0xp1fscYEjt0CTS_o-oBcmU,16002
75
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test.py,sha256=Arp6i9WHWnn0mvzsfggSvCrqArOMYgV_oqW7eOSKFjg,20741
76
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test_request.py,sha256=2CBLJE4qLU25MaEFRjCORWSEXfivw8hylpU3TZW_piI,20354
77
+ thousandeyes_sdk/instant_tests/models/page_load_instant_test_response.py,sha256=KY0bCxF-05MqAR8N1bU11kDQXefG181EyMnbCIp-uGY,21393
78
+ thousandeyes_sdk/instant_tests/models/page_load_properties.py,sha256=WgTZ7G76nwI--5i4FKZ6DCgFB_hZlwGypGOFE4pd71s,16277
79
79
  thousandeyes_sdk/instant_tests/models/request_method.py,sha256=h6haHWl4pslaTODKyHDyKduDUk8OOHj0BfDcjwMpQnM,1251
80
80
  thousandeyes_sdk/instant_tests/models/shared_with_account.py,sha256=aNP27UcTIho-XRhN-UWpyUc0kUZoFXGq_YA4OFNujao,3030
81
81
  thousandeyes_sdk/instant_tests/models/simple_agent.py,sha256=0UXBPIKL2f9uI2MXoYqJD_o8C8UuxY0VXHW6BYKQVU4,5307
@@ -110,13 +110,13 @@ thousandeyes_sdk/instant_tests/models/voice_instant_test.py,sha256=Bgj7VXqR5vna7
110
110
  thousandeyes_sdk/instant_tests/models/voice_instant_test_request.py,sha256=b-301SqQwqlorVwML_hS4G53D4Idr5lU0I_sMrqhmu8,9517
111
111
  thousandeyes_sdk/instant_tests/models/voice_instant_test_response.py,sha256=JtTgKv5Jew_3eoq2LJwrDYdpyjpIug4Ipb1TI-aZk48,10556
112
112
  thousandeyes_sdk/instant_tests/models/voice_properties.py,sha256=XWPhY-KVmZSH-uM1j8tw8hurBLiujpdCMvuihZw_gRE,5440
113
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=xMkQjOS6MxqVXa7JVnrfm61IgRWuPhscpmxKwU94bZ4,20886
114
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=YQwpLjdjgFvEmaESynfP9b-kFKBQ5VzZup0O338Kolo,20499
115
- thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py,sha256=diVHbLk-6qsRxl9zBW0tZV-Qwr908u-kXXFX3N6ok1Y,21538
116
- thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=85iIMb2zv4ocsu6Kul_DbBtwgYChchZbULRpHuPeBbQ,16191
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,,
113
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test.py,sha256=ULrMw13qtiP4KPLB6du-dX6un7K8RYL8-3AbkksmiVg,21161
114
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_request.py,sha256=TQUKHk1y7LgMs5-qILLyxerfVPgzQX0gUkrTl3wE724,20774
115
+ thousandeyes_sdk/instant_tests/models/web_transaction_instant_test_response.py,sha256=hFu_osGpZMndZydFIf7-Wz9QOmQEFrPePSkjmkg69C4,21813
116
+ thousandeyes_sdk/instant_tests/models/web_transaction_properties.py,sha256=dQv8ruGWC0tgOOz34nXJ7hfu9BU7xWDZP5v_oqBCicI,16466
117
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/licenses/LICENSE,sha256=WYmcYJG1QFgu1hfo7qrEkZ3Jhcz8NUWe6XUraZvlIFs,10172
118
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/licenses/NOTICE,sha256=qCuDsmtA-FKfCWNPOdV3w_DnaVlII8Vhjd3GVvf8We0,580
119
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/METADATA,sha256=GmQld9RP6XbA7gF2e4bDnV485R-e4P3YSQgNCUsJP5c,35573
120
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
121
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/top_level.txt,sha256=CEgP5tqpXCg6GixDvVc5BPD-Z1KWHY0oO0w3Olr_yss,17
122
+ thousandeyes_sdk_instant_tests-2.12.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5