Call Home Enabled in console (#2248)

Signed-off-by: Benjamin Perez <benjamin@bexsoft.net>
This commit is contained in:
Alex
2023-02-13 17:04:35 -06:00
committed by GitHub
parent a6637f18c8
commit de4ff1c1f0
25 changed files with 2445 additions and 25 deletions

View File

@@ -3452,6 +3452,41 @@ paths:
tags:
- release
/support/callhome:
get:
summary: Get Callhome current status
operationId: GetCallHomeOptionValue
responses:
200:
description: A successful response.
schema:
$ref: "#/definitions/callHomeGetResponse"
default:
description: Generic error response.
schema:
$ref: "#/definitions/error"
tags:
- Support
put:
summary: Sets callhome status
operationId: SetCallHomeStatus
parameters:
- name: body
in: body
required: true
schema:
$ref: "#/definitions/callHomeSetStatus"
responses:
204:
description: A successful response.
default:
description: Generic error response.
schema:
$ref: "#/definitions/error"
tags:
- Support
definitions:
accountChangePasswordRequest:
type: object
@@ -5840,6 +5875,7 @@ definitions:
properties:
restart:
type: boolean
releaseListResponse:
type: object
properties:
@@ -5862,6 +5898,7 @@ definitions:
type: string
newFeaturesContent:
type: string
releaseMetadata:
type: object
properties:
@@ -5935,4 +5972,23 @@ definitions:
starred_url:
type: string
subscriptions_url:
type: string
type: string
callHomeGetResponse:
type: object
properties:
diagnosticsStatus:
type: boolean
logsStatus:
type: boolean
callHomeSetStatus:
type: object
required:
- diagState
- logsState
properties:
diagState:
type: boolean
logsState:
type: boolean