properties = $properties; } /** * @return string[] */ public function getProperties() { return $this->properties; } /** * @param string */ public function setTableName($tableName) { $this->tableName = $tableName; } /** * @return string */ public function getTableName() { return $this->tableName; } /** * @param string */ public function setUpdateMask($updateMask) { $this->updateMask = $updateMask; } /** * @return string */ public function getUpdateMask() { return $this->updateMask; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(AlterTablePropertiesRequest::class, 'Google_Service_DataprocMetastore_AlterTablePropertiesRequest');