location = $location; } /** * @return string */ public function getLocation() { return $this->location; } /** * Output only. The current state of the association in this location. * * Accepted values: STATE_UNSPECIFIED, ACTIVE, OUT_OF_SYNC * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(MirroringLocation::class, 'Google_Service_NetworkSecurity_MirroringLocation');