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\CloudDataplex; 19 20class GoogleCloudDataplexV1Entity extends \Google\Model 21{ 22 /** 23 * @var string 24 */ 25 public $asset; 26 /** 27 * @var string 28 */ 29 public $catalogEntry; 30 protected $compatibilityType = GoogleCloudDataplexV1EntityCompatibilityStatus::class; 31 protected $compatibilityDataType = ''; 32 /** 33 * @var string 34 */ 35 public $createTime; 36 /** 37 * @var string 38 */ 39 public $dataPath; 40 /** 41 * @var string 42 */ 43 public $dataPathPattern; 44 /** 45 * @var string 46 */ 47 public $description; 48 /** 49 * @var string 50 */ 51 public $displayName; 52 /** 53 * @var string 54 */ 55 public $etag; 56 protected $formatType = GoogleCloudDataplexV1StorageFormat::class; 57 protected $formatDataType = ''; 58 /** 59 * @var string 60 */ 61 public $id; 62 /** 63 * @var string 64 */ 65 public $name; 66 protected $schemaType = GoogleCloudDataplexV1Schema::class; 67 protected $schemaDataType = ''; 68 /** 69 * @var string 70 */ 71 public $system; 72 /** 73 * @var string 74 */ 75 public $type; 76 /** 77 * @var string 78 */ 79 public $updateTime; 80 81 /** 82 * @param string 83 */ 84 public function setAsset($asset) 85 { 86 $this->asset = $asset; 87 } 88 /** 89 * @return string 90 */ 91 public function getAsset() 92 { 93 return $this->asset; 94 } 95 /** 96 * @param string 97 */ 98 public function setCatalogEntry($catalogEntry) 99 { 100 $this->catalogEntry = $catalogEntry; 101 } 102 /** 103 * @return string 104 */ 105 public function getCatalogEntry() 106 { 107 return $this->catalogEntry; 108 } 109 /** 110 * @param GoogleCloudDataplexV1EntityCompatibilityStatus 111 */ 112 public function setCompatibility(GoogleCloudDataplexV1EntityCompatibilityStatus $compatibility) 113 { 114 $this->compatibility = $compatibility; 115 } 116 /** 117 * @return GoogleCloudDataplexV1EntityCompatibilityStatus 118 */ 119 public function getCompatibility() 120 { 121 return $this->compatibility; 122 } 123 /** 124 * @param string 125 */ 126 public function setCreateTime($createTime) 127 { 128 $this->createTime = $createTime; 129 } 130 /** 131 * @return string 132 */ 133 public function getCreateTime() 134 { 135 return $this->createTime; 136 } 137 /** 138 * @param string 139 */ 140 public function setDataPath($dataPath) 141 { 142 $this->dataPath = $dataPath; 143 } 144 /** 145 * @return string 146 */ 147 public function getDataPath() 148 { 149 return $this->dataPath; 150 } 151 /** 152 * @param string 153 */ 154 public function setDataPathPattern($dataPathPattern) 155 { 156 $this->dataPathPattern = $dataPathPattern; 157 } 158 /** 159 * @return string 160 */ 161 public function getDataPathPattern() 162 { 163 return $this->dataPathPattern; 164 } 165 /** 166 * @param string 167 */ 168 public function setDescription($description) 169 { 170 $this->description = $description; 171 } 172 /** 173 * @return string 174 */ 175 public function getDescription() 176 { 177 return $this->description; 178 } 179 /** 180 * @param string 181 */ 182 public function setDisplayName($displayName) 183 { 184 $this->displayName = $displayName; 185 } 186 /** 187 * @return string 188 */ 189 public function getDisplayName() 190 { 191 return $this->displayName; 192 } 193 /** 194 * @param string 195 */ 196 public function setEtag($etag) 197 { 198 $this->etag = $etag; 199 } 200 /** 201 * @return string 202 */ 203 public function getEtag() 204 { 205 return $this->etag; 206 } 207 /** 208 * @param GoogleCloudDataplexV1StorageFormat 209 */ 210 public function setFormat(GoogleCloudDataplexV1StorageFormat $format) 211 { 212 $this->format = $format; 213 } 214 /** 215 * @return GoogleCloudDataplexV1StorageFormat 216 */ 217 public function getFormat() 218 { 219 return $this->format; 220 } 221 /** 222 * @param string 223 */ 224 public function setId($id) 225 { 226 $this->id = $id; 227 } 228 /** 229 * @return string 230 */ 231 public function getId() 232 { 233 return $this->id; 234 } 235 /** 236 * @param string 237 */ 238 public function setName($name) 239 { 240 $this->name = $name; 241 } 242 /** 243 * @return string 244 */ 245 public function getName() 246 { 247 return $this->name; 248 } 249 /** 250 * @param GoogleCloudDataplexV1Schema 251 */ 252 public function setSchema(GoogleCloudDataplexV1Schema $schema) 253 { 254 $this->schema = $schema; 255 } 256 /** 257 * @return GoogleCloudDataplexV1Schema 258 */ 259 public function getSchema() 260 { 261 return $this->schema; 262 } 263 /** 264 * @param string 265 */ 266 public function setSystem($system) 267 { 268 $this->system = $system; 269 } 270 /** 271 * @return string 272 */ 273 public function getSystem() 274 { 275 return $this->system; 276 } 277 /** 278 * @param string 279 */ 280 public function setType($type) 281 { 282 $this->type = $type; 283 } 284 /** 285 * @return string 286 */ 287 public function getType() 288 { 289 return $this->type; 290 } 291 /** 292 * @param string 293 */ 294 public function setUpdateTime($updateTime) 295 { 296 $this->updateTime = $updateTime; 297 } 298 /** 299 * @return string 300 */ 301 public function getUpdateTime() 302 { 303 return $this->updateTime; 304 } 305} 306 307// Adding a class alias for backwards compatibility with the previous class name. 308class_alias(GoogleCloudDataplexV1Entity::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1Entity'); 309