[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\Aiplatform;
|
---|
| 19 |
|
---|
| 20 | class GoogleCloudAiplatformV1DatasetDistribution extends \Google\Collection
|
---|
| 21 | {
|
---|
| 22 | protected $collection_key = 'buckets';
|
---|
| 23 | protected $bucketsType = GoogleCloudAiplatformV1DatasetDistributionDistributionBucket::class;
|
---|
| 24 | protected $bucketsDataType = 'array';
|
---|
| 25 | public $max;
|
---|
| 26 | public $mean;
|
---|
| 27 | public $median;
|
---|
| 28 | public $min;
|
---|
| 29 | public $p5;
|
---|
| 30 | public $p95;
|
---|
| 31 | public $sum;
|
---|
| 32 |
|
---|
| 33 | /**
|
---|
| 34 | * @param GoogleCloudAiplatformV1DatasetDistributionDistributionBucket[]
|
---|
| 35 | */
|
---|
| 36 | public function setBuckets($buckets)
|
---|
| 37 | {
|
---|
| 38 | $this->buckets = $buckets;
|
---|
| 39 | }
|
---|
| 40 | /**
|
---|
| 41 | * @return GoogleCloudAiplatformV1DatasetDistributionDistributionBucket[]
|
---|
| 42 | */
|
---|
| 43 | public function getBuckets()
|
---|
| 44 | {
|
---|
| 45 | return $this->buckets;
|
---|
| 46 | }
|
---|
| 47 | public function setMax($max)
|
---|
| 48 | {
|
---|
| 49 | $this->max = $max;
|
---|
| 50 | }
|
---|
| 51 | public function getMax()
|
---|
| 52 | {
|
---|
| 53 | return $this->max;
|
---|
| 54 | }
|
---|
| 55 | public function setMean($mean)
|
---|
| 56 | {
|
---|
| 57 | $this->mean = $mean;
|
---|
| 58 | }
|
---|
| 59 | public function getMean()
|
---|
| 60 | {
|
---|
| 61 | return $this->mean;
|
---|
| 62 | }
|
---|
| 63 | public function setMedian($median)
|
---|
| 64 | {
|
---|
| 65 | $this->median = $median;
|
---|
| 66 | }
|
---|
| 67 | public function getMedian()
|
---|
| 68 | {
|
---|
| 69 | return $this->median;
|
---|
| 70 | }
|
---|
| 71 | public function setMin($min)
|
---|
| 72 | {
|
---|
| 73 | $this->min = $min;
|
---|
| 74 | }
|
---|
| 75 | public function getMin()
|
---|
| 76 | {
|
---|
| 77 | return $this->min;
|
---|
| 78 | }
|
---|
| 79 | public function setP5($p5)
|
---|
| 80 | {
|
---|
| 81 | $this->p5 = $p5;
|
---|
| 82 | }
|
---|
| 83 | public function getP5()
|
---|
| 84 | {
|
---|
| 85 | return $this->p5;
|
---|
| 86 | }
|
---|
| 87 | public function setP95($p95)
|
---|
| 88 | {
|
---|
| 89 | $this->p95 = $p95;
|
---|
| 90 | }
|
---|
| 91 | public function getP95()
|
---|
| 92 | {
|
---|
| 93 | return $this->p95;
|
---|
| 94 | }
|
---|
| 95 | public function setSum($sum)
|
---|
| 96 | {
|
---|
| 97 | $this->sum = $sum;
|
---|
| 98 | }
|
---|
| 99 | public function getSum()
|
---|
| 100 | {
|
---|
| 101 | return $this->sum;
|
---|
| 102 | }
|
---|
| 103 | }
|
---|
| 104 |
|
---|
| 105 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 106 | class_alias(GoogleCloudAiplatformV1DatasetDistribution::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1DatasetDistribution');
|
---|