JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "NetworkTierConfig.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Container/NetworkTierConfig.php
File size: 2.29 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Container;
class NetworkTierConfig extends \Google\Model
{
/**
* By default, use project-level configuration. When unspecified, the behavior
* defaults to NETWORK_TIER_DEFAULT. For cluster updates, this implies no
* action (no-op).
*/
public const NETWORK_TIER_NETWORK_TIER_UNSPECIFIED = 'NETWORK_TIER_UNSPECIFIED';
/**
* Default network tier. Use project-level configuration. User can specify
* this value, meaning they want to keep the same behaviour as before cluster
* level network tier configuration is introduced. This field ensures backward
* compatibility for the network tier of cluster resources, such as node pools
* and load balancers, for their external IP addresses.
*/
public const NETWORK_TIER_NETWORK_TIER_DEFAULT = 'NETWORK_TIER_DEFAULT';
/**
* Premium network tier.
*/
public const NETWORK_TIER_NETWORK_TIER_PREMIUM = 'NETWORK_TIER_PREMIUM';
/**
* Standard network tier.
*/
public const NETWORK_TIER_NETWORK_TIER_STANDARD = 'NETWORK_TIER_STANDARD';
/**
* Network tier configuration.
*
* @var string
*/
public $networkTier;
/**
* Network tier configuration.
*
* Accepted values: NETWORK_TIER_UNSPECIFIED, NETWORK_TIER_DEFAULT,
* NETWORK_TIER_PREMIUM, NETWORK_TIER_STANDARD
*
* @param self::NETWORK_TIER_* $networkTier
*/
public function setNetworkTier($networkTier)
{
$this->networkTier = $networkTier;
}
/**
* @return self::NETWORK_TIER_*
*/
public function getNetworkTier()
{
return $this->networkTier;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(NetworkTierConfig::class, 'Google_Service_Container_NetworkTierConfig');