source: vendor/google/apiclient-services/src/VMwareEngine/PrivateCloud.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 4.6 KB
Line 
1<?php
2/*
3 * Copyright 2014 Google Inc.
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
6 * use this file except in compliance with the License. You may obtain a copy of
7 * the License at
8 *
9 * http://www.apache.org/licenses/LICENSE-2.0
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14 * License for the specific language governing permissions and limitations under
15 * the License.
16 */
17
18namespace Google\Service\VMwareEngine;
19
20class PrivateCloud extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $createTime;
26 /**
27 * @var string
28 */
29 public $deleteTime;
30 /**
31 * @var string
32 */
33 public $description;
34 /**
35 * @var string
36 */
37 public $expireTime;
38 protected $hcxType = Hcx::class;
39 protected $hcxDataType = '';
40 protected $managementClusterType = ManagementCluster::class;
41 protected $managementClusterDataType = '';
42 /**
43 * @var string
44 */
45 public $name;
46 protected $networkConfigType = NetworkConfig::class;
47 protected $networkConfigDataType = '';
48 protected $nsxType = Nsx::class;
49 protected $nsxDataType = '';
50 /**
51 * @var string
52 */
53 public $state;
54 /**
55 * @var string
56 */
57 public $type;
58 /**
59 * @var string
60 */
61 public $uid;
62 /**
63 * @var string
64 */
65 public $updateTime;
66 protected $vcenterType = Vcenter::class;
67 protected $vcenterDataType = '';
68
69 /**
70 * @param string
71 */
72 public function setCreateTime($createTime)
73 {
74 $this->createTime = $createTime;
75 }
76 /**
77 * @return string
78 */
79 public function getCreateTime()
80 {
81 return $this->createTime;
82 }
83 /**
84 * @param string
85 */
86 public function setDeleteTime($deleteTime)
87 {
88 $this->deleteTime = $deleteTime;
89 }
90 /**
91 * @return string
92 */
93 public function getDeleteTime()
94 {
95 return $this->deleteTime;
96 }
97 /**
98 * @param string
99 */
100 public function setDescription($description)
101 {
102 $this->description = $description;
103 }
104 /**
105 * @return string
106 */
107 public function getDescription()
108 {
109 return $this->description;
110 }
111 /**
112 * @param string
113 */
114 public function setExpireTime($expireTime)
115 {
116 $this->expireTime = $expireTime;
117 }
118 /**
119 * @return string
120 */
121 public function getExpireTime()
122 {
123 return $this->expireTime;
124 }
125 /**
126 * @param Hcx
127 */
128 public function setHcx(Hcx $hcx)
129 {
130 $this->hcx = $hcx;
131 }
132 /**
133 * @return Hcx
134 */
135 public function getHcx()
136 {
137 return $this->hcx;
138 }
139 /**
140 * @param ManagementCluster
141 */
142 public function setManagementCluster(ManagementCluster $managementCluster)
143 {
144 $this->managementCluster = $managementCluster;
145 }
146 /**
147 * @return ManagementCluster
148 */
149 public function getManagementCluster()
150 {
151 return $this->managementCluster;
152 }
153 /**
154 * @param string
155 */
156 public function setName($name)
157 {
158 $this->name = $name;
159 }
160 /**
161 * @return string
162 */
163 public function getName()
164 {
165 return $this->name;
166 }
167 /**
168 * @param NetworkConfig
169 */
170 public function setNetworkConfig(NetworkConfig $networkConfig)
171 {
172 $this->networkConfig = $networkConfig;
173 }
174 /**
175 * @return NetworkConfig
176 */
177 public function getNetworkConfig()
178 {
179 return $this->networkConfig;
180 }
181 /**
182 * @param Nsx
183 */
184 public function setNsx(Nsx $nsx)
185 {
186 $this->nsx = $nsx;
187 }
188 /**
189 * @return Nsx
190 */
191 public function getNsx()
192 {
193 return $this->nsx;
194 }
195 /**
196 * @param string
197 */
198 public function setState($state)
199 {
200 $this->state = $state;
201 }
202 /**
203 * @return string
204 */
205 public function getState()
206 {
207 return $this->state;
208 }
209 /**
210 * @param string
211 */
212 public function setType($type)
213 {
214 $this->type = $type;
215 }
216 /**
217 * @return string
218 */
219 public function getType()
220 {
221 return $this->type;
222 }
223 /**
224 * @param string
225 */
226 public function setUid($uid)
227 {
228 $this->uid = $uid;
229 }
230 /**
231 * @return string
232 */
233 public function getUid()
234 {
235 return $this->uid;
236 }
237 /**
238 * @param string
239 */
240 public function setUpdateTime($updateTime)
241 {
242 $this->updateTime = $updateTime;
243 }
244 /**
245 * @return string
246 */
247 public function getUpdateTime()
248 {
249 return $this->updateTime;
250 }
251 /**
252 * @param Vcenter
253 */
254 public function setVcenter(Vcenter $vcenter)
255 {
256 $this->vcenter = $vcenter;
257 }
258 /**
259 * @return Vcenter
260 */
261 public function getVcenter()
262 {
263 return $this->vcenter;
264 }
265}
266
267// Adding a class alias for backwards compatibility with the previous class name.
268class_alias(PrivateCloud::class, 'Google_Service_VMwareEngine_PrivateCloud');
Note: See TracBrowser for help on using the repository browser.