JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "RouteTable.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Networkconnectivity/RouteTable.php
File size: 5.82 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\Networkconnectivity;
class RouteTable extends \Google\Model
{
/**
* No state information available
*/
public const STATE_STATE_UNSPECIFIED = 'STATE_UNSPECIFIED';
/**
* The resource's create operation is in progress.
*/
public const STATE_CREATING = 'CREATING';
/**
* The resource is active
*/
public const STATE_ACTIVE = 'ACTIVE';
/**
* The resource's delete operation is in progress.
*/
public const STATE_DELETING = 'DELETING';
/**
* The resource's accept operation is in progress.
*/
public const STATE_ACCEPTING = 'ACCEPTING';
/**
* The resource's reject operation is in progress.
*/
public const STATE_REJECTING = 'REJECTING';
/**
* The resource's update operation is in progress.
*/
public const STATE_UPDATING = 'UPDATING';
/**
* The resource is inactive.
*/
public const STATE_INACTIVE = 'INACTIVE';
/**
* The hub associated with this spoke resource has been deleted. This state
* applies to spoke resources only.
*/
public const STATE_OBSOLETE = 'OBSOLETE';
/**
* The resource is in an undefined state due to resource creation or deletion
* failure. You can try to delete the resource later or contact support for
* help.
*/
public const STATE_FAILED = 'FAILED';
/**
* Output only. The time the route table was created.
*
* @var string
*/
public $createTime;
/**
* An optional description of the route table.
*
* @var string
*/
public $description;
/**
* Optional labels in key-value pair format. For more information about
* labels, see [Requirements for labels](https://cloud.google.com/resource-
* manager/docs/creating-managing-labels#requirements).
*
* @var string[]
*/
public $labels;
/**
* Immutable. The name of the route table. Route table names must be unique.
* They use the following form: `projects/{project_number}/locations/global/hu
* bs/{hub}/routeTables/{route_table_id}`
*
* @var string
*/
public $name;
/**
* Output only. The current lifecycle state of this route table.
*
* @var string
*/
public $state;
/**
* Output only. The Google-generated UUID for the route table. This value is
* unique across all route table resources. If a route table is deleted and
* another with the same name is created, the new route table is assigned a
* different `uid`.
*
* @var string
*/
public $uid;
/**
* Output only. The time the route table was last updated.
*
* @var string
*/
public $updateTime;
/**
* Output only. The time the route table was created.
*
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* An optional description of the route table.
*
* @param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Optional labels in key-value pair format. For more information about
* labels, see [Requirements for labels](https://cloud.google.com/resource-
* manager/docs/creating-managing-labels#requirements).
*
* @param string[] $labels
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return string[]
*/
public function getLabels()
{
return $this->labels;
}
/**
* Immutable. The name of the route table. Route table names must be unique.
* They use the following form: `projects/{project_number}/locations/global/hu
* bs/{hub}/routeTables/{route_table_id}`
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Output only. The current lifecycle state of this route table.
*
* Accepted values: STATE_UNSPECIFIED, CREATING, ACTIVE, DELETING, ACCEPTING,
* REJECTING, UPDATING, INACTIVE, OBSOLETE, FAILED
*
* @param self::STATE_* $state
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return self::STATE_*
*/
public function getState()
{
return $this->state;
}
/**
* Output only. The Google-generated UUID for the route table. This value is
* unique across all route table resources. If a route table is deleted and
* another with the same name is created, the new route table is assigned a
* different `uid`.
*
* @param string $uid
*/
public function setUid($uid)
{
$this->uid = $uid;
}
/**
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. The time the route table was last updated.
*
* @param string $updateTime
*/
public function setUpdateTime($updateTime)
{
$this->updateTime = $updateTime;
}
/**
* @return string
*/
public function getUpdateTime()
{
return $this->updateTime;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RouteTable::class, 'Google_Service_Networkconnectivity_RouteTable');