source: vendor/google/apiclient-services/src/AIPlatformNotebooks/LocalDisk.php

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

Upload project files

  • Property mode set to 100644
File size: 4.2 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\AIPlatformNotebooks;
19
20class LocalDisk extends \Google\Collection
21{
22 protected $collection_key = 'licenses';
23 /**
24 * @var bool
25 */
26 public $autoDelete;
27 /**
28 * @var bool
29 */
30 public $boot;
31 /**
32 * @var string
33 */
34 public $deviceName;
35 protected $guestOsFeaturesType = RuntimeGuestOsFeature::class;
36 protected $guestOsFeaturesDataType = 'array';
37 public $guestOsFeatures = [];
38 /**
39 * @var int
40 */
41 public $index;
42 protected $initializeParamsType = LocalDiskInitializeParams::class;
43 protected $initializeParamsDataType = '';
44 public $initializeParams;
45 /**
46 * @var string
47 */
48 public $interface;
49 /**
50 * @var string
51 */
52 public $kind;
53 /**
54 * @var string[]
55 */
56 public $licenses = [];
57 /**
58 * @var string
59 */
60 public $mode;
61 /**
62 * @var string
63 */
64 public $source;
65 /**
66 * @var string
67 */
68 public $type;
69
70 /**
71 * @param bool
72 */
73 public function setAutoDelete($autoDelete)
74 {
75 $this->autoDelete = $autoDelete;
76 }
77 /**
78 * @return bool
79 */
80 public function getAutoDelete()
81 {
82 return $this->autoDelete;
83 }
84 /**
85 * @param bool
86 */
87 public function setBoot($boot)
88 {
89 $this->boot = $boot;
90 }
91 /**
92 * @return bool
93 */
94 public function getBoot()
95 {
96 return $this->boot;
97 }
98 /**
99 * @param string
100 */
101 public function setDeviceName($deviceName)
102 {
103 $this->deviceName = $deviceName;
104 }
105 /**
106 * @return string
107 */
108 public function getDeviceName()
109 {
110 return $this->deviceName;
111 }
112 /**
113 * @param RuntimeGuestOsFeature[]
114 */
115 public function setGuestOsFeatures($guestOsFeatures)
116 {
117 $this->guestOsFeatures = $guestOsFeatures;
118 }
119 /**
120 * @return RuntimeGuestOsFeature[]
121 */
122 public function getGuestOsFeatures()
123 {
124 return $this->guestOsFeatures;
125 }
126 /**
127 * @param int
128 */
129 public function setIndex($index)
130 {
131 $this->index = $index;
132 }
133 /**
134 * @return int
135 */
136 public function getIndex()
137 {
138 return $this->index;
139 }
140 /**
141 * @param LocalDiskInitializeParams
142 */
143 public function setInitializeParams(LocalDiskInitializeParams $initializeParams)
144 {
145 $this->initializeParams = $initializeParams;
146 }
147 /**
148 * @return LocalDiskInitializeParams
149 */
150 public function getInitializeParams()
151 {
152 return $this->initializeParams;
153 }
154 /**
155 * @param string
156 */
157 public function setInterface($interface)
158 {
159 $this->interface = $interface;
160 }
161 /**
162 * @return string
163 */
164 public function getInterface()
165 {
166 return $this->interface;
167 }
168 /**
169 * @param string
170 */
171 public function setKind($kind)
172 {
173 $this->kind = $kind;
174 }
175 /**
176 * @return string
177 */
178 public function getKind()
179 {
180 return $this->kind;
181 }
182 /**
183 * @param string[]
184 */
185 public function setLicenses($licenses)
186 {
187 $this->licenses = $licenses;
188 }
189 /**
190 * @return string[]
191 */
192 public function getLicenses()
193 {
194 return $this->licenses;
195 }
196 /**
197 * @param string
198 */
199 public function setMode($mode)
200 {
201 $this->mode = $mode;
202 }
203 /**
204 * @return string
205 */
206 public function getMode()
207 {
208 return $this->mode;
209 }
210 /**
211 * @param string
212 */
213 public function setSource($source)
214 {
215 $this->source = $source;
216 }
217 /**
218 * @return string
219 */
220 public function getSource()
221 {
222 return $this->source;
223 }
224 /**
225 * @param string
226 */
227 public function setType($type)
228 {
229 $this->type = $type;
230 }
231 /**
232 * @return string
233 */
234 public function getType()
235 {
236 return $this->type;
237 }
238}
239
240// Adding a class alias for backwards compatibility with the previous class name.
241class_alias(LocalDisk::class, 'Google_Service_AIPlatformNotebooks_LocalDisk');
Note: See TracBrowser for help on using the repository browser.