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
18class Google_Service_ContainerAnalysis_Distribution extends Google_Model
19{
20  public $architecture;
21  public $cpeUri;
22  public $description;
23  protected $latestVersionType = 'Google_Service_ContainerAnalysis_Version';
24  protected $latestVersionDataType = '';
25  public $maintainer;
26  public $url;
27
28  public function setArchitecture($architecture)
29  {
30    $this->architecture = $architecture;
31  }
32  public function getArchitecture()
33  {
34    return $this->architecture;
35  }
36  public function setCpeUri($cpeUri)
37  {
38    $this->cpeUri = $cpeUri;
39  }
40  public function getCpeUri()
41  {
42    return $this->cpeUri;
43  }
44  public function setDescription($description)
45  {
46    $this->description = $description;
47  }
48  public function getDescription()
49  {
50    return $this->description;
51  }
52  /**
53   * @param Google_Service_ContainerAnalysis_Version
54   */
55  public function setLatestVersion(Google_Service_ContainerAnalysis_Version $latestVersion)
56  {
57    $this->latestVersion = $latestVersion;
58  }
59  /**
60   * @return Google_Service_ContainerAnalysis_Version
61   */
62  public function getLatestVersion()
63  {
64    return $this->latestVersion;
65  }
66  public function setMaintainer($maintainer)
67  {
68    $this->maintainer = $maintainer;
69  }
70  public function getMaintainer()
71  {
72    return $this->maintainer;
73  }
74  public function setUrl($url)
75  {
76    $this->url = $url;
77  }
78  public function getUrl()
79  {
80    return $this->url;
81  }
82}
83