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
16 changes: 14 additions & 2 deletions docs/api/paths/diagnostic/keyspace-import_filter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,20 @@ post:
error:
description: Errors thrown by the Import filter.
type: string


logging:
description: Logging emitted by the import filter during evaluation.
type: object
properties:
errors:
description: Error messages logged by the import filter.
type: array
items:
type: string
info:
description: Info messages logged by the import filter.
type: array
items:
type: string
'404':
$ref: ../../components/responses.yaml#/Not-found
parameters:
Expand Down
16 changes: 14 additions & 2 deletions docs/api/paths/diagnostic/keyspace-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,23 @@ post:
additionalProperties:
x-additionalPropertiesName: channel
type: string

exception:
description: Errors thrown by the sync function.
type: string

logging:
description: Logging emitted by the sync function during evaluation.
type: object
properties:
errors:
description: Error messages logged by the sync function.
type: array
items:
type: string
info:
description: Info messages logged by the sync function.
type: array
items:
type: string
'404':
$ref: ../../components/responses.yaml#/Not-found
parameters:
Expand Down
Loading