key = $key; } /** * @return string */ public function getKey() { return $this->key; } /** * Optional. Value for the metadata entry. These are free-form strings, and * only have meaning as interpreted by the image running in the instance. The * only restriction placed on values is that their size must be less than or * equal to 262144 bytes (256 KiB). * * @param string $value */ public function setValue($value) { $this->value = $value; } /** * @return string */ public function getValue() { return $this->value; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Entry::class, 'Google_Service_Backupdr_Entry');