Skip to content

Commit 9dd7fc6

Browse files
author
ci.datadog-api-spec
committed
Regenerate client from commit 5f51af02 of spec repo
1 parent 436b666 commit 9dd7fc6

File tree

29 files changed

+150
-89
lines changed

29 files changed

+150
-89
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-09-10 08:48:30.716171",
8-
"spec_repo_commit": "b32bee1b"
7+
"regenerated": "2024-09-11 18:01:51.197704",
8+
"spec_repo_commit": "5f51af02"
99
},
1010
"v2": {
1111
"apigentools_version": "1.6.6",
12-
"regenerated": "2024-09-10 08:48:30.742094",
13-
"spec_repo_commit": "b32bee1b"
12+
"regenerated": "2024-09-11 18:01:51.215357",
13+
"spec_repo_commit": "5f51af02"
1414
}
1515
}
1616
}

.generator/schemas/v1/openapi.yaml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16352,8 +16352,7 @@ components:
1635216352
description: Persist cookies across redirects.
1635316353
type: boolean
1635416354
port:
16355-
description: Port to use when performing the test.
16356-
type: string
16355+
$ref: '#/components/schemas/SyntheticsTestRequestPort'
1635716356
proxy:
1635816357
$ref: '#/components/schemas/SyntheticsTestRequestProxy'
1635916358
query:
@@ -16457,6 +16456,15 @@ components:
1645716456
description: Date of update of the certificate or key, ISO format.
1645816457
type: string
1645916458
type: object
16459+
SyntheticsTestRequestNumericalPort:
16460+
description: Integer Port number to use when performing the test.
16461+
format: int64
16462+
type: integer
16463+
SyntheticsTestRequestPort:
16464+
description: Port to use when performing the test.
16465+
oneOf:
16466+
- $ref: '#/components/schemas/SyntheticsTestRequestNumericalPort'
16467+
- $ref: '#/components/schemas/SyntheticsTestRequestVariablePort'
1646016468
SyntheticsTestRequestProxy:
1646116469
description: The proxy to perform the test.
1646216470
properties:
@@ -16469,6 +16477,10 @@ components:
1646916477
required:
1647016478
- url
1647116479
type: object
16480+
SyntheticsTestRequestVariablePort:
16481+
description: String Port number to use when performing the test. Supports templated
16482+
variables.
16483+
type: string
1647216484
SyntheticsTiming:
1647316485
description: 'Object containing all metrics and their values collected for a
1647416486
Synthetic API test.

docs/datadog_api_client.v1.model.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4771,6 +4771,13 @@ datadog\_api\_client.v1.model.synthetics\_test\_request\_certificate\_item modul
47714771
:members:
47724772
:show-inheritance:
47734773

4774+
datadog\_api\_client.v1.model.synthetics\_test\_request\_port module
4775+
--------------------------------------------------------------------
4776+
4777+
.. automodule:: datadog_api_client.v1.model.synthetics_test_request_port
4778+
:members:
4779+
:show-inheritance:
4780+
47744781
datadog\_api\_client.v1.model.synthetics\_test\_request\_proxy module
47754782
---------------------------------------------------------------------
47764783

