Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17343,6 +17343,11 @@ components:
description: Allows loading insecure content for an HTTP request in an API
test.
type: boolean
blockedRequestPatterns:
description: Array of URL patterns to block.
items:
type: string
type: array
checkCertificateRevocation:
description: For SSL tests, whether or not the test should fail on revoked
certificate in stapled OCSP.
Expand Down
1 change: 1 addition & 0 deletions examples/v1/synthetics/CreateSyntheticsAPITest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ const params: v1.SyntheticsApiCreateSyntheticsAPITestRequest = {
message: "Notification message",
name: "Example test name",
options: {
blockedRequestPatterns: [],
ci: {
executionRule: "blocking",
},
Expand Down
1 change: 1 addition & 0 deletions examples/v1/synthetics/UpdateBrowserTest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ const params: v1.SyntheticsApiUpdateBrowserTestRequest = {
message: "",
name: "Example test name",
options: {
blockedRequestPatterns: [],
ci: {
executionRule: "blocking",
},
Expand Down
Loading