boostConfig = $boostConfig; } /** * @return string */ public function getBoostConfig() { return $this->boostConfig; } /** * Optional. If set, the request will be rejected if the latest version of the * workstation on the server does not have this ETag. * * @param string $etag */ public function setEtag($etag) { $this->etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } /** * Optional. If set, validate the request and preview the review, but do not * actually apply it. * * @param bool $validateOnly */ public function setValidateOnly($validateOnly) { $this->validateOnly = $validateOnly; } /** * @return bool */ public function getValidateOnly() { return $this->validateOnly; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StartWorkstationRequest::class, 'Google_Service_CloudWorkstations_StartWorkstationRequest');