service

package
v0.0.0-...-31bffcd Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 23, 2023 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

View Source
const DeleteServiceBadRequestCode int = 400

DeleteServiceBadRequestCode is the HTTP code returned for type DeleteServiceBadRequest

View Source
const DeleteServiceConflictCode int = 409

DeleteServiceConflictCode is the HTTP code returned for type DeleteServiceConflict

View Source
const DeleteServiceOKCode int = 200

DeleteServiceOKCode is the HTTP code returned for type DeleteServiceOK

View Source
const DeleteServiceUnauthorizedCode int = 401

DeleteServiceUnauthorizedCode is the HTTP code returned for type DeleteServiceUnauthorized

View Source
const DetailServiceNotFoundCode int = 404

DetailServiceNotFoundCode is the HTTP code returned for type DetailServiceNotFound

View Source
const DetailServiceOKCode int = 200

DetailServiceOKCode is the HTTP code returned for type DetailServiceOK

View Source
const DetailServiceUnauthorizedCode int = 401

DetailServiceUnauthorizedCode is the HTTP code returned for type DetailServiceUnauthorized

View Source
const ListServiceTerminatorsBadRequestCode int = 400

ListServiceTerminatorsBadRequestCode is the HTTP code returned for type ListServiceTerminatorsBadRequest

View Source
const ListServiceTerminatorsOKCode int = 200

ListServiceTerminatorsOKCode is the HTTP code returned for type ListServiceTerminatorsOK

View Source
const ListServiceTerminatorsUnauthorizedCode int = 401

ListServiceTerminatorsUnauthorizedCode is the HTTP code returned for type ListServiceTerminatorsUnauthorized

View Source
const ListServicesBadRequestCode int = 400

ListServicesBadRequestCode is the HTTP code returned for type ListServicesBadRequest

View Source
const ListServicesOKCode int = 200

ListServicesOKCode is the HTTP code returned for type ListServicesOK

View Source
const ListServicesUnauthorizedCode int = 401

ListServicesUnauthorizedCode is the HTTP code returned for type ListServicesUnauthorized

View Source
const PatchServiceBadRequestCode int = 400

PatchServiceBadRequestCode is the HTTP code returned for type PatchServiceBadRequest

View Source
const PatchServiceNotFoundCode int = 404

PatchServiceNotFoundCode is the HTTP code returned for type PatchServiceNotFound

View Source
const PatchServiceOKCode int = 200

PatchServiceOKCode is the HTTP code returned for type PatchServiceOK

View Source
const PatchServiceUnauthorizedCode int = 401

PatchServiceUnauthorizedCode is the HTTP code returned for type PatchServiceUnauthorized

View Source
const UpdateServiceBadRequestCode int = 400

UpdateServiceBadRequestCode is the HTTP code returned for type UpdateServiceBadRequest

View Source
const UpdateServiceNotFoundCode int = 404

UpdateServiceNotFoundCode is the HTTP code returned for type UpdateServiceNotFound

View Source
const UpdateServiceOKCode int = 200

UpdateServiceOKCode is the HTTP code returned for type UpdateServiceOK

View Source
const UpdateServiceUnauthorizedCode int = 401

UpdateServiceUnauthorizedCode is the HTTP code returned for type UpdateServiceUnauthorized

Variables

This section is empty.

Functions

This section is empty.

Types

type DeleteService

type DeleteService struct {
	Context *middleware.Context
	Handler DeleteServiceHandler
}
DeleteService swagger:route DELETE /services/{id} Service deleteService

Delete a service

Delete a service by id. Requires admin access.

func NewDeleteService

func NewDeleteService(ctx *middleware.Context, handler DeleteServiceHandler) *DeleteService

NewDeleteService creates a new http.Handler for the delete service operation

func (*DeleteService) ServeHTTP

func (o *DeleteService) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type DeleteServiceBadRequest

type DeleteServiceBadRequest struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

DeleteServiceBadRequest The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

swagger:response deleteServiceBadRequest

func NewDeleteServiceBadRequest

func NewDeleteServiceBadRequest() *DeleteServiceBadRequest

NewDeleteServiceBadRequest creates DeleteServiceBadRequest with default headers values

func (*DeleteServiceBadRequest) SetPayload

func (o *DeleteServiceBadRequest) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the delete service bad request response

func (*DeleteServiceBadRequest) WithPayload

WithPayload adds the payload to the delete service bad request response

