connectionId = $connectionId; } /** * @return string */ public function getConnectionId() { return $this->connectionId; } /** * @param string[] */ public function setParameters($parameters) { $this->parameters = $parameters; } /** * @return string[] */ public function getParameters() { return $this->parameters; } /** * @param StorageDescriptor */ public function setStorageDescriptor(StorageDescriptor $storageDescriptor) { $this->storageDescriptor = $storageDescriptor; } /** * @return StorageDescriptor */ public function getStorageDescriptor() { return $this->storageDescriptor; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ExternalCatalogTableOptions::class, 'Google_Service_Bigquery_ExternalCatalogTableOptions');