/usr/share/php/OpenCloud/Orchestration/Stack.php is in php-opencloud 1.10.0-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 | <?php
/**
* Copyright 2012-2014 Rackspace US, 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 OpenCloud\Orchestration;
use OpenCloud\Common\PersistentObject;
use OpenCloud\Exceptions\CreateError;
/**
* The Stack class requires a CloudFormation template and may contain additional
* parameters for that template.
*
* A Stack is always associated with an (Orchestration) Service.
*
* @codeCoverageIgnore
*/
class Stack extends PersistentObject
{
/**
* Identifier of stack.
*
* @var string
*/
protected $id;
/**
* The name associated with the stack. Must be unique within your account,
* contain only alphanumeric characters (case sensitive) and start with an
* alpha character. Maximum length of the name is 255 characters.
*
* @var string
*/
protected $stack_name;
/**
* A list of Parameter structures that specify input parameters for the stack.
*
* @var mixed
*/
protected $parameters;
/**
* Structure containing the template body.
*
* @var string
*/
protected $template;
/**
* Set to true to disable rollback of the stack if stack creation failed.
*
* @var bool
*/
protected $disable_rollback;
/**
* Description of stack.
*
* @var string
*/
protected $description;
/**
* @var type
*/
protected $stack_status_reason;
/**
* @var type
*/
protected $outputs;
/**
* @var type
*/
protected $creation_time;
/**
* Array of stack lists.
*
* @var array
*/
protected $links;
/**
* The list of capabilities that you want to allow in the stack.
*
* @var mixed
*/
protected $capabilities;
/**
* The Simple Notification Service topic ARNs to publish stack related events.
*
* @var mixed
*/
protected $notification_topics;
/**
* The amount of time that can pass before the stack status becomes
* CREATE_FAILED; if DisableRollback is not set or is set to false, the
* stack will be rolled back.
*
* @var string
*/
protected $timeout_mins;
/**
* @var type
*/
protected $stack_status;
/**
* @var type
*/
protected $updated_time;
/**
* @var type
*/
protected $template_description;
protected static $json_name = "stack";
protected static $url_resource = "stacks";
protected $createKeys = array(
'template',
'stack_name'
);
/**
* {@inheritDoc}
*/
protected function createJson()
{
$pk = $this->primaryKeyField();
if (!empty($this->{$pk})) {
throw new CreateError(sprintf(
'Stack is already created and has ID of %s',
$this->$pk
));
}
$object = (object) array('disable_rollback' => false, 'timeout_mins' => 60);
foreach ($this->createKeys as $property) {
if (empty($this->$property)) {
throw new CreateError(sprintf(
'Cannot create Stack with null %s',
$property
));
} else {
$object->$property = $this->$property;
}
}
if (null !== $this->parameters) {
$object->parameters = $this->parameters;
}
return $object;
}
public function name()
{
return $this->stack_name;
}
public function status()
{
return $this->stack_status;
}
public function resource($id = null)
{
$resource = new Resource($this->getService());
$resource->setParent($this);
$resource->populate($id);
return $resource;
}
public function resources()
{
return $this->getService()->collection(
'OpenCloud\Orchestration\Resource',
$this->url('resources'),
$this
);
}
}
|