[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 |
|
---|
| 18 | namespace Google\Service\Dataflow;
|
---|
| 19 |
|
---|
| 20 | class OutlierStats extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | /**
|
---|
| 23 | * @var string
|
---|
| 24 | */
|
---|
| 25 | public $overflowCount;
|
---|
| 26 | public $overflowMean;
|
---|
| 27 | /**
|
---|
| 28 | * @var string
|
---|
| 29 | */
|
---|
| 30 | public $underflowCount;
|
---|
| 31 | public $underflowMean;
|
---|
| 32 |
|
---|
| 33 | /**
|
---|
| 34 | * @param string
|
---|
| 35 | */
|
---|
| 36 | public function setOverflowCount($overflowCount)
|
---|
| 37 | {
|
---|
| 38 | $this->overflowCount = $overflowCount;
|
---|
| 39 | }
|
---|
| 40 | /**
|
---|
| 41 | * @return string
|
---|
| 42 | */
|
---|
| 43 | public function getOverflowCount()
|
---|
| 44 | {
|
---|
| 45 | return $this->overflowCount;
|
---|
| 46 | }
|
---|
| 47 | public function setOverflowMean($overflowMean)
|
---|
| 48 | {
|
---|
| 49 | $this->overflowMean = $overflowMean;
|
---|
| 50 | }
|
---|
| 51 | public function getOverflowMean()
|
---|
| 52 | {
|
---|
| 53 | return $this->overflowMean;
|
---|
| 54 | }
|
---|
| 55 | /**
|
---|
| 56 | * @param string
|
---|
| 57 | */
|
---|
| 58 | public function setUnderflowCount($underflowCount)
|
---|
| 59 | {
|
---|
| 60 | $this->underflowCount = $underflowCount;
|
---|
| 61 | }
|
---|
| 62 | /**
|
---|
| 63 | * @return string
|
---|
| 64 | */
|
---|
| 65 | public function getUnderflowCount()
|
---|
| 66 | {
|
---|
| 67 | return $this->underflowCount;
|
---|
| 68 | }
|
---|
| 69 | public function setUnderflowMean($underflowMean)
|
---|
| 70 | {
|
---|
| 71 | $this->underflowMean = $underflowMean;
|
---|
| 72 | }
|
---|
| 73 | public function getUnderflowMean()
|
---|
| 74 | {
|
---|
| 75 | return $this->underflowMean;
|
---|
| 76 | }
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 80 | class_alias(OutlierStats::class, 'Google_Service_Dataflow_OutlierStats');
|
---|