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

namespace Google\Cloud\AppEngine\V1;

use UnexpectedValueException;

/**
 * Fields that should be returned when [Version][google.appengine.v1.Version] resources
 * are retrieved.
 *
 * Protobuf type <code>google.appengine.v1.VersionView</code>
 */
class VersionView
{
    /**
     * Basic version information including scaling and inbound services,
     * but not detailed deployment information.
     *
     * Generated from protobuf enum <code>BASIC = 0;</code>
     */
    const BASIC = 0;
    /**
     * The information from `BASIC`, plus detailed information about the
     * deployment. This format is required when creating resources, but
     * is not returned in `Get` or `List` by default.
     *
     * Generated from protobuf enum <code>FULL = 1;</code>
     */
    const FULL = 1;

    private static $valueToName = [
        self::BASIC => 'BASIC',
        self::FULL => 'FULL',
    ];

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

