source: vendor/google/apiclient-services/src/BigtableAdmin/AppProfile.php@ e3d4e0a

Last change on this file since e3d4e0a was e3d4e0a, checked in by Vlado 222039 <vlado.popovski@…>, 2 weeks ago

Upload project files

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[e3d4e0a]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\BigtableAdmin;
19
20class AppProfile extends \Google\Model
21{
22 protected $dataBoostIsolationReadOnlyType = DataBoostIsolationReadOnly::class;
23 protected $dataBoostIsolationReadOnlyDataType = '';
24 /**
25 * @var string
26 */
27 public $description;
28 /**
29 * @var string
30 */
31 public $etag;
32 protected $multiClusterRoutingUseAnyType = MultiClusterRoutingUseAny::class;
33 protected $multiClusterRoutingUseAnyDataType = '';
34 /**
35 * @var string
36 */
37 public $name;
38 /**
39 * @var string
40 */
41 public $priority;
42 protected $singleClusterRoutingType = SingleClusterRouting::class;
43 protected $singleClusterRoutingDataType = '';
44 protected $standardIsolationType = StandardIsolation::class;
45 protected $standardIsolationDataType = '';
46
47 /**
48 * @param DataBoostIsolationReadOnly
49 */
50 public function setDataBoostIsolationReadOnly(DataBoostIsolationReadOnly $dataBoostIsolationReadOnly)
51 {
52 $this->dataBoostIsolationReadOnly = $dataBoostIsolationReadOnly;
53 }
54 /**
55 * @return DataBoostIsolationReadOnly
56 */
57 public function getDataBoostIsolationReadOnly()
58 {
59 return $this->dataBoostIsolationReadOnly;
60 }
61 /**
62 * @param string
63 */
64 public function setDescription($description)
65 {
66 $this->description = $description;
67 }
68 /**
69 * @return string
70 */
71 public function getDescription()
72 {
73 return $this->description;
74 }
75 /**
76 * @param string
77 */
78 public function setEtag($etag)
79 {
80 $this->etag = $etag;
81 }
82 /**
83 * @return string
84 */
85 public function getEtag()
86 {
87 return $this->etag;
88 }
89 /**
90 * @param MultiClusterRoutingUseAny
91 */
92 public function setMultiClusterRoutingUseAny(MultiClusterRoutingUseAny $multiClusterRoutingUseAny)
93 {
94 $this->multiClusterRoutingUseAny = $multiClusterRoutingUseAny;
95 }
96 /**
97 * @return MultiClusterRoutingUseAny
98 */
99 public function getMultiClusterRoutingUseAny()
100 {
101 return $this->multiClusterRoutingUseAny;
102 }
103 /**
104 * @param string
105 */
106 public function setName($name)
107 {
108 $this->name = $name;
109 }
110 /**
111 * @return string
112 */
113 public function getName()
114 {
115 return $this->name;
116 }
117 /**
118 * @param string
119 */
120 public function setPriority($priority)
121 {
122 $this->priority = $priority;
123 }
124 /**
125 * @return string
126 */
127 public function getPriority()
128 {
129 return $this->priority;
130 }
131 /**
132 * @param SingleClusterRouting
133 */
134 public function setSingleClusterRouting(SingleClusterRouting $singleClusterRouting)
135 {
136 $this->singleClusterRouting = $singleClusterRouting;
137 }
138 /**
139 * @return SingleClusterRouting
140 */
141 public function getSingleClusterRouting()
142 {
143 return $this->singleClusterRouting;
144 }
145 /**
146 * @param StandardIsolation
147 */
148 public function setStandardIsolation(StandardIsolation $standardIsolation)
149 {
150 $this->standardIsolation = $standardIsolation;
151 }
152 /**
153 * @return StandardIsolation
154 */
155 public function getStandardIsolation()
156 {
157 return $this->standardIsolation;
158 }
159}
160
161// Adding a class alias for backwards compatibility with the previous class name.
162class_alias(AppProfile::class, 'Google_Service_BigtableAdmin_AppProfile');
Note: See TracBrowser for help on using the repository browser.