Skip to content

Commit c4295c1

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
andauthored
Add exitIfSucceed to multistep API tests (#2606)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent ce43637 commit c4295c1

File tree

56 files changed

+234
-194
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+234
-194
lines changed

.apigentools-info

Lines changed: 4 additions & 4 deletions
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": "2024-12-05 20:22:35.825531",
8-
"spec_repo_commit": "970515f9"
7+
"regenerated": "2024-12-09 11:21:35.673772",
8+
"spec_repo_commit": "21da0df3"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-12-05 20:22:35.844871",
13-
"spec_repo_commit": "970515f9"
12+
"regenerated": "2024-12-09 11:21:35.692436",
13+
"spec_repo_commit": "21da0df3"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13741,6 +13741,9 @@ components:
1374113741
items:
1374213742
$ref: '#/components/schemas/SyntheticsAssertion'
1374313743
type: array
13744+
exitIfSucceed:
13745+
description: Determines whether or not to exit the test if the step succeeds.
13746+
type: boolean
1374413747
extractedValues:
1374513748
description: Array of values to parse and save as variables from the response.
1374613749
items:

examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ public static void main(String[] args) {
6060
.operator(SyntheticsAssertionOperator.IS)
6161
.type(SyntheticsAssertionType.STATUS_CODE)
6262
.target(200))))
63+
.exitIfSucceed(true)
6364
.extractedValues(
6465
Collections.singletonList(
6566
new SyntheticsParsingOptions()

examples/v1/synthetics/CreateSyntheticsBrowserTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ public static void main(String[] args) {
6767
Collections.singletonList(
6868
new SyntheticsStep()
6969
.allowFailure(false)
70+
.alwaysExecute(true)
71+
.exitIfSucceed(true)
7072
.isCritical(true)
7173
.name("Refresh page")
7274
.params(new Object())

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

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
@JsonPropertyOrder({
2424
SyntheticsAPITestStep.JSON_PROPERTY_ALLOW_FAILURE,
2525
SyntheticsAPITestStep.JSON_PROPERTY_ASSERTIONS,
26+
SyntheticsAPITestStep.JSON_PROPERTY_EXIT_IF_SUCCEED,
2627
SyntheticsAPITestStep.JSON_PROPERTY_EXTRACTED_VALUES,
2728
SyntheticsAPITestStep.JSON_PROPERTY_IS_CRITICAL,
2829
SyntheticsAPITestStep.JSON_PROPERTY_NAME,
@@ -40,6 +41,9 @@ public class SyntheticsAPITestStep {
4041
public static final String JSON_PROPERTY_ASSERTIONS = "assertions";
4142
private List<SyntheticsAssertion> assertions = new ArrayList<>();
4243

44+
public static final String JSON_PROPERTY_EXIT_IF_SUCCEED = "exitIfSucceed";
45+
private Boolean exitIfSucceed;
46+
4347
public static final String JSON_PROPERTY_EXTRACTED_VALUES = "extractedValues";
4448
private List<SyntheticsParsingOptions> extractedValues = null;
4549

@@ -126,6 +130,27 @@ public void setAssertions(List<SyntheticsAssertion> assertions) {
126130
this.assertions = assertions;
127131
}
128132

133+
public SyntheticsAPITestStep exitIfSucceed(Boolean exitIfSucceed) {
134+
this.exitIfSucceed = exitIfSucceed;
135+
return this;
136+
}
137+
138+
/**
139+
* Determines whether or not to exit the test if the step succeeds.
140+
*
141+
* @return exitIfSucceed
142+
*/
143+
@jakarta.annotation.Nullable
144+
@JsonProperty(JSON_PROPERTY_EXIT_IF_SUCCEED)
145+
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
146+
public Boolean getExitIfSucceed() {
147+
return exitIfSucceed;
148+
}
149+
150+
public void setExitIfSucceed(Boolean exitIfSucceed) {
151+
this.exitIfSucceed = exitIfSucceed;
152+
}
153+
129154
public SyntheticsAPITestStep extractedValues(List<SyntheticsParsingOptions> extractedValues) {
130155
this.extractedValues = extractedValues;
131156
for (SyntheticsParsingOptions item : extractedValues) {
@@ -327,6 +352,7 @@ public boolean equals(Object o) {
327352
SyntheticsAPITestStep syntheticsApiTestStep = (SyntheticsAPITestStep) o;
328353
return Objects.equals(this.allowFailure, syntheticsApiTestStep.allowFailure)
329354
&& Objects.equals(this.assertions, syntheticsApiTestStep.assertions)
355+
&& Objects.equals(this.exitIfSucceed, syntheticsApiTestStep.exitIfSucceed)
330356
&& Objects.equals(this.extractedValues, syntheticsApiTestStep.extractedValues)
331357
&& Objects.equals(this.isCritical, syntheticsApiTestStep.isCritical)
332358
&& Objects.equals(this.name, syntheticsApiTestStep.name)
@@ -341,6 +367,7 @@ public int hashCode() {
341367
return Objects.hash(
342368
allowFailure,
343369
assertions,
370+
exitIfSucceed,
344371
extractedValues,
345372
isCritical,
346373
name,
@@ -356,6 +383,7 @@ public String toString() {
356383
sb.append("class SyntheticsAPITestStep {\n");
357384
sb.append(" allowFailure: ").append(toIndentedString(allowFailure)).append("\n");
358385
sb.append(" assertions: ").append(toIndentedString(assertions)).append("\n");
386+
sb.append(" exitIfSucceed: ").append(toIndentedString(exitIfSucceed)).append("\n");
359387
sb.append(" extractedValues: ").append(toIndentedString(extractedValues)).append("\n");
360388
sb.append(" isCritical: ").append(toIndentedString(isCritical)).append("\n");
361389
sb.append(" name: ").append(toIndentedString(name)).append("\n");
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-09-10T20:52:06.237Z
1+
2024-12-09T11:17:37.828Z

src/test/resources/cassettes/features/v1/Create_a_FIDO_global_variable_returns_OK_response.json

Lines changed: 11 additions & 11 deletions
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\"}],\"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-1726001526\",\"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-1726001526\",\"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\"}],\"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\"}"
77
},
88
"headers": {},
99
"method": "POST",
@@ -12,7 +12,7 @@
1212
"secure": true
1313
},
1414
"httpResponse": {
15-
"body": "{\"public_id\":\"p6b-hvg-d5g\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1726001526\",\"status\":\"live\",\"type\":\"api\",\"tags\":[\"testing:api\"],\"created_at\":\"2024-09-10T20:52:06.807594+00:00\",\"modified_at\":\"2024-09-10T20:52:06.807594+00:00\",\"config\":{\"configVariables\":[{\"example\":\"content-type\",\"name\":\"PROPERTY\",\"pattern\":\"content-type\",\"type\":\"text\"}],\"steps\":[{\"allowFailure\":true,\"assertions\":[{\"operator\":\"is\",\"target\":200,\"type\":\"statusCode\"}],\"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\":\"9pq-dfu-4tx\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1,\"id\":\"5zh-heq-fy6\"},{\"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\":\"yym-8ty-zfz\"}]},\"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-1726001526\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"locations\":[\"aws:us-east-2\"],\"subtype\":\"multi\",\"created_by\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"email\":\"team-intg-tools-libs-spam@datadoghq.com\"},\"deleted_at\":null,\"monitor_id\":153521795,\"org_id\":321813,\"modified_by\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"email\":\"team-intg-tools-libs-spam@datadoghq.com\"}}",
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\":\"frog@datadoghq.com\",\"email\":\"frog@datadoghq.com\"},\"deleted_at\":null,\"monitor_id\":159880989,\"org_id\":321813,\"modified_by\":{\"name\":null,\"handle\":\"frog@datadoghq.com\",\"email\":\"frog@datadoghq.com\"}}",
1616
"headers": {
1717
"Content-Type": [
1818
"application/json"
@@ -27,13 +27,13 @@
2727
"timeToLive": {
2828
"unlimited": true
2929
},
30-
"id": "9b2d42ae-18cc-e6fb-9b1f-bf5a5e39dc5e"
30+
"id": "9d79515b-d1f3-d799-ff71-a167e1cdd8ff"
3131
},
3232
{
3333
"httpRequest": {
3434
"body": {
3535
"type": "JSON",
36-
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1726001526\",\"tags\":[]}"
36+
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1733743057\",\"tags\":[]}"
3737
},
3838
"headers": {},
3939
"method": "POST",
@@ -42,7 +42,7 @@
4242
"secure": true
4343
},
4444
"httpResponse": {
45-
"body": "{\"id\":\"444f9cc5-e73a-48f5-abf5-da526ad46a56\",\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1726001526\",\"description\":\"\",\"type\":\"variable\",\"tags\":[],\"last_error\":null,\"is_fido\":true,\"value\":{\"secure\":true}}\n",
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",
4646
"headers": {
4747
"Content-Type": [
4848
"application/json"
@@ -57,13 +57,13 @@
5757
"timeToLive": {
5858
"unlimited": true
5959
},
60-
"id": "ed98208e-d9fb-1b19-8748-68b8203e8a5c"
60+
"id": "a79c7366-3814-2394-db24-1f2beac41baa"
6161
},
6262
{
6363
"httpRequest": {
6464
"headers": {},
6565
"method": "DELETE",
66-
"path": "/api/v1/synthetics/variables/444f9cc5-e73a-48f5-abf5-da526ad46a56",
66+
"path": "/api/v1/synthetics/variables/7e732043-f247-41d4-adff-ccf1624107b7",
6767
"keepAlive": false,
6868
"secure": true
6969
},
@@ -82,13 +82,13 @@
8282
"timeToLive": {
8383
"unlimited": true
8484
},
85-
"id": "fff39fea-6af4-f30b-fbf8-2f033cffdad0"
85+
"id": "66493229-5f8f-355e-32ba-ddda521bfd5e"
8686
},
8787
{
8888
"httpRequest": {
8989
"body": {
9090
"type": "JSON",
91-
"json": "{\"public_ids\":[\"p6b-hvg-d5g\"]}"
91+
"json": "{\"public_ids\":[\"2ym-xig-di5\"]}"
9292
},
9393
"headers": {},
9494
"method": "POST",
@@ -97,7 +97,7 @@
9797
"secure": true
9898
},
9999
"httpResponse": {
100-
"body": "{\"deleted_tests\":[{\"public_id\":\"p6b-hvg-d5g\",\"deleted_at\":\"2024-09-10T20:52:08.499085+00:00\"}]}\n",
100+
"body": "{\"deleted_tests\":[{\"public_id\":\"2ym-xig-di5\",\"deleted_at\":\"2024-12-09T11:17:40.588357+00:00\"}]}\n",
101101
"headers": {
102102
"Content-Type": [
103103
"application/json"
@@ -112,6 +112,6 @@
112112
"timeToLive": {
113113
"unlimited": true
114114
},
115-
"id": "4480f19c-6a58-a0ad-ce08-4b56a22201de"
115+
"id": "2b0fbff2-7b1e-33da-456c-bb2902f8eb21"
116116
}
117117
]
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-09-10T20:52:08.676Z
1+
2024-12-09T11:17:40.840Z

0 commit comments

Comments
 (0)