Skip to content

Commit

Permalink
docs: Updated network status rest page [backport docs-release-5.6] (#…
Browse files Browse the repository at this point in the history
…5516)

docs: Updated network status rest page (#5492)

* Updated network status rest page

Signed-off-by: pierantoniomerlino <[email protected]>

* Changed uppercase char

Signed-off-by: pierantoniomerlino <[email protected]>

---------

Signed-off-by: pierantoniomerlino <[email protected]>
(cherry picked from commit 9ff66b6)

Co-authored-by: Pierantonio Merlino <[email protected]>
  • Loading branch information
eclipse-kura-bot and pierantoniomerlino authored Nov 5, 2024
1 parent 4660c8e commit 2ddfdfa
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions docs/core-services/network-status-rest-v1.md
Original file line number Diff line number Diff line change
Expand Up @@ -287,6 +287,9 @@ Object that contains specific properties to describe the status of a WiFi interf
"ssid": "MyAccessPoint",
"wpaSecurity": [
"NONE"
],
"flags": [
"PRIVACY"
]
},
"autoConnect": true,
Expand All @@ -309,6 +312,9 @@ Object that contains specific properties to describe the status of a WiFi interf
"ssid": "MyAccessPoint",
"wpaSecurity": [
"NONE"
],
"flags": [
"PRIVACY"
]
},
{
Expand All @@ -329,6 +335,9 @@ Object that contains specific properties to describe the status of a WiFi interf
"ssid": "OtherSSID",
"wpaSecurity": [
"NONE"
],
"flags": [
"PRIVACY"
]
}
],
Expand Down Expand Up @@ -405,6 +414,9 @@ Object that contains specific properties to describe the status of a WiFi interf
"ssid": "kura_gateway_raspberry_pi",
"wpaSecurity": [
"NONE"
],
"flags": [
"PRIVACY"
]
},
"autoConnect": true,
Expand All @@ -427,6 +439,10 @@ Object that contains specific properties to describe the status of a WiFi interf
"ssid": "kura_gateway_raspberry_pi",
"wpaSecurity": [
"NONE"
],
"flags": [
"PRIVACY",
"WPS"
]
}
],
Expand Down Expand Up @@ -866,6 +882,12 @@ This object describes a Wifi Access Point. It can be used both for describing a

* array element type: `string (enumerated)`
* [WifiSecurity](#wifisecurity)

* **flags**: `array`
The capabilities of the access point

* array element type: `string (enumerated)`
* [WifiFlags](#wififlags)


### ModemModePair
Expand Down Expand Up @@ -1041,6 +1063,16 @@ Flags describing the security capabilities of an access point.
* `SECURITY_WPA2`: Supports WPA2 encryption.
* `SECURITY_WPA_WPA2`: Supports WPA and WPA2 encryption.

### WifiFlags
Flags describing the capabilities of an access point.

* Possible values
* `NONE`: None
* `PRIVACY`: supports authentication and encryption
* `WPS`: supports WPS (Wi-Fi Protected Setup)
* `WPS_PBC`: supports push-button based WPS
* `WPS_PIN`: supports PIN based WPS

### ModemPortType
The type of a modem port.

Expand Down

0 comments on commit 2ddfdfa

Please sign in to comment.