Skip to content

Commit 3f18980

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
Add extractedValuesFromScript to multistep API tests (#2730)
Co-authored-by: ci.datadog-api-spec <[email protected]>
1 parent d8a9e77 commit 3f18980

15 files changed

+89
-50
lines changed

Diff for: .apigentools-info

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@
44
"spec_versions": {
55
"v1": {
66
"apigentools_version": "1.6.6",
7-
"regenerated": "2025-02-27 13:36:44.509942",
8-
"spec_repo_commit": "91ac2533"
7+
"regenerated": "2025-02-27 14:00:46.641282",
8+
"spec_repo_commit": "240ec82d"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2025-02-27 13:36:44.525584",
13-
"spec_repo_commit": "91ac2533"
12+
"regenerated": "2025-02-27 14:00:46.657419",
13+
"spec_repo_commit": "240ec82d"
1414
}
1515
}
1616
}

Diff for: .generator/schemas/v1/openapi.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -14028,6 +14028,9 @@ components:
1402814028
items:
1402914029
$ref: '#/components/schemas/SyntheticsParsingOptions'
1403014030
type: array
14031+
extractedValuesFromScript:
14032+
description: Generate variables using JavaScript.
14033+
type: string
1403114034
isCritical:
1403214035
description: 'Determines whether or not to consider the entire test as failed
1403314036
if this step fails.

