[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 GoogleCloudAiplatformV1FeatureStatsAnomaly extends \Google\Model
|
---|
| 21 | {
|
---|
| 22 | public $anomalyDetectionThreshold;
|
---|
| 23 | /**
|
---|
| 24 | * @var string
|
---|
| 25 | */
|
---|
| 26 | public $anomalyUri;
|
---|
| 27 | public $distributionDeviation;
|
---|
| 28 | /**
|
---|
| 29 | * @var string
|
---|
| 30 | */
|
---|
| 31 | public $endTime;
|
---|
| 32 | public $score;
|
---|
| 33 | /**
|
---|
| 34 | * @var string
|
---|
| 35 | */
|
---|
| 36 | public $startTime;
|
---|
| 37 | /**
|
---|
| 38 | * @var string
|
---|
| 39 | */
|
---|
| 40 | public $statsUri;
|
---|
| 41 |
|
---|
| 42 | public function setAnomalyDetectionThreshold($anomalyDetectionThreshold)
|
---|
| 43 | {
|
---|
| 44 | $this->anomalyDetectionThreshold = $anomalyDetectionThreshold;
|
---|
| 45 | }
|
---|
| 46 | public function getAnomalyDetectionThreshold()
|
---|
| 47 | {
|
---|
| 48 | return $this->anomalyDetectionThreshold;
|
---|
| 49 | }
|
---|
| 50 | /**
|
---|
| 51 | * @param string
|
---|
| 52 | */
|
---|
| 53 | public function setAnomalyUri($anomalyUri)
|
---|
| 54 | {
|
---|
| 55 | $this->anomalyUri = $anomalyUri;
|
---|
| 56 | }
|
---|
| 57 | /**
|
---|
| 58 | * @return string
|
---|
| 59 | */
|
---|
| 60 | public function getAnomalyUri()
|
---|
| 61 | {
|
---|
| 62 | return $this->anomalyUri;
|
---|
| 63 | }
|
---|
| 64 | public function setDistributionDeviation($distributionDeviation)
|
---|
| 65 | {
|
---|
| 66 | $this->distributionDeviation = $distributionDeviation;
|
---|
| 67 | }
|
---|
| 68 | public function getDistributionDeviation()
|
---|
| 69 | {
|
---|
| 70 | return $this->distributionDeviation;
|
---|
| 71 | }
|
---|
| 72 | /**
|
---|
| 73 | * @param string
|
---|
| 74 | */
|
---|
| 75 | public function setEndTime($endTime)
|
---|
| 76 | {
|
---|
| 77 | $this->endTime = $endTime;
|
---|
| 78 | }
|
---|
| 79 | /**
|
---|
| 80 | * @return string
|
---|
| 81 | */
|
---|
| 82 | public function getEndTime()
|
---|
| 83 | {
|
---|
| 84 | return $this->endTime;
|
---|
| 85 | }
|
---|
| 86 | public function setScore($score)
|
---|
| 87 | {
|
---|
| 88 | $this->score = $score;
|
---|
| 89 | }
|
---|
| 90 | public function getScore()
|
---|
| 91 | {
|
---|
| 92 | return $this->score;
|
---|
| 93 | }
|
---|
| 94 | /**
|
---|
| 95 | * @param string
|
---|
| 96 | */
|
---|
| 97 | public function setStartTime($startTime)
|
---|
| 98 | {
|
---|
| 99 | $this->startTime = $startTime;
|
---|
| 100 | }
|
---|
| 101 | /**
|
---|
| 102 | * @return string
|
---|
| 103 | */
|
---|
| 104 | public function getStartTime()
|
---|
| 105 | {
|
---|
| 106 | return $this->startTime;
|
---|
| 107 | }
|
---|
| 108 | /**
|
---|
| 109 | * @param string
|
---|
| 110 | */
|
---|
| 111 | public function setStatsUri($statsUri)
|
---|
| 112 | {
|
---|
| 113 | $this->statsUri = $statsUri;
|
---|
| 114 | }
|
---|
| 115 | /**
|
---|
| 116 | * @return string
|
---|
| 117 | */
|
---|
| 118 | public function getStatsUri()
|
---|
| 119 | {
|
---|
| 120 | return $this->statsUri;
|
---|
| 121 | }
|
---|
| 122 | }
|
---|
| 123 |
|
---|
| 124 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
| 125 | class_alias(GoogleCloudAiplatformV1FeatureStatsAnomaly::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1FeatureStatsAnomaly');
|
---|