currentName = $currentName; } /** * @return string */ public function getCurrentName() { return $this->currentName; } /** * The name to be applied to the instance. Needs to be RFC 1035 compliant. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InstancesSetNameRequest::class, 'Google_Service_Compute_InstancesSetNameRequest');