source: vendor/google/apiclient-services/src/Dataproc/ShufflePushReadQuantileMetrics.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 ShufflePushReadQuantileMetrics extends \Google\Model
21{
22 protected $corruptMergedBlockChunksType = Quantiles::class;
23 protected $corruptMergedBlockChunksDataType = '';
24 protected $localMergedBlocksFetchedType = Quantiles::class;
25 protected $localMergedBlocksFetchedDataType = '';
26 protected $localMergedBytesReadType = Quantiles::class;
27 protected $localMergedBytesReadDataType = '';
28 protected $localMergedChunksFetchedType = Quantiles::class;
29 protected $localMergedChunksFetchedDataType = '';
30 protected $mergedFetchFallbackCountType = Quantiles::class;
31 protected $mergedFetchFallbackCountDataType = '';
32 protected $remoteMergedBlocksFetchedType = Quantiles::class;
33 protected $remoteMergedBlocksFetchedDataType = '';
34 protected $remoteMergedBytesReadType = Quantiles::class;
35 protected $remoteMergedBytesReadDataType = '';
36 protected $remoteMergedChunksFetchedType = Quantiles::class;
37 protected $remoteMergedChunksFetchedDataType = '';
38 protected $remoteMergedReqsDurationType = Quantiles::class;
39 protected $remoteMergedReqsDurationDataType = '';
40
41 /**
42 * @param Quantiles
43 */
44 public function setCorruptMergedBlockChunks(Quantiles $corruptMergedBlockChunks)
45 {
46 $this->corruptMergedBlockChunks = $corruptMergedBlockChunks;
47 }
48 /**
49 * @return Quantiles
50 */
51 public function getCorruptMergedBlockChunks()
52 {
53 return $this->corruptMergedBlockChunks;
54 }
55 /**
56 * @param Quantiles
57 */
58 public function setLocalMergedBlocksFetched(Quantiles $localMergedBlocksFetched)
59 {
60 $this->localMergedBlocksFetched = $localMergedBlocksFetched;
61 }
62 /**
63 * @return Quantiles
64 */
65 public function getLocalMergedBlocksFetched()
66 {
67 return $this->localMergedBlocksFetched;
68 }
69 /**
70 * @param Quantiles
71 */
72 public function setLocalMergedBytesRead(Quantiles $localMergedBytesRead)
73 {
74 $this->localMergedBytesRead = $localMergedBytesRead;
75 }
76 /**
77 * @return Quantiles
78 */
79 public function getLocalMergedBytesRead()
80 {
81 return $this->localMergedBytesRead;
82 }
83 /**
84 * @param Quantiles
85 */
86 public function setLocalMergedChunksFetched(Quantiles $localMergedChunksFetched)
87 {
88 $this->localMergedChunksFetched = $localMergedChunksFetched;
89 }
90 /**
91 * @return Quantiles
92 */
93 public function getLocalMergedChunksFetched()
94 {
95 return $this->localMergedChunksFetched;
96 }
97 /**
98 * @param Quantiles
99 */
100 public function setMergedFetchFallbackCount(Quantiles $mergedFetchFallbackCount)
101 {
102 $this->mergedFetchFallbackCount = $mergedFetchFallbackCount;
103 }
104 /**
105 * @return Quantiles
106 */
107 public function getMergedFetchFallbackCount()
108 {
109 return $this->mergedFetchFallbackCount;
110 }
111 /**
112 * @param Quantiles
113 */
114 public function setRemoteMergedBlocksFetched(Quantiles $remoteMergedBlocksFetched)
115 {
116 $this->remoteMergedBlocksFetched = $remoteMergedBlocksFetched;
117 }
118 /**
119 * @return Quantiles
120 */
121 public function getRemoteMergedBlocksFetched()
122 {
123 return $this->remoteMergedBlocksFetched;
124 }
125 /**
126 * @param Quantiles
127 */
128 public function setRemoteMergedBytesRead(Quantiles $remoteMergedBytesRead)
129 {
130 $this->remoteMergedBytesRead = $remoteMergedBytesRead;
131 }
132 /**
133 * @return Quantiles
134 */
135 public function getRemoteMergedBytesRead()
136 {
137 return $this->remoteMergedBytesRead;
138 }
139 /**
140 * @param Quantiles
141 */
142 public function setRemoteMergedChunksFetched(Quantiles $remoteMergedChunksFetched)
143 {
144 $this->remoteMergedChunksFetched = $remoteMergedChunksFetched;
145 }
146 /**
147 * @return Quantiles
148 */
149 public function getRemoteMergedChunksFetched()
150 {
151 return $this->remoteMergedChunksFetched;
152 }
153 /**
154 * @param Quantiles
155 */
156 public function setRemoteMergedReqsDuration(Quantiles $remoteMergedReqsDuration)
157 {
158 $this->remoteMergedReqsDuration = $remoteMergedReqsDuration;
159 }
160 /**
161 * @return Quantiles
162 */
163 public function getRemoteMergedReqsDuration()
164 {
165 return $this->remoteMergedReqsDuration;
166 }
167}
168
169// Adding a class alias for backwards compatibility with the previous class name.
170class_alias(ShufflePushReadQuantileMetrics::class, 'Google_Service_Dataproc_ShufflePushReadQuantileMetrics');
Note: See TracBrowser for help on using the repository browser.