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_NodeGroup extends Google_Model
19{
20  public $creationTimestamp;
21  public $description;
22  public $id;
23  public $kind;
24  public $name;
25  public $nodeTemplate;
26  public $selfLink;
27  public $size;
28  public $status;
29  public $zone;
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 setId($id)
48  {
49    $this->id = $id;
50  }
51  public function getId()
52  {
53    return $this->id;
54  }
55  public function setKind($kind)
56  {
57    $this->kind = $kind;
58  }
59  public function getKind()
60  {
61    return $this->kind;
62  }
63  public function setName($name)
64  {
65    $this->name = $name;
66  }
67  public function getName()
68  {
69    return $this->name;
70  }
71  public function setNodeTemplate($nodeTemplate)
72  {
73    $this->nodeTemplate = $nodeTemplate;
74  }
75  public function getNodeTemplate()
76  {
77    return $this->nodeTemplate;
78  }
79  public function setSelfLink($selfLink)
80  {
81    $this->selfLink = $selfLink;
82  }
83  public function getSelfLink()
84  {
85    return $this->selfLink;
86  }
87  public function setSize($size)
88  {
89    $this->size = $size;
90  }
91  public function getSize()
92  {
93    return $this->size;
94  }
95  public function setStatus($status)
96  {
97    $this->status = $status;
98  }
99  public function getStatus()
100  {
101    return $this->status;
102  }
103  public function setZone($zone)
104  {
105    $this->zone = $zone;
106  }
107  public function getZone()
108  {
109    return $this->zone;
110  }
111}
112