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_CloudShell_Environment extends Google_Collection
19{
20  protected $collection_key = 'publicKeys';
21  public $dockerImage;
22  public $id;
23  public $name;
24  public $publicKeys;
25  public $sshHost;
26  public $sshPort;
27  public $sshUsername;
28  public $state;
29  public $webHost;
30
31  public function setDockerImage($dockerImage)
32  {
33    $this->dockerImage = $dockerImage;
34  }
35  public function getDockerImage()
36  {
37    return $this->dockerImage;
38  }
39  public function setId($id)
40  {
41    $this->id = $id;
42  }
43  public function getId()
44  {
45    return $this->id;
46  }
47  public function setName($name)
48  {
49    $this->name = $name;
50  }
51  public function getName()
52  {
53    return $this->name;
54  }
55  public function setPublicKeys($publicKeys)
56  {
57    $this->publicKeys = $publicKeys;
58  }
59  public function getPublicKeys()
60  {
61    return $this->publicKeys;
62  }
63  public function setSshHost($sshHost)
64  {
65    $this->sshHost = $sshHost;
66  }
67  public function getSshHost()
68  {
69    return $this->sshHost;
70  }
71  public function setSshPort($sshPort)
72  {
73    $this->sshPort = $sshPort;
74  }
75  public function getSshPort()
76  {
77    return $this->sshPort;
78  }
79  public function setSshUsername($sshUsername)
80  {
81    $this->sshUsername = $sshUsername;
82  }
83  public function getSshUsername()
84  {
85    return $this->sshUsername;
86  }
87  public function setState($state)
88  {
89    $this->state = $state;
90  }
91  public function getState()
92  {
93    return $this->state;
94  }
95  public function setWebHost($webHost)
96  {
97    $this->webHost = $webHost;
98  }
99  public function getWebHost()
100  {
101    return $this->webHost;
102  }
103}
104