PluginProbe
WP-Stateless – Google Cloud Storage / 3.1.1
WP-Stateless – Google Cloud Storage v3.1.1
4.4.3 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.3.0 2.3.1 2.3.2 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 All 62 releases
wp-stateless / lib / Google / src / Google / Service / Storage / StorageObject.php

StorageObject.php in WP-Stateless – Google Cloud Storage 3.1.1, at lib/Google/src/Google/Service/Storage/StorageObject.php

333 lines 7.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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 namespace wpCloud\StatelessMedia\Google_Client;
18
19 class Google_Service_Storage_StorageObject extends Google_Collection
20 {
21 protected $collection_key = 'acl';
22 protected $aclType = 'Google_Service_Storage_ObjectAccessControl';
23 protected $aclDataType = 'array';
24 public $bucket;
25 public $cacheControl;
26 public $componentCount;
27 public $contentDisposition;
28 public $contentEncoding;
29 public $contentLanguage;
30 public $contentType;
31 public $crc32c;
32 public $customTime;
33 protected $customerEncryptionType = 'Google_Service_Storage_StorageObjectCustomerEncryption';
34 protected $customerEncryptionDataType = '';
35 public $etag;
36 public $eventBasedHold;
37 public $generation;
38 public $id;
39 public $kind;
40 public $kmsKeyName;
41 public $md5Hash;
42 public $mediaLink;
43 public $metadata;
44 public $metageneration;
45 public $name;
46 protected $ownerType = 'Google_Service_Storage_StorageObjectOwner';
47 protected $ownerDataType = '';
48 public $retentionExpirationTime;
49 public $selfLink;
50 public $size;
51 public $storageClass;
52 public $temporaryHold;
53 public $timeCreated;
54 public $timeDeleted;
55 public $timeStorageClassUpdated;
56 public $updated;
57
58 /**
59 * @param Google_Service_Storage_ObjectAccessControl
60 */
61 public function setAcl($acl)
62 {
63 $this->acl = $acl;
64 }
65 /**
66 * @return Google_Service_Storage_ObjectAccessControl
67 */
68 public function getAcl()
69 {
70 return $this->acl;
71 }
72 public function setBucket($bucket)
73 {
74 $this->bucket = $bucket;
75 }
76 public function getBucket()
77 {
78 return $this->bucket;
79 }
80 public function setCacheControl($cacheControl)
81 {
82 $this->cacheControl = $cacheControl;
83 }
84 public function getCacheControl()
85 {
86 return $this->cacheControl;
87 }
88 public function setComponentCount($componentCount)
89 {
90 $this->componentCount = $componentCount;
91 }
92 public function getComponentCount()
93 {
94 return $this->componentCount;
95 }
96 public function setContentDisposition($contentDisposition)
97 {
98 $this->contentDisposition = $contentDisposition;
99 }
100 public function getContentDisposition()
101 {
102 return $this->contentDisposition;
103 }
104 public function setContentEncoding($contentEncoding)
105 {
106 $this->contentEncoding = $contentEncoding;
107 }
108 public function getContentEncoding()
109 {
110 return $this->contentEncoding;
111 }
112 public function setContentLanguage($contentLanguage)
113 {
114 $this->contentLanguage = $contentLanguage;
115 }
116 public function getContentLanguage()
117 {
118 return $this->contentLanguage;
119 }
120 public function setContentType($contentType)
121 {
122 $this->contentType = $contentType;
123 }
124 public function getContentType()
125 {
126 return $this->contentType;
127 }
128 public function setCrc32c($crc32c)
129 {
130 $this->crc32c = $crc32c;
131 }
132 public function getCrc32c()
133 {
134 return $this->crc32c;
135 }
136 public function setCustomTime($customTime)
137 {
138 $this->customTime = $customTime;
139 }
140 public function getCustomTime()
141 {
142 return $this->customTime;
143 }
144 /**
145 * @param Google_Service_Storage_StorageObjectCustomerEncryption
146 */
147 public function setCustomerEncryption(Google_Service_Storage_StorageObjectCustomerEncryption $customerEncryption)
148 {
149 $this->customerEncryption = $customerEncryption;
150 }
151 /**
152 * @return Google_Service_Storage_StorageObjectCustomerEncryption
153 */
154 public function getCustomerEncryption()
155 {
156 return $this->customerEncryption;
157 }
158 public function setEtag($etag)
159 {
160 $this->etag = $etag;
161 }
162 public function getEtag()
163 {
164 return $this->etag;
165 }
166 public function setEventBasedHold($eventBasedHold)
167 {
168 $this->eventBasedHold = $eventBasedHold;
169 }
170 public function getEventBasedHold()
171 {
172 return $this->eventBasedHold;
173 }
174 public function setGeneration($generation)
175 {
176 $this->generation = $generation;
177 }
178 public function getGeneration()
179 {
180 return $this->generation;
181 }
182 public function setId($id)
183 {
184 $this->id = $id;
185 }
186 public function getId()
187 {
188 return $this->id;
189 }
190 public function setKind($kind)
191 {
192 $this->kind = $kind;
193 }
194 public function getKind()
195 {
196 return $this->kind;
197 }
198 public function setKmsKeyName($kmsKeyName)
199 {
200 $this->kmsKeyName = $kmsKeyName;
201 }
202 public function getKmsKeyName()
203 {
204 return $this->kmsKeyName;
205 }
206 public function setMd5Hash($md5Hash)
207 {
208 $this->md5Hash = $md5Hash;
209 }
210 public function getMd5Hash()
211 {
212 return $this->md5Hash;
213 }
214 public function setMediaLink($mediaLink)
215 {
216 $this->mediaLink = $mediaLink;
217 }
218 public function getMediaLink()
219 {
220 return $this->mediaLink;
221 }
222 public function setMetadata($metadata)
223 {
224 $this->metadata = $metadata;
225 }
226 public function getMetadata()
227 {
228 return $this->metadata;
229 }
230 public function setMetageneration($metageneration)
231 {
232 $this->metageneration = $metageneration;
233 }
234 public function getMetageneration()
235 {
236 return $this->metageneration;
237 }
238 public function setName($name)
239 {
240 $this->name = $name;
241 }
242 public function getName()
243 {
244 return $this->name;
245 }
246 /**
247 * @param Google_Service_Storage_StorageObjectOwner
248 */
249 public function setOwner(Google_Service_Storage_StorageObjectOwner $owner)
250 {
251 $this->owner = $owner;
252 }
253 /**
254 * @return Google_Service_Storage_StorageObjectOwner
255 */
256 public function getOwner()
257 {
258 return $this->owner;
259 }
260 public function setRetentionExpirationTime($retentionExpirationTime)
261 {
262 $this->retentionExpirationTime = $retentionExpirationTime;
263 }
264 public function getRetentionExpirationTime()
265 {
266 return $this->retentionExpirationTime;
267 }
268 public function setSelfLink($selfLink)
269 {
270 $this->selfLink = $selfLink;
271 }
272 public function getSelfLink()
273 {
274 return $this->selfLink;
275 }
276 public function setSize($size)
277 {
278 $this->size = $size;
279 }
280 public function getSize()
281 {
282 return $this->size;
283 }
284 public function setStorageClass($storageClass)
285 {
286 $this->storageClass = $storageClass;
287 }
288 public function getStorageClass()
289 {
290 return $this->storageClass;
291 }
292 public function setTemporaryHold($temporaryHold)
293 {
294 $this->temporaryHold = $temporaryHold;
295 }
296 public function getTemporaryHold()
297 {
298 return $this->temporaryHold;
299 }
300 public function setTimeCreated($timeCreated)
301 {
302 $this->timeCreated = $timeCreated;
303 }
304 public function getTimeCreated()
305 {
306 return $this->timeCreated;
307 }
308 public function setTimeDeleted($timeDeleted)
309 {
310 $this->timeDeleted = $timeDeleted;
311 }
312 public function getTimeDeleted()
313 {
314 return $this->timeDeleted;
315 }
316 public function setTimeStorageClassUpdated($timeStorageClassUpdated)
317 {
318 $this->timeStorageClassUpdated = $timeStorageClassUpdated;
319 }
320 public function getTimeStorageClassUpdated()
321 {
322 return $this->timeStorageClassUpdated;
323 }
324 public function setUpdated($updated)
325 {
326 $this->updated = $updated;
327 }
328 public function getUpdated()
329 {
330 return $this->updated;
331 }
332 }
333