func (*DeleteServiceBadRequest) WriteResponse

func (o *DeleteServiceBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteServiceConflict

type DeleteServiceConflict struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

DeleteServiceConflict The resource requested to be removed/altered cannot be as it is referenced by another object.

swagger:response deleteServiceConflict

func NewDeleteServiceConflict

func NewDeleteServiceConflict() *DeleteServiceConflict

NewDeleteServiceConflict creates DeleteServiceConflict with default headers values

func (*DeleteServiceConflict) SetPayload

func (o *DeleteServiceConflict) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the delete service conflict response

func (*DeleteServiceConflict) WithPayload

WithPayload adds the payload to the delete service conflict response

func (*DeleteServiceConflict) WriteResponse

func (o *DeleteServiceConflict) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteServiceHandler

type DeleteServiceHandler interface {
	Handle(DeleteServiceParams, interface{}) middleware.Responder
}

DeleteServiceHandler interface for that can handle valid delete service params

type DeleteServiceHandlerFunc

type DeleteServiceHandlerFunc func(DeleteServiceParams, interface{}) middleware.Responder

DeleteServiceHandlerFunc turns a function with the right signature into a delete service handler

func (DeleteServiceHandlerFunc) Handle

func (fn DeleteServiceHandlerFunc) Handle(params DeleteServiceParams, principal interface{}) middleware.Responder

Handle executing the request and returning a response

type DeleteServiceOK

type DeleteServiceOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.Empty `json:"body,omitempty"`
}

DeleteServiceOK The delete request was successful and the resource has been removed

swagger:response deleteServiceOK

func NewDeleteServiceOK

func NewDeleteServiceOK() *DeleteServiceOK

NewDeleteServiceOK creates DeleteServiceOK with default headers values

func (*DeleteServiceOK) SetPayload

func (o *DeleteServiceOK) SetPayload(payload *rest_model.Empty)

SetPayload sets the payload to the delete service o k response

func (*DeleteServiceOK) WithPayload

func (o *DeleteServiceOK) WithPayload(payload *rest_model.Empty) *DeleteServiceOK

WithPayload adds the payload to the delete service o k response

func (*DeleteServiceOK) WriteResponse

func (o *DeleteServiceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DeleteServiceParams

type DeleteServiceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The id of the requested resource
	  Required: true
	  In: path
	*/
	ID string
}

DeleteServiceParams contains all the bound params for the delete service operation typically these are obtained from a http.Request

swagger:parameters deleteService

func NewDeleteServiceParams

func NewDeleteServiceParams() DeleteServiceParams

NewDeleteServiceParams creates a new DeleteServiceParams object

There are no default values defined in the spec.

func (*DeleteServiceParams) BindRequest

