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
7 changes: 5 additions & 2 deletions .generator/schemas/v1/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34701,7 +34701,7 @@ paths:
description: |-
Validate the monitor provided in the request.

**Note**: Log monitors require an unscoped App Key.
**Note**: Log monitors require an unscoped App Key and `logs_read_data` permission.
operationId: ValidateMonitor
requestBody:
content:
Expand Down Expand Up @@ -35061,7 +35061,10 @@ paths:
- monitors_read
/api/v1/monitor/{monitor_id}/validate:
post:
description: Validate the monitor provided in the request.
description: |-
Validate the monitor provided in the request.

**Note**: Log monitors require an unscoped App Key and `logs_read_data` permission.
operationId: ValidateExistingMonitor
parameters:
- description: The ID of the monitor
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2115,6 +2115,9 @@ public CompletableFuture<Object> validateExistingMonitorAsync(Long monitorId, Mo
/**
* Validate the monitor provided in the request.
*
* <p><strong>Note</strong>: Log monitors require an unscoped App Key and <code>logs_read_data
* </code> permission.
*
* @param monitorId The ID of the monitor (required)
* @param body Monitor request object (required)
* @return ApiResponse&lt;Object&gt;
Expand Down Expand Up @@ -2268,7 +2271,8 @@ public CompletableFuture<Object> validateMonitorAsync(Monitor body) {
/**
* Validate the monitor provided in the request.
*
* <p><strong>Note</strong>: Log monitors require an unscoped App Key.
* <p><strong>Note</strong>: Log monitors require an unscoped App Key and <code>logs_read_data
* </code> permission.
*
* @param body Monitor request object (required)
* @return ApiResponse&lt;Object&gt;
Expand Down
Loading