aboutsummaryrefslogtreecommitdiff
path: root/object_iterator.go
Commit message (Collapse)AuthorAgeFilesLines
* Remove context from struct, add ctx as first args to many functionsSandro Jäckel2024-07-011-12/+13
|
* Fix gophercloud lint complainsSandro Jäckel2024-07-011-20/+20
|
* Fix linting errorsSandro Jäckel2022-10-281-2/+2
|
* Format with go 1.19Sandro Jäckel2022-10-261-35/+35
|
* add support for symlinks to ObjectIteratorStefan Majewsky2018-05-071-0/+19
| | | | Closes #2.
* add support for pseudo-directories to ObjectIteratorStefan Majewsky2018-05-031-11/+32
|
* proof-read documentationStefan Majewsky2018-05-031-2/+2
|
* revamp the Headers APIStefan Majewsky2018-03-111-4/+2
| | | | | | | | | | | | | | | | | | 1. Move common methods of AccountHeaders, ContainerHeaders, ObjectHeaders into a base type Headers. 2. Fold Headers into RequestOptions to remove one of the two optional arguments on request methods. The new Headers.ToOpts() method offers a nice experience for users passing Headers to request methods. The Update() methods keep the explicit Headers argument since the Headers argument is not optional there. The only downside is that we lose a bit of type-safety because RequestOptions takes any Headers instance, so e.g. ContainerHeaders could be passed to Object.Upload(). I believe the benefits outweigh this problem.
* test coverage for object upload, download, metadata updateStefan Majewsky2018-02-191-0/+2
|
* add Container.Objects(), type ObjectIteratorStefan Majewsky2018-02-171-0/+212