func (o *DeleteServiceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewDeleteServiceParams() beforehand.

type DeleteServiceURL

type DeleteServiceURL struct {
	ID string
	// contains filtered or unexported fields
}

DeleteServiceURL generates an URL for the delete service operation

func (*DeleteServiceURL) Build

func (o *DeleteServiceURL) Build() (*url.URL, error)

Build a url path and query string

func (*DeleteServiceURL) BuildFull

func (o *DeleteServiceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*DeleteServiceURL) Must

func (o *DeleteServiceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*DeleteServiceURL) SetBasePath

func (o *DeleteServiceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*DeleteServiceURL) String

func (o *DeleteServiceURL) String() string

String returns the string representation of the path with query string

func (*DeleteServiceURL) StringFull

func (o *DeleteServiceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*DeleteServiceURL) WithBasePath

func (o *DeleteServiceURL) WithBasePath(bp string) *DeleteServiceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type DeleteServiceUnauthorized

type DeleteServiceUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

DeleteServiceUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response deleteServiceUnauthorized

func NewDeleteServiceUnauthorized

func NewDeleteServiceUnauthorized() *DeleteServiceUnauthorized

NewDeleteServiceUnauthorized creates DeleteServiceUnauthorized with default headers values

func (*DeleteServiceUnauthorized) SetPayload

func (o *DeleteServiceUnauthorized) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the delete service unauthorized response

func (*DeleteServiceUnauthorized) WithPayload

WithPayload adds the payload to the delete service unauthorized response

func (*DeleteServiceUnauthorized) WriteResponse

func (o *DeleteServiceUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DetailService

type DetailService struct {
	Context *middleware.Context
	Handler DetailServiceHandler
}
DetailService swagger:route GET /services/{id} Service detailService

Retrieves a single service

Retrieves a single service by id. Requires admin access.

func NewDetailService

func NewDetailService(ctx *middleware.Context, handler DetailServiceHandler) *DetailService

NewDetailService creates a new http.Handler for the detail service operation

func (*DetailService) ServeHTTP

func (o *DetailService) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type DetailServiceHandler

type DetailServiceHandler interface {
	Handle(DetailServiceParams, interface{}) middleware.Responder
}

DetailServiceHandler interface for that can handle valid detail service params

type DetailServiceHandlerFunc

type DetailServiceHandlerFunc func(DetailServiceParams, interface{}) middleware.Responder

DetailServiceHandlerFunc turns a function with the right signature into a detail service handler

func (DetailServiceHandlerFunc) Handle

func (fn DetailServiceHandlerFunc) Handle(params DetailServiceParams, principal interface{}) middleware.Responder

Handle executing the request and returning a response

type DetailServiceNotFound

type DetailServiceNotFound struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

DetailServiceNotFound The requested resource does not exist

swagger:response detailServiceNotFound

func NewDetailServiceNotFound

func NewDetailServiceNotFound() *DetailServiceNotFound

NewDetailServiceNotFound creates DetailServiceNotFound with default headers values

func (*DetailServiceNotFound) SetPayload

func (o *DetailServiceNotFound) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the detail service not found response

func (*DetailServiceNotFound) WithPayload

WithPayload adds the payload to the detail service not found response

func (*DetailServiceNotFound) WriteResponse

func (o *DetailServiceNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DetailServiceOK

type DetailServiceOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.DetailServiceEnvelope `json:"body,omitempty"`
}

DetailServiceOK A single service

swagger:response detailServiceOK

func NewDetailServiceOK

func NewDetailServiceOK() *DetailServiceOK

NewDetailServiceOK creates DetailServiceOK with default headers values

func (*DetailServiceOK) SetPayload

func (o *DetailServiceOK) SetPayload(payload *rest_model.DetailServiceEnvelope)

SetPayload sets the payload to the detail service o k response

func (*DetailServiceOK) WithPayload

WithPayload adds the payload to the detail service o k response

func (*DetailServiceOK) WriteResponse

func (o *DetailServiceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type DetailServiceParams

type DetailServiceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The id of the requested resource
	  Required: true
	  In: path
	*/
	ID string
}

DetailServiceParams contains all the bound params for the detail service operation typically these are obtained from a http.Request

swagger:parameters detailService

func NewDetailServiceParams

func NewDetailServiceParams() DetailServiceParams

NewDetailServiceParams creates a new DetailServiceParams object

There are no default values defined in the spec.

func (*DetailServiceParams) BindRequest

func (o *DetailServiceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewDetailServiceParams() beforehand.

type DetailServiceURL

type DetailServiceURL struct {
	ID string
	// contains filtered or unexported fields
}

DetailServiceURL generates an URL for the detail service operation

func (*DetailServiceURL) Build

func (o *DetailServiceURL) Build() (*url.URL, error)

Build a url path and query string

func (*DetailServiceURL) BuildFull

func (o *DetailServiceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*DetailServiceURL) Must

func (o *DetailServiceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*DetailServiceURL) SetBasePath

func (o *DetailServiceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*DetailServiceURL) String

func (o *DetailServiceURL) String() string

String returns the string representation of the path with query string

func (*DetailServiceURL) StringFull

func (o *DetailServiceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*DetailServiceURL) WithBasePath

func (o *DetailServiceURL) WithBasePath(bp string) *DetailServiceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type DetailServiceUnauthorized

type DetailServiceUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

DetailServiceUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response detailServiceUnauthorized

func NewDetailServiceUnauthorized

func NewDetailServiceUnauthorized() *DetailServiceUnauthorized

NewDetailServiceUnauthorized creates DetailServiceUnauthorized with default headers values

func (*DetailServiceUnauthorized) SetPayload

func (o *DetailServiceUnauthorized) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the detail service unauthorized response

func (*DetailServiceUnauthorized) WithPayload

WithPayload adds the payload to the detail service unauthorized response

func (*DetailServiceUnauthorized) WriteResponse

func (o *DetailServiceUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListServiceTerminators

type ListServiceTerminators struct {
	Context *middleware.Context
	Handler ListServiceTerminatorsHandler
}
ListServiceTerminators swagger:route GET /services/{id}/terminators Service listServiceTerminators

List of terminators assigned to a service

Retrieves a list of terminator resources that are assigned specific service; supports filtering, sorting, and pagination.

func NewListServiceTerminators

func NewListServiceTerminators(ctx *middleware.Context, handler ListServiceTerminatorsHandler) *ListServiceTerminators

NewListServiceTerminators creates a new http.Handler for the list service terminators operation

func (*ListServiceTerminators) ServeHTTP

func (o *ListServiceTerminators) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListServiceTerminatorsBadRequest

type ListServiceTerminatorsBadRequest struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

ListServiceTerminatorsBadRequest The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

swagger:response listServiceTerminatorsBadRequest

func NewListServiceTerminatorsBadRequest

func NewListServiceTerminatorsBadRequest() *ListServiceTerminatorsBadRequest

NewListServiceTerminatorsBadRequest creates ListServiceTerminatorsBadRequest with default headers values

func (*ListServiceTerminatorsBadRequest) SetPayload

SetPayload sets the payload to the list service terminators bad request response

func (*ListServiceTerminatorsBadRequest) WithPayload

WithPayload adds the payload to the list service terminators bad request response

func (*ListServiceTerminatorsBadRequest) WriteResponse

func (o *ListServiceTerminatorsBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListServiceTerminatorsHandler

type ListServiceTerminatorsHandler interface {
	Handle(ListServiceTerminatorsParams, interface{}) middleware.Responder
}

ListServiceTerminatorsHandler interface for that can handle valid list service terminators params

type ListServiceTerminatorsHandlerFunc

type ListServiceTerminatorsHandlerFunc func(ListServiceTerminatorsParams, interface{}) middleware.Responder

ListServiceTerminatorsHandlerFunc turns a function with the right signature into a list service terminators handler

func (ListServiceTerminatorsHandlerFunc) Handle

Handle executing the request and returning a response

type ListServiceTerminatorsOK

type ListServiceTerminatorsOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.ListClientTerminatorsEnvelope `json:"body,omitempty"`
}

ListServiceTerminatorsOK A list of terminators

swagger:response listServiceTerminatorsOK

func NewListServiceTerminatorsOK

func NewListServiceTerminatorsOK() *ListServiceTerminatorsOK

NewListServiceTerminatorsOK creates ListServiceTerminatorsOK with default headers values

func (*ListServiceTerminatorsOK) SetPayload

SetPayload sets the payload to the list service terminators o k response

func (*ListServiceTerminatorsOK) WithPayload

WithPayload adds the payload to the list service terminators o k response

func (*ListServiceTerminatorsOK) WriteResponse

func (o *ListServiceTerminatorsOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListServiceTerminatorsParams

type ListServiceTerminatorsParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  In: query
	*/
	Filter *string
	/*The id of the requested resource
	  Required: true
	  In: path
	*/
	ID string
	/*
	  In: query
	*/
	Limit *int64
	/*
	  In: query
	*/
	Offset *int64
}

ListServiceTerminatorsParams contains all the bound params for the list service terminators operation typically these are obtained from a http.Request

swagger:parameters listServiceTerminators

func NewListServiceTerminatorsParams

func NewListServiceTerminatorsParams() ListServiceTerminatorsParams

NewListServiceTerminatorsParams creates a new ListServiceTerminatorsParams object

There are no default values defined in the spec.

func (*ListServiceTerminatorsParams) BindRequest

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListServiceTerminatorsParams() beforehand.

type ListServiceTerminatorsURL

type ListServiceTerminatorsURL struct {
	ID string

	Filter *string
	Limit  *int64
	Offset *int64
	// contains filtered or unexported fields
}

ListServiceTerminatorsURL generates an URL for the list service terminators operation

func (*ListServiceTerminatorsURL) Build

func (o *ListServiceTerminatorsURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListServiceTerminatorsURL) BuildFull

func (o *ListServiceTerminatorsURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListServiceTerminatorsURL) Must

func (o *ListServiceTerminatorsURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListServiceTerminatorsURL) SetBasePath

func (o *ListServiceTerminatorsURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListServiceTerminatorsURL) String

func (o *ListServiceTerminatorsURL) String() string

String returns the string representation of the path with query string

func (*ListServiceTerminatorsURL) StringFull

func (o *ListServiceTerminatorsURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListServiceTerminatorsURL) WithBasePath

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListServiceTerminatorsUnauthorized

type ListServiceTerminatorsUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

ListServiceTerminatorsUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response listServiceTerminatorsUnauthorized

func NewListServiceTerminatorsUnauthorized

func NewListServiceTerminatorsUnauthorized() *ListServiceTerminatorsUnauthorized

NewListServiceTerminatorsUnauthorized creates ListServiceTerminatorsUnauthorized with default headers values

func (*ListServiceTerminatorsUnauthorized) SetPayload

SetPayload sets the payload to the list service terminators unauthorized response

func (*ListServiceTerminatorsUnauthorized) WithPayload

WithPayload adds the payload to the list service terminators unauthorized response

func (*ListServiceTerminatorsUnauthorized) WriteResponse

WriteResponse to the client

type ListServices

type ListServices struct {
	Context *middleware.Context
	Handler ListServicesHandler
}
ListServices swagger:route GET /services Service listServices

List services

Retrieves a list of config resources; supports filtering, sorting, and pagination. Requires admin access.

func NewListServices

func NewListServices(ctx *middleware.Context, handler ListServicesHandler) *ListServices

NewListServices creates a new http.Handler for the list services operation

func (*ListServices) ServeHTTP

func (o *ListServices) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type ListServicesBadRequest

type ListServicesBadRequest struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

ListServicesBadRequest The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

swagger:response listServicesBadRequest

func NewListServicesBadRequest

func NewListServicesBadRequest() *ListServicesBadRequest

NewListServicesBadRequest creates ListServicesBadRequest with default headers values

func (*ListServicesBadRequest) SetPayload

func (o *ListServicesBadRequest) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the list services bad request response

func (*ListServicesBadRequest) WithPayload

WithPayload adds the payload to the list services bad request response

func (*ListServicesBadRequest) WriteResponse

func (o *ListServicesBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListServicesHandler

type ListServicesHandler interface {
	Handle(ListServicesParams, interface{}) middleware.Responder
}

ListServicesHandler interface for that can handle valid list services params

type ListServicesHandlerFunc

type ListServicesHandlerFunc func(ListServicesParams, interface{}) middleware.Responder

ListServicesHandlerFunc turns a function with the right signature into a list services handler

func (ListServicesHandlerFunc) Handle

func (fn ListServicesHandlerFunc) Handle(params ListServicesParams, principal interface{}) middleware.Responder

Handle executing the request and returning a response

type ListServicesOK

type ListServicesOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.ListServicesEnvelope `json:"body,omitempty"`
}

ListServicesOK A list of services

swagger:response listServicesOK

func NewListServicesOK

func NewListServicesOK() *ListServicesOK

NewListServicesOK creates ListServicesOK with default headers values

func (*ListServicesOK) SetPayload

func (o *ListServicesOK) SetPayload(payload *rest_model.ListServicesEnvelope)

SetPayload sets the payload to the list services o k response

func (*ListServicesOK) WithPayload

WithPayload adds the payload to the list services o k response

func (*ListServicesOK) WriteResponse

func (o *ListServicesOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type ListServicesParams

type ListServicesParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*
	  In: query
	*/
	Filter *string
	/*
	  In: query
	*/
	Limit *int64
	/*
	  In: query
	*/
	Offset *int64
	/*
	  In: query
	  Collection Format: multi
	*/
	RoleFilter []string
	/*
	  In: query
	*/
	RoleSemantic *string
}

ListServicesParams contains all the bound params for the list services operation typically these are obtained from a http.Request

swagger:parameters listServices

func NewListServicesParams

func NewListServicesParams() ListServicesParams

NewListServicesParams creates a new ListServicesParams object

There are no default values defined in the spec.

func (*ListServicesParams) BindRequest

func (o *ListServicesParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewListServicesParams() beforehand.

type ListServicesURL

type ListServicesURL struct {
	Filter       *string
	Limit        *int64
	Offset       *int64
	RoleFilter   []string
	RoleSemantic *string
	// contains filtered or unexported fields
}

ListServicesURL generates an URL for the list services operation

func (*ListServicesURL) Build

func (o *ListServicesURL) Build() (*url.URL, error)

Build a url path and query string

func (*ListServicesURL) BuildFull

func (o *ListServicesURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*ListServicesURL) Must

func (o *ListServicesURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*ListServicesURL) SetBasePath

func (o *ListServicesURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*ListServicesURL) String

func (o *ListServicesURL) String() string

String returns the string representation of the path with query string

func (*ListServicesURL) StringFull

func (o *ListServicesURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*ListServicesURL) WithBasePath

func (o *ListServicesURL) WithBasePath(bp string) *ListServicesURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type ListServicesUnauthorized

type ListServicesUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

ListServicesUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response listServicesUnauthorized

func NewListServicesUnauthorized

func NewListServicesUnauthorized() *ListServicesUnauthorized

NewListServicesUnauthorized creates ListServicesUnauthorized with default headers values

func (*ListServicesUnauthorized) SetPayload

func (o *ListServicesUnauthorized) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the list services unauthorized response

func (*ListServicesUnauthorized) WithPayload

WithPayload adds the payload to the list services unauthorized response

func (*ListServicesUnauthorized) WriteResponse

func (o *ListServicesUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type PatchService

type PatchService struct {
	Context *middleware.Context
	Handler PatchServiceHandler
}
PatchService swagger:route PATCH /services/{id} Service patchService

Update the supplied fields on a service

Update the supplied fields on a service. Requires admin access.

func NewPatchService

func NewPatchService(ctx *middleware.Context, handler PatchServiceHandler) *PatchService

NewPatchService creates a new http.Handler for the patch service operation

func (*PatchService) ServeHTTP

func (o *PatchService) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type PatchServiceBadRequest

type PatchServiceBadRequest struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

PatchServiceBadRequest The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

swagger:response patchServiceBadRequest

func NewPatchServiceBadRequest

func NewPatchServiceBadRequest() *PatchServiceBadRequest

NewPatchServiceBadRequest creates PatchServiceBadRequest with default headers values

func (*PatchServiceBadRequest) SetPayload

func (o *PatchServiceBadRequest) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the patch service bad request response

func (*PatchServiceBadRequest) WithPayload

WithPayload adds the payload to the patch service bad request response

func (*PatchServiceBadRequest) WriteResponse

func (o *PatchServiceBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type PatchServiceHandler

type PatchServiceHandler interface {
	Handle(PatchServiceParams, interface{}) middleware.Responder
}

PatchServiceHandler interface for that can handle valid patch service params

type PatchServiceHandlerFunc

type PatchServiceHandlerFunc func(PatchServiceParams, interface{}) middleware.Responder

PatchServiceHandlerFunc turns a function with the right signature into a patch service handler

func (PatchServiceHandlerFunc) Handle

func (fn PatchServiceHandlerFunc) Handle(params PatchServiceParams, principal interface{}) middleware.Responder

Handle executing the request and returning a response

type PatchServiceNotFound

type PatchServiceNotFound struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

PatchServiceNotFound The requested resource does not exist

swagger:response patchServiceNotFound

func NewPatchServiceNotFound

func NewPatchServiceNotFound() *PatchServiceNotFound

NewPatchServiceNotFound creates PatchServiceNotFound with default headers values

func (*PatchServiceNotFound) SetPayload

func (o *PatchServiceNotFound) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the patch service not found response

func (*PatchServiceNotFound) WithPayload

WithPayload adds the payload to the patch service not found response

func (*PatchServiceNotFound) WriteResponse

func (o *PatchServiceNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type PatchServiceOK

type PatchServiceOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.Empty `json:"body,omitempty"`
}

PatchServiceOK The patch request was successful and the resource has been altered

swagger:response patchServiceOK

func NewPatchServiceOK

func NewPatchServiceOK() *PatchServiceOK

NewPatchServiceOK creates PatchServiceOK with default headers values

func (*PatchServiceOK) SetPayload

func (o *PatchServiceOK) SetPayload(payload *rest_model.Empty)

SetPayload sets the payload to the patch service o k response

func (*PatchServiceOK) WithPayload

func (o *PatchServiceOK) WithPayload(payload *rest_model.Empty) *PatchServiceOK

WithPayload adds the payload to the patch service o k response

func (*PatchServiceOK) WriteResponse

func (o *PatchServiceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type PatchServiceParams

type PatchServiceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The id of the requested resource
	  Required: true
	  In: path
	*/
	ID string
	/*A service patch object
	  Required: true
	  In: body
	*/
	Service *rest_model.ServicePatch
}

PatchServiceParams contains all the bound params for the patch service operation typically these are obtained from a http.Request

swagger:parameters patchService

func NewPatchServiceParams

func NewPatchServiceParams() PatchServiceParams

NewPatchServiceParams creates a new PatchServiceParams object

There are no default values defined in the spec.

func (*PatchServiceParams) BindRequest

func (o *PatchServiceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewPatchServiceParams() beforehand.

type PatchServiceURL

type PatchServiceURL struct {
	ID string
	// contains filtered or unexported fields
}

PatchServiceURL generates an URL for the patch service operation

func (*PatchServiceURL) Build

func (o *PatchServiceURL) Build() (*url.URL, error)

Build a url path and query string

func (*PatchServiceURL) BuildFull

func (o *PatchServiceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*PatchServiceURL) Must

func (o *PatchServiceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*PatchServiceURL) SetBasePath

func (o *PatchServiceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*PatchServiceURL) String

func (o *PatchServiceURL) String() string

String returns the string representation of the path with query string

func (*PatchServiceURL) StringFull

func (o *PatchServiceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*PatchServiceURL) WithBasePath

func (o *PatchServiceURL) WithBasePath(bp string) *PatchServiceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type PatchServiceUnauthorized

type PatchServiceUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

PatchServiceUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response patchServiceUnauthorized

func NewPatchServiceUnauthorized

func NewPatchServiceUnauthorized() *PatchServiceUnauthorized

NewPatchServiceUnauthorized creates PatchServiceUnauthorized with default headers values

func (*PatchServiceUnauthorized) SetPayload

func (o *PatchServiceUnauthorized) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the patch service unauthorized response

func (*PatchServiceUnauthorized) WithPayload

WithPayload adds the payload to the patch service unauthorized response

func (*PatchServiceUnauthorized) WriteResponse

func (o *PatchServiceUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type UpdateService

type UpdateService struct {
	Context *middleware.Context
	Handler UpdateServiceHandler
}
UpdateService swagger:route PUT /services/{id} Service updateService

Update all fields on a service

Update all fields on a service by id. Requires admin access.

func NewUpdateService

func NewUpdateService(ctx *middleware.Context, handler UpdateServiceHandler) *UpdateService

NewUpdateService creates a new http.Handler for the update service operation

func (*UpdateService) ServeHTTP

func (o *UpdateService) ServeHTTP(rw http.ResponseWriter, r *http.Request)

type UpdateServiceBadRequest

type UpdateServiceBadRequest struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

UpdateServiceBadRequest The supplied request contains invalid fields or could not be parsed (json and non-json bodies). The error's code, message, and cause fields can be inspected for further information

swagger:response updateServiceBadRequest

func NewUpdateServiceBadRequest

func NewUpdateServiceBadRequest() *UpdateServiceBadRequest

NewUpdateServiceBadRequest creates UpdateServiceBadRequest with default headers values

func (*UpdateServiceBadRequest) SetPayload

func (o *UpdateServiceBadRequest) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the update service bad request response

func (*UpdateServiceBadRequest) WithPayload

WithPayload adds the payload to the update service bad request response

func (*UpdateServiceBadRequest) WriteResponse

func (o *UpdateServiceBadRequest) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type UpdateServiceHandler

type UpdateServiceHandler interface {
	Handle(UpdateServiceParams, interface{}) middleware.Responder
}

UpdateServiceHandler interface for that can handle valid update service params

type UpdateServiceHandlerFunc

type UpdateServiceHandlerFunc func(UpdateServiceParams, interface{}) middleware.Responder

UpdateServiceHandlerFunc turns a function with the right signature into a update service handler

func (UpdateServiceHandlerFunc) Handle

func (fn UpdateServiceHandlerFunc) Handle(params UpdateServiceParams, principal interface{}) middleware.Responder

Handle executing the request and returning a response

type UpdateServiceNotFound

type UpdateServiceNotFound struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

UpdateServiceNotFound The requested resource does not exist

swagger:response updateServiceNotFound

func NewUpdateServiceNotFound

func NewUpdateServiceNotFound() *UpdateServiceNotFound

NewUpdateServiceNotFound creates UpdateServiceNotFound with default headers values

func (*UpdateServiceNotFound) SetPayload

func (o *UpdateServiceNotFound) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the update service not found response

func (*UpdateServiceNotFound) WithPayload

WithPayload adds the payload to the update service not found response

func (*UpdateServiceNotFound) WriteResponse

func (o *UpdateServiceNotFound) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type UpdateServiceOK

type UpdateServiceOK struct {

	/*
	  In: Body
	*/
	Payload *rest_model.Empty `json:"body,omitempty"`
}

UpdateServiceOK The update request was successful and the resource has been altered

swagger:response updateServiceOK

func NewUpdateServiceOK

func NewUpdateServiceOK() *UpdateServiceOK

NewUpdateServiceOK creates UpdateServiceOK with default headers values

func (*UpdateServiceOK) SetPayload

func (o *UpdateServiceOK) SetPayload(payload *rest_model.Empty)

SetPayload sets the payload to the update service o k response

func (*UpdateServiceOK) WithPayload

func (o *UpdateServiceOK) WithPayload(payload *rest_model.Empty) *UpdateServiceOK

WithPayload adds the payload to the update service o k response

func (*UpdateServiceOK) WriteResponse

func (o *UpdateServiceOK) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

type UpdateServiceParams

type UpdateServiceParams struct {

	// HTTP Request Object
	HTTPRequest *http.Request `json:"-"`

	/*The id of the requested resource
	  Required: true
	  In: path
	*/
	ID string
	/*A service update object
	  Required: true
	  In: body
	*/
	Service *rest_model.ServiceUpdate
}

UpdateServiceParams contains all the bound params for the update service operation typically these are obtained from a http.Request

swagger:parameters updateService

func NewUpdateServiceParams

func NewUpdateServiceParams() UpdateServiceParams

NewUpdateServiceParams creates a new UpdateServiceParams object

There are no default values defined in the spec.

func (*UpdateServiceParams) BindRequest

func (o *UpdateServiceParams) BindRequest(r *http.Request, route *middleware.MatchedRoute) error

BindRequest both binds and validates a request, it assumes that complex things implement a Validatable(strfmt.Registry) error interface for simple values it will use straight method calls.

To ensure default values, the struct must have been initialized with NewUpdateServiceParams() beforehand.

type UpdateServiceURL

type UpdateServiceURL struct {
	ID string
	// contains filtered or unexported fields
}

UpdateServiceURL generates an URL for the update service operation

func (*UpdateServiceURL) Build

func (o *UpdateServiceURL) Build() (*url.URL, error)

Build a url path and query string

func (*UpdateServiceURL) BuildFull

func (o *UpdateServiceURL) BuildFull(scheme, host string) (*url.URL, error)

BuildFull builds a full url with scheme, host, path and query string

func (*UpdateServiceURL) Must

func (o *UpdateServiceURL) Must(u *url.URL, err error) *url.URL

Must is a helper function to panic when the url builder returns an error

func (*UpdateServiceURL) SetBasePath

func (o *UpdateServiceURL) SetBasePath(bp string)

SetBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

func (*UpdateServiceURL) String

func (o *UpdateServiceURL) String() string

String returns the string representation of the path with query string

func (*UpdateServiceURL) StringFull

func (o *UpdateServiceURL) StringFull(scheme, host string) string

StringFull returns the string representation of a complete url

func (*UpdateServiceURL) WithBasePath

func (o *UpdateServiceURL) WithBasePath(bp string) *UpdateServiceURL

WithBasePath sets the base path for this url builder, only required when it's different from the base path specified in the swagger spec. When the value of the base path is an empty string

type UpdateServiceUnauthorized

type UpdateServiceUnauthorized struct {

	/*
	  In: Body
	*/
	Payload *rest_model.APIErrorEnvelope `json:"body,omitempty"`
}

UpdateServiceUnauthorized The currently supplied session does not have the correct access rights to request this resource

swagger:response updateServiceUnauthorized

func NewUpdateServiceUnauthorized

func NewUpdateServiceUnauthorized() *UpdateServiceUnauthorized

NewUpdateServiceUnauthorized creates UpdateServiceUnauthorized with default headers values

func (*UpdateServiceUnauthorized) SetPayload

func (o *UpdateServiceUnauthorized) SetPayload(payload *rest_model.APIErrorEnvelope)

SetPayload sets the payload to the update service unauthorized response

func (*UpdateServiceUnauthorized) WithPayload

WithPayload adds the payload to the update service unauthorized response

func (*UpdateServiceUnauthorized) WriteResponse

func (o *UpdateServiceUnauthorized) WriteResponse(rw http.ResponseWriter, producer runtime.Producer)

WriteResponse to the client

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL