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_ArtifactRegistry_DockerImage extends Google_Collection
19{
20  protected $collection_key = 'tags';
21  public $buildTime;
22  public $imageSizeBytes;
23  public $mediaType;
24  public $name;
25  public $tags;
26  public $uploadTime;
27  public $uri;
28
29  public function setBuildTime($buildTime)
30  {
31    $this->buildTime = $buildTime;
32  }
33  public function getBuildTime()
34  {
35    return $this->buildTime;
36  }
37  public function setImageSizeBytes($imageSizeBytes)
38  {
39    $this->imageSizeBytes = $imageSizeBytes;
40  }
41  public function getImageSizeBytes()
42  {
43    return $this->imageSizeBytes;
44  }
45  public function setMediaType($mediaType)
46  {
47    $this->mediaType = $mediaType;
48  }
49  public function getMediaType()
50  {
51    return $this->mediaType;
52  }
53  public function setName($name)
54  {
55    $this->name = $name;
56  }
57  public function getName()
58  {
59    return $this->name;
60  }
61  public function setTags($tags)
62  {
63    $this->tags = $tags;
64  }
65  public function getTags()
66  {
67    return $this->tags;
68  }
69  public function setUploadTime($uploadTime)
70  {
71    $this->uploadTime = $uploadTime;
72  }
73  public function getUploadTime()
74  {
75    return $this->uploadTime;
76  }
77  public function setUri($uri)
78  {
79    $this->uri = $uri;
80  }
81  public function getUri()
82  {
83    return $this->uri;
84  }
85}
86