2022-04-14 08:53:13 +00:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
|
|
|
package operations
|
|
|
|
|
|
|
|
// This file was generated by the swagger tool.
|
|
|
|
// Editing this file might prove futile when you re-run the swagger generate command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/go-openapi/runtime"
|
|
|
|
|
|
|
|
"github.com/nspcc-dev/neofs-rest-gw/gen/models"
|
|
|
|
)
|
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
// DeleteObjectOKCode is the HTTP code returned for type DeleteObjectOK
|
|
|
|
const DeleteObjectOKCode int = 200
|
2022-04-14 08:53:13 +00:00
|
|
|
|
2022-07-20 15:16:30 +00:00
|
|
|
/*DeleteObjectOK Successful deletion.
|
2022-04-14 08:53:13 +00:00
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
swagger:response deleteObjectOK
|
2022-04-14 08:53:13 +00:00
|
|
|
*/
|
2022-07-07 09:29:51 +00:00
|
|
|
type DeleteObjectOK struct {
|
2022-08-05 19:09:19 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
*/
|
|
|
|
AccessControlAllowOrigin string `json:"Access-Control-Allow-Origin"`
|
2022-07-07 09:29:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
In: Body
|
|
|
|
*/
|
|
|
|
Payload *models.SuccessResponse `json:"body,omitempty"`
|
2022-04-14 08:53:13 +00:00
|
|
|
}
|
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
// NewDeleteObjectOK creates DeleteObjectOK with default headers values
|
|
|
|
func NewDeleteObjectOK() *DeleteObjectOK {
|
2022-04-14 08:53:13 +00:00
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
return &DeleteObjectOK{}
|
2022-04-14 08:53:13 +00:00
|
|
|
}
|
|
|
|
|
2022-08-05 19:09:19 +00:00
|
|
|
// WithAccessControlAllowOrigin adds the accessControlAllowOrigin to the delete object o k response
|
|
|
|
func (o *DeleteObjectOK) WithAccessControlAllowOrigin(accessControlAllowOrigin string) *DeleteObjectOK {
|
|
|
|
o.AccessControlAllowOrigin = accessControlAllowOrigin
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetAccessControlAllowOrigin sets the accessControlAllowOrigin to the delete object o k response
|
|
|
|
func (o *DeleteObjectOK) SetAccessControlAllowOrigin(accessControlAllowOrigin string) {
|
|
|
|
o.AccessControlAllowOrigin = accessControlAllowOrigin
|
|
|
|
}
|
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
// WithPayload adds the payload to the delete object o k response
|
|
|
|
func (o *DeleteObjectOK) WithPayload(payload *models.SuccessResponse) *DeleteObjectOK {
|
|
|
|
o.Payload = payload
|
|
|
|
return o
|
|
|
|
}
|
2022-04-14 08:53:13 +00:00
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
// SetPayload sets the payload to the delete object o k response
|
|
|
|
func (o *DeleteObjectOK) SetPayload(payload *models.SuccessResponse) {
|
|
|
|
o.Payload = payload
|
|
|
|
}
|
2022-04-14 08:53:13 +00:00
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
// WriteResponse to the client
|
|
|
|
func (o *DeleteObjectOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
|
2022-08-05 19:09:19 +00:00
|
|
|
// response header Access-Control-Allow-Origin
|
|
|
|
|
|
|
|
accessControlAllowOrigin := o.AccessControlAllowOrigin
|
|
|
|
if accessControlAllowOrigin != "" {
|
|
|
|
rw.Header().Set("Access-Control-Allow-Origin", accessControlAllowOrigin)
|
|
|
|
}
|
|
|
|
|
2022-07-07 09:29:51 +00:00
|
|
|
rw.WriteHeader(200)
|
|
|
|
if o.Payload != nil {
|
|
|
|
payload := o.Payload
|
|
|
|
if err := producer.Produce(rw, payload); err != nil {
|
|
|
|
panic(err) // let the recovery middleware deal with this
|
|
|
|
}
|
|
|
|
}
|
2022-04-14 08:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteObjectBadRequestCode is the HTTP code returned for type DeleteObjectBadRequest
|
|
|
|
const DeleteObjectBadRequestCode int = 400
|
|
|
|
|
2022-07-20 15:16:30 +00:00
|
|
|
/*DeleteObjectBadRequest Bad request.
|
2022-04-14 08:53:13 +00:00
|
|
|
|
|
|
|
swagger:response deleteObjectBadRequest
|
|
|
|
*/
|
|
|
|
type DeleteObjectBadRequest struct {
|
|
|
|
|
|
|
|
/*
|
|
|
|
In: Body
|
|
|
|
*/
|
2022-07-07 12:59:38 +00:00
|
|
|
Payload *models.ErrorResponse `json:"body,omitempty"`
|
2022-04-14 08:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewDeleteObjectBadRequest creates DeleteObjectBadRequest with default headers values
|
|
|
|
func NewDeleteObjectBadRequest() *DeleteObjectBadRequest {
|
|
|
|
|
|
|
|
return &DeleteObjectBadRequest{}
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithPayload adds the payload to the delete object bad request response
|
2022-07-07 12:59:38 +00:00
|
|
|
func (o *DeleteObjectBadRequest) WithPayload(payload *models.ErrorResponse) *DeleteObjectBadRequest {
|
2022-04-14 08:53:13 +00:00
|
|
|
o.Payload = payload
|
|
|
|
return o
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetPayload sets the payload to the delete object bad request response
|
2022-07-07 12:59:38 +00:00
|
|
|
func (o *DeleteObjectBadRequest) SetPayload(payload *models.ErrorResponse) {
|
2022-04-14 08:53:13 +00:00
|
|
|
o.Payload = payload
|
|
|
|
}
|
|
|
|
|
|
|
|
// WriteResponse to the client
|
|
|
|
func (o *DeleteObjectBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer) {
|
|
|
|
|
|
|
|
rw.WriteHeader(400)
|
2022-07-07 12:59:38 +00:00
|
|
|
if o.Payload != nil {
|
|
|
|
payload := o.Payload
|
|
|
|
if err := producer.Produce(rw, payload); err != nil {
|
|
|
|
panic(err) // let the recovery middleware deal with this
|
|
|
|
}
|
2022-04-14 08:53:13 +00:00
|
|
|
}
|
|
|
|
}
|