98 lines
2.5 KiB
PHP
98 lines
2.5 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2016 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.
|
|
*/
|
|
|
|
class Google_Service_DeploymentManager_ResourceUpdate extends Google_Collection
|
|
{
|
|
protected $collection_key = 'warnings';
|
|
protected $accessControlType = 'Google_Service_DeploymentManager_ResourceAccessControl';
|
|
protected $accessControlDataType = '';
|
|
protected $errorType = 'Google_Service_DeploymentManager_ResourceUpdateError';
|
|
protected $errorDataType = '';
|
|
public $finalProperties;
|
|
public $intent;
|
|
public $manifest;
|
|
public $properties;
|
|
public $state;
|
|
protected $warningsType = 'Google_Service_DeploymentManager_ResourceUpdateWarnings';
|
|
protected $warningsDataType = 'array';
|
|
|
|
public function setAccessControl(Google_Service_DeploymentManager_ResourceAccessControl $accessControl)
|
|
{
|
|
$this->accessControl = $accessControl;
|
|
}
|
|
public function getAccessControl()
|
|
{
|
|
return $this->accessControl;
|
|
}
|
|
public function setError(Google_Service_DeploymentManager_ResourceUpdateError $error)
|
|
{
|
|
$this->error = $error;
|
|
}
|
|
public function getError()
|
|
{
|
|
return $this->error;
|
|
}
|
|
public function setFinalProperties($finalProperties)
|
|
{
|
|
$this->finalProperties = $finalProperties;
|
|
}
|
|
public function getFinalProperties()
|
|
{
|
|
return $this->finalProperties;
|
|
}
|
|
public function setIntent($intent)
|
|
{
|
|
$this->intent = $intent;
|
|
}
|
|
public function getIntent()
|
|
{
|
|
return $this->intent;
|
|
}
|
|
public function setManifest($manifest)
|
|
{
|
|
$this->manifest = $manifest;
|
|
}
|
|
public function getManifest()
|
|
{
|
|
return $this->manifest;
|
|
}
|
|
public function setProperties($properties)
|
|
{
|
|
$this->properties = $properties;
|
|
}
|
|
public function getProperties()
|
|
{
|
|
return $this->properties;
|
|
}
|
|
public function setState($state)
|
|
{
|
|
$this->state = $state;
|
|
}
|
|
public function getState()
|
|
{
|
|
return $this->state;
|
|
}
|
|
public function setWarnings($warnings)
|
|
{
|
|
$this->warnings = $warnings;
|
|
}
|
|
public function getWarnings()
|
|
{
|
|
return $this->warnings;
|
|
}
|
|
}
|