Diff for: examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ public static void main(String[] args) {
8484
.httpVersion(SyntheticsTestOptionsHTTPVersion.HTTP2))
8585
.retry(
8686
new SyntheticsTestOptionsRetry().count(5L).interval(1000.0))
87-
.subtype(SyntheticsAPITestStepSubtype.HTTP)),
87+
.subtype(SyntheticsAPITestStepSubtype.HTTP)
88+
.extractedValuesFromScript(
89+
"dd.variable.set('STATUS_CODE', dd.response.statusCode);")),
8890
new SyntheticsAPIStep(
8991
new SyntheticsAPIWaitStep()
9092
.name("Wait")

Diff for: src/main/java/com/datadog/api/client/v1/model/SyntheticsAPITestStep.java

+32
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
SyntheticsAPITestStep.JSON_PROPERTY_ASSERTIONS,
2626
SyntheticsAPITestStep.JSON_PROPERTY_EXIT_IF_SUCCEED,
2727
SyntheticsAPITestStep.JSON_PROPERTY_EXTRACTED_VALUES,
28+
SyntheticsAPITestStep.JSON_PROPERTY_EXTRACTED_VALUES_FROM_SCRIPT,
2829
SyntheticsAPITestStep.JSON_PROPERTY_IS_CRITICAL,
2930
SyntheticsAPITestStep.JSON_PROPERTY_NAME,
3031
SyntheticsAPITestStep.JSON_PROPERTY_REQUEST,
@@ -47,6 +48,10 @@ public class SyntheticsAPITestStep {
4748
public static final String JSON_PROPERTY_EXTRACTED_VALUES = "extractedValues";
4849
private List<SyntheticsParsingOptions> extractedValues = null;
4950

51+
public static final String JSON_PROPERTY_EXTRACTED_VALUES_FROM_SCRIPT =
52+
"extractedValuesFromScript";
53+
private String extractedValuesFromScript;
54+
5055
public static final String JSON_PROPERTY_IS_CRITICAL = "isCritical";
5156
private Boolean isCritical;
5257

@@ -185,6 +190,27 @@ public void setExtractedValues(List<SyntheticsParsingOptions> extractedValues) {
185190
this.extractedValues = extractedValues;
186191
}
187192

193+
public SyntheticsAPITestStep extractedValuesFromScript(String extractedValuesFromScript) {
194+
this.extractedValuesFromScript = extractedValuesFromScript;
195+
return this;
196+
}
197+
198+
/**
199+
* Generate variables using JavaScript.
200+
*
201+
* @return extractedValuesFromScript
202+
*/
203+
@jakarta.annotation.Nullable
204+
@JsonProperty(JSON_PROPERTY_EXTRACTED_VALUES_FROM_SCRIPT)
205+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
206+
public String getExtractedValuesFromScript() {
207+
return extractedValuesFromScript;
208+
}
209+
210+
public void setExtractedValuesFromScript(String extractedValuesFromScript) {
211+
this.extractedValuesFromScript = extractedValuesFromScript;
212+
}
213+
188214
public SyntheticsAPITestStep isCritical(Boolean isCritical) {
189215
this.isCritical = isCritical;
190216
return this;
@@ -354,6 +380,8 @@ public boolean equals(Object o) {
354380
&& Objects.equals(this.assertions, syntheticsApiTestStep.assertions)
355381
&& Objects.equals(this.exitIfSucceed, syntheticsApiTestStep.exitIfSucceed)
356382
&& Objects.equals(this.extractedValues, syntheticsApiTestStep.extractedValues)
383+
&& Objects.equals(
384+
this.extractedValuesFromScript, syntheticsApiTestStep.extractedValuesFromScript)
357385
&& Objects.equals(this.isCritical, syntheticsApiTestStep.isCritical)
358386
&& Objects.equals(this.name, syntheticsApiTestStep.name)
359387
&& Objects.equals(this.request, syntheticsApiTestStep.request)
@@ -369,6 +397,7 @@ public int hashCode() {
369397
assertions,
370398
exitIfSucceed,
371399
extractedValues,
400+
extractedValuesFromScript,
372401
isCritical,
373402
name,
374403
request,
@@ -385,6 +414,9 @@ public String toString() {
385414
sb.append(" assertions: ").append(toIndentedString(assertions)).append("\n");
386415
sb.append(" exitIfSucceed: ").append(toIndentedString(exitIfSucceed)).append("\n");
387416
sb.append(" extractedValues: ").append(toIndentedString(extractedValues)).append("\n");
417+
sb.append(" extractedValuesFromScript: ")
418+
.append(toIndentedString(extractedValuesFromScript))
419+
.append("\n");
388420
sb.append(" isCritical: ").append(toIndentedString(isCritical)).append("\n");
389421
sb.append(" name: ").append(toIndentedString(name)).append("\n");
390422
sb.append(" request: ").append(toIndentedString(request)).append("\n");
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-12-09T11:17:37.828Z
1+
2025-02-25T16:34:23.928Z

Diff for: src/test/resources/cassettes/features/v1/Create_a_FIDO_global_variable_returns_OK_response.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"httpRequest": {
44
"body": {
55
"type": "JSON",
6-
"json": "{\"config\":{\"configVariables\":[{\"example\":\"content-type\",\"name\":\"PROPERTY\",\"pattern\":\"content-type\",\"type\":\"text\"}],\"steps\":[{\"allowFailure\":true,\"assertions\":[{\"operator\":\"is\",\"target\":200,\"type\":\"statusCode\"}],\"exitIfSucceed\":true,\"extractedValues\":[{\"field\":\"server\",\"name\":\"EXTRACTED_VALUE\",\"parser\":{\"type\":\"raw\"},\"secure\":true,\"type\":\"http_header\"}],\"isCritical\":true,\"name\":\"request is sent\",\"request\":{\"httpVersion\":\"http2\",\"method\":\"GET\",\"timeout\":10,\"url\":\"https://datadoghq.com\"},\"retry\":{\"count\":5,\"interval\":1000},\"subtype\":\"http\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1},{\"allowFailure\":false,\"assertions\":[{\"operator\":\"lessThan\",\"target\":1000,\"type\":\"responseTime\"}],\"extractedValues\":[],\"isCritical\":true,\"name\":\"GRPC CALL\",\"request\":{\"callType\":\"unary\",\"compressedJsonDescriptor\":\"eJy1lU1z2yAQhv+Lzj74I3ETH506bQ7OZOSm1w4Wa4epBARQppqM/3v5koCJJdvtxCdW77vPssCO3zMKUgHOFu/ZXvBiS6hZho/f8qe7pftYgXphWJrlA8XwxywEvNba+6PhkC2yVcVVswYp0R6ykRYlZ1SCV21SDrxsssPIeS9FJKqGfK2rqnmmSBwhWa2XlKgtaQPiDcRGCUDVfwGD2sKUqKEtc1cSoOrsMlaMOec1sySYCCgUYRSVLv2zSva2u+FQkB0pVkIw8bFuIudOOn3pOaKYVT3Iy97Pd0AYhOx5QcMsnxvRHlnuLf8ETDd3CNtrv2nejkDpRnANCmGkkFn/hsYzpBKE7jVbufgnKnV9HRM9zRPDDKPttYT61n0TdWkAAjggk9AhuxIeaXd69CYTcsGw7cBTakLVbNpRzGEgyWjkSOpMbZXkhGL6oX30R49qt3GoHrap7i0XdD41WQ+2icCNm5p1hmFqnHNlcla0riKmDZ183crDxChjbnurtxHPRE784sVhWvDfGP+SsTKibU3o5NtWHuZFGZOxP6P5VXqIOvaOSec4eYohyd7NslHuJbd1bewds85xYrNxkr2d+5IhFWF3NvaO684xjE2S5ulY+tu64Pna0fCPJgzw6vF5/WucLcYjt5xoq19O3UDptOg/OamJQRaCcPPnMTQ2QDFn+uhPvUfnCrMc99upyQY4Ui9Dlc/YoG3R/v4Cs9YE+g==\",\"host\":\"grpcbin.test.k6.io\",\"message\":\"{}\",\"metadata\":{},\"method\":\"Index\",\"port\":9000,\"service\":\"grpcbin.GRPCBin\"},\"retry\":{\"count\":0,\"interval\":300},\"subtype\":\"grpc\"}]},\"locations\":[\"aws:us-east-2\"],\"message\":\"BDD test payload: synthetics_api_test_multi_step_payload.json\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1733743057\",\"options\":{\"accept_self_signed\":false,\"allow_insecure\":true,\"follow_redirects\":true,\"min_failure_duration\":10,\"min_location_failed\":1,\"monitor_name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1733743057\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"subtype\":\"multi\",\"tags\":[\"testing:api\"],\"type\":\"api\"}"
6+
"json": "{\"config\":{\"configVariables\":[{\"example\":\"content-type\",\"name\":\"PROPERTY\",\"pattern\":\"content-type\",\"type\":\"text\"}],\"steps\":[{\"allowFailure\":true,\"assertions\":[{\"operator\":\"is\",\"target\":200,\"type\":\"statusCode\"}],\"exitIfSucceed\":true,\"extractedValues\":[{\"field\":\"server\",\"name\":\"EXTRACTED_VALUE\",\"parser\":{\"type\":\"raw\"},\"secure\":true,\"type\":\"http_header\"}],\"extractedValuesFromScript\":\"dd.variable.set('STATUS_CODE', dd.response.statusCode);\",\"isCritical\":true,\"name\":\"request is sent\",\"request\":{\"httpVersion\":\"http2\",\"method\":\"GET\",\"timeout\":10,\"url\":\"https://datadoghq.com\"},\"retry\":{\"count\":5,\"interval\":1000},\"subtype\":\"http\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1},{\"allowFailure\":false,\"assertions\":[{\"operator\":\"lessThan\",\"target\":1000,\"type\":\"responseTime\"}],\"extractedValues\":[],\"isCritical\":true,\"name\":\"GRPC CALL\",\"request\":{\"callType\":\"unary\",\"compressedJsonDescriptor\":\"eJy1lU1z2yAQhv+Lzj74I3ETH506bQ7OZOSm1w4Wa4epBARQppqM/3v5koCJJdvtxCdW77vPssCO3zMKUgHOFu/ZXvBiS6hZho/f8qe7pftYgXphWJrlA8XwxywEvNba+6PhkC2yVcVVswYp0R6ykRYlZ1SCV21SDrxsssPIeS9FJKqGfK2rqnmmSBwhWa2XlKgtaQPiDcRGCUDVfwGD2sKUqKEtc1cSoOrsMlaMOec1sySYCCgUYRSVLv2zSva2u+FQkB0pVkIw8bFuIudOOn3pOaKYVT3Iy97Pd0AYhOx5QcMsnxvRHlnuLf8ETDd3CNtrv2nejkDpRnANCmGkkFn/hsYzpBKE7jVbufgnKnV9HRM9zRPDDKPttYT61n0TdWkAAjggk9AhuxIeaXd69CYTcsGw7cBTakLVbNpRzGEgyWjkSOpMbZXkhGL6oX30R49qt3GoHrap7i0XdD41WQ+2icCNm5p1hmFqnHNlcla0riKmDZ183crDxChjbnurtxHPRE784sVhWvDfGP+SsTKibU3o5NtWHuZFGZOxP6P5VXqIOvaOSec4eYohyd7NslHuJbd1bewds85xYrNxkr2d+5IhFWF3NvaO684xjE2S5ulY+tu64Pna0fCPJgzw6vF5/WucLcYjt5xoq19O3UDptOg/OamJQRaCcPPnMTQ2QDFn+uhPvUfnCrMc99upyQY4Ui9Dlc/YoG3R/v4Cs9YE+g==\",\"host\":\"grpcbin.test.k6.io\",\"message\":\"{}\",\"metadata\":{},\"method\":\"Index\",\"port\":9000,\"service\":\"grpcbin.GRPCBin\"},\"retry\":{\"count\":0,\"interval\":300},\"subtype\":\"grpc\"}]},\"locations\":[\"aws:us-east-2\"],\"message\":\"BDD test payload: synthetics_api_test_multi_step_payload.json\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1740501263\",\"options\":{\"accept_self_signed\":false,\"allow_insecure\":true,\"follow_redirects\":true,\"min_failure_duration\":10,\"min_location_failed\":1,\"monitor_name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1740501263\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"subtype\":\"multi\",\"tags\":[\"testing:api\"],\"type\":\"api\"}"
77
},
88
"headers": {},
99
"method": "POST",
@@ -12,7 +12,7 @@
1212
"secure": true
1313
},
1414
"httpResponse": {
15-
"body": "{\"public_id\":\"2ym-xig-di5\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1733743057\",\"status\":\"live\",\"type\":\"api\",\"subtype\":\"multi\",\"tags\":[\"testing:api\"],\"created_at\":\"2024-12-09T11:17:38.620924+00:00\",\"modified_at\":\"2024-12-09T11:17:38.620924+00:00\",\"config\":{\"configVariables\":[{\"example\":\"content-type\",\"name\":\"PROPERTY\",\"pattern\":\"content-type\",\"type\":\"text\"}],\"steps\":[{\"allowFailure\":true,\"assertions\":[{\"operator\":\"is\",\"target\":200,\"type\":\"statusCode\"}],\"exitIfSucceed\":true,\"extractedValues\":[{\"field\":\"server\",\"name\":\"EXTRACTED_VALUE\",\"parser\":{\"type\":\"raw\"},\"secure\":true,\"type\":\"http_header\"}],\"isCritical\":true,\"name\":\"request is sent\",\"request\":{\"httpVersion\":\"http2\",\"method\":\"GET\",\"timeout\":10,\"url\":\"https://datadoghq.com\"},\"retry\":{\"count\":5,\"interval\":1000},\"subtype\":\"http\",\"id\":\"669-hdh-vh3\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1,\"id\":\"hkh-v6r-ddp\"},{\"allowFailure\":false,\"assertions\":[{\"operator\":\"lessThan\",\"target\":1000,\"type\":\"responseTime\"}],\"extractedValues\":[],\"isCritical\":true,\"name\":\"GRPC CALL\",\"request\":{\"callType\":\"unary\",\"compressedJsonDescriptor\":\"eJy1lU1z2yAQhv+Lzj74I3ETH506bQ7OZOSm1w4Wa4epBARQppqM/3v5koCJJdvtxCdW77vPssCO3zMKUgHOFu/ZXvBiS6hZho/f8qe7pftYgXphWJrlA8XwxywEvNba+6PhkC2yVcVVswYp0R6ykRYlZ1SCV21SDrxsssPIeS9FJKqGfK2rqnmmSBwhWa2XlKgtaQPiDcRGCUDVfwGD2sKUqKEtc1cSoOrsMlaMOec1sySYCCgUYRSVLv2zSva2u+FQkB0pVkIw8bFuIudOOn3pOaKYVT3Iy97Pd0AYhOx5QcMsnxvRHlnuLf8ETDd3CNtrv2nejkDpRnANCmGkkFn/hsYzpBKE7jVbufgnKnV9HRM9zRPDDKPttYT61n0TdWkAAjggk9AhuxIeaXd69CYTcsGw7cBTakLVbNpRzGEgyWjkSOpMbZXkhGL6oX30R49qt3GoHrap7i0XdD41WQ+2icCNm5p1hmFqnHNlcla0riKmDZ183crDxChjbnurtxHPRE784sVhWvDfGP+SsTKibU3o5NtWHuZFGZOxP6P5VXqIOvaOSec4eYohyd7NslHuJbd1bewds85xYrNxkr2d+5IhFWF3NvaO684xjE2S5ulY+tu64Pna0fCPJgzw6vF5/WucLcYjt5xoq19O3UDptOg/OamJQRaCcPPnMTQ2QDFn+uhPvUfnCrMc99upyQY4Ui9Dlc/YoG3R/v4Cs9YE+g==\",\"host\":\"grpcbin.test.k6.io\",\"message\":\"{}\",\"metadata\":{},\"method\":\"Index\",\"port\":9000,\"service\":\"grpcbin.GRPCBin\"},\"retry\":{\"count\":0,\"interval\":300},\"subtype\":\"grpc\",\"id\":\"6w8-xwm-qki\"}]},\"message\":\"BDD test payload: synthetics_api_test_multi_step_payload.json\",\"options\":{\"accept_self_signed\":false,\"allow_insecure\":true,\"follow_redirects\":true,\"min_failure_duration\":10,\"min_location_failed\":1,\"monitor_name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1733743057\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"locations\":[\"aws:us-east-2\"],\"created_by\":{\"name\":null,\"handle\":\"[email protected]\",\"email\":\"[email protected]\"},\"deleted_at\":null,\"monitor_id\":159880989,\"org_id\":321813,\"modified_by\":{\"name\":null,\"handle\":\"[email protected]\",\"email\":\"[email protected]\"}}",
15+
"body": "{\"public_id\":\"rba-ta9-q2g\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1740501263\",\"status\":\"live\",\"type\":\"api\",\"subtype\":\"multi\",\"tags\":[\"testing:api\"],\"created_at\":\"2025-02-25T16:34:24.599978+00:00\",\"modified_at\":\"2025-02-25T16:34:24.599978+00:00\",\"config\":{\"configVariables\":[{\"example\":\"content-type\",\"name\":\"PROPERTY\",\"pattern\":\"content-type\",\"type\":\"text\"}],\"steps\":[{\"allowFailure\":true,\"assertions\":[{\"operator\":\"is\",\"target\":200,\"type\":\"statusCode\"}],\"exitIfSucceed\":true,\"extractedValues\":[{\"field\":\"server\",\"name\":\"EXTRACTED_VALUE\",\"parser\":{\"type\":\"raw\"},\"secure\":true,\"type\":\"http_header\"}],\"extractedValuesFromScript\":\"dd.variable.set('STATUS_CODE', dd.response.statusCode);\",\"isCritical\":true,\"name\":\"request is sent\",\"request\":{\"httpVersion\":\"http2\",\"method\":\"GET\",\"timeout\":10,\"url\":\"https://datadoghq.com\"},\"retry\":{\"count\":5,\"interval\":1000},\"subtype\":\"http\",\"id\":\"7he-q78-rkr\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1,\"id\":\"rj2-fyu-8mg\"},{\"allowFailure\":false,\"assertions\":[{\"operator\":\"lessThan\",\"target\":1000,\"type\":\"responseTime\"}],\"extractedValues\":[],\"isCritical\":true,\"name\":\"GRPC CALL\",\"request\":{\"callType\":\"unary\",\"compressedJsonDescriptor\":\"eJy1lU1z2yAQhv+Lzj74I3ETH506bQ7OZOSm1w4Wa4epBARQppqM/3v5koCJJdvtxCdW77vPssCO3zMKUgHOFu/ZXvBiS6hZho/f8qe7pftYgXphWJrlA8XwxywEvNba+6PhkC2yVcVVswYp0R6ykRYlZ1SCV21SDrxsssPIeS9FJKqGfK2rqnmmSBwhWa2XlKgtaQPiDcRGCUDVfwGD2sKUqKEtc1cSoOrsMlaMOec1sySYCCgUYRSVLv2zSva2u+FQkB0pVkIw8bFuIudOOn3pOaKYVT3Iy97Pd0AYhOx5QcMsnxvRHlnuLf8ETDd3CNtrv2nejkDpRnANCmGkkFn/hsYzpBKE7jVbufgnKnV9HRM9zRPDDKPttYT61n0TdWkAAjggk9AhuxIeaXd69CYTcsGw7cBTakLVbNpRzGEgyWjkSOpMbZXkhGL6oX30R49qt3GoHrap7i0XdD41WQ+2icCNm5p1hmFqnHNlcla0riKmDZ183crDxChjbnurtxHPRE784sVhWvDfGP+SsTKibU3o5NtWHuZFGZOxP6P5VXqIOvaOSec4eYohyd7NslHuJbd1bewds85xYrNxkr2d+5IhFWF3NvaO684xjE2S5ulY+tu64Pna0fCPJgzw6vF5/WucLcYjt5xoq19O3UDptOg/OamJQRaCcPPnMTQ2QDFn+uhPvUfnCrMc99upyQY4Ui9Dlc/YoG3R/v4Cs9YE+g==\",\"host\":\"grpcbin.test.k6.io\",\"message\":\"{}\",\"metadata\":{},\"method\":\"Index\",\"port\":9000,\"service\":\"grpcbin.GRPCBin\"},\"retry\":{\"count\":0,\"interval\":300},\"subtype\":\"grpc\",\"id\":\"5s9-wdd-awh\"}]},\"message\":\"BDD test payload: synthetics_api_test_multi_step_payload.json\",\"options\":{\"accept_self_signed\":false,\"allow_insecure\":true,\"follow_redirects\":true,\"min_failure_duration\":10,\"min_location_failed\":1,\"monitor_name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1740501263\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"locations\":[\"aws:us-east-2\"],\"created_by\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"email\":\"[email protected]\"},\"deleted_at\":null,\"monitor_id\":165393053,\"org_id\":321813,\"modified_by\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"email\":\"[email protected]\"}}",
1616
"headers": {
1717
"Content-Type": [
1818
"application/json"
@@ -27,13 +27,13 @@
2727
"timeToLive": {
2828
"unlimited": true
2929
},
30-
"id": "9d79515b-d1f3-d799-ff71-a167e1cdd8ff"
30+
"id": "eb75742d-592b-d5ef-b3a6-bb4f4e8f079e"
3131
},
3232
{
3333
"httpRequest": {
3434
"body": {
3535
"type": "JSON",
36-
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1733743057\",\"tags\":[]}"
36+
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1740501263\",\"tags\":[]}"
3737
},
3838
"headers": {},
3939
"method": "POST",
@@ -42,7 +42,7 @@
4242
"secure": true
4343
},
4444
"httpResponse": {
45-
"body": "{\"id\":\"7e732043-f247-41d4-adff-ccf1624107b7\",\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1733743057\",\"description\":\"\",\"type\":\"variable\",\"tags\":[],\"last_error\":null,\"is_fido\":true,\"value\":{\"secure\":true}}\n",
45+
"body": "{\"id\":\"8cf7404b-d839-4a30-b86e-02158c90d20e\",\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1740501263\",\"description\":\"\",\"type\":\"variable\",\"tags\":[],\"last_error\":null,\"is_fido\":true,\"value\":{\"secure\":true}}\n",
4646
"headers": {
4747
"Content-Type": [
4848
"application/json"
@@ -57,13 +57,13 @@
5757
"timeToLive": {
5858
"unlimited": true
5959
},
60-
"id": "a79c7366-3814-2394-db24-1f2beac41baa"
60+
"id": "ddd27824-152d-552a-69d1-262de4f5b027"
6161
},
6262
{
6363
"httpRequest": {
6464
"headers": {},
6565
"method": "DELETE",
66-
"path": "/api/v1/synthetics/variables/7e732043-f247-41d4-adff-ccf1624107b7",
66+
"path": "/api/v1/synthetics/variables/8cf7404b-d839-4a30-b86e-02158c90d20e",
6767
"keepAlive": false,
6868
"secure": true
6969
},
@@ -82,13 +82,13 @@
8282
"timeToLive": {
8383
"unlimited": true
8484
},
85-
"id": "66493229-5f8f-355e-32ba-ddda521bfd5e"
85+
"id": "bbea431a-7ca3-a446-4a7a-18d90f851ad6"
8686
},
8787
{
8888
"httpRequest": {
8989
"body": {
9090
"type": "JSON",
91-
"json": "{\"public_ids\":[\"2ym-xig-di5\"]}"
91+
"json": "{\"public_ids\":[\"rba-ta9-q2g\"]}"
9292
},
9393
"headers": {},
9494
"method": "POST",
@@ -97,7 +97,7 @@
9797
"secure": true
9898
},
9999
"httpResponse": {
100-
"body": "{\"deleted_tests\":[{\"public_id\":\"2ym-xig-di5\",\"deleted_at\":\"2024-12-09T11:17:40.588357+00:00\"}]}\n",
100+
"body": "{\"deleted_tests\":[{\"public_id\":\"rba-ta9-q2g\",\"deleted_at\":\"2025-02-25T16:34:26.535007+00:00\"}]}\n",
101101
"headers": {
102102
"Content-Type": [
103103
"application/json"
@@ -112,6 +112,6 @@
112112
"timeToLive": {
113113
"unlimited": true
114114
},
115-
"id": "2b0fbff2-7b1e-33da-456c-bb2902f8eb21"
115+
"id": "165ecbf9-e0ae-5646-4c0a-4a3dcb1009f1"
116116
}
117117
]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-12-09T11:17:40.840Z
1+
2025-02-25T16:34:26.775Z

0 commit comments

Comments
 (0)