read_catalog_entries

package
v0.0.0-...-9b0980c Latest Latest
Warning

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

Go to latest
Published: Aug 3, 2020 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

View Source
const GetAllCatalogEntryPackagesInternalServerErrorCode int = 500

GetAllCatalogEntryPackagesInternalServerErrorCode is the HTTP code returned for type GetAllCatalogEntryPackagesInternalServerError

View Source
const GetAllCatalogEntryPackagesOKCode int = 200

GetAllCatalogEntryPackagesOKCode is the HTTP code returned for type GetAllCatalogEntryPackagesOK

View Source
const GetCatalogEntryFromVersionInternalServerErrorCode int = 500

GetCatalogEntryFromVersionInternalServerErrorCode is the HTTP code returned for type GetCatalogEntryFromVersionInternalServerError

View Source
const GetCatalogEntryFromVersionNotFoundCode int = 404

GetCatalogEntryFromVersionNotFoundCode is the HTTP code returned for type GetCatalogEntryFromVersionNotFound

View Source
const GetCatalogEntryFromVersionOKCode int = 200

GetCatalogEntryFromVersionOKCode is the HTTP code returned for type GetCatalogEntryFromVersionOK

View Source
const GetCatalogEntryPackageInternalServerErrorCode int = 500

GetCatalogEntryPackageInternalServerErrorCode is the HTTP code returned for type GetCatalogEntryPackageInternalServerError

View Source
const GetCatalogEntryPackageNotFoundCode int = 404

GetCatalogEntryPackageNotFoundCode is the HTTP code returned for type GetCatalogEntryPackageNotFound

View Source
const GetCatalogEntryPackageOKCode int = 200

GetCatalogEntryPackageOKCode is the HTTP code returned for type GetCatalogEntryPackageOK

View Source
const GetCatalogEntryPackageVersionsInternalServerErrorCode int = 500

GetCatalogEntryPackageVersionsInternalServerErrorCode is the HTTP code returned for type GetCatalogEntryPackageVersionsInternalServerError

View Source
const GetCatalogEntryPackageVersionsNotFoundCode int = 404

GetCatalogEntryPackageVersionsNotFoundCode is the HTTP code returned for type GetCatalogEntryPackageVersionsNotFound

View Source
const GetCatalogEntryPackageVersionsOKCode int = 200

GetCatalogEntryPackageVersionsOKCode is the HTTP code returned for type GetCatalogEntryPackageVersionsOK

Variables

This section is empty.

Functions

This section is empty.

Types

type GetAllCatalogEntryPackages

type GetAllCatalogEntryPackages struct {
	Context *middleware.Context
	Handler GetAllCatalogEntryPackagesHandler
}

GetAllCatalogEntryPackages swagger:route GET /catalogEntries Read catalog entries getAllCatalogEntryPackages

Get all entries in the catalog

func NewGetAllCatalogEntryPackages

func NewGetAllCatalogEntryPackages(ctx *middleware.Context, handler GetAllCatalogEntryPackagesHandler) *GetAllCatalogEntryPackages

NewGetAllCatalogEntryPackages creates a new http.Handler for the get all catalog entry packages operation

func (*GetAllCatalogEntryPackages) ServeHTTP

type GetAllCatalogEntryPackagesHandler

type GetAllCatalogEntryPackagesHandler interface {
	Handle(GetAllCatalogEntryPackagesParams) middleware.Responder
}

GetAllCatalogEntryPackagesHandler interface for that can handle valid get all catalog entry packages params

type GetAllCatalogEntryPackagesHandlerFunc

type GetAllCatalogEntryPackagesHandlerFunc func(GetAllCatalogEntryPackagesParams) middleware.Responder

GetAllCatalogEntryPackagesHandlerFunc turns a function with the right signature into a get all catalog entry packages handler

func (GetAllCatalogEntryPackagesHandlerFunc) Handle

Handle executing the request and returning a response

type GetAllCatalogEntryPackagesInternalServerError

type GetAllCatalogEntryPackagesInternalServerError struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetAllCatalogEntryPackagesInternalServerError Internal error

swagger:response getAllCatalogEntryPackagesInternalServerError

