You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are many options for the supported API's that we don't currently support. Depending on the context, some can be ignored while others should not be blindly ignored.
For the latter, we should return the not_implemented HTTP response.
An example of the former could be versionId on DeleteObject. Since we don't support versions, it might make sense to just continue with the deletion.
An example of the latter might be If-Modified-Since on GetObject.
These are judgement calls. In this issue we will go through each option and decide which of the two fit and implement them. This will not be in 0.2.0.
The text was updated successfully, but these errors were encountered:
There are many options for the supported API's that we don't currently support. Depending on the context, some can be ignored while others should not be blindly ignored.
For the latter, we should return the
not_implemented
HTTP response.An example of the former could be
versionId
onDeleteObject
. Since we don't support versions, it might make sense to just continue with the deletion.An example of the latter might be
If-Modified-Since
onGetObject
.These are judgement calls. In this issue we will go through each option and decide which of the two fit and implement them. This will not be in 0.2.0.
The text was updated successfully, but these errors were encountered: