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

namespace Google\Cloud\Compute\V1\InterconnectDiagnostics;

use UnexpectedValueException;

/**
 * The operational status of the bundle interface.
 *
 * Protobuf type <code>google.cloud.compute.v1.InterconnectDiagnostics.BundleOperationalStatus</code>
 */
class BundleOperationalStatus
{
    /**
     * A value indicating that the enum field is not set.
     *
     * Generated from protobuf enum <code>UNDEFINED_BUNDLE_OPERATIONAL_STATUS = 0;</code>
     */
    const UNDEFINED_BUNDLE_OPERATIONAL_STATUS = 0;
    /**
     * If bundleAggregationType is LACP: LACP is not established and/or all links in the bundle have DOWN operational status. If bundleAggregationType is STATIC: one or more links in the bundle has DOWN operational status.
     *
     * Generated from protobuf enum <code>BUNDLE_OPERATIONAL_STATUS_DOWN = 453842693;</code>
     */
    const BUNDLE_OPERATIONAL_STATUS_DOWN = 453842693;
    /**
     * If bundleAggregationType is LACP: LACP is established and at least one link in the bundle has UP operational status. If bundleAggregationType is STATIC: all links in the bundle (typically just one) have UP operational status.
     *
     * Generated from protobuf enum <code>BUNDLE_OPERATIONAL_STATUS_UP = 161366462;</code>
     */
    const BUNDLE_OPERATIONAL_STATUS_UP = 161366462;

    private static $valueToName = [
        self::UNDEFINED_BUNDLE_OPERATIONAL_STATUS => 'UNDEFINED_BUNDLE_OPERATIONAL_STATUS',
        self::BUNDLE_OPERATIONAL_STATUS_DOWN => 'BUNDLE_OPERATIONAL_STATUS_DOWN',
        self::BUNDLE_OPERATIONAL_STATUS_UP => 'BUNDLE_OPERATIONAL_STATUS_UP',
    ];

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


