-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable McNulty paths that have no changes. (#24087)
Co-authored-by: ci.datadog-api-spec <[email protected]> Co-authored-by: api-clients-generation-pipeline[bot] <54105614+api-clients-generation-pipeline[bot]@users.noreply.github.com>
- Loading branch information
1 parent
34cbfaf
commit bf39a73
Showing
10 changed files
with
977 additions
and
302 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
157 changes: 157 additions & 0 deletions
157
content/en/api/v1/synthetics/request.CreateSyntheticsAPITest_1717840259.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,157 @@ | ||
{ | ||
"config": { | ||
"steps": [ | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"password": "password", | ||
"username": "username" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"password": "password", | ||
"username": "username", | ||
"type": "web" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"accessKey": "accessKey", | ||
"secretKey": "secretKey", | ||
"type": "sigv4" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"type": "ntlm" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"password": "password", | ||
"username": "username", | ||
"type": "digest" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"accessTokenUrl": "accessTokenUrl", | ||
"tokenApiAuthentication": "header", | ||
"clientId": "clientId", | ||
"clientSecret": "clientSecret", | ||
"type": "oauth-client" | ||
} | ||
}, | ||
"subtype": "http" | ||
}, | ||
{ | ||
"assertions": [ | ||
{ | ||
"operator": "is", | ||
"type": "statusCode", | ||
"target": 200 | ||
} | ||
], | ||
"name": "request is sent", | ||
"request": { | ||
"url": "https://httpbin.org/status/200", | ||
"method": "GET", | ||
"basicAuth": { | ||
"accessTokenUrl": "accessTokenUrl", | ||
"password": "password", | ||
"tokenApiAuthentication": "header", | ||
"username": "username", | ||
"type": "oauth-rop" | ||
} | ||
}, | ||
"subtype": "http" | ||
} | ||
] | ||
}, | ||
"locations": [ | ||
"aws:us-east-2" | ||
], | ||
"message": "BDD test payload: synthetics_api_test_multi_step_with_every_type_of_basic_auth.json", | ||
"name": "Example-Synthetic", | ||
"options": { | ||
"tick_every": 60 | ||
}, | ||
"subtype": "multi", | ||
"type": "api" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.