redfish_codegen/models/manager/v1_18_0/
command_connect_types_supported.rs

1// Generated by redfish-codegen. Do not modify.
2
3
4#[derive(Clone, Debug, serde::Deserialize, serde::Serialize)]
5pub enum CommandConnectTypesSupported {
6    /// The controller supports a command shell connection through the SSH protocol.
7    SSH,
8    /// The controller supports a command shell connection through the Telnet protocol.
9    Telnet,
10    /// The controller supports a command shell connection through the IPMI Serial Over LAN (SOL) protocol.
11    IPMI,
12    /// The controller supports a command shell connection through an OEM-specific protocol.
13    Oem,
14}
15
16#[allow(clippy::derivable_impls)]
17impl Default for CommandConnectTypesSupported {
18     fn default() -> CommandConnectTypesSupported {
19        CommandConnectTypesSupported::SSH
20     }
21}
22
23impl crate::Metadata<'static> for CommandConnectTypesSupported {
24    const JSON_SCHEMA: &'static str = "Manager.v1_18_0.json";
25}