accessLevels = $accessLevels; } /** * @return AccessLevel[] */ public function getAccessLevels() { return $this->accessLevels; } /** * Optional. The etag for the version of the Access Policy that this replace * operation is to be performed on. If, at the time of replace, the etag for * the Access Policy stored in Access Context Manager is different from the * specified etag, then the replace operation will not be performed and the * call will fail. This field is not required. If etag is not provided, the * operation will be performed as if a valid etag is provided. * * @param string $etag */ public function setEtag($etag) { $this->etag = $etag; } /** * @return string */ public function getEtag() { return $this->etag; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ReplaceAccessLevelsRequest::class, 'Google_Service_AccessContextManager_ReplaceAccessLevelsRequest');