examples/v1/synthetics/CreateSyntheticsAPITest_1072503741.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
],
2626
request=SyntheticsTestRequest(
2727
host="datadoghq.com",
28-
port="443",
28+
port="{{ DATADOG_URL }}",
2929
),
3030
),
3131
locations=[

examples/v1/synthetics/CreateSyntheticsAPITest_1279271422.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
],
100100
request=SyntheticsTestRequest(
101101
host="grpcbin.test.k6.io",
102-
port="9000",
102+
port=9000,
103103
service="grpcbin.GRPCBin",
104104
method="Index",
105105
message="{}",

examples/v1/synthetics/CreateSyntheticsAPITest_1402674167.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
],
3939
request=SyntheticsTestRequest(
4040
host="localhost",
41-
port="50051",
41+
port=50051,
4242
service="Hello",
4343
method="GET",
4444
message="",

examples/v1/synthetics/CreateSyntheticsAPITest_3829801148.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
request=SyntheticsTestRequest(
3434
host="https://datadoghq.com",
3535
message="message",
36-
port="443",
36+
port=443,
3737
),
3838
),
3939
locations=[

src/datadog_api_client/v1/model/synthetics_test_request.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
from datadog_api_client.v1.model.synthetics_test_headers import SyntheticsTestHeaders
2323
from datadog_api_client.v1.model.synthetics_test_options_http_version import SyntheticsTestOptionsHTTPVersion
2424
from datadog_api_client.v1.model.synthetics_test_metadata import SyntheticsTestMetadata
25+
from datadog_api_client.v1.model.synthetics_test_request_port import SyntheticsTestRequestPort
2526
from datadog_api_client.v1.model.synthetics_test_request_proxy import SyntheticsTestRequestProxy
2627
from datadog_api_client.v1.model.synthetics_basic_auth_web import SyntheticsBasicAuthWeb
2728
from datadog_api_client.v1.model.synthetics_basic_auth_sigv4 import SyntheticsBasicAuthSigv4
@@ -49,6 +50,7 @@ def openapi_types(_):
4950
from datadog_api_client.v1.model.synthetics_test_headers import SyntheticsTestHeaders
5051
from datadog_api_client.v1.model.synthetics_test_options_http_version import SyntheticsTestOptionsHTTPVersion
5152
from datadog_api_client.v1.model.synthetics_test_metadata import SyntheticsTestMetadata
53+
from datadog_api_client.v1.model.synthetics_test_request_port import SyntheticsTestRequestPort
5254
from datadog_api_client.v1.model.synthetics_test_request_proxy import SyntheticsTestRequestProxy
5355

5456
return {
@@ -74,7 +76,7 @@ def openapi_types(_):
7476
"no_saving_response_body": (bool,),
7577
"number_of_packets": (int,),
7678
"persist_cookies": (bool,),
77-
"port": (str,),
79+
"port": (SyntheticsTestRequestPort,),
7880
"proxy": (SyntheticsTestRequestProxy,),
7981
"query": (dict,),
8082
"servername": (str,),
@@ -150,7 +152,7 @@ def __init__(
150152
no_saving_response_body: Union[bool, UnsetType] = unset,
151153
number_of_packets: Union[int, UnsetType] = unset,
152154
persist_cookies: Union[bool, UnsetType] = unset,
153-
port: Union[str, UnsetType] = unset,
155+
port: Union[SyntheticsTestRequestPort, int, str, UnsetType] = unset,
154156
proxy: Union[SyntheticsTestRequestProxy, UnsetType] = unset,
155157
query: Union[dict, UnsetType] = unset,
156158
servername: Union[str, UnsetType] = unset,
@@ -230,7 +232,7 @@ def __init__(
230232
:type persist_cookies: bool, optional
231233
232234
:param port: Port to use when performing the test.
233-
:type port: str, optional
235+
:type port: SyntheticsTestRequestPort, optional
234236
235237
:param proxy: The proxy to perform the test.
236238
:type proxy: SyntheticsTestRequestProxy, optional
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
2+
# This product includes software developed at Datadog (https://www.datadoghq.com/).
3+
# Copyright 2019-Present Datadog, Inc.
4+
from __future__ import annotations
5+
6+
7+
from datadog_api_client.model_utils import (
8+
ModelComposed,
9+
cached_property,
10+
)
11+
12+
13+
class SyntheticsTestRequestPort(ModelComposed):
14+
def __init__(self, **kwargs):
15+
"""
16+
Port to use when performing the test.
17+
"""
18+
super().__init__(kwargs)
19+
20+
@cached_property
21+
def _composed_schemas(_):
22+
# we need this here to make our import statements work
23+
# we must store _composed_schemas in here so the code is only run
24+
# when we invoke this method. If we kept this at the class
25+
# level we would get an error because the class level
26+
# code would be run when this module is imported, and these composed
27+
# classes don't exist yet because their module has not finished
28+
# loading
29+
return {
30+
"oneOf": [
31+
int,
32+
str,
33+
],
34+
}

src/datadog_api_client/v1/models/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -784,6 +784,7 @@
784784
from datadog_api_client.v1.model.synthetics_test_request_body_type import SyntheticsTestRequestBodyType
785785
from datadog_api_client.v1.model.synthetics_test_request_certificate import SyntheticsTestRequestCertificate
786786
from datadog_api_client.v1.model.synthetics_test_request_certificate_item import SyntheticsTestRequestCertificateItem
787+
from datadog_api_client.v1.model.synthetics_test_request_port import SyntheticsTestRequestPort
787788
from datadog_api_client.v1.model.synthetics_test_request_proxy import SyntheticsTestRequestProxy
788789
from datadog_api_client.v1.model.synthetics_timing import SyntheticsTiming
789790
from datadog_api_client.v1.model.synthetics_trigger_body import SyntheticsTriggerBody
@@ -1676,6 +1677,7 @@
16761677
"SyntheticsTestRequestBodyType",
16771678
"SyntheticsTestRequestCertificate",
16781679
"SyntheticsTestRequestCertificateItem",
1680+
"SyntheticsTestRequestPort",
16791681
"SyntheticsTestRequestProxy",
16801682
"SyntheticsTiming",
16811683
"SyntheticsTriggerBody",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-08-21T13:17:18.467Z
1+
2024-09-10T20:52:06.237Z

tests/v1/cassettes/test_scenarios/test_create_a_fido_global_variable_returns_ok_response.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ interactions:
22
- request:
33
body: '{"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
44
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
5-
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
6-
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"}'
5+
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
6+
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"}'
77
headers:
88
accept:
99
- application/json
@@ -13,11 +13,11 @@ interactions:
1313
uri: https://api.datadoghq.com/api/v1/synthetics/tests/api
1414
response:
1515
body:
16-
string: '{"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
17-
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
18-
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
19-
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
20-
Account","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"[email protected]"},"deleted_at":null,"monitor_id":151908777,"org_id":321813,"modified_by":{"name":"CI
16+
string: '{"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
17+
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
18+
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
19+
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
20+
Account","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"[email protected]"},"deleted_at":null,"monitor_id":153521795,"org_id":321813,"modified_by":{"name":"CI
2121
Account","handle":"9919ec9b-ebc7-49ee-8dc8-03626e717cca","email":"[email protected]"}}'
2222
headers:
2323
content-type:
@@ -26,7 +26,7 @@ interactions:
2626
code: 200
2727
message: OK
2828
- request:
29-
body: '{"description":"","is_fido":true,"name":"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1724246238","tags":[]}'
29+
body: '{"description":"","is_fido":true,"name":"GLOBAL_VARIABLE_FIDO_PAYLOAD_TESTCREATEAFIDOGLOBALVARIABLERETURNSOKRESPONSE1726001526","tags":[]}'
3030
headers:
3131
accept:
3232
- application/json
@@ -36,7 +36,7 @@ interactions:
3636
uri: https://api.datadoghq.com/api/v1/synthetics/variables
3737
response:
3838
body:
39-
string: '{"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}}
39+
string: '{"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}}
4040
4141
'
4242
headers:
@@ -51,7 +51,7 @@ interactions:
5151
accept:
5252
- '*/*'
5353
method: DELETE
54-
uri: https://api.datadoghq.com/api/v1/synthetics/variables/07e4657c-34e0-4815-b906-449c9f28ab5a
54+
uri: https://api.datadoghq.com/api/v1/synthetics/variables/444f9cc5-e73a-48f5-abf5-da526ad46a56
5555
response:
5656
body:
5757
string: ''
@@ -62,7 +62,7 @@ interactions:
6262
code: 200
6363
message: OK
6464
- request:
65-
body: '{"public_ids":["yvw-pgh-sk7"]}'
65+
body: '{"public_ids":["p6b-hvg-d5g"]}'
6666
headers:
6767
accept:
6868
- application/json
@@ -72,7 +72,7 @@ interactions:
7272
uri: https://api.datadoghq.com/api/v1/synthetics/tests/delete
7373
response:
7474
body:
75-
string: '{"deleted_tests":[{"public_id":"yvw-pgh-sk7","deleted_at":"2024-08-21T13:17:21.136962+00:00"}]}
75+
string: '{"deleted_tests":[{"public_id":"p6b-hvg-d5g","deleted_at":"2024-09-10T20:52:08.499085+00:00"}]}
7676
7777
'
7878
headers:
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2024-08-21T13:12:21.158Z
1+
2024-09-10T20:52:11.058Z

0 commit comments

Comments
 (0)