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\ToolResults; 19 20class Environment extends \Google\Collection 21{ 22 protected $collection_key = 'shardSummaries'; 23 protected $completionTimeType = Timestamp::class; 24 protected $completionTimeDataType = ''; 25 protected $creationTimeType = Timestamp::class; 26 protected $creationTimeDataType = ''; 27 protected $dimensionValueType = EnvironmentDimensionValueEntry::class; 28 protected $dimensionValueDataType = 'array'; 29 /** 30 * @var string 31 */ 32 public $displayName; 33 /** 34 * @var string 35 */ 36 public $environmentId; 37 protected $environmentResultType = MergedResult::class; 38 protected $environmentResultDataType = ''; 39 /** 40 * @var string 41 */ 42 public $executionId; 43 /** 44 * @var string 45 */ 46 public $historyId; 47 /** 48 * @var string 49 */ 50 public $projectId; 51 protected $resultsStorageType = ResultsStorage::class; 52 protected $resultsStorageDataType = ''; 53 protected $shardSummariesType = ShardSummary::class; 54 protected $shardSummariesDataType = 'array'; 55 56 /** 57 * @param Timestamp 58 */ 59 public function setCompletionTime(Timestamp $completionTime) 60 { 61 $this->completionTime = $completionTime; 62 } 63 /** 64 * @return Timestamp 65 */ 66 public function getCompletionTime() 67 { 68 return $this->completionTime; 69 } 70 /** 71 * @param Timestamp 72 */ 73 public function setCreationTime(Timestamp $creationTime) 74 { 75 $this->creationTime = $creationTime; 76 } 77 /** 78 * @return Timestamp 79 */ 80 public function getCreationTime() 81 { 82 return $this->creationTime; 83 } 84 /** 85 * @param EnvironmentDimensionValueEntry[] 86 */ 87 public function setDimensionValue($dimensionValue) 88 { 89 $this->dimensionValue = $dimensionValue; 90 } 91 /** 92 * @return EnvironmentDimensionValueEntry[] 93 */ 94 public function getDimensionValue() 95 { 96 return $this->dimensionValue; 97 } 98 /** 99 * @param string 100 */ 101 public function setDisplayName($displayName) 102 { 103 $this->displayName = $displayName; 104 } 105 /** 106 * @return string 107 */ 108 public function getDisplayName() 109 { 110 return $this->displayName; 111 } 112 /** 113 * @param string 114 */ 115 public function setEnvironmentId($environmentId) 116 { 117 $this->environmentId = $environmentId; 118 } 119 /** 120 * @return string 121 */ 122 public function getEnvironmentId() 123 { 124 return $this->environmentId; 125 } 126 /** 127 * @param MergedResult 128 */ 129 public function setEnvironmentResult(MergedResult $environmentResult) 130 { 131 $this->environmentResult = $environmentResult; 132 } 133 /** 134 * @return MergedResult 135 */ 136 public function getEnvironmentResult() 137 { 138 return $this->environmentResult; 139 } 140 /** 141 * @param string 142 */ 143 public function setExecutionId($executionId) 144 { 145 $this->executionId = $executionId; 146 } 147 /** 148 * @return string 149 */ 150 public function getExecutionId() 151 { 152 return $this->executionId; 153 } 154 /** 155 * @param string 156 */ 157 public function setHistoryId($historyId) 158 { 159 $this->historyId = $historyId; 160 } 161 /** 162 * @return string 163 */ 164 public function getHistoryId() 165 { 166 return $this->historyId; 167 } 168 /** 169 * @param string 170 */ 171 public function setProjectId($projectId) 172 { 173 $this->projectId = $projectId; 174 } 175 /** 176 * @return string 177 */ 178 public function getProjectId() 179 { 180 return $this->projectId; 181 } 182 /** 183 * @param ResultsStorage 184 */ 185 public function setResultsStorage(ResultsStorage $resultsStorage) 186 { 187 $this->resultsStorage = $resultsStorage; 188 } 189 /** 190 * @return ResultsStorage 191 */ 192 public function getResultsStorage() 193 { 194 return $this->resultsStorage; 195 } 196 /** 197 * @param ShardSummary[] 198 */ 199 public function setShardSummaries($shardSummaries) 200 { 201 $this->shardSummaries = $shardSummaries; 202 } 203 /** 204 * @return ShardSummary[] 205 */ 206 public function getShardSummaries() 207 { 208 return $this->shardSummaries; 209 } 210} 211 212// Adding a class alias for backwards compatibility with the previous class name. 213class_alias(Environment::class, 'Google_Service_ToolResults_Environment'); 214