description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * The URL of the destination address to move to. This can be a full or * partial URL. For example, the following are all valid URLs to a address: * - https://www.googleapis.com/compute/v1/projects/project/regions/region/add * resses/address - projects/project/regions/region/addresses/address * * Note that destination project must be different from the source project. * So/regions/region/addresses/address is not valid partial url. * * @param string $destinationAddress */ public function setDestinationAddress($destinationAddress) { $this->destinationAddress = $destinationAddress; } /** * @return string */ public function getDestinationAddress() { return $this->destinationAddress; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RegionAddressesMoveRequest::class, 'Google_Service_Compute_RegionAddressesMoveRequest');