aboutsummaryrefslogtreecommitdiff
path: root/bulk.go
Commit message (Collapse)AuthorAgeFilesLines
* change module path to go.xyrillian.de/schwift/v2Stefan Majewsky2026-04-191-2/+2
|
* update module path for v2Stefan Majewsky2024-07-081-2/+2
|
* add ctx argument to Account.CapabilitiesStefan Majewsky2024-07-081-2/+2
|
* Remove context from struct, add ctx as first args to many functionsSandro Jäckel2024-07-011-10/+11
|
* Fix gophercloud lint complainsSandro Jäckel2024-07-011-30/+30
|
* Fix remaining lintsSandro Jäckel2023-10-251-1/+2
|
* run go-makefile-maker, start fixing new lintsStefan Majewsky2023-10-231-2/+2
|
* Fix linting errorsSandro Jäckel2022-10-281-8/+4
|
* Format with go 1.19Sandro Jäckel2022-10-261-28/+28
|
* make the IsEqualTo() methods publicStefan Majewsky2018-05-301-2/+2
|
* proof-read documentationStefan Majewsky2018-05-031-6/+4
|
* test coverage for bulk-delete fallback code pathStefan Majewsky2018-05-021-1/+3
|
* add DeleteOptions to Object.Delete()Stefan Majewsky2018-04-301-1/+1
|
* add Account.isEqualTo, Container.isEqualToStefan Majewsky2018-04-271-4/+2
|
* revamp the Headers APIStefan Majewsky2018-03-111-21/+18
| | | | | | | | | | | | | | | | | | 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.
* add Account.BulkDelete()Stefan Majewsky2018-03-091-41/+231
|
* generalize BulkUploadError into BulkErrorStefan Majewsky2018-03-081-6/+6
| | | | For use in Account.BulkDelete().
* add Account.BulkUpload(), BulkUploadError, BulkObjectErrorStefan Majewsky2018-03-081-0/+155