secret = $secret; } /** * @return string */ public function getSecret() { return $this->secret; } /** * The Cloud Secret Manager secret version. Can be 'latest' for the latest * version, an integer for a specific version, or a version alias. * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRunV2SecretKeySelector::class, 'Google_Service_CloudRun_GoogleCloudRunV2SecretKeySelector');