Describes the Power State of the cluster.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/PowerState", "title": "PowerState", "type": "object", "description": "Describes the Power State of the cluster.", "properties": { "code": { "type": "string", "description": "Tells whether the cluster is Running or Stopped.", "enum": [ "Running", "Stopped" ], "example": "Running" } } }