<?php
# Generated by the protocol buffer compiler.  DO NOT EDIT!
# source: google/cloud/compute/v1/compute.proto

namespace Google\Cloud\Compute\V1\SavedAttachedDisk;

use UnexpectedValueException;

/**
 * [Output Only] An indicator whether storageBytes is in a stable state or it is being adjusted as a result of shared storage reallocation. This status can either be UPDATING, meaning the size of the snapshot is being updated, or UP_TO_DATE, meaning the size of the snapshot is up-to-date.
 *
 * Protobuf type <code>google.cloud.compute.v1.SavedAttachedDisk.StorageBytesStatus</code>
 */
class StorageBytesStatus
{
    /**
     * A value indicating that the enum field is not set.
     *
     * Generated from protobuf enum <code>UNDEFINED_STORAGE_BYTES_STATUS = 0;</code>
     */
    const UNDEFINED_STORAGE_BYTES_STATUS = 0;
    /**
     * Generated from protobuf enum <code>UPDATING = 494614342;</code>
     */
    const UPDATING = 494614342;
    /**
     * Generated from protobuf enum <code>UP_TO_DATE = 101306702;</code>
     */
    const UP_TO_DATE = 101306702;

    private static $valueToName = [
        self::UNDEFINED_STORAGE_BYTES_STATUS => 'UNDEFINED_STORAGE_BYTES_STATUS',
        self::UPDATING => 'UPDATING',
        self::UP_TO_DATE => 'UP_TO_DATE',
    ];

    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);
    }
}


