key = $key; } /** * @return string */ public function getKey() { return $this->key; } /** * Name used to identify the key. * * Must be unique within a router. Must be referenced by exactly one bgpPeer. * Must comply withRFC1035. * * @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(RouterMd5AuthenticationKey::class, 'Google_Service_Compute_RouterMd5AuthenticationKey');