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
18namespace Google\Service\Bigquery;
19
20class DatasetAccess extends \Google\Model
21{
22  protected $datasetType = DatasetAccessEntry::class;
23  protected $datasetDataType = '';
24  /**
25   * @var string
26   */
27  public $domain;
28  /**
29   * @var string
30   */
31  public $groupByEmail;
32  /**
33   * @var string
34   */
35  public $iamMember;
36  /**
37   * @var string
38   */
39  public $role;
40  protected $routineType = RoutineReference::class;
41  protected $routineDataType = '';
42  /**
43   * @var string
44   */
45  public $specialGroup;
46  /**
47   * @var string
48   */
49  public $userByEmail;
50  protected $viewType = TableReference::class;
51  protected $viewDataType = '';
52
53  /**
54   * @param DatasetAccessEntry
55   */
56  public function setDataset(DatasetAccessEntry $dataset)
57  {
58    $this->dataset = $dataset;
59  }
60  /**
61   * @return DatasetAccessEntry
62   */
63  public function getDataset()
64  {
65    return $this->dataset;
66  }
67  /**
68   * @param string
69   */
70  public function setDomain($domain)
71  {
72    $this->domain = $domain;
73  }
74  /**
75   * @return string
76   */
77  public function getDomain()
78  {
79    return $this->domain;
80  }
81  /**
82   * @param string
83   */
84  public function setGroupByEmail($groupByEmail)
85  {
86    $this->groupByEmail = $groupByEmail;
87  }
88  /**
89   * @return string
90   */
91  public function getGroupByEmail()
92  {
93    return $this->groupByEmail;
94  }
95  /**
96   * @param string
97   */
98  public function setIamMember($iamMember)
99  {
100    $this->iamMember = $iamMember;
101  }
102  /**
103   * @return string
104   */
105  public function getIamMember()
106  {
107    return $this->iamMember;
108  }
109  /**
110   * @param string
111   */
112  public function setRole($role)
113  {
114    $this->role = $role;
115  }
116  /**
117   * @return string
118   */
119  public function getRole()
120  {
121    return $this->role;
122  }
123  /**
124   * @param RoutineReference
125   */
126  public function setRoutine(RoutineReference $routine)
127  {
128    $this->routine = $routine;
129  }
130  /**
131   * @return RoutineReference
132   */
133  public function getRoutine()
134  {
135    return $this->routine;
136  }
137  /**
138   * @param string
139   */
140  public function setSpecialGroup($specialGroup)
141  {
142    $this->specialGroup = $specialGroup;
143  }
144  /**
145   * @return string
146   */
147  public function getSpecialGroup()
148  {
149    return $this->specialGroup;
150  }
151  /**
152   * @param string
153   */
154  public function setUserByEmail($userByEmail)
155  {
156    $this->userByEmail = $userByEmail;
157  }
158  /**
159   * @return string
160   */
161  public function getUserByEmail()
162  {
163    return $this->userByEmail;
164  }
165  /**
166   * @param TableReference
167   */
168  public function setView(TableReference $view)
169  {
170    $this->view = $view;
171  }
172  /**
173   * @return TableReference
174   */
175  public function getView()
176  {
177    return $this->view;
178  }
179}
180
181// Adding a class alias for backwards compatibility with the previous class name.
182class_alias(DatasetAccess::class, 'Google_Service_Bigquery_DatasetAccess');
183