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 |
|
---|
18 | namespace Google\Service\Dataproc;
|
---|
19 |
|
---|
20 | class SparkWrapperObject extends \Google\Model
|
---|
21 | {
|
---|
22 | protected $appSummaryType = AppSummary::class;
|
---|
23 | protected $appSummaryDataType = '';
|
---|
24 | protected $applicationEnvironmentInfoType = ApplicationEnvironmentInfo::class;
|
---|
25 | protected $applicationEnvironmentInfoDataType = '';
|
---|
26 | /**
|
---|
27 | * @var string
|
---|
28 | */
|
---|
29 | public $applicationId;
|
---|
30 | protected $applicationInfoType = ApplicationInfo::class;
|
---|
31 | protected $applicationInfoDataType = '';
|
---|
32 | /**
|
---|
33 | * @var string
|
---|
34 | */
|
---|
35 | public $eventTimestamp;
|
---|
36 | protected $executorStageSummaryType = ExecutorStageSummary::class;
|
---|
37 | protected $executorStageSummaryDataType = '';
|
---|
38 | protected $executorSummaryType = ExecutorSummary::class;
|
---|
39 | protected $executorSummaryDataType = '';
|
---|
40 | protected $jobDataType = JobData::class;
|
---|
41 | protected $jobDataDataType = '';
|
---|
42 | protected $poolDataType = PoolData::class;
|
---|
43 | protected $poolDataDataType = '';
|
---|
44 | protected $processSummaryType = ProcessSummary::class;
|
---|
45 | protected $processSummaryDataType = '';
|
---|
46 | protected $rddOperationGraphType = RddOperationGraph::class;
|
---|
47 | protected $rddOperationGraphDataType = '';
|
---|
48 | protected $rddStorageInfoType = RddStorageInfo::class;
|
---|
49 | protected $rddStorageInfoDataType = '';
|
---|
50 | protected $resourceProfileInfoType = ResourceProfileInfo::class;
|
---|
51 | protected $resourceProfileInfoDataType = '';
|
---|
52 | protected $sparkPlanGraphType = SparkPlanGraph::class;
|
---|
53 | protected $sparkPlanGraphDataType = '';
|
---|
54 | protected $speculationStageSummaryType = SpeculationStageSummary::class;
|
---|
55 | protected $speculationStageSummaryDataType = '';
|
---|
56 | protected $sqlExecutionUiDataType = SqlExecutionUiData::class;
|
---|
57 | protected $sqlExecutionUiDataDataType = '';
|
---|
58 | protected $stageDataType = StageData::class;
|
---|
59 | protected $stageDataDataType = '';
|
---|
60 | protected $streamBlockDataType = StreamBlockData::class;
|
---|
61 | protected $streamBlockDataDataType = '';
|
---|
62 | protected $streamingQueryDataType = StreamingQueryData::class;
|
---|
63 | protected $streamingQueryDataDataType = '';
|
---|
64 | protected $streamingQueryProgressType = StreamingQueryProgress::class;
|
---|
65 | protected $streamingQueryProgressDataType = '';
|
---|
66 | protected $taskDataType = TaskData::class;
|
---|
67 | protected $taskDataDataType = '';
|
---|
68 |
|
---|
69 | /**
|
---|
70 | * @param AppSummary
|
---|
71 | */
|
---|
72 | public function setAppSummary(AppSummary $appSummary)
|
---|
73 | {
|
---|
74 | $this->appSummary = $appSummary;
|
---|
75 | }
|
---|
76 | /**
|
---|
77 | * @return AppSummary
|
---|
78 | */
|
---|
79 | public function getAppSummary()
|
---|
80 | {
|
---|
81 | return $this->appSummary;
|
---|
82 | }
|
---|
83 | /**
|
---|
84 | * @param ApplicationEnvironmentInfo
|
---|
85 | */
|
---|
86 | public function setApplicationEnvironmentInfo(ApplicationEnvironmentInfo $applicationEnvironmentInfo)
|
---|
87 | {
|
---|
88 | $this->applicationEnvironmentInfo = $applicationEnvironmentInfo;
|
---|
89 | }
|
---|
90 | /**
|
---|
91 | * @return ApplicationEnvironmentInfo
|
---|
92 | */
|
---|
93 | public function getApplicationEnvironmentInfo()
|
---|
94 | {
|
---|
95 | return $this->applicationEnvironmentInfo;
|
---|
96 | }
|
---|
97 | /**
|
---|
98 | * @param string
|
---|
99 | */
|
---|
100 | public function setApplicationId($applicationId)
|
---|
101 | {
|
---|
102 | $this->applicationId = $applicationId;
|
---|
103 | }
|
---|
104 | /**
|
---|
105 | * @return string
|
---|
106 | */
|
---|
107 | public function getApplicationId()
|
---|
108 | {
|
---|
109 | return $this->applicationId;
|
---|
110 | }
|
---|
111 | /**
|
---|
112 | * @param ApplicationInfo
|
---|
113 | */
|
---|
114 | public function setApplicationInfo(ApplicationInfo $applicationInfo)
|
---|
115 | {
|
---|
116 | $this->applicationInfo = $applicationInfo;
|
---|
117 | }
|
---|
118 | /**
|
---|
119 | * @return ApplicationInfo
|
---|
120 | */
|
---|
121 | public function getApplicationInfo()
|
---|
122 | {
|
---|
123 | return $this->applicationInfo;
|
---|
124 | }
|
---|
125 | /**
|
---|
126 | * @param string
|
---|
127 | */
|
---|
128 | public function setEventTimestamp($eventTimestamp)
|
---|
129 | {
|
---|
130 | $this->eventTimestamp = $eventTimestamp;
|
---|
131 | }
|
---|
132 | /**
|
---|
133 | * @return string
|
---|
134 | */
|
---|
135 | public function getEventTimestamp()
|
---|
136 | {
|
---|
137 | return $this->eventTimestamp;
|
---|
138 | }
|
---|
139 | /**
|
---|
140 | * @param ExecutorStageSummary
|
---|
141 | */
|
---|
142 | public function setExecutorStageSummary(ExecutorStageSummary $executorStageSummary)
|
---|
143 | {
|
---|
144 | $this->executorStageSummary = $executorStageSummary;
|
---|
145 | }
|
---|
146 | /**
|
---|
147 | * @return ExecutorStageSummary
|
---|
148 | */
|
---|
149 | public function getExecutorStageSummary()
|
---|
150 | {
|
---|
151 | return $this->executorStageSummary;
|
---|
152 | }
|
---|
153 | /**
|
---|
154 | * @param ExecutorSummary
|
---|
155 | */
|
---|
156 | public function setExecutorSummary(ExecutorSummary $executorSummary)
|
---|
157 | {
|
---|
158 | $this->executorSummary = $executorSummary;
|
---|
159 | }
|
---|
160 | /**
|
---|
161 | * @return ExecutorSummary
|
---|
162 | */
|
---|
163 | public function getExecutorSummary()
|
---|
164 | {
|
---|
165 | return $this->executorSummary;
|
---|
166 | }
|
---|
167 | /**
|
---|
168 | * @param JobData
|
---|
169 | */
|
---|
170 | public function setJobData(JobData $jobData)
|
---|
171 | {
|
---|
172 | $this->jobData = $jobData;
|
---|
173 | }
|
---|
174 | /**
|
---|
175 | * @return JobData
|
---|
176 | */
|
---|
177 | public function getJobData()
|
---|
178 | {
|
---|
179 | return $this->jobData;
|
---|
180 | }
|
---|
181 | /**
|
---|
182 | * @param PoolData
|
---|
183 | */
|
---|
184 | public function setPoolData(PoolData $poolData)
|
---|
185 | {
|
---|
186 | $this->poolData = $poolData;
|
---|
187 | }
|
---|
188 | /**
|
---|
189 | * @return PoolData
|
---|
190 | */
|
---|
191 | public function getPoolData()
|
---|
192 | {
|
---|
193 | return $this->poolData;
|
---|
194 | }
|
---|
195 | /**
|
---|
196 | * @param ProcessSummary
|
---|
197 | */
|
---|
198 | public function setProcessSummary(ProcessSummary $processSummary)
|
---|
199 | {
|
---|
200 | $this->processSummary = $processSummary;
|
---|
201 | }
|
---|
202 | /**
|
---|
203 | * @return ProcessSummary
|
---|
204 | */
|
---|
205 | public function getProcessSummary()
|
---|
206 | {
|
---|
207 | return $this->processSummary;
|
---|
208 | }
|
---|
209 | /**
|
---|
210 | * @param RddOperationGraph
|
---|
211 | */
|
---|
212 | public function setRddOperationGraph(RddOperationGraph $rddOperationGraph)
|
---|
213 | {
|
---|
214 | $this->rddOperationGraph = $rddOperationGraph;
|
---|
215 | }
|
---|
216 | /**
|
---|
217 | * @return RddOperationGraph
|
---|
218 | */
|
---|
219 | public function getRddOperationGraph()
|
---|
220 | {
|
---|
221 | return $this->rddOperationGraph;
|
---|
222 | }
|
---|
223 | /**
|
---|
224 | * @param RddStorageInfo
|
---|
225 | */
|
---|
226 | public function setRddStorageInfo(RddStorageInfo $rddStorageInfo)
|
---|
227 | {
|
---|
228 | $this->rddStorageInfo = $rddStorageInfo;
|
---|
229 | }
|
---|
230 | /**
|
---|
231 | * @return RddStorageInfo
|
---|
232 | */
|
---|
233 | public function getRddStorageInfo()
|
---|
234 | {
|
---|
235 | return $this->rddStorageInfo;
|
---|
236 | }
|
---|
237 | /**
|
---|
238 | * @param ResourceProfileInfo
|
---|
239 | */
|
---|
240 | public function setResourceProfileInfo(ResourceProfileInfo $resourceProfileInfo)
|
---|
241 | {
|
---|
242 | $this->resourceProfileInfo = $resourceProfileInfo;
|
---|
243 | }
|
---|
244 | /**
|
---|
245 | * @return ResourceProfileInfo
|
---|
246 | */
|
---|
247 | public function getResourceProfileInfo()
|
---|
248 | {
|
---|
249 | return $this->resourceProfileInfo;
|
---|
250 | }
|
---|
251 | /**
|
---|
252 | * @param SparkPlanGraph
|
---|
253 | */
|
---|
254 | public function setSparkPlanGraph(SparkPlanGraph $sparkPlanGraph)
|
---|
255 | {
|
---|
256 | $this->sparkPlanGraph = $sparkPlanGraph;
|
---|
257 | }
|
---|
258 | /**
|
---|
259 | * @return SparkPlanGraph
|
---|
260 | */
|
---|
261 | public function getSparkPlanGraph()
|
---|
262 | {
|
---|
263 | return $this->sparkPlanGraph;
|
---|
264 | }
|
---|
265 | /**
|
---|
266 | * @param SpeculationStageSummary
|
---|
267 | */
|
---|
268 | public function setSpeculationStageSummary(SpeculationStageSummary $speculationStageSummary)
|
---|
269 | {
|
---|
270 | $this->speculationStageSummary = $speculationStageSummary;
|
---|
271 | }
|
---|
272 | /**
|
---|
273 | * @return SpeculationStageSummary
|
---|
274 | */
|
---|
275 | public function getSpeculationStageSummary()
|
---|
276 | {
|
---|
277 | return $this->speculationStageSummary;
|
---|
278 | }
|
---|
279 | /**
|
---|
280 | * @param SqlExecutionUiData
|
---|
281 | */
|
---|
282 | public function setSqlExecutionUiData(SqlExecutionUiData $sqlExecutionUiData)
|
---|
283 | {
|
---|
284 | $this->sqlExecutionUiData = $sqlExecutionUiData;
|
---|
285 | }
|
---|
286 | /**
|
---|
287 | * @return SqlExecutionUiData
|
---|
288 | */
|
---|
289 | public function getSqlExecutionUiData()
|
---|
290 | {
|
---|
291 | return $this->sqlExecutionUiData;
|
---|
292 | }
|
---|
293 | /**
|
---|
294 | * @param StageData
|
---|
295 | */
|
---|
296 | public function setStageData(StageData $stageData)
|
---|
297 | {
|
---|
298 | $this->stageData = $stageData;
|
---|
299 | }
|
---|
300 | /**
|
---|
301 | * @return StageData
|
---|
302 | */
|
---|
303 | public function getStageData()
|
---|
304 | {
|
---|
305 | return $this->stageData;
|
---|
306 | }
|
---|
307 | /**
|
---|
308 | * @param StreamBlockData
|
---|
309 | */
|
---|
310 | public function setStreamBlockData(StreamBlockData $streamBlockData)
|
---|
311 | {
|
---|
312 | $this->streamBlockData = $streamBlockData;
|
---|
313 | }
|
---|
314 | /**
|
---|
315 | * @return StreamBlockData
|
---|
316 | */
|
---|
317 | public function getStreamBlockData()
|
---|
318 | {
|
---|
319 | return $this->streamBlockData;
|
---|
320 | }
|
---|
321 | /**
|
---|
322 | * @param StreamingQueryData
|
---|
323 | */
|
---|
324 | public function setStreamingQueryData(StreamingQueryData $streamingQueryData)
|
---|
325 | {
|
---|
326 | $this->streamingQueryData = $streamingQueryData;
|
---|
327 | }
|
---|
328 | /**
|
---|
329 | * @return StreamingQueryData
|
---|
330 | */
|
---|
331 | public function getStreamingQueryData()
|
---|
332 | {
|
---|
333 | return $this->streamingQueryData;
|
---|
334 | }
|
---|
335 | /**
|
---|
336 | * @param StreamingQueryProgress
|
---|
337 | */
|
---|
338 | public function setStreamingQueryProgress(StreamingQueryProgress $streamingQueryProgress)
|
---|
339 | {
|
---|
340 | $this->streamingQueryProgress = $streamingQueryProgress;
|
---|
341 | }
|
---|
342 | /**
|
---|
343 | * @return StreamingQueryProgress
|
---|
344 | */
|
---|
345 | public function getStreamingQueryProgress()
|
---|
346 | {
|
---|
347 | return $this->streamingQueryProgress;
|
---|
348 | }
|
---|
349 | /**
|
---|
350 | * @param TaskData
|
---|
351 | */
|
---|
352 | public function setTaskData(TaskData $taskData)
|
---|
353 | {
|
---|
354 | $this->taskData = $taskData;
|
---|
355 | }
|
---|
356 | /**
|
---|
357 | * @return TaskData
|
---|
358 | */
|
---|
359 | public function getTaskData()
|
---|
360 | {
|
---|
361 | return $this->taskData;
|
---|
362 | }
|
---|
363 | }
|
---|
364 |
|
---|
365 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
366 | class_alias(SparkWrapperObject::class, 'Google_Service_Dataproc_SparkWrapperObject');
|
---|