func NewGetAllCatalogEntryPackagesInternalServerError

func NewGetAllCatalogEntryPackagesInternalServerError() *GetAllCatalogEntryPackagesInternalServerError

NewGetAllCatalogEntryPackagesInternalServerError creates GetAllCatalogEntryPackagesInternalServerError with default headers values

func (*GetAllCatalogEntryPackagesInternalServerError) SetPayload

SetPayload sets the payload to the get all catalog entry packages internal server error response

func (*GetAllCatalogEntryPackagesInternalServerError) WithPayload

WithPayload adds the payload to the get all catalog entry packages internal server error response

func (*GetAllCatalogEntryPackagesInternalServerError) WriteResponse

WriteResponse to the client

type GetAllCatalogEntryPackagesOK

type GetAllCatalogEntryPackagesOK struct {

	/*
	  In: Body
	*/
	Payload []CatalogEntryPackage.CatalogEntryPackage `json:"body,omitempty"`
}

GetAllCatalogEntryPackagesOK CatalogEntryPackage with providerId

swagger:response getAllCatalogEntryPackagesOK

func NewGetAllCatalogEntryPackagesOK

func NewGetAllCatalogEntryPackagesOK() *GetAllCatalogEntryPackagesOK

NewGetAllCatalogEntryPackagesOK creates GetAllCatalogEntryPackagesOK with default headers values

func (*GetAllCatalogEntryPackagesOK) SetPayload

SetPayload sets the payload to the get all catalog entry packages o k response

func (*GetAllCatalogEntryPackagesOK) WithPayload

WithPayload adds the payload to the get all catalog entry packages o k response

func (*GetAllCatalogEntryPackagesOK) WriteResponse

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

WriteResponse to the client

type GetAllCatalogEntryPackagesParams

