go-redfish/client/model_power_state.go

21 lines
479 B
Go
Raw Normal View History

/*
* Redfish OAPI specification
*
* Partial Redfish OAPI specification for a limited client
*
* API version: 0.0.1
* Generated by: OpenAPI Generator (https://openapi-generator.tech)
*/
2019-09-09 00:20:08 +03:00
package client
// PowerState the model 'PowerState'
type PowerState string
// List of PowerState
const (
2019-09-19 04:13:01 +03:00
POWERSTATE_TRUE PowerState = "true"
POWERSTATE_FALSE PowerState = "false"
POWERSTATE_POWERING_ON PowerState = "PoweringOn"
POWERSTATE_POWERING_OFF PowerState = "PoweringOff"
)