Skip to content

Commit 87640c9

Browse files
1 parent ecb0ca1 commit 87640c9

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

src/Looker/Instance.php

+36
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,14 @@ class Instance extends \Google\Model
3939
public $egressPublicIp;
4040
protected $encryptionConfigType = EncryptionConfig::class;
4141
protected $encryptionConfigDataType = '';
42+
/**
43+
* @var bool
44+
*/
45+
public $fipsEnabled;
46+
/**
47+
* @var bool
48+
*/
49+
public $geminiEnabled;
4250
/**
4351
* @var string
4452
*/
@@ -202,6 +210,34 @@ public function getEncryptionConfig()
202210
{
203211
return $this->encryptionConfig;
204212
}
213+
/**
214+
* @param bool
215+
*/
216+
public function setFipsEnabled($fipsEnabled)
217+
{
218+
$this->fipsEnabled = $fipsEnabled;
219+
}
220+
/**
221+
* @return bool
222+
*/
223+
public function getFipsEnabled()
224+
{
225+
return $this->fipsEnabled;
226+
}
227+
/**
228+
* @param bool
229+
*/
230+
public function setGeminiEnabled($geminiEnabled)
231+
{
232+
$this->geminiEnabled = $geminiEnabled;
233+
}
234+
/**
235+
* @return bool
236+
*/
237+
public function getGeminiEnabled()
238+
{
239+
return $this->geminiEnabled;
240+
}
205241
/**
206242
* @param string
207243
*/

0 commit comments

Comments
 (0)