type GetAllCatalogEntryPackagesParams struct {

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

GetAllCatalogEntryPackagesParams contains all the bound params for the get all catalog entry packages operation typically these are obtained from a http.Request

swagger:parameters getAllCatalogEntryPackages

func NewGetAllCatalogEntryPackagesParams

func NewGetAllCatalogEntryPackagesParams() GetAllCatalogEntryPackagesParams

NewGetAllCatalogEntryPackagesParams creates a new GetAllCatalogEntryPackagesParams object no default values defined in spec.

func (*GetAllCatalogEntryPackagesParams) 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 NewGetAllCatalogEntryPackagesParams() beforehand.

type GetAllCatalogEntryPackagesURL

type GetAllCatalogEntryPackagesURL struct {
	// contains filtered or unexported fields
}

GetAllCatalogEntryPackagesURL generates an URL for the get all catalog entry packages operation

func (*GetAllCatalogEntryPackagesURL) Build

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

Build a url path and query string

func (*GetAllCatalogEntryPackagesURL) BuildFull

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

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

func (*GetAllCatalogEntryPackagesURL) Must

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

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

func (*GetAllCatalogEntryPackagesURL) SetBasePath

func (o *GetAllCatalogEntryPackagesURL) 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 (*GetAllCatalogEntryPackagesURL) String

String returns the string representation of the path with query string

func (*GetAllCatalogEntryPackagesURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetAllCatalogEntryPackagesURL) 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 GetCatalogEntryFromVersion

type GetCatalogEntryFromVersion struct {
	Context *middleware.Context
	Handler GetCatalogEntryFromVersionHandler
}

GetCatalogEntryFromVersion swagger:route GET /catalogEntries/{providerId}/versions/{version} Read catalog entries getCatalogEntryFromVersion

Get an entry in the catalog for specific version

func NewGetCatalogEntryFromVersion

func NewGetCatalogEntryFromVersion(ctx *middleware.Context, handler GetCatalogEntryFromVersionHandler) *GetCatalogEntryFromVersion

NewGetCatalogEntryFromVersion creates a new http.Handler for the get catalog entry from version operation

func (*GetCatalogEntryFromVersion) ServeHTTP

type GetCatalogEntryFromVersionHandler

type GetCatalogEntryFromVersionHandler interface {
	Handle(GetCatalogEntryFromVersionParams) middleware.Responder
}

GetCatalogEntryFromVersionHandler interface for that can handle valid get catalog entry from version params

type GetCatalogEntryFromVersionHandlerFunc

type GetCatalogEntryFromVersionHandlerFunc func(GetCatalogEntryFromVersionParams) middleware.Responder

GetCatalogEntryFromVersionHandlerFunc turns a function with the right signature into a get catalog entry from version handler

func (GetCatalogEntryFromVersionHandlerFunc) Handle

Handle executing the request and returning a response

type GetCatalogEntryFromVersionInternalServerError

type GetCatalogEntryFromVersionInternalServerError struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryFromVersionInternalServerError Internal error

swagger:response getCatalogEntryFromVersionInternalServerError

func NewGetCatalogEntryFromVersionInternalServerError

func NewGetCatalogEntryFromVersionInternalServerError() *GetCatalogEntryFromVersionInternalServerError

NewGetCatalogEntryFromVersionInternalServerError creates GetCatalogEntryFromVersionInternalServerError with default headers values

func (*GetCatalogEntryFromVersionInternalServerError) SetPayload

SetPayload sets the payload to the get catalog entry from version internal server error response

func (*GetCatalogEntryFromVersionInternalServerError) WithPayload

WithPayload adds the payload to the get catalog entry from version internal server error response

func (*GetCatalogEntryFromVersionInternalServerError) WriteResponse

WriteResponse to the client

type GetCatalogEntryFromVersionNotFound

type GetCatalogEntryFromVersionNotFound struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryFromVersionNotFound CatalogEntryVersion not found

swagger:response getCatalogEntryFromVersionNotFound

func NewGetCatalogEntryFromVersionNotFound

func NewGetCatalogEntryFromVersionNotFound() *GetCatalogEntryFromVersionNotFound

NewGetCatalogEntryFromVersionNotFound creates GetCatalogEntryFromVersionNotFound with default headers values

func (*GetCatalogEntryFromVersionNotFound) SetPayload

func (o *GetCatalogEntryFromVersionNotFound) SetPayload(payload string)

SetPayload sets the payload to the get catalog entry from version not found response

func (*GetCatalogEntryFromVersionNotFound) WithPayload

WithPayload adds the payload to the get catalog entry from version not found response

func (*GetCatalogEntryFromVersionNotFound) WriteResponse

WriteResponse to the client

type GetCatalogEntryFromVersionOK

type GetCatalogEntryFromVersionOK struct {

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

GetCatalogEntryFromVersionOK CatalogEntryVersion with details

swagger:response getCatalogEntryFromVersionOK

func NewGetCatalogEntryFromVersionOK

func NewGetCatalogEntryFromVersionOK() *GetCatalogEntryFromVersionOK

NewGetCatalogEntryFromVersionOK creates GetCatalogEntryFromVersionOK with default headers values

func (*GetCatalogEntryFromVersionOK) SetPayload

SetPayload sets the payload to the get catalog entry from version o k response

func (*GetCatalogEntryFromVersionOK) WithPayload

WithPayload adds the payload to the get catalog entry from version o k response

func (*GetCatalogEntryFromVersionOK) WriteResponse

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

WriteResponse to the client

type GetCatalogEntryFromVersionParams

type GetCatalogEntryFromVersionParams struct {

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

	/*CatalogEntryPackage providerId
	  Required: true
	  In: path
	*/
	ProviderID string
	/*CatalogEntryPackage version
	  Required: true
	  In: path
	*/
	Version string
}

GetCatalogEntryFromVersionParams contains all the bound params for the get catalog entry from version operation typically these are obtained from a http.Request

swagger:parameters getCatalogEntryFromVersion

func NewGetCatalogEntryFromVersionParams

func NewGetCatalogEntryFromVersionParams() GetCatalogEntryFromVersionParams

NewGetCatalogEntryFromVersionParams creates a new GetCatalogEntryFromVersionParams object no default values defined in spec.

func (*GetCatalogEntryFromVersionParams) 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 NewGetCatalogEntryFromVersionParams() beforehand.

type GetCatalogEntryFromVersionURL

type GetCatalogEntryFromVersionURL struct {
	ProviderID string
	Version    string
	// contains filtered or unexported fields
}

GetCatalogEntryFromVersionURL generates an URL for the get catalog entry from version operation

func (*GetCatalogEntryFromVersionURL) Build

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

Build a url path and query string

func (*GetCatalogEntryFromVersionURL) BuildFull

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

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

func (*GetCatalogEntryFromVersionURL) Must

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

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

func (*GetCatalogEntryFromVersionURL) SetBasePath

func (o *GetCatalogEntryFromVersionURL) 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 (*GetCatalogEntryFromVersionURL) String

String returns the string representation of the path with query string

func (*GetCatalogEntryFromVersionURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetCatalogEntryFromVersionURL) 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 GetCatalogEntryPackage

type GetCatalogEntryPackage struct {
	Context *middleware.Context
	Handler GetCatalogEntryPackageHandler
}

GetCatalogEntryPackage swagger:route GET /catalogEntries/{providerId} Read catalog entries getCatalogEntryPackage

Get an entry in the catalog

func NewGetCatalogEntryPackage

func NewGetCatalogEntryPackage(ctx *middleware.Context, handler GetCatalogEntryPackageHandler) *GetCatalogEntryPackage

NewGetCatalogEntryPackage creates a new http.Handler for the get catalog entry package operation

func (*GetCatalogEntryPackage) ServeHTTP

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

type GetCatalogEntryPackageHandler

type GetCatalogEntryPackageHandler interface {
	Handle(GetCatalogEntryPackageParams) middleware.Responder
}

GetCatalogEntryPackageHandler interface for that can handle valid get catalog entry package params

type GetCatalogEntryPackageHandlerFunc

type GetCatalogEntryPackageHandlerFunc func(GetCatalogEntryPackageParams) middleware.Responder

GetCatalogEntryPackageHandlerFunc turns a function with the right signature into a get catalog entry package handler

func (GetCatalogEntryPackageHandlerFunc) Handle

Handle executing the request and returning a response

type GetCatalogEntryPackageInternalServerError

type GetCatalogEntryPackageInternalServerError struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryPackageInternalServerError Internal error

swagger:response getCatalogEntryPackageInternalServerError

func NewGetCatalogEntryPackageInternalServerError

func NewGetCatalogEntryPackageInternalServerError() *GetCatalogEntryPackageInternalServerError

NewGetCatalogEntryPackageInternalServerError creates GetCatalogEntryPackageInternalServerError with default headers values

func (*GetCatalogEntryPackageInternalServerError) SetPayload

func (o *GetCatalogEntryPackageInternalServerError) SetPayload(payload string)

SetPayload sets the payload to the get catalog entry package internal server error response

func (*GetCatalogEntryPackageInternalServerError) WithPayload

WithPayload adds the payload to the get catalog entry package internal server error response

func (*GetCatalogEntryPackageInternalServerError) WriteResponse

WriteResponse to the client

type GetCatalogEntryPackageNotFound

type GetCatalogEntryPackageNotFound struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryPackageNotFound CatalogEntryPackage not found

swagger:response getCatalogEntryPackageNotFound

func NewGetCatalogEntryPackageNotFound

func NewGetCatalogEntryPackageNotFound() *GetCatalogEntryPackageNotFound

NewGetCatalogEntryPackageNotFound creates GetCatalogEntryPackageNotFound with default headers values

func (*GetCatalogEntryPackageNotFound) SetPayload

func (o *GetCatalogEntryPackageNotFound) SetPayload(payload string)

SetPayload sets the payload to the get catalog entry package not found response

func (*GetCatalogEntryPackageNotFound) WithPayload

WithPayload adds the payload to the get catalog entry package not found response

func (*GetCatalogEntryPackageNotFound) WriteResponse

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

WriteResponse to the client

type GetCatalogEntryPackageOK

type GetCatalogEntryPackageOK struct {

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

GetCatalogEntryPackageOK CatalogEntryPackage with details

swagger:response getCatalogEntryPackageOK

func NewGetCatalogEntryPackageOK

func NewGetCatalogEntryPackageOK() *GetCatalogEntryPackageOK

NewGetCatalogEntryPackageOK creates GetCatalogEntryPackageOK with default headers values

func (*GetCatalogEntryPackageOK) SetPayload

SetPayload sets the payload to the get catalog entry package o k response

func (*GetCatalogEntryPackageOK) WithPayload

WithPayload adds the payload to the get catalog entry package o k response

func (*GetCatalogEntryPackageOK) WriteResponse

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

WriteResponse to the client

type GetCatalogEntryPackageParams

type GetCatalogEntryPackageParams struct {

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

	/*CatalogEntryPackage providerId
	  Required: true
	  In: path
	*/
	ProviderID string
}

GetCatalogEntryPackageParams contains all the bound params for the get catalog entry package operation typically these are obtained from a http.Request

swagger:parameters getCatalogEntryPackage

func NewGetCatalogEntryPackageParams

func NewGetCatalogEntryPackageParams() GetCatalogEntryPackageParams

NewGetCatalogEntryPackageParams creates a new GetCatalogEntryPackageParams object no default values defined in spec.

func (*GetCatalogEntryPackageParams) 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 NewGetCatalogEntryPackageParams() beforehand.

type GetCatalogEntryPackageURL

type GetCatalogEntryPackageURL struct {
	ProviderID string
	// contains filtered or unexported fields
}

GetCatalogEntryPackageURL generates an URL for the get catalog entry package operation

func (*GetCatalogEntryPackageURL) Build

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

Build a url path and query string

func (*GetCatalogEntryPackageURL) BuildFull

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

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

func (*GetCatalogEntryPackageURL) Must

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

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

func (*GetCatalogEntryPackageURL) SetBasePath

func (o *GetCatalogEntryPackageURL) 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 (*GetCatalogEntryPackageURL) String

func (o *GetCatalogEntryPackageURL) String() string

String returns the string representation of the path with query string

func (*GetCatalogEntryPackageURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetCatalogEntryPackageURL) 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 GetCatalogEntryPackageVersions

type GetCatalogEntryPackageVersions struct {
	Context *middleware.Context
	Handler GetCatalogEntryPackageVersionsHandler
}

GetCatalogEntryPackageVersions swagger:route GET /catalogEntries/{providerId}/versions Read catalog entries getCatalogEntryPackageVersions

Get all version for an entry in the catalog

func NewGetCatalogEntryPackageVersions

func NewGetCatalogEntryPackageVersions(ctx *middleware.Context, handler GetCatalogEntryPackageVersionsHandler) *GetCatalogEntryPackageVersions

NewGetCatalogEntryPackageVersions creates a new http.Handler for the get catalog entry package versions operation

func (*GetCatalogEntryPackageVersions) ServeHTTP

type GetCatalogEntryPackageVersionsHandler

type GetCatalogEntryPackageVersionsHandler interface {
	Handle(GetCatalogEntryPackageVersionsParams) middleware.Responder
}

GetCatalogEntryPackageVersionsHandler interface for that can handle valid get catalog entry package versions params

type GetCatalogEntryPackageVersionsHandlerFunc

type GetCatalogEntryPackageVersionsHandlerFunc func(GetCatalogEntryPackageVersionsParams) middleware.Responder

GetCatalogEntryPackageVersionsHandlerFunc turns a function with the right signature into a get catalog entry package versions handler

func (GetCatalogEntryPackageVersionsHandlerFunc) Handle

Handle executing the request and returning a response

type GetCatalogEntryPackageVersionsInternalServerError

type GetCatalogEntryPackageVersionsInternalServerError struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryPackageVersionsInternalServerError Internal error

swagger:response getCatalogEntryPackageVersionsInternalServerError

func NewGetCatalogEntryPackageVersionsInternalServerError

func NewGetCatalogEntryPackageVersionsInternalServerError() *GetCatalogEntryPackageVersionsInternalServerError

NewGetCatalogEntryPackageVersionsInternalServerError creates GetCatalogEntryPackageVersionsInternalServerError with default headers values

func (*GetCatalogEntryPackageVersionsInternalServerError) SetPayload

SetPayload sets the payload to the get catalog entry package versions internal server error response

func (*GetCatalogEntryPackageVersionsInternalServerError) WithPayload

WithPayload adds the payload to the get catalog entry package versions internal server error response

func (*GetCatalogEntryPackageVersionsInternalServerError) WriteResponse

WriteResponse to the client

type GetCatalogEntryPackageVersionsNotFound

type GetCatalogEntryPackageVersionsNotFound struct {

	/*
	  In: Body
	*/
	Payload string `json:"body,omitempty"`
}

GetCatalogEntryPackageVersionsNotFound CatalogEntryPackage not found

swagger:response getCatalogEntryPackageVersionsNotFound

func NewGetCatalogEntryPackageVersionsNotFound

func NewGetCatalogEntryPackageVersionsNotFound() *GetCatalogEntryPackageVersionsNotFound

NewGetCatalogEntryPackageVersionsNotFound creates GetCatalogEntryPackageVersionsNotFound with default headers values

func (*GetCatalogEntryPackageVersionsNotFound) SetPayload

func (o *GetCatalogEntryPackageVersionsNotFound) SetPayload(payload string)

SetPayload sets the payload to the get catalog entry package versions not found response

func (*GetCatalogEntryPackageVersionsNotFound) WithPayload

WithPayload adds the payload to the get catalog entry package versions not found response

func (*GetCatalogEntryPackageVersionsNotFound) WriteResponse

WriteResponse to the client

type GetCatalogEntryPackageVersionsOK

type GetCatalogEntryPackageVersionsOK struct {

	/*
	  In: Body
	*/
	Payload []CatalogEntryPackageVersion.CatalogEntryPackageVersion `json:"body,omitempty"`
}

GetCatalogEntryPackageVersionsOK All versions for CatalogEntryPackage

swagger:response getCatalogEntryPackageVersionsOK

func NewGetCatalogEntryPackageVersionsOK

func NewGetCatalogEntryPackageVersionsOK() *GetCatalogEntryPackageVersionsOK

NewGetCatalogEntryPackageVersionsOK creates GetCatalogEntryPackageVersionsOK with default headers values

func (*GetCatalogEntryPackageVersionsOK) SetPayload

SetPayload sets the payload to the get catalog entry package versions o k response

func (*GetCatalogEntryPackageVersionsOK) WithPayload

WithPayload adds the payload to the get catalog entry package versions o k response

func (*GetCatalogEntryPackageVersionsOK) WriteResponse

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

WriteResponse to the client

type GetCatalogEntryPackageVersionsParams

type GetCatalogEntryPackageVersionsParams struct {

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

	/*CatalogEntryPackage providerId
	  Required: true
	  In: path
	*/
	ProviderID string
}

GetCatalogEntryPackageVersionsParams contains all the bound params for the get catalog entry package versions operation typically these are obtained from a http.Request

swagger:parameters getCatalogEntryPackageVersions

func NewGetCatalogEntryPackageVersionsParams

func NewGetCatalogEntryPackageVersionsParams() GetCatalogEntryPackageVersionsParams

NewGetCatalogEntryPackageVersionsParams creates a new GetCatalogEntryPackageVersionsParams object no default values defined in spec.

func (*GetCatalogEntryPackageVersionsParams) 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 NewGetCatalogEntryPackageVersionsParams() beforehand.

type GetCatalogEntryPackageVersionsURL

type GetCatalogEntryPackageVersionsURL struct {
	ProviderID string
	// contains filtered or unexported fields
}

GetCatalogEntryPackageVersionsURL generates an URL for the get catalog entry package versions operation

func (*GetCatalogEntryPackageVersionsURL) Build

Build a url path and query string

func (*GetCatalogEntryPackageVersionsURL) BuildFull

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

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

func (*GetCatalogEntryPackageVersionsURL) Must

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

func (*GetCatalogEntryPackageVersionsURL) SetBasePath

func (o *GetCatalogEntryPackageVersionsURL) 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 (*GetCatalogEntryPackageVersionsURL) String

String returns the string representation of the path with query string

func (*GetCatalogEntryPackageVersionsURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetCatalogEntryPackageVersionsURL) 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

Jump to

Keyboard shortcuts

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