feat: adds unit tests for object DELETE and POST operations

This commit is contained in:
niksis02
2025-07-08 22:20:00 +04:00
parent 866b07b98f
commit 67d0750ee0
4 changed files with 887 additions and 29 deletions

View File

@@ -412,6 +412,10 @@ func (r CopyPartResult) MarshalXML(e *xml.Encoder, start xml.StartElement) error
return e.EncodeElement(aux, start)
}
type CompleteMultipartUploadRequestBody struct {
Parts []types.CompletedPart `xml:"Part"`
}
type CompleteMultipartUploadResult struct {
XMLName xml.Name `xml:"http://s3.amazonaws.com/doc/2006-03-01/ CompleteMultipartUploadResult" json:"-"`
Location *string