Ydb.Cms.GetDatabaseStatusResult.State
*/
class State
{
/**
* Generated from protobuf enum STATE_UNSPECIFIED = 0;
*/
const STATE_UNSPECIFIED = 0;
/**
* Generated from protobuf enum CREATING = 1;
*/
const CREATING = 1;
/**
* Generated from protobuf enum RUNNING = 2;
*/
const RUNNING = 2;
/**
* Generated from protobuf enum REMOVING = 3;
*/
const REMOVING = 3;
/**
* Generated from protobuf enum PENDING_RESOURCES = 4;
*/
const PENDING_RESOURCES = 4;
/**
* Generated from protobuf enum CONFIGURING = 5;
*/
const CONFIGURING = 5;
private static $valueToName = [
self::STATE_UNSPECIFIED => 'STATE_UNSPECIFIED',
self::CREATING => 'CREATING',
self::RUNNING => 'RUNNING',
self::REMOVING => 'REMOVING',
self::PENDING_RESOURCES => 'PENDING_RESOURCES',
self::CONFIGURING => 'CONFIGURING',
];
public static function name($value)
{
if (!isset(self::$valueToName[$value])) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no name defined for value %s', __CLASS__, $value));
}
return self::$valueToName[$value];
}
public static function value($name)
{
$const = __CLASS__ . '::' . strtoupper($name);
if (!defined($const)) {
throw new UnexpectedValueException(sprintf(
'Enum %s has no value defined for name %s', __CLASS__, $name));
}
return constant($const);
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(State::class, \Ydb\Cms\GetDatabaseStatusResult_State::class);