activeSettings = $activeSettings; } /** * @return AccessSettings */ public function getActiveSettings() { return $this->activeSettings; } /** * Optional. Dry-run access settings for this scoped access settings. This * field may be empty if active_settings is set. * * @param AccessSettings $dryRunSettings */ public function setDryRunSettings(AccessSettings $dryRunSettings) { $this->dryRunSettings = $dryRunSettings; } /** * @return AccessSettings */ public function getDryRunSettings() { return $this->dryRunSettings; } /** * Optional. Application, etc. to which the access settings will be applied * to. Implicitly, this is the scoped access settings key; as such, it must be * unique and non-empty. * * @param AccessScope $scope */ public function setScope(AccessScope $scope) { $this->scope = $scope; } /** * @return AccessScope */ public function getScope() { return $this->scope; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ScopedAccessSettings::class, 'Google_Service_AccessContextManager_ScopedAccessSettings');