488 lines
8.7 KiB
PHP
488 lines
8.7 KiB
PHP
<?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\Compute;
|
|
|
|
class Operation extends \Google\Collection
|
|
{
|
|
protected $collection_key = 'warnings';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $clientOperationId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $creationTimestamp;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $description;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $endTime;
|
|
protected $errorType = OperationError::class;
|
|
protected $errorDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $httpErrorMessage;
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $httpErrorStatusCode;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $id;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $insertTime;
|
|
protected $instancesBulkInsertOperationMetadataType = InstancesBulkInsertOperationMetadata::class;
|
|
protected $instancesBulkInsertOperationMetadataDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $kind;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $name;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $operationGroupId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $operationType;
|
|
/**
|
|
* @var int
|
|
*/
|
|
public $progress;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $region;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $selfLink;
|
|
protected $setCommonInstanceMetadataOperationMetadataType = SetCommonInstanceMetadataOperationMetadata::class;
|
|
protected $setCommonInstanceMetadataOperationMetadataDataType = '';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $startTime;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $status;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $statusMessage;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $targetId;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $targetLink;
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $user;
|
|
protected $warningsType = OperationWarnings::class;
|
|
protected $warningsDataType = 'array';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public $zone;
|
|
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setClientOperationId($clientOperationId)
|
|
{
|
|
$this->clientOperationId = $clientOperationId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getClientOperationId()
|
|
{
|
|
return $this->clientOperationId;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setCreationTimestamp($creationTimestamp)
|
|
{
|
|
$this->creationTimestamp = $creationTimestamp;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getCreationTimestamp()
|
|
{
|
|
return $this->creationTimestamp;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setDescription($description)
|
|
{
|
|
$this->description = $description;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getDescription()
|
|
{
|
|
return $this->description;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setEndTime($endTime)
|
|
{
|
|
$this->endTime = $endTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getEndTime()
|
|
{
|
|
return $this->endTime;
|
|
}
|
|
/**
|
|
* @param OperationError
|
|
*/
|
|
public function setError(OperationError $error)
|
|
{
|
|
$this->error = $error;
|
|
}
|
|
/**
|
|
* @return OperationError
|
|
*/
|
|
public function getError()
|
|
{
|
|
return $this->error;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setHttpErrorMessage($httpErrorMessage)
|
|
{
|
|
$this->httpErrorMessage = $httpErrorMessage;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getHttpErrorMessage()
|
|
{
|
|
return $this->httpErrorMessage;
|
|
}
|
|
/**
|
|
* @param int
|
|
*/
|
|
public function setHttpErrorStatusCode($httpErrorStatusCode)
|
|
{
|
|
$this->httpErrorStatusCode = $httpErrorStatusCode;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getHttpErrorStatusCode()
|
|
{
|
|
return $this->httpErrorStatusCode;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setId($id)
|
|
{
|
|
$this->id = $id;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getId()
|
|
{
|
|
return $this->id;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setInsertTime($insertTime)
|
|
{
|
|
$this->insertTime = $insertTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getInsertTime()
|
|
{
|
|
return $this->insertTime;
|
|
}
|
|
/**
|
|
* @param InstancesBulkInsertOperationMetadata
|
|
*/
|
|
public function setInstancesBulkInsertOperationMetadata(InstancesBulkInsertOperationMetadata $instancesBulkInsertOperationMetadata)
|
|
{
|
|
$this->instancesBulkInsertOperationMetadata = $instancesBulkInsertOperationMetadata;
|
|
}
|
|
/**
|
|
* @return InstancesBulkInsertOperationMetadata
|
|
*/
|
|
public function getInstancesBulkInsertOperationMetadata()
|
|
{
|
|
return $this->instancesBulkInsertOperationMetadata;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setKind($kind)
|
|
{
|
|
$this->kind = $kind;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getKind()
|
|
{
|
|
return $this->kind;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setName($name)
|
|
{
|
|
$this->name = $name;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getName()
|
|
{
|
|
return $this->name;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setOperationGroupId($operationGroupId)
|
|
{
|
|
$this->operationGroupId = $operationGroupId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getOperationGroupId()
|
|
{
|
|
return $this->operationGroupId;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setOperationType($operationType)
|
|
{
|
|
$this->operationType = $operationType;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getOperationType()
|
|
{
|
|
return $this->operationType;
|
|
}
|
|
/**
|
|
* @param int
|
|
*/
|
|
public function setProgress($progress)
|
|
{
|
|
$this->progress = $progress;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getProgress()
|
|
{
|
|
return $this->progress;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setRegion($region)
|
|
{
|
|
$this->region = $region;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getRegion()
|
|
{
|
|
return $this->region;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setSelfLink($selfLink)
|
|
{
|
|
$this->selfLink = $selfLink;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSelfLink()
|
|
{
|
|
return $this->selfLink;
|
|
}
|
|
/**
|
|
* @param SetCommonInstanceMetadataOperationMetadata
|
|
*/
|
|
public function setSetCommonInstanceMetadataOperationMetadata(SetCommonInstanceMetadataOperationMetadata $setCommonInstanceMetadataOperationMetadata)
|
|
{
|
|
$this->setCommonInstanceMetadataOperationMetadata = $setCommonInstanceMetadataOperationMetadata;
|
|
}
|
|
/**
|
|
* @return SetCommonInstanceMetadataOperationMetadata
|
|
*/
|
|
public function getSetCommonInstanceMetadataOperationMetadata()
|
|
{
|
|
return $this->setCommonInstanceMetadataOperationMetadata;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setStartTime($startTime)
|
|
{
|
|
$this->startTime = $startTime;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getStartTime()
|
|
{
|
|
return $this->startTime;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setStatus($status)
|
|
{
|
|
$this->status = $status;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getStatus()
|
|
{
|
|
return $this->status;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setStatusMessage($statusMessage)
|
|
{
|
|
$this->statusMessage = $statusMessage;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getStatusMessage()
|
|
{
|
|
return $this->statusMessage;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setTargetId($targetId)
|
|
{
|
|
$this->targetId = $targetId;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTargetId()
|
|
{
|
|
return $this->targetId;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setTargetLink($targetLink)
|
|
{
|
|
$this->targetLink = $targetLink;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getTargetLink()
|
|
{
|
|
return $this->targetLink;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setUser($user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getUser()
|
|
{
|
|
return $this->user;
|
|
}
|
|
/**
|
|
* @param OperationWarnings[]
|
|
*/
|
|
public function setWarnings($warnings)
|
|
{
|
|
$this->warnings = $warnings;
|
|
}
|
|
/**
|
|
* @return OperationWarnings[]
|
|
*/
|
|
public function getWarnings()
|
|
{
|
|
return $this->warnings;
|
|
}
|
|
/**
|
|
* @param string
|
|
*/
|
|
public function setZone($zone)
|
|
{
|
|
$this->zone = $zone;
|
|
}
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getZone()
|
|
{
|
|
return $this->zone;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(Operation::class, 'Google_Service_Compute_Operation');
|