go-redfish/client/model_power_state.go
2019-09-19 04:13:01 +03:00

19 lines
441 B
Go

/*
* Redfish OAPI specification
*
* Partial Redfish OAPI specification for a limited client
*
* API version: 0.0.1
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
package client
type PowerState string
// List of PowerState
const (
POWERSTATE_TRUE PowerState = "true"
POWERSTATE_FALSE PowerState = "false"
POWERSTATE_POWERING_ON PowerState = "PoweringOn"
POWERSTATE_POWERING_OFF PowerState = "PoweringOff"
)