source: vendor/google/apiclient-services/src/Storagetransfer/TransferJob.php

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

Upload project files

  • Property mode set to 100644
File size: 5.2 KB
RevLine 
[e3d4e0a]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\Storagetransfer;
19
20class TransferJob extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $creationTime;
26 /**
27 * @var string
28 */
29 public $deletionTime;
30 /**
31 * @var string
32 */
33 public $description;
34 protected $eventStreamType = EventStream::class;
35 protected $eventStreamDataType = '';
36 /**
37 * @var string
38 */
39 public $lastModificationTime;
40 /**
41 * @var string
42 */
43 public $latestOperationName;
44 protected $loggingConfigType = LoggingConfig::class;
45 protected $loggingConfigDataType = '';
46 /**
47 * @var string
48 */
49 public $name;
50 protected $notificationConfigType = NotificationConfig::class;
51 protected $notificationConfigDataType = '';
52 /**
53 * @var string
54 */
55 public $projectId;
56 protected $replicationSpecType = ReplicationSpec::class;
57 protected $replicationSpecDataType = '';
58 protected $scheduleType = Schedule::class;
59 protected $scheduleDataType = '';
60 /**
61 * @var string
62 */
63 public $status;
64 protected $transferSpecType = TransferSpec::class;
65 protected $transferSpecDataType = '';
66
67 /**
68 * @param string
69 */
70 public function setCreationTime($creationTime)
71 {
72 $this->creationTime = $creationTime;
73 }
74 /**
75 * @return string
76 */
77 public function getCreationTime()
78 {
79 return $this->creationTime;
80 }
81 /**
82 * @param string
83 */
84 public function setDeletionTime($deletionTime)
85 {
86 $this->deletionTime = $deletionTime;
87 }
88 /**
89 * @return string
90 */
91 public function getDeletionTime()
92 {
93 return $this->deletionTime;
94 }
95 /**
96 * @param string
97 */
98 public function setDescription($description)
99 {
100 $this->description = $description;
101 }
102 /**
103 * @return string
104 */
105 public function getDescription()
106 {
107 return $this->description;
108 }
109 /**
110 * @param EventStream
111 */
112 public function setEventStream(EventStream $eventStream)
113 {
114 $this->eventStream = $eventStream;
115 }
116 /**
117 * @return EventStream
118 */
119 public function getEventStream()
120 {
121 return $this->eventStream;
122 }
123 /**
124 * @param string
125 */
126 public function setLastModificationTime($lastModificationTime)
127 {
128 $this->lastModificationTime = $lastModificationTime;
129 }
130 /**
131 * @return string
132 */
133 public function getLastModificationTime()
134 {
135 return $this->lastModificationTime;
136 }
137 /**
138 * @param string
139 */
140 public function setLatestOperationName($latestOperationName)
141 {
142 $this->latestOperationName = $latestOperationName;
143 }
144 /**
145 * @return string
146 */
147 public function getLatestOperationName()
148 {
149 return $this->latestOperationName;
150 }
151 /**
152 * @param LoggingConfig
153 */
154 public function setLoggingConfig(LoggingConfig $loggingConfig)
155 {
156 $this->loggingConfig = $loggingConfig;
157 }
158 /**
159 * @return LoggingConfig
160 */
161 public function getLoggingConfig()
162 {
163 return $this->loggingConfig;
164 }
165 /**
166 * @param string
167 */
168 public function setName($name)
169 {
170 $this->name = $name;
171 }
172 /**
173 * @return string
174 */
175 public function getName()
176 {
177 return $this->name;
178 }
179 /**
180 * @param NotificationConfig
181 */
182 public function setNotificationConfig(NotificationConfig $notificationConfig)
183 {
184 $this->notificationConfig = $notificationConfig;
185 }
186 /**
187 * @return NotificationConfig
188 */
189 public function getNotificationConfig()
190 {
191 return $this->notificationConfig;
192 }
193 /**
194 * @param string
195 */
196 public function setProjectId($projectId)
197 {
198 $this->projectId = $projectId;
199 }
200 /**
201 * @return string
202 */
203 public function getProjectId()
204 {
205 return $this->projectId;
206 }
207 /**
208 * @param ReplicationSpec
209 */
210 public function setReplicationSpec(ReplicationSpec $replicationSpec)
211 {
212 $this->replicationSpec = $replicationSpec;
213 }
214 /**
215 * @return ReplicationSpec
216 */
217 public function getReplicationSpec()
218 {
219 return $this->replicationSpec;
220 }
221 /**
222 * @param Schedule
223 */
224 public function setSchedule(Schedule $schedule)
225 {
226 $this->schedule = $schedule;
227 }
228 /**
229 * @return Schedule
230 */
231 public function getSchedule()
232 {
233 return $this->schedule;
234 }
235 /**
236 * @param string
237 */
238 public function setStatus($status)
239 {
240 $this->status = $status;
241 }
242 /**
243 * @return string
244 */
245 public function getStatus()
246 {
247 return $this->status;
248 }
249 /**
250 * @param TransferSpec
251 */
252 public function setTransferSpec(TransferSpec $transferSpec)
253 {
254 $this->transferSpec = $transferSpec;
255 }
256 /**
257 * @return TransferSpec
258 */
259 public function getTransferSpec()
260 {
261 return $this->transferSpec;
262 }
263}
264
265// Adding a class alias for backwards compatibility with the previous class name.
266class_alias(TransferJob::class, 'Google_Service_Storagetransfer_TransferJob');
Note: See TracBrowser for help on using the repository browser.