File tree 1 file changed +36
-0
lines changed
1 file changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,14 @@ class Instance extends \Google\Model
39
39
public $ egressPublicIp ;
40
40
protected $ encryptionConfigType = EncryptionConfig::class;
41
41
protected $ encryptionConfigDataType = '' ;
42
+ /**
43
+ * @var bool
44
+ */
45
+ public $ fipsEnabled ;
46
+ /**
47
+ * @var bool
48
+ */
49
+ public $ geminiEnabled ;
42
50
/**
43
51
* @var string
44
52
*/
@@ -202,6 +210,34 @@ public function getEncryptionConfig()
202
210
{
203
211
return $ this ->encryptionConfig ;
204
212
}
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
+ }
205
241
/**
206
242
* @param string
207
243
*/
You can’t perform that action at this time.
0 commit comments