2020-07-22 13:02:32 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
type (
|
2021-05-13 20:25:31 +00:00
|
|
|
// ObjectRequest represents object request data.
|
2020-08-11 11:27:31 +00:00
|
|
|
ObjectRequest struct {
|
|
|
|
Bucket string
|
|
|
|
Object string
|
|
|
|
Method string
|
|
|
|
}
|
2020-07-22 13:02:32 +00:00
|
|
|
)
|
|
|
|
|
2021-05-13 19:25:32 +00:00
|
|
|
// Key used for Get/SetReqInfo.
|
2020-07-22 13:02:32 +00:00
|
|
|
type contextKeyType string
|
|
|
|
|
2021-05-18 11:10:08 +00:00
|
|
|
const ctxRequestInfo = contextKeyType("NeoFS-S3-GW")
|