source: vendor/google/apiclient-services/src/VMMigrationService/VmwareVmDetails.php@ e3d4e0a

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

Upload project files

  • Property mode set to 100644
File size: 4.4 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\VMMigrationService;
19
20class VmwareVmDetails extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $architecture;
26 /**
27 * @var string
28 */
29 public $bootOption;
30 /**
31 * @var string
32 */
33 public $committedStorageMb;
34 /**
35 * @var int
36 */
37 public $cpuCount;
38 /**
39 * @var string
40 */
41 public $datacenterDescription;
42 /**
43 * @var string
44 */
45 public $datacenterId;
46 /**
47 * @var int
48 */
49 public $diskCount;
50 /**
51 * @var string
52 */
53 public $displayName;
54 /**
55 * @var string
56 */
57 public $guestDescription;
58 /**
59 * @var int
60 */
61 public $memoryMb;
62 /**
63 * @var string
64 */
65 public $powerState;
66 /**
67 * @var string
68 */
69 public $uuid;
70 /**
71 * @var string
72 */
73 public $vmId;
74
75 /**
76 * @param string
77 */
78 public function setArchitecture($architecture)
79 {
80 $this->architecture = $architecture;
81 }
82 /**
83 * @return string
84 */
85 public function getArchitecture()
86 {
87 return $this->architecture;
88 }
89 /**
90 * @param string
91 */
92 public function setBootOption($bootOption)
93 {
94 $this->bootOption = $bootOption;
95 }
96 /**
97 * @return string
98 */
99 public function getBootOption()
100 {
101 return $this->bootOption;
102 }
103 /**
104 * @param string
105 */
106 public function setCommittedStorageMb($committedStorageMb)
107 {
108 $this->committedStorageMb = $committedStorageMb;
109 }
110 /**
111 * @return string
112 */
113 public function getCommittedStorageMb()
114 {
115 return $this->committedStorageMb;
116 }
117 /**
118 * @param int
119 */
120 public function setCpuCount($cpuCount)
121 {
122 $this->cpuCount = $cpuCount;
123 }
124 /**
125 * @return int
126 */
127 public function getCpuCount()
128 {
129 return $this->cpuCount;
130 }
131 /**
132 * @param string
133 */
134 public function setDatacenterDescription($datacenterDescription)
135 {
136 $this->datacenterDescription = $datacenterDescription;
137 }
138 /**
139 * @return string
140 */
141 public function getDatacenterDescription()
142 {
143 return $this->datacenterDescription;
144 }
145 /**
146 * @param string
147 */
148 public function setDatacenterId($datacenterId)
149 {
150 $this->datacenterId = $datacenterId;
151 }
152 /**
153 * @return string
154 */
155 public function getDatacenterId()
156 {
157 return $this->datacenterId;
158 }
159 /**
160 * @param int
161 */
162 public function setDiskCount($diskCount)
163 {
164 $this->diskCount = $diskCount;
165 }
166 /**
167 * @return int
168 */
169 public function getDiskCount()
170 {
171 return $this->diskCount;
172 }
173 /**
174 * @param string
175 */
176 public function setDisplayName($displayName)
177 {
178 $this->displayName = $displayName;
179 }
180 /**
181 * @return string
182 */
183 public function getDisplayName()
184 {
185 return $this->displayName;
186 }
187 /**
188 * @param string
189 */
190 public function setGuestDescription($guestDescription)
191 {
192 $this->guestDescription = $guestDescription;
193 }
194 /**
195 * @return string
196 */
197 public function getGuestDescription()
198 {
199 return $this->guestDescription;
200 }
201 /**
202 * @param int
203 */
204 public function setMemoryMb($memoryMb)
205 {
206 $this->memoryMb = $memoryMb;
207 }
208 /**
209 * @return int
210 */
211 public function getMemoryMb()
212 {
213 return $this->memoryMb;
214 }
215 /**
216 * @param string
217 */
218 public function setPowerState($powerState)
219 {
220 $this->powerState = $powerState;
221 }
222 /**
223 * @return string
224 */
225 public function getPowerState()
226 {
227 return $this->powerState;
228 }
229 /**
230 * @param string
231 */
232 public function setUuid($uuid)
233 {
234 $this->uuid = $uuid;
235 }
236 /**
237 * @return string
238 */
239 public function getUuid()
240 {
241 return $this->uuid;
242 }
243 /**
244 * @param string
245 */
246 public function setVmId($vmId)
247 {
248 $this->vmId = $vmId;
249 }
250 /**
251 * @return string
252 */
253 public function getVmId()
254 {
255 return $this->vmId;
256 }
257}
258
259// Adding a class alias for backwards compatibility with the previous class name.
260class_alias(VmwareVmDetails::class, 'Google_Service_VMMigrationService_VmwareVmDetails');
Note: See TracBrowser for help on using the repository browser.