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_SQLAdmin_User extends Google_Model
19{
20  public $etag;
21  public $host;
22  public $instance;
23  public $kind;
24  public $name;
25  public $password;
26  public $project;
27  protected $sqlserverUserDetailsType = 'Google_Service_SQLAdmin_SqlServerUserDetails';
28  protected $sqlserverUserDetailsDataType = '';
29  public $type;
30
31  public function setEtag($etag)
32  {
33    $this->etag = $etag;
34  }
35  public function getEtag()
36  {
37    return $this->etag;
38  }
39  public function setHost($host)
40  {
41    $this->host = $host;
42  }
43  public function getHost()
44  {
45    return $this->host;
46  }
47  public function setInstance($instance)
48  {
49    $this->instance = $instance;
50  }
51  public function getInstance()
52  {
53    return $this->instance;
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 setPassword($password)
72  {
73    $this->password = $password;
74  }
75  public function getPassword()
76  {
77    return $this->password;
78  }
79  public function setProject($project)
80  {
81    $this->project = $project;
82  }
83  public function getProject()
84  {
85    return $this->project;
86  }
87  /**
88   * @param Google_Service_SQLAdmin_SqlServerUserDetails
89   */
90  public function setSqlserverUserDetails(Google_Service_SQLAdmin_SqlServerUserDetails $sqlserverUserDetails)
91  {
92    $this->sqlserverUserDetails = $sqlserverUserDetails;
93  }
94  /**
95   * @return Google_Service_SQLAdmin_SqlServerUserDetails
96   */
97  public function getSqlserverUserDetails()
98  {
99    return $this->sqlserverUserDetails;
100  }
101  public function setType($type)
102  {
103    $this->type = $type;
104  }
105  public function getType()
106  {
107    return $this->type;
108  }
109}
110