Skip to content

Commit 9ee2486

Browse files
api-clients-generation-pipeline[bot]ci.datadog-api-spec
and
ci.datadog-api-spec
authored
allow variables in port (#2424)
Co-authored-by: ci.datadog-api-spec <packages@datadoghq.com>
1 parent 4067b36 commit 9ee2486

File tree

26 files changed

+88
-92
lines changed

26 files changed

+88
-92
lines changed

.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": "2024-08-21 21:10:07.401687",
8-
"spec_repo_commit": "46829234"
7+
"regenerated": "2024-08-22 19:10:58.280531",
8+
"spec_repo_commit": "9ce6b1ec"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-08-21 21:10:07.427956",
13-
"spec_repo_commit": "46829234"
12+
"regenerated": "2024-08-22 19:10:58.298168",
13+
"spec_repo_commit": "9ce6b1ec"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

+2-6
Original file line numberDiff line numberDiff line change
@@ -16237,10 +16237,7 @@ components:
1623716237
type: string
1623816238
dnsServerPort:
1623916239
description: DNS server port to use for DNS tests.
16240-
format: int32
16241-
maximum: 65535
16242-
minimum: 1
16243-
type: integer
16240+
type: string
1624416241
files:
1624516242
description: Files to be used as part of the request in the test.
1624616243
items:
@@ -16280,8 +16277,7 @@ components:
1628016277
type: boolean
1628116278
port:
1628216279
description: Port to use when performing the test.
16283-
format: int64
16284-
type: integer
16280+
type: string
1628516281
proxy:
1628616282
$ref: '#/components/schemas/SyntheticsTestRequestProxy'
1628716283
query:

examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public static void main(String[] args) {
3131
.operator(SyntheticsAssertionOperator.IS_IN_MORE_DAYS_THAN)
3232
.target(10)
3333
.type(SyntheticsAssertionType.CERTIFICATE))))
34-
.request(new SyntheticsTestRequest().host("datadoghq.com").port(443L)))
34+
.request(new SyntheticsTestRequest().host("datadoghq.com").port("443")))
3535
.locations(Collections.singletonList("aws:us-east-2"))
3636
.message("BDD test payload: synthetics_api_ssl_test_payload.json")
3737
.name("Example-Synthetic")

examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ public static void main(String[] args) {
106106
.request(
107107
new SyntheticsTestRequest()
108108
.host("grpcbin.test.k6.io")
109-
.port(9000L)
109+
.port("9000")
110110
.service("grpcbin.GRPCBin")
111111
.method("Index")
112112
.message("{}")

examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void main(String[] args) {
4848
.request(
4949
new SyntheticsTestRequest()
5050
.host("localhost")
51-
.port(50051L)
51+
.port("50051")
5252
.service("Hello")
5353
.method("GET")
5454
.message("")

examples/v1/synthetics/CreateSyntheticsAPITest_3829801148.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public static void main(String[] args) {
4242
new SyntheticsTestRequest()
4343
.host("https://datadoghq.com")
4444
.message("message")
45-
.port(443L)))
45+
.port("443")))
4646
.locations(Collections.singletonList("aws:us-east-2"))
4747
.message("BDD test payload: synthetics_api_test_udp_payload.json")
4848
.name("Example-Synthetic")

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

+9-9
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ public class SyntheticsTestRequest {
8686
private String dnsServer;
8787

8888
public static final String JSON_PROPERTY_DNS_SERVER_PORT = "dnsServerPort";
89-
private Integer dnsServerPort;
89+
private String dnsServerPort;
9090

9191
public static final String JSON_PROPERTY_FILES = "files";
9292
private List<SyntheticsTestRequestBodyFile> files = null;
@@ -122,7 +122,7 @@ public class SyntheticsTestRequest {
122122
private Boolean persistCookies;
123123

124124
public static final String JSON_PROPERTY_PORT = "port";
125-
private Long port;
125+
private String port;
126126

127127
public static final String JSON_PROPERTY_PROXY = "proxy";
128128
private SyntheticsTestRequestProxy proxy;
@@ -375,24 +375,24 @@ public void setDnsServer(String dnsServer) {
375375
this.dnsServer = dnsServer;
376376
}
377377

378-
public SyntheticsTestRequest dnsServerPort(Integer dnsServerPort) {
378+
public SyntheticsTestRequest dnsServerPort(String dnsServerPort) {
379379
this.dnsServerPort = dnsServerPort;
380380
return this;
381381
}
382382

383383
/**
384-
* DNS server port to use for DNS tests. minimum: 1 maximum: 65535
384+
* DNS server port to use for DNS tests.
385385
*
386386
* @return dnsServerPort
387387
*/
388388
@jakarta.annotation.Nullable
389389
@JsonProperty(JSON_PROPERTY_DNS_SERVER_PORT)
390390
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
391-
public Integer getDnsServerPort() {
391+
public String getDnsServerPort() {
392392
return dnsServerPort;
393393
}
394394

395-
public void setDnsServerPort(Integer dnsServerPort) {
395+
public void setDnsServerPort(String dnsServerPort) {
396396
this.dnsServerPort = dnsServerPort;
397397
}
398398

@@ -661,7 +661,7 @@ public void setPersistCookies(Boolean persistCookies) {
661661
this.persistCookies = persistCookies;
662662
}
663663

664-
public SyntheticsTestRequest port(Long port) {
664+
public SyntheticsTestRequest port(String port) {
665665
this.port = port;
666666
return this;
667667
}
@@ -674,11 +674,11 @@ public SyntheticsTestRequest port(Long port) {
674674
@jakarta.annotation.Nullable
675675
@JsonProperty(JSON_PROPERTY_PORT)
676676
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
677-
public Long getPort() {
677+
public String getPort() {
678678
return port;
679679
}
680680

681-
public void setPort(Long port) {
681+
public void setPort(String port) {
682682
this.port = port;
683683
}
684684

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-08-14T08:58:43.057Z
1+
2024-08-21T13:17:18.467Z

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\"}],\"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-1723625923\",\"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-1723625923\",\"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\"}],\"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-1724246238\",\"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-1724246238\",\"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\":\"ntf-3e2-mti\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1723625923\",\"status\":\"live\",\"type\":\"api\",\"tags\":[\"testing:api\"],\"created_at\":\"2024-08-14T08:58:43.764902+00:00\",\"modified_at\":\"2024-08-14T08:58:43.764902+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\":\"tj8-4ij-ddd\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1,\"id\":\"w3m-csm-75k\"},{\"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\":\"h3x-7i4-rcp\"}]},\"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-1723625923\",\"monitor_priority\":5,\"retry\":{\"count\":3,\"interval\":1000},\"tick_every\":60},\"locations\":[\"aws:us-east-2\"],\"subtype\":\"multi\",\"created_by\":{\"name\":null,\"handle\":\"frog@datadoghq.com\",\"email\":\"frog@datadoghq.com\"},\"deleted_at\":null,\"monitor_id\":151290037,\"org_id\":321813,\"modified_by\":{\"name\":null,\"handle\":\"frog@datadoghq.com\",\"email\":\"frog@datadoghq.com\"}}",
15+
"body": "{\"public_id\":\"yvw-pgh-sk7\",\"name\":\"Test-Create_a_FIDO_global_variable_returns_OK_response-1724246238\",\"status\":\"live\",\"type\":\"api\",\"tags\":[\"testing:api\"],\"created_at\":\"2024-08-21T13:17:19.015080+00:00\",\"modified_at\":\"2024-08-21T13:17:19.015080+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\":\"gam-njf-7gp\"},{\"name\":\"Wait\",\"subtype\":\"wait\",\"value\":1,\"id\":\"y9u-9hp-bqu\"},{\"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\":\"bcb-fqr-bhg\"}]},\"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-1724246238\",\"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\":151908777,\"org_id\":321813,\"modified_by\":{\"name\":\"CI Account\",\"handle\":\"9919ec9b-ebc7-49ee-8dc8-03626e717cca\",\"email\":\"team-intg-tools-libs-spam@datadoghq.com\"}}",
1616
"headers": {
1717
"Content-Type": [
1818
"application/json"
@@ -27,13 +27,13 @@
2727
"timeToLive": {
2828
"unlimited": true
2929
},
30-
"id": "101b08b3-d0fc-7c6a-2038-449d764ee091"
30+
"id": "cc1edf09-a883-6a40-4fc4-b12ce9dce913"
3131
},
3232
{
3333
"httpRequest": {
3434
"body": {
3535
"type": "JSON",
36-
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1723625923\",\"tags\":[]}"
36+
"json": "{\"description\":\"\",\"is_fido\":true,\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1724246238\",\"tags\":[]}"
3737
},
3838
"headers": {},
3939
"method": "POST",
@@ -42,7 +42,7 @@
4242
"secure": true
4343
},
4444
"httpResponse": {
45-
"body": "{\"id\":\"bf2cc5f0-2529-433c-b892-84e83e13a759\",\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1723625923\",\"description\":\"\",\"type\":\"variable\",\"tags\":[],\"last_error\":null,\"is_fido\":true,\"value\":{\"secure\":true}}\n",
45+
"body": "{\"id\":\"07e4657c-34e0-4815-b906-449c9f28ab5a\",\"name\":\"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1724246238\",\"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": "c9fbd453-a8c5-3d26-14f1-8e3ba352b056"
60+
"id": "1d3bafee-bc67-9313-acfd-2a77c2115b1d"
6161
},
6262
{
6363
"httpRequest": {
6464
"headers": {},
6565
"method": "DELETE",
66-
"path": "/api/v1/synthetics/variables/bf2cc5f0-2529-433c-b892-84e83e13a759",
66+
"path": "/api/v1/synthetics/variables/07e4657c-34e0-4815-b906-449c9f28ab5a",
6767
"keepAlive": false,
6868
"secure": true
6969
},
@@ -82,13 +82,13 @@
8282
"timeToLive": {
8383
"unlimited": true
8484
},
85-
"id": "abddc754-42e4-96c4-e530-e5e5d9df591a"
85+
"id": "aaa64459-8b96-e054-c7c3-797fab3326a3"
8686
},
8787
{
8888
"httpRequest": {
8989
"body": {
9090
"type": "JSON",
91-
"json": "{\"public_ids\":[\"ntf-3e2-mti\"]}"
91+
"json": "{\"public_ids\":[\"yvw-pgh-sk7\"]}"
9292
},
9393
"headers": {},
9494
"method": "POST",
@@ -97,7 +97,7 @@
9797
"secure": true
9898
},
9999
"httpResponse": {
100-
"body": "{\"deleted_tests\":[{\"public_id\":\"ntf-3e2-mti\",\"deleted_at\":\"2024-08-14T08:58:45.504158+00:00\"}]}\n",
100+
"body": "{\"deleted_tests\":[{\"public_id\":\"yvw-pgh-sk7\",\"deleted_at\":\"2024-08-21T13:17:21.136962+00:00\"}]}\n",
101101
"headers": {
102102
"Content-Type": [
103103
"application/json"
@@ -112,6 +112,6 @@
112112
"timeToLive": {
113113
"unlimited": true
114114
},
115-
"id": "c579bd0b-6068-ed55-e472-5c02a0c3dfde"
115+
"id": "acb3bbda-d284-caaa-fff6-2e14683fbf0a"
116116
}
117117
]
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-08-14T08:58:58.240Z
1+
2024-08-21T13:17:21.302Z

0 commit comments

Comments
 (0)