JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "ExternalAddress.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/VMwareEngine/ExternalAddress.php
File size: 4.97 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\VMwareEngine;
class ExternalAddress extends \Google\Model
{
/**
* The default value. This value should never be used.
*/
public const STATE_STATE_UNSPECIFIED = 'STATE_UNSPECIFIED';
/**
* The address is ready.
*/
public const STATE_ACTIVE = 'ACTIVE';
/**
* The address is being created.
*/
public const STATE_CREATING = 'CREATING';
/**
* The address is being updated.
*/
public const STATE_UPDATING = 'UPDATING';
/**
* The address is being deleted.
*/
public const STATE_DELETING = 'DELETING';
/**
* Output only. Creation time of this resource.
*
* @var string
*/
public $createTime;
/**
* User-provided description for this resource.
*
* @var string
*/
public $description;
/**
* Output only. The external IP address of a workload VM.
*
* @var string
*/
public $externalIp;
/**
* The internal IP address of a workload VM.
*
* @var string
*/
public $internalIp;
/**
* Output only. Identifier. The resource name of this external IP address.
* Resource names are schemeless URIs that follow the conventions in
* https://cloud.google.com/apis/design/resource_names. For example:
* `projects/my-project/locations/us-central1-a/privateClouds/my-
* cloud/externalAddresses/my-address`
*
* @var string
*/
public $name;
/**
* Output only. The state of the resource.
*
* @var string
*/
public $state;
/**
* Output only. System-generated unique identifier for the resource.
*
* @var string
*/
public $uid;
/**
* Output only. Last update time of this resource.
*
* @var string
*/
public $updateTime;
/**
* Output only. Creation time of this resource.
*
* @param string $createTime
*/
public function setCreateTime($createTime)
{
$this->createTime = $createTime;
}
/**
* @return string
*/
public function getCreateTime()
{
return $this->createTime;
}
/**
* User-provided description for this resource.
*
* @param string $description
*/
public function setDescription($description)
{
$this->description = $description;
}
/**
* @return string
*/
public function getDescription()
{
return $this->description;
}
/**
* Output only. The external IP address of a workload VM.
*
* @param string $externalIp
*/
public function setExternalIp($externalIp)
{
$this->externalIp = $externalIp;
}
/**
* @return string
*/
public function getExternalIp()
{
return $this->externalIp;
}
/**
* The internal IP address of a workload VM.
*
* @param string $internalIp
*/
public function setInternalIp($internalIp)
{
$this->internalIp = $internalIp;
}
/**
* @return string
*/
public function getInternalIp()
{
return $this->internalIp;
}
/**
* Output only. Identifier. The resource name of this external IP address.
* Resource names are schemeless URIs that follow the conventions in
* https://cloud.google.com/apis/design/resource_names. For example:
* `projects/my-project/locations/us-central1-a/privateClouds/my-
* cloud/externalAddresses/my-address`
*
* @param string $name
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* Output only. The state of the resource.
*
* Accepted values: STATE_UNSPECIFIED, ACTIVE, CREATING, UPDATING, DELETING
*
* @param self::STATE_* $state
*/
public function setState($state)
{
$this->state = $state;
}
/**
* @return self::STATE_*
*/
public function getState()
{
return $this->state;
}
/**
* Output only. System-generated unique identifier for the resource.
*
* @param string $uid
*/
public function setUid($uid)
{
$this->uid = $uid;
}
/**
* @return string
*/
public function getUid()
{
return $this->uid;
}
/**
* Output only. Last update time of this resource.
*
* @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(ExternalAddress::class, 'Google_Service_VMwareEngine_ExternalAddress');