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
69 changes: 69 additions & 0 deletions api/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,25 @@ components:
- mime_type
- size_bytes
type: object
BackupFreezeBeginResponse:
additionalProperties: true
properties:
token:
type: string
required:
- token
type: object
BackupFreezeEndRequest:
additionalProperties: false
properties:
token:
type: string
required:
- token
type: object
BackupFreezeEndResponse:
additionalProperties: true
type: object
BuildingSummary:
additionalProperties: true
properties:
Expand Down Expand Up @@ -1241,6 +1260,8 @@ components:
HealthResponse:
additionalProperties: true
properties:
analytics_engine:
type: string
operation:
$ref: "#/components/schemas/OperationHealth"
status:
Expand Down Expand Up @@ -2607,6 +2628,54 @@ paths:
summary: Upload an OAuth token
tags:
- API
/api/v1/backup/freeze/begin:
post:
operationId: beginBackupFreeze
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/BackupFreezeBeginResponse"
description: OK
default:
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
description: Error
security:
- apiKey: []
summary: Begin a backup freeze window
tags:
- API
/api/v1/backup/freeze/end:
post:
operationId: endBackupFreeze
requestBody:
content:
application/json:
schema:
$ref: "#/components/schemas/BackupFreezeEndRequest"
required: true
responses:
"200":
content:
application/json:
schema:
$ref: "#/components/schemas/BackupFreezeEndResponse"
description: OK
default:
content:
application/json:
schema:
$ref: "#/components/schemas/ErrorResponse"
description: Error
security:
- apiKey: []
summary: End a backup freeze window
tags:
- API
/api/v1/cli/account:
post:
operationId: updateCLIAccount
Expand Down
Loading