source: vendor/google/apiclient-services/src/Integrations/GoogleCloudIntegrationsV1alphaClientConfig.php

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

Upload project files

  • Property mode set to 100644
File size: 4.7 KB
Line 
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\Integrations;
19
20class GoogleCloudIntegrationsV1alphaClientConfig extends \Google\Model
21{
22 /**
23 * @var string
24 */
25 public $billingType;
26 /**
27 * @var string
28 */
29 public $clientState;
30 protected $cloudKmsConfigType = GoogleCloudIntegrationsV1alphaCloudKmsConfig::class;
31 protected $cloudKmsConfigDataType = '';
32 /**
33 * @var string
34 */
35 public $createTime;
36 /**
37 * @var string
38 */
39 public $description;
40 /**
41 * @var bool
42 */
43 public $enableInternalIp;
44 /**
45 * @var bool
46 */
47 public $enableVariableMasking;
48 /**
49 * @var string
50 */
51 public $id;
52 /**
53 * @var bool
54 */
55 public $isGmek;
56 /**
57 * @var string
58 */
59 public $p4ServiceAccount;
60 /**
61 * @var string
62 */
63 public $projectId;
64 /**
65 * @var string
66 */
67 public $region;
68 /**
69 * @var string
70 */
71 public $runAsServiceAccount;
72
73 /**
74 * @param string
75 */
76 public function setBillingType($billingType)
77 {
78 $this->billingType = $billingType;
79 }
80 /**
81 * @return string
82 */
83 public function getBillingType()
84 {
85 return $this->billingType;
86 }
87 /**
88 * @param string
89 */
90 public function setClientState($clientState)
91 {
92 $this->clientState = $clientState;
93 }
94 /**
95 * @return string
96 */
97 public function getClientState()
98 {
99 return $this->clientState;
100 }
101 /**
102 * @param GoogleCloudIntegrationsV1alphaCloudKmsConfig
103 */
104 public function setCloudKmsConfig(GoogleCloudIntegrationsV1alphaCloudKmsConfig $cloudKmsConfig)
105 {
106 $this->cloudKmsConfig = $cloudKmsConfig;
107 }
108 /**
109 * @return GoogleCloudIntegrationsV1alphaCloudKmsConfig
110 */
111 public function getCloudKmsConfig()
112 {
113 return $this->cloudKmsConfig;
114 }
115 /**
116 * @param string
117 */
118 public function setCreateTime($createTime)
119 {
120 $this->createTime = $createTime;
121 }
122 /**
123 * @return string
124 */
125 public function getCreateTime()
126 {
127 return $this->createTime;
128 }
129 /**
130 * @param string
131 */
132 public function setDescription($description)
133 {
134 $this->description = $description;
135 }
136 /**
137 * @return string
138 */
139 public function getDescription()
140 {
141 return $this->description;
142 }
143 /**
144 * @param bool
145 */
146 public function setEnableInternalIp($enableInternalIp)
147 {
148 $this->enableInternalIp = $enableInternalIp;
149 }
150 /**
151 * @return bool
152 */
153 public function getEnableInternalIp()
154 {
155 return $this->enableInternalIp;
156 }
157 /**
158 * @param bool
159 */
160 public function setEnableVariableMasking($enableVariableMasking)
161 {
162 $this->enableVariableMasking = $enableVariableMasking;
163 }
164 /**
165 * @return bool
166 */
167 public function getEnableVariableMasking()
168 {
169 return $this->enableVariableMasking;
170 }
171 /**
172 * @param string
173 */
174 public function setId($id)
175 {
176 $this->id = $id;
177 }
178 /**
179 * @return string
180 */
181 public function getId()
182 {
183 return $this->id;
184 }
185 /**
186 * @param bool
187 */
188 public function setIsGmek($isGmek)
189 {
190 $this->isGmek = $isGmek;
191 }
192 /**
193 * @return bool
194 */
195 public function getIsGmek()
196 {
197 return $this->isGmek;
198 }
199 /**
200 * @param string
201 */
202 public function setP4ServiceAccount($p4ServiceAccount)
203 {
204 $this->p4ServiceAccount = $p4ServiceAccount;
205 }
206 /**
207 * @return string
208 */
209 public function getP4ServiceAccount()
210 {
211 return $this->p4ServiceAccount;
212 }
213 /**
214 * @param string
215 */
216 public function setProjectId($projectId)
217 {
218 $this->projectId = $projectId;
219 }
220 /**
221 * @return string
222 */
223 public function getProjectId()
224 {
225 return $this->projectId;
226 }
227 /**
228 * @param string
229 */
230 public function setRegion($region)
231 {
232 $this->region = $region;
233 }
234 /**
235 * @return string
236 */
237 public function getRegion()
238 {
239 return $this->region;
240 }
241 /**
242 * @param string
243 */
244 public function setRunAsServiceAccount($runAsServiceAccount)
245 {
246 $this->runAsServiceAccount = $runAsServiceAccount;
247 }
248 /**
249 * @return string
250 */
251 public function getRunAsServiceAccount()
252 {
253 return $this->runAsServiceAccount;
254 }
255}
256
257// Adding a class alias for backwards compatibility with the previous class name.
258class_alias(GoogleCloudIntegrationsV1alphaClientConfig::class, 'Google_Service_Integrations_GoogleCloudIntegrationsV1alphaClientConfig');
Note: See TracBrowser for help on using the repository browser.