enableIntegrityMonitoring = $enableIntegrityMonitoring; } /** * @return bool */ public function getEnableIntegrityMonitoring() { return $this->enableIntegrityMonitoring; } /** * Defines whether the instance has Secure Boot enabled.Disabled by default. * * @param bool $enableSecureBoot */ public function setEnableSecureBoot($enableSecureBoot) { $this->enableSecureBoot = $enableSecureBoot; } /** * @return bool */ public function getEnableSecureBoot() { return $this->enableSecureBoot; } /** * Defines whether the instance has the vTPM enabled.Enabled by default. * * @param bool $enableVtpm */ public function setEnableVtpm($enableVtpm) { $this->enableVtpm = $enableVtpm; } /** * @return bool */ public function getEnableVtpm() { return $this->enableVtpm; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ShieldedInstanceConfig::class, 'Google_Service_Compute_ShieldedInstanceConfig');