source: vendor/google/apiclient-services/src/Dataproc/ShuffleReadQuantileMetrics.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.7 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\Dataproc;
19
20class ShuffleReadQuantileMetrics extends \Google\Model
21{
22 protected $fetchWaitTimeMillisType = Quantiles::class;
23 protected $fetchWaitTimeMillisDataType = '';
24 protected $localBlocksFetchedType = Quantiles::class;
25 protected $localBlocksFetchedDataType = '';
26 protected $readBytesType = Quantiles::class;
27 protected $readBytesDataType = '';
28 protected $readRecordsType = Quantiles::class;
29 protected $readRecordsDataType = '';
30 protected $remoteBlocksFetchedType = Quantiles::class;
31 protected $remoteBlocksFetchedDataType = '';
32 protected $remoteBytesReadType = Quantiles::class;
33 protected $remoteBytesReadDataType = '';
34 protected $remoteBytesReadToDiskType = Quantiles::class;
35 protected $remoteBytesReadToDiskDataType = '';
36 protected $remoteReqsDurationType = Quantiles::class;
37 protected $remoteReqsDurationDataType = '';
38 protected $shufflePushReadMetricsType = ShufflePushReadQuantileMetrics::class;
39 protected $shufflePushReadMetricsDataType = '';
40 protected $totalBlocksFetchedType = Quantiles::class;
41 protected $totalBlocksFetchedDataType = '';
42
43 /**
44 * @param Quantiles
45 */
46 public function setFetchWaitTimeMillis(Quantiles $fetchWaitTimeMillis)
47 {
48 $this->fetchWaitTimeMillis = $fetchWaitTimeMillis;
49 }
50 /**
51 * @return Quantiles
52 */
53 public function getFetchWaitTimeMillis()
54 {
55 return $this->fetchWaitTimeMillis;
56 }
57 /**
58 * @param Quantiles
59 */
60 public function setLocalBlocksFetched(Quantiles $localBlocksFetched)
61 {
62 $this->localBlocksFetched = $localBlocksFetched;
63 }
64 /**
65 * @return Quantiles
66 */
67 public function getLocalBlocksFetched()
68 {
69 return $this->localBlocksFetched;
70 }
71 /**
72 * @param Quantiles
73 */
74 public function setReadBytes(Quantiles $readBytes)
75 {
76 $this->readBytes = $readBytes;
77 }
78 /**
79 * @return Quantiles
80 */
81 public function getReadBytes()
82 {
83 return $this->readBytes;
84 }
85 /**
86 * @param Quantiles
87 */
88 public function setReadRecords(Quantiles $readRecords)
89 {
90 $this->readRecords = $readRecords;
91 }
92 /**
93 * @return Quantiles
94 */
95 public function getReadRecords()
96 {
97 return $this->readRecords;
98 }
99 /**
100 * @param Quantiles
101 */
102 public function setRemoteBlocksFetched(Quantiles $remoteBlocksFetched)
103 {
104 $this->remoteBlocksFetched = $remoteBlocksFetched;
105 }
106 /**
107 * @return Quantiles
108 */
109 public function getRemoteBlocksFetched()
110 {
111 return $this->remoteBlocksFetched;
112 }
113 /**
114 * @param Quantiles
115 */
116 public function setRemoteBytesRead(Quantiles $remoteBytesRead)
117 {
118 $this->remoteBytesRead = $remoteBytesRead;
119 }
120 /**
121 * @return Quantiles
122 */
123 public function getRemoteBytesRead()
124 {
125 return $this->remoteBytesRead;
126 }
127 /**
128 * @param Quantiles
129 */
130 public function setRemoteBytesReadToDisk(Quantiles $remoteBytesReadToDisk)
131 {
132 $this->remoteBytesReadToDisk = $remoteBytesReadToDisk;
133 }
134 /**
135 * @return Quantiles
136 */
137 public function getRemoteBytesReadToDisk()
138 {
139 return $this->remoteBytesReadToDisk;
140 }
141 /**
142 * @param Quantiles
143 */
144 public function setRemoteReqsDuration(Quantiles $remoteReqsDuration)
145 {
146 $this->remoteReqsDuration = $remoteReqsDuration;
147 }
148 /**
149 * @return Quantiles
150 */
151 public function getRemoteReqsDuration()
152 {
153 return $this->remoteReqsDuration;
154 }
155 /**
156 * @param ShufflePushReadQuantileMetrics
157 */
158 public function setShufflePushReadMetrics(ShufflePushReadQuantileMetrics $shufflePushReadMetrics)
159 {
160 $this->shufflePushReadMetrics = $shufflePushReadMetrics;
161 }
162 /**
163 * @return ShufflePushReadQuantileMetrics
164 */
165 public function getShufflePushReadMetrics()
166 {
167 return $this->shufflePushReadMetrics;
168 }
169 /**
170 * @param Quantiles
171 */
172 public function setTotalBlocksFetched(Quantiles $totalBlocksFetched)
173 {
174 $this->totalBlocksFetched = $totalBlocksFetched;
175 }
176 /**
177 * @return Quantiles
178 */
179 public function getTotalBlocksFetched()
180 {
181 return $this->totalBlocksFetched;
182 }
183}
184
185// Adding a class alias for backwards compatibility with the previous class name.
186class_alias(ShuffleReadQuantileMetrics::class, 'Google_Service_Dataproc_ShuffleReadQuantileMetrics');
Note: See TracBrowser for help on using the repository browser.