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_Compute_TargetHttpProxy extends Google_Model
19{
20  public $creationTimestamp;
21  public $description;
22  public $fingerprint;
23  public $id;
24  public $kind;
25  public $name;
26  public $proxyBind;
27  public $region;
28  public $selfLink;
29  public $urlMap;
30
31  public function setCreationTimestamp($creationTimestamp)
32  {
33    $this->creationTimestamp = $creationTimestamp;
34  }
35  public function getCreationTimestamp()
36  {
37    return $this->creationTimestamp;
38  }
39  public function setDescription($description)
40  {
41    $this->description = $description;
42  }
43  public function getDescription()
44  {
45    return $this->description;
46  }
47  public function setFingerprint($fingerprint)
48  {
49    $this->fingerprint = $fingerprint;
50  }
51  public function getFingerprint()
52  {
53    return $this->fingerprint;
54  }
55  public function setId($id)
56  {
57    $this->id = $id;
58  }
59  public function getId()
60  {
61    return $this->id;
62  }
63  public function setKind($kind)
64  {
65    $this->kind = $kind;
66  }
67  public function getKind()
68  {
69    return $this->kind;
70  }
71  public function setName($name)
72  {
73    $this->name = $name;
74  }
75  public function getName()
76  {
77    return $this->name;
78  }
79  public function setProxyBind($proxyBind)
80  {
81    $this->proxyBind = $proxyBind;
82  }
83  public function getProxyBind()
84  {
85    return $this->proxyBind;
86  }
87  public function setRegion($region)
88  {
89    $this->region = $region;
90  }
91  public function getRegion()
92  {
93    return $this->region;
94  }
95  public function setSelfLink($selfLink)
96  {
97    $this->selfLink = $selfLink;
98  }
99  public function getSelfLink()
100  {
101    return $this->selfLink;
102  }
103  public function setUrlMap($urlMap)
104  {
105    $this->urlMap = $urlMap;
106  }
107  public function getUrlMap()
108  {
109    return $this->urlMap;
110  }
111}
112