Skip to content

Commit

Permalink
Update OpenAPI spec for v2 (Commit SHA: 6f458bc4b5cd6df33197649a554db…
Browse files Browse the repository at this point in the history
…b83c3ed6ef5)
  • Loading branch information
actions-user committed Oct 2, 2024
1 parent 325aa4f commit 391e8a3
Showing 1 changed file with 32 additions and 5 deletions.
37 changes: 32 additions & 5 deletions openapi-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,38 @@ paths:
schema:
$ref: '#/components/schemas/AccountEnveloped'
description: ''
patch:
operationId: Partial Update Account
description: Partial Account update
parameters:
- in: path
name: account_id
schema:
type: integer
required: true
tags:
- Accounts
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/AccountRequest'
application/x-www-form-urlencoded:
schema:
$ref: '#/components/schemas/AccountRequest'
multipart/form-data:
schema:
$ref: '#/components/schemas/AccountRequest'
required: true
security:
- BearerAuthentication: []
responses:
'200':
content:
application/json:
schema:
$ref: '#/components/schemas/AccountEnveloped'
description: ''
/api/v2/accounts/{account_id}/encryptions/:
get:
operationId: List SSH Tunnels
Expand Down Expand Up @@ -1981,10 +2013,6 @@ components:
type: string
format: date-time
readOnly: true
migration_scheduled_at:
type: string
format: date-time
readOnly: true
state:
type: integer
default: 1
Expand Down Expand Up @@ -2036,7 +2064,6 @@ components:
- lock_cause
- lock_reason
- locked
- migration_scheduled_at
- pending_cancel
- plan
- pod_memory_request_mebibytes
Expand Down

0 comments on commit 391e8a3

Please sign in to comment.