mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-10-29 09:52:27 +00:00
Merge remote-tracking branch 'origin/master' into WIFI-14903-diagnose-ssl-err
This commit is contained in:
@@ -1576,6 +1576,15 @@ components:
|
||||
format: base64
|
||||
description: This is a base64 encoded string of the certificate bundle (the current bundle .tar.gz file from the PKI portal)
|
||||
|
||||
ReenrollRequest:
|
||||
type: object
|
||||
properties:
|
||||
serialNumber:
|
||||
type: string
|
||||
when:
|
||||
type: integer
|
||||
format: int64
|
||||
|
||||
PowerCycleRequest:
|
||||
type: object
|
||||
properties:
|
||||
@@ -3056,6 +3065,32 @@ paths:
|
||||
404:
|
||||
$ref: '#/components/responses/NotFound'
|
||||
|
||||
/device/{serialNumber}/reenroll:
|
||||
post:
|
||||
tags:
|
||||
- Commands
|
||||
summary: Reenroll operational certificate for the device.
|
||||
operationId: reenrollCertificate
|
||||
parameters:
|
||||
- in: path
|
||||
name: serialNumber
|
||||
schema:
|
||||
type: string
|
||||
required: true
|
||||
requestBody:
|
||||
description: Reenroll operational certificate for the device
|
||||
content:
|
||||
application/json:
|
||||
schema:
|
||||
$ref: '#/components/schemas/ReenrollRequest'
|
||||
responses:
|
||||
200:
|
||||
$ref: '#/components/responses/Success'
|
||||
403:
|
||||
$ref: '#/components/responses/Unauthorized'
|
||||
404:
|
||||
$ref: '#/components/responses/NotFound'
|
||||
|
||||
/device/{serialNumber}/powercycle:
|
||||
post:
|
||||
tags:
|
||||
|
||||
@@ -552,7 +552,8 @@ static std::string DefaultAPSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
},
|
||||
"bandwidth": {
|
||||
@@ -625,6 +626,10 @@ static std::string DefaultAPSchema = R"foo(
|
||||
],
|
||||
"default": 80
|
||||
},
|
||||
"enable": {
|
||||
"description": "Specifies radio is enabled/disabled.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"require-mode": {
|
||||
"description": "Stations that do no fulfill these HT modes will be rejected.",
|
||||
"type": "string",
|
||||
@@ -2309,7 +2314,8 @@ static std::string DefaultAPSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -3742,7 +3748,8 @@ static std::string DefaultAPSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -4892,7 +4899,8 @@ static std::string DefaultSWITCHSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
},
|
||||
"bandwidth": {
|
||||
@@ -4958,6 +4966,10 @@ static std::string DefaultSWITCHSchema = R"foo(
|
||||
],
|
||||
"default": 80
|
||||
},
|
||||
"enable": {
|
||||
"description": "Specifies radio is enabled/disabled.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"require-mode": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@@ -6530,7 +6542,8 @@ static std::string DefaultSWITCHSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
}
|
||||
},
|
||||
@@ -7753,7 +7766,8 @@ static std::string DefaultSWITCHSchema = R"foo(
|
||||
"5G",
|
||||
"5G-lower",
|
||||
"5G-upper",
|
||||
"6G"
|
||||
"6G",
|
||||
"HaLow"
|
||||
]
|
||||
}
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user