operations

package
v0.0.0-...-6cfc1b2 Latest Latest
Warning

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

Go to latest
Published: Nov 28, 2023 License: Apache-2.0 Imports: 19 Imported by: 3

Documentation

Index

Constants

View Source
const DeleteAPIInventoryAPIIDSpecsProvidedSpecOKCode int = 200

DeleteAPIInventoryAPIIDSpecsProvidedSpecOKCode is the HTTP code returned for type DeleteAPIInventoryAPIIDSpecsProvidedSpecOK

View Source
const DeleteAPIInventoryAPIIDSpecsReconstructedSpecOKCode int = 200

DeleteAPIInventoryAPIIDSpecsReconstructedSpecOKCode is the HTTP code returned for type DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK

View Source
const DeleteControlTraceSourcesTraceSourceIDNoContentCode int = 204

DeleteControlTraceSourcesTraceSourceIDNoContentCode is the HTTP code returned for type DeleteControlTraceSourcesTraceSourceIDNoContent

View Source
const DeleteControlTraceSourcesTraceSourceIDNotFoundCode int = 404

DeleteControlTraceSourcesTraceSourceIDNotFoundCode is the HTTP code returned for type DeleteControlTraceSourcesTraceSourceIDNotFound

View Source
const GetAPIEventsEventIDOKCode int = 200

GetAPIEventsEventIDOKCode is the HTTP code returned for type GetAPIEventsEventIDOK

View Source
const GetAPIEventsEventIDProvidedSpecDiffOKCode int = 200

GetAPIEventsEventIDProvidedSpecDiffOKCode is the HTTP code returned for type GetAPIEventsEventIDProvidedSpecDiffOK

View Source
const GetAPIEventsEventIDReconstructedSpecDiffOKCode int = 200

GetAPIEventsEventIDReconstructedSpecDiffOKCode is the HTTP code returned for type GetAPIEventsEventIDReconstructedSpecDiffOK

View Source
const GetAPIEventsOKCode int = 200

GetAPIEventsOKCode is the HTTP code returned for type GetAPIEventsOK

View Source
const GetAPIInventoryAPIIDAPIInfoOKCode int = 200

GetAPIInventoryAPIIDAPIInfoOKCode is the HTTP code returned for type GetAPIInventoryAPIIDAPIInfoOK

View Source
const GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFoundCode int = 404

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFoundCode is the HTTP code returned for type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound

View Source
const GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOKCode int = 200

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOKCode is the HTTP code returned for type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK

View Source
const GetAPIInventoryAPIIDFromHostAndPortNotFoundCode int = 404

GetAPIInventoryAPIIDFromHostAndPortNotFoundCode is the HTTP code returned for type GetAPIInventoryAPIIDFromHostAndPortNotFound

View Source
const GetAPIInventoryAPIIDFromHostAndPortOKCode int = 200

GetAPIInventoryAPIIDFromHostAndPortOKCode is the HTTP code returned for type GetAPIInventoryAPIIDFromHostAndPortOK

View Source
const GetAPIInventoryAPIIDProvidedSwaggerJSONOKCode int = 200

GetAPIInventoryAPIIDProvidedSwaggerJSONOKCode is the HTTP code returned for type GetAPIInventoryAPIIDProvidedSwaggerJSONOK

View Source
const GetAPIInventoryAPIIDReconstructedSwaggerJSONOKCode int = 200

GetAPIInventoryAPIIDReconstructedSwaggerJSONOKCode is the HTTP code returned for type GetAPIInventoryAPIIDReconstructedSwaggerJSONOK

View Source
const GetAPIInventoryAPIIDSpecsOKCode int = 200

GetAPIInventoryAPIIDSpecsOKCode is the HTTP code returned for type GetAPIInventoryAPIIDSpecsOK

View Source
const GetAPIInventoryAPIIDSuggestedReviewOKCode int = 200

GetAPIInventoryAPIIDSuggestedReviewOKCode is the HTTP code returned for type GetAPIInventoryAPIIDSuggestedReviewOK

View Source
const GetAPIInventoryOKCode int = 200

GetAPIInventoryOKCode is the HTTP code returned for type GetAPIInventoryOK

View Source
const GetAPIUsageHitCountOKCode int = 200

GetAPIUsageHitCountOKCode is the HTTP code returned for type GetAPIUsageHitCountOK

View Source
const GetControlTraceSourcesOKCode int = 200

GetControlTraceSourcesOKCode is the HTTP code returned for type GetControlTraceSourcesOK

View Source
const GetControlTraceSourcesTraceSourceIDNotFoundCode int = 404

GetControlTraceSourcesTraceSourceIDNotFoundCode is the HTTP code returned for type GetControlTraceSourcesTraceSourceIDNotFound

View Source
const GetControlTraceSourcesTraceSourceIDOKCode int = 200

GetControlTraceSourcesTraceSourceIDOKCode is the HTTP code returned for type GetControlTraceSourcesTraceSourceIDOK

View Source
const GetDashboardAPIUsageLatestDiffsOKCode int = 200

GetDashboardAPIUsageLatestDiffsOKCode is the HTTP code returned for type GetDashboardAPIUsageLatestDiffsOK

View Source
const GetDashboardAPIUsageMostUsedOKCode int = 200

GetDashboardAPIUsageMostUsedOKCode is the HTTP code returned for type GetDashboardAPIUsageMostUsedOK

View Source
const GetDashboardAPIUsageOKCode int = 200

GetDashboardAPIUsageOKCode is the HTTP code returned for type GetDashboardAPIUsageOK

View Source
const GetFeaturesOKCode int = 200

GetFeaturesOKCode is the HTTP code returned for type GetFeaturesOK

View Source
const PostAPIInventoryOKCode int = 200

PostAPIInventoryOKCode is the HTTP code returned for type PostAPIInventoryOK

View Source
const PostAPIInventoryReviewIDApprovedReviewOKCode int = 200

PostAPIInventoryReviewIDApprovedReviewOKCode is the HTTP code returned for type PostAPIInventoryReviewIDApprovedReviewOK

View Source
const PostControlNewDiscoveredAPIsOKCode int = 200

PostControlNewDiscoveredAPIsOKCode is the HTTP code returned for type PostControlNewDiscoveredAPIsOK

View Source
const PostControlTraceSourcesCreatedCode int = 201

PostControlTraceSourcesCreatedCode is the HTTP code returned for type PostControlTraceSourcesCreated

View Source
const PutAPIInventoryAPIIDSpecsProvidedSpecBadRequestCode int = 400

PutAPIInventoryAPIIDSpecsProvidedSpecBadRequestCode is the HTTP code returned for type PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest

View Source
const PutAPIInventoryAPIIDSpecsProvidedSpecCreatedCode int = 201

PutAPIInventoryAPIIDSpecsProvidedSpecCreatedCode is the HTTP code returned for type PutAPIInventoryAPIIDSpecsProvidedSpecCreated

Variables

This section is empty.

Functions

This section is empty.

Types

type APIClarityAPIsAPI

type APIClarityAPIsAPI struct {
	Middleware func(middleware.Builder) http.Handler

	// BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator

	// APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator

	// BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function.
	// It has a default implementation in the security package, however you can replace it for your particular usage.
	BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator

	// JSONConsumer registers a consumer for the following mime types:
	//   - application/json
	JSONConsumer runtime.Consumer

	// JSONProducer registers a producer for the following mime types:
	//   - application/json
	JSONProducer runtime.Producer

	// DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler sets the operation handler for the delete API inventory API ID specs provided spec operation
	DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler
	// DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler sets the operation handler for the delete API inventory API ID specs reconstructed spec operation
	DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler
	// DeleteControlTraceSourcesTraceSourceIDHandler sets the operation handler for the delete control trace sources trace source ID operation
	DeleteControlTraceSourcesTraceSourceIDHandler DeleteControlTraceSourcesTraceSourceIDHandler
	// GetAPIEventsHandler sets the operation handler for the get API events operation
	GetAPIEventsHandler GetAPIEventsHandler
	// GetAPIEventsEventIDHandler sets the operation handler for the get API events event ID operation
	GetAPIEventsEventIDHandler GetAPIEventsEventIDHandler
	// GetAPIEventsEventIDProvidedSpecDiffHandler sets the operation handler for the get API events event ID provided spec diff operation
	GetAPIEventsEventIDProvidedSpecDiffHandler GetAPIEventsEventIDProvidedSpecDiffHandler
	// GetAPIEventsEventIDReconstructedSpecDiffHandler sets the operation handler for the get API events event ID reconstructed spec diff operation
	GetAPIEventsEventIDReconstructedSpecDiffHandler GetAPIEventsEventIDReconstructedSpecDiffHandler
	// GetAPIInventoryHandler sets the operation handler for the get API inventory operation
	GetAPIInventoryHandler GetAPIInventoryHandler
	// GetAPIInventoryAPIIDAPIInfoHandler sets the operation handler for the get API inventory API ID API info operation
	GetAPIInventoryAPIIDAPIInfoHandler GetAPIInventoryAPIIDAPIInfoHandler
	// GetAPIInventoryAPIIDFromHostAndPortHandler sets the operation handler for the get API inventory API ID from host and port operation
	GetAPIInventoryAPIIDFromHostAndPortHandler GetAPIInventoryAPIIDFromHostAndPortHandler
	// GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler sets the operation handler for the get API inventory API ID from host and port and trace source ID operation
	GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler
	// GetAPIInventoryAPIIDProvidedSwaggerJSONHandler sets the operation handler for the get API inventory API ID provided swagger JSON operation
	GetAPIInventoryAPIIDProvidedSwaggerJSONHandler GetAPIInventoryAPIIDProvidedSwaggerJSONHandler
	// GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler sets the operation handler for the get API inventory API ID reconstructed swagger JSON operation
	GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler
	// GetAPIInventoryAPIIDSpecsHandler sets the operation handler for the get API inventory API ID specs operation
	GetAPIInventoryAPIIDSpecsHandler GetAPIInventoryAPIIDSpecsHandler
	// GetAPIInventoryAPIIDSuggestedReviewHandler sets the operation handler for the get API inventory API ID suggested review operation
	GetAPIInventoryAPIIDSuggestedReviewHandler GetAPIInventoryAPIIDSuggestedReviewHandler
	// GetAPIUsageHitCountHandler sets the operation handler for the get API usage hit count operation
	GetAPIUsageHitCountHandler GetAPIUsageHitCountHandler
	// GetControlTraceSourcesHandler sets the operation handler for the get control trace sources operation
	GetControlTraceSourcesHandler GetControlTraceSourcesHandler
	// GetControlTraceSourcesTraceSourceIDHandler sets the operation handler for the get control trace sources trace source ID operation
	GetControlTraceSourcesTraceSourceIDHandler GetControlTraceSourcesTraceSourceIDHandler
	// GetDashboardAPIUsageHandler sets the operation handler for the get dashboard API usage operation
	GetDashboardAPIUsageHandler GetDashboardAPIUsageHandler
	// GetDashboardAPIUsageLatestDiffsHandler sets the operation handler for the get dashboard API usage latest diffs operation
	GetDashboardAPIUsageLatestDiffsHandler GetDashboardAPIUsageLatestDiffsHandler
	// GetDashboardAPIUsageMostUsedHandler sets the operation handler for the get dashboard API usage most used operation
	GetDashboardAPIUsageMostUsedHandler GetDashboardAPIUsageMostUsedHandler
	// GetFeaturesHandler sets the operation handler for the get features operation
	GetFeaturesHandler GetFeaturesHandler
	// PostAPIInventoryHandler sets the operation handler for the post API inventory operation
	PostAPIInventoryHandler PostAPIInventoryHandler
	// PostAPIInventoryReviewIDApprovedReviewHandler sets the operation handler for the post API inventory review ID approved review operation
	PostAPIInventoryReviewIDApprovedReviewHandler PostAPIInventoryReviewIDApprovedReviewHandler
	// PostControlNewDiscoveredAPIsHandler sets the operation handler for the post control new discovered a p is operation
	PostControlNewDiscoveredAPIsHandler PostControlNewDiscoveredAPIsHandler
	// PostControlTraceSourcesHandler sets the operation handler for the post control trace sources operation
	PostControlTraceSourcesHandler PostControlTraceSourcesHandler
	// PutAPIInventoryAPIIDSpecsProvidedSpecHandler sets the operation handler for the put API inventory API ID specs provided spec operation
	PutAPIInventoryAPIIDSpecsProvidedSpecHandler PutAPIInventoryAPIIDSpecsProvidedSpecHandler

	// ServeError is called when an error is received, there is a default handler
	// but you can set your own with this
	ServeError func(http.ResponseWriter, *http.Request, error)

	// PreServerShutdown is called before the HTTP(S) server is shutdown
	// This allows for custom functions to get executed before the HTTP(S) server stops accepting traffic
	PreServerShutdown func()

	// ServerShutdown is called when the HTTP(S) server is shut down and done
	// handling all active connections and does not accept connections any more
	ServerShutdown func()

	// Custom command line argument groups with their descriptions
	CommandLineOptionsGroups []swag.CommandLineOptionsGroup

	// User defined logger function.
	Logger func(string, ...interface{})
	// contains filtered or unexported fields
}

APIClarityAPIsAPI the API clarity a p is API

func NewAPIClarityAPIsAPI

func NewAPIClarityAPIsAPI(spec *loads.Document) *APIClarityAPIsAPI

NewAPIClarityAPIsAPI creates a new APIClarityAPIs instance

func (*APIClarityAPIsAPI) AddMiddlewareFor

func (o *APIClarityAPIsAPI) AddMiddlewareFor(method, path string, builder middleware.Builder)

AddMiddlewareFor adds a http middleware to existing handler

func (*APIClarityAPIsAPI) AuthenticatorsFor

func (o *APIClarityAPIsAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator

AuthenticatorsFor gets the authenticators for the specified security schemes

func (*APIClarityAPIsAPI) Authorizer

func (o *APIClarityAPIsAPI) Authorizer() runtime.Authorizer

Authorizer returns the registered authorizer

func (*APIClarityAPIsAPI) ConsumersFor

func (o *APIClarityAPIsAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer

ConsumersFor gets the consumers for the specified media types. MIME type parameters are ignored here.

func (*APIClarityAPIsAPI) Context

func (o *APIClarityAPIsAPI) Context() *middleware.Context

Context returns the middleware context for the API clarity a p is API

func (*APIClarityAPIsAPI) DefaultConsumes

func (o *APIClarityAPIsAPI) DefaultConsumes() string

DefaultConsumes returns the default consumes media type

func (*APIClarityAPIsAPI) DefaultProduces

func (o *APIClarityAPIsAPI) DefaultProduces() string

DefaultProduces returns the default produces media type

func (*APIClarityAPIsAPI) Formats

func (o *APIClarityAPIsAPI) Formats() strfmt.Registry

Formats returns the registered string formats

func (*APIClarityAPIsAPI) HandlerFor

func (o *APIClarityAPIsAPI) HandlerFor(method, path string) (http.Handler, bool)

HandlerFor gets a http.Handler for the provided operation method and path

func (*APIClarityAPIsAPI) Init

func (o *APIClarityAPIsAPI) Init()

Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit

func (*APIClarityAPIsAPI) ProducersFor

func (o *APIClarityAPIsAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer

ProducersFor gets the producers for the specified media types. MIME type parameters are ignored here.

func (*APIClarityAPIsAPI) RegisterConsumer

func (o *APIClarityAPIsAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer)

RegisterConsumer allows you to add (or override) a consumer for a media type.

func (*APIClarityAPIsAPI) RegisterFormat

func (o *APIClarityAPIsAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator)

RegisterFormat registers a custom format validator

func (*APIClarityAPIsAPI) RegisterProducer

func (o *APIClarityAPIsAPI) RegisterProducer(mediaType string, producer runtime.Producer)

RegisterProducer allows you to add (or override) a producer for a media type.

func (*APIClarityAPIsAPI) Serve

func (o *APIClarityAPIsAPI) Serve(builder middleware.Builder) http.Handler

Serve creates a http handler to serve the API over HTTP can be used directly in http.ListenAndServe(":8000", api.Serve(nil))

func (*APIClarityAPIsAPI) ServeErrorFor

func (o *APIClarityAPIsAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error)

ServeErrorFor gets a error handler for a given operation id

func (*APIClarityAPIsAPI) SetDefaultConsumes

func (o *APIClarityAPIsAPI) SetDefaultConsumes(mediaType string)

SetDefaultConsumes returns the default consumes media type

func (*APIClarityAPIsAPI) SetDefaultProduces

func (o *APIClarityAPIsAPI) SetDefaultProduces(mediaType string)

SetDefaultProduces sets the default produces media type

func (*APIClarityAPIsAPI) SetSpec

func (o *APIClarityAPIsAPI) SetSpec(spec *loads.Document)

SetSpec sets a spec that will be served for the clients.

func (*APIClarityAPIsAPI) UseRedoc

func (o *APIClarityAPIsAPI) UseRedoc()

UseRedoc for documentation at /docs

func (*APIClarityAPIsAPI) UseSwaggerUI

func (o *APIClarityAPIsAPI) UseSwaggerUI()

UseSwaggerUI for documentation at /docs

func (*APIClarityAPIsAPI) Validate

func (o *APIClarityAPIsAPI) Validate() error

Validate validates the registrations in the APIClarityAPIsAPI

type DeleteAPIInventoryAPIIDSpecsProvidedSpec

type DeleteAPIInventoryAPIIDSpecsProvidedSpec struct {
	Context *middleware.Context
	Handler DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler
}
DeleteAPIInventoryAPIIDSpecsProvidedSpec swagger:route DELETE /apiInventory/{apiId}/specs/providedSpec deleteApiInventoryApiIdSpecsProvidedSpec

Unset a provided spec for a specific API

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpec

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpec(ctx *middleware.Context, handler DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler) *DeleteAPIInventoryAPIIDSpecsProvidedSpec

NewDeleteAPIInventoryAPIIDSpecsProvidedSpec creates a new http.Handler for the delete API inventory API ID specs provided spec operation

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpec) ServeHTTP

type DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault

type DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault unknown error

swagger:response deleteApiInventoryApiIdSpecsProvidedSpecDefault

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecDefault

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecDefault(code int) *DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault

NewDeleteAPIInventoryAPIIDSpecsProvidedSpecDefault creates DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault with default headers values

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault) SetPayload

SetPayload sets the payload to the delete API inventory API ID specs provided spec default response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault) SetStatusCode

SetStatusCode sets the status to the delete API inventory API ID specs provided spec default response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault) WithPayload

WithPayload adds the payload to the delete API inventory API ID specs provided spec default response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault) WithStatusCode

WithStatusCode adds the status to the delete API inventory API ID specs provided spec default response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecDefault) WriteResponse

WriteResponse to the client

type DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler

type DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler interface {
	Handle(DeleteAPIInventoryAPIIDSpecsProvidedSpecParams) middleware.Responder
}

DeleteAPIInventoryAPIIDSpecsProvidedSpecHandler interface for that can handle valid delete API inventory API ID specs provided spec params

type DeleteAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc

type DeleteAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc func(DeleteAPIInventoryAPIIDSpecsProvidedSpecParams) middleware.Responder

DeleteAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc turns a function with the right signature into a delete API inventory API ID specs provided spec handler

func (DeleteAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteAPIInventoryAPIIDSpecsProvidedSpecOK

type DeleteAPIInventoryAPIIDSpecsProvidedSpecOK struct {

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

DeleteAPIInventoryAPIIDSpecsProvidedSpecOK Success

swagger:response deleteApiInventoryApiIdSpecsProvidedSpecOK

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecOK

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecOK() *DeleteAPIInventoryAPIIDSpecsProvidedSpecOK

NewDeleteAPIInventoryAPIIDSpecsProvidedSpecOK creates DeleteAPIInventoryAPIIDSpecsProvidedSpecOK with default headers values

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecOK) SetPayload

func (o *DeleteAPIInventoryAPIIDSpecsProvidedSpecOK) SetPayload(payload interface{})

SetPayload sets the payload to the delete Api inventory Api Id specs provided spec o k response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecOK) WithPayload

WithPayload adds the payload to the delete Api inventory Api Id specs provided spec o k response

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecOK) WriteResponse

WriteResponse to the client

type DeleteAPIInventoryAPIIDSpecsProvidedSpecParams

type DeleteAPIInventoryAPIIDSpecsProvidedSpecParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

DeleteAPIInventoryAPIIDSpecsProvidedSpecParams contains all the bound params for the delete API inventory API ID specs provided spec operation typically these are obtained from a http.Request

swagger:parameters DeleteAPIInventoryAPIIDSpecsProvidedSpec

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecParams

func NewDeleteAPIInventoryAPIIDSpecsProvidedSpecParams() DeleteAPIInventoryAPIIDSpecsProvidedSpecParams

NewDeleteAPIInventoryAPIIDSpecsProvidedSpecParams creates a new DeleteAPIInventoryAPIIDSpecsProvidedSpecParams object

There are no default values defined in the spec.

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecParams) 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 NewDeleteAPIInventoryAPIIDSpecsProvidedSpecParams() beforehand.

type DeleteAPIInventoryAPIIDSpecsProvidedSpecURL

type DeleteAPIInventoryAPIIDSpecsProvidedSpecURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

DeleteAPIInventoryAPIIDSpecsProvidedSpecURL generates an URL for the delete API inventory API ID specs provided spec operation

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) Build

Build a url path and query string

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) BuildFull

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

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

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) Must

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

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) SetBasePath

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 (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) String

String returns the string representation of the path with query string

func (*DeleteAPIInventoryAPIIDSpecsProvidedSpecURL) StringFull

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

StringFull returns the string representation of a complete url

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

type DeleteAPIInventoryAPIIDSpecsReconstructedSpec struct {
	Context *middleware.Context
	Handler DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler
}
DeleteAPIInventoryAPIIDSpecsReconstructedSpec swagger:route DELETE /apiInventory/{apiId}/specs/reconstructedSpec deleteApiInventoryApiIdSpecsReconstructedSpec

Unset a reconstructed spec for a specific API

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpec

NewDeleteAPIInventoryAPIIDSpecsReconstructedSpec creates a new http.Handler for the delete API inventory API ID specs reconstructed spec operation

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpec) ServeHTTP

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault unknown error

swagger:response deleteApiInventoryApiIdSpecsReconstructedSpecDefault

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault(code int) *DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault

NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault creates DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault with default headers values

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault) SetPayload

SetPayload sets the payload to the delete API inventory API ID specs reconstructed spec default response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault) SetStatusCode

SetStatusCode sets the status to the delete API inventory API ID specs reconstructed spec default response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault) WithPayload

WithPayload adds the payload to the delete API inventory API ID specs reconstructed spec default response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault) WithStatusCode

WithStatusCode adds the status to the delete API inventory API ID specs reconstructed spec default response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecDefault) WriteResponse

WriteResponse to the client

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler interface {
	Handle(DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams) middleware.Responder
}

DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandler interface for that can handle valid delete API inventory API ID specs reconstructed spec params

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandlerFunc

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandlerFunc func(DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams) middleware.Responder

DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandlerFunc turns a function with the right signature into a delete API inventory API ID specs reconstructed spec handler

func (DeleteAPIInventoryAPIIDSpecsReconstructedSpecHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK struct {

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

DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK Success

swagger:response deleteApiInventoryApiIdSpecsReconstructedSpecOK

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecOK

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecOK() *DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK

NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecOK creates DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK with default headers values

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK) SetPayload

func (o *DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK) SetPayload(payload interface{})

SetPayload sets the payload to the delete Api inventory Api Id specs reconstructed spec o k response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK) WithPayload

WithPayload adds the payload to the delete Api inventory Api Id specs reconstructed spec o k response

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecOK) WriteResponse

WriteResponse to the client

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams contains all the bound params for the delete API inventory API ID specs reconstructed spec operation typically these are obtained from a http.Request

swagger:parameters DeleteAPIInventoryAPIIDSpecsReconstructedSpec

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecParams

func NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecParams() DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams

NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecParams creates a new DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams object

There are no default values defined in the spec.

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecParams) 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 NewDeleteAPIInventoryAPIIDSpecsReconstructedSpecParams() beforehand.

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL

type DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL generates an URL for the delete API inventory API ID specs reconstructed spec operation

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) Build

Build a url path and query string

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) BuildFull

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

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

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) Must

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

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) SetBasePath

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 (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) String

String returns the string representation of the path with query string

func (*DeleteAPIInventoryAPIIDSpecsReconstructedSpecURL) StringFull

StringFull returns the string representation of a complete url

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

type DeleteControlTraceSourcesTraceSourceID struct {
	Context *middleware.Context
	Handler DeleteControlTraceSourcesTraceSourceIDHandler
}
DeleteControlTraceSourcesTraceSourceID swagger:route DELETE /control/traceSources/{traceSourceId} deleteControlTraceSourcesTraceSourceId

Delete a Trace Source

func NewDeleteControlTraceSourcesTraceSourceID

func NewDeleteControlTraceSourcesTraceSourceID(ctx *middleware.Context, handler DeleteControlTraceSourcesTraceSourceIDHandler) *DeleteControlTraceSourcesTraceSourceID

NewDeleteControlTraceSourcesTraceSourceID creates a new http.Handler for the delete control trace sources trace source ID operation

func (*DeleteControlTraceSourcesTraceSourceID) ServeHTTP

type DeleteControlTraceSourcesTraceSourceIDDefault

type DeleteControlTraceSourcesTraceSourceIDDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

DeleteControlTraceSourcesTraceSourceIDDefault unknown error

swagger:response deleteControlTraceSourcesTraceSourceIdDefault

func NewDeleteControlTraceSourcesTraceSourceIDDefault

func NewDeleteControlTraceSourcesTraceSourceIDDefault(code int) *DeleteControlTraceSourcesTraceSourceIDDefault

NewDeleteControlTraceSourcesTraceSourceIDDefault creates DeleteControlTraceSourcesTraceSourceIDDefault with default headers values

func (*DeleteControlTraceSourcesTraceSourceIDDefault) SetPayload

SetPayload sets the payload to the delete control trace sources trace source ID default response

func (*DeleteControlTraceSourcesTraceSourceIDDefault) SetStatusCode

func (o *DeleteControlTraceSourcesTraceSourceIDDefault) SetStatusCode(code int)

SetStatusCode sets the status to the delete control trace sources trace source ID default response

func (*DeleteControlTraceSourcesTraceSourceIDDefault) WithPayload

WithPayload adds the payload to the delete control trace sources trace source ID default response

func (*DeleteControlTraceSourcesTraceSourceIDDefault) WithStatusCode

WithStatusCode adds the status to the delete control trace sources trace source ID default response

func (*DeleteControlTraceSourcesTraceSourceIDDefault) WriteResponse

WriteResponse to the client

type DeleteControlTraceSourcesTraceSourceIDHandler

type DeleteControlTraceSourcesTraceSourceIDHandler interface {
	Handle(DeleteControlTraceSourcesTraceSourceIDParams) middleware.Responder
}

DeleteControlTraceSourcesTraceSourceIDHandler interface for that can handle valid delete control trace sources trace source ID params

type DeleteControlTraceSourcesTraceSourceIDHandlerFunc

type DeleteControlTraceSourcesTraceSourceIDHandlerFunc func(DeleteControlTraceSourcesTraceSourceIDParams) middleware.Responder

DeleteControlTraceSourcesTraceSourceIDHandlerFunc turns a function with the right signature into a delete control trace sources trace source ID handler

func (DeleteControlTraceSourcesTraceSourceIDHandlerFunc) Handle

Handle executing the request and returning a response

type DeleteControlTraceSourcesTraceSourceIDNoContent

type DeleteControlTraceSourcesTraceSourceIDNoContent struct {
}

DeleteControlTraceSourcesTraceSourceIDNoContent Success

swagger:response deleteControlTraceSourcesTraceSourceIdNoContent

func NewDeleteControlTraceSourcesTraceSourceIDNoContent

func NewDeleteControlTraceSourcesTraceSourceIDNoContent() *DeleteControlTraceSourcesTraceSourceIDNoContent

NewDeleteControlTraceSourcesTraceSourceIDNoContent creates DeleteControlTraceSourcesTraceSourceIDNoContent with default headers values

func (*DeleteControlTraceSourcesTraceSourceIDNoContent) WriteResponse

WriteResponse to the client

type DeleteControlTraceSourcesTraceSourceIDNotFound

type DeleteControlTraceSourcesTraceSourceIDNotFound struct {

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

DeleteControlTraceSourcesTraceSourceIDNotFound Trace Source not found

swagger:response deleteControlTraceSourcesTraceSourceIdNotFound

func NewDeleteControlTraceSourcesTraceSourceIDNotFound

func NewDeleteControlTraceSourcesTraceSourceIDNotFound() *DeleteControlTraceSourcesTraceSourceIDNotFound

NewDeleteControlTraceSourcesTraceSourceIDNotFound creates DeleteControlTraceSourcesTraceSourceIDNotFound with default headers values

func (*DeleteControlTraceSourcesTraceSourceIDNotFound) SetPayload

SetPayload sets the payload to the delete control trace sources trace source Id not found response

func (*DeleteControlTraceSourcesTraceSourceIDNotFound) WithPayload

WithPayload adds the payload to the delete control trace sources trace source Id not found response

func (*DeleteControlTraceSourcesTraceSourceIDNotFound) WriteResponse

WriteResponse to the client

type DeleteControlTraceSourcesTraceSourceIDParams

type DeleteControlTraceSourcesTraceSourceIDParams struct {

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

	/*Trace Source ID
	  Required: true
	  In: path
	*/
	TraceSourceID strfmt.UUID
}

DeleteControlTraceSourcesTraceSourceIDParams contains all the bound params for the delete control trace sources trace source ID operation typically these are obtained from a http.Request

swagger:parameters DeleteControlTraceSourcesTraceSourceID

func NewDeleteControlTraceSourcesTraceSourceIDParams

func NewDeleteControlTraceSourcesTraceSourceIDParams() DeleteControlTraceSourcesTraceSourceIDParams

NewDeleteControlTraceSourcesTraceSourceIDParams creates a new DeleteControlTraceSourcesTraceSourceIDParams object

There are no default values defined in the spec.

func (*DeleteControlTraceSourcesTraceSourceIDParams) 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 NewDeleteControlTraceSourcesTraceSourceIDParams() beforehand.

type DeleteControlTraceSourcesTraceSourceIDURL

type DeleteControlTraceSourcesTraceSourceIDURL struct {
	TraceSourceID strfmt.UUID
	// contains filtered or unexported fields
}

DeleteControlTraceSourcesTraceSourceIDURL generates an URL for the delete control trace sources trace source ID operation

func (*DeleteControlTraceSourcesTraceSourceIDURL) Build

Build a url path and query string

func (*DeleteControlTraceSourcesTraceSourceIDURL) BuildFull

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

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

func (*DeleteControlTraceSourcesTraceSourceIDURL) Must

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

func (*DeleteControlTraceSourcesTraceSourceIDURL) SetBasePath

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 (*DeleteControlTraceSourcesTraceSourceIDURL) String

String returns the string representation of the path with query string

func (*DeleteControlTraceSourcesTraceSourceIDURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIEvents struct {
	Context *middleware.Context
	Handler GetAPIEventsHandler
}
GetAPIEvents swagger:route GET /apiEvents getApiEvents

Get API events

func NewGetAPIEvents

func NewGetAPIEvents(ctx *middleware.Context, handler GetAPIEventsHandler) *GetAPIEvents

NewGetAPIEvents creates a new http.Handler for the get API events operation

func (*GetAPIEvents) ServeHTTP

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

type GetAPIEventsDefault

type GetAPIEventsDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIEventsDefault unknown error

swagger:response getApiEventsDefault

func NewGetAPIEventsDefault

func NewGetAPIEventsDefault(code int) *GetAPIEventsDefault

NewGetAPIEventsDefault creates GetAPIEventsDefault with default headers values

func (*GetAPIEventsDefault) SetPayload

func (o *GetAPIEventsDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API events default response

func (*GetAPIEventsDefault) SetStatusCode

func (o *GetAPIEventsDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API events default response

func (*GetAPIEventsDefault) WithPayload

func (o *GetAPIEventsDefault) WithPayload(payload *models.APIResponse) *GetAPIEventsDefault

WithPayload adds the payload to the get API events default response

func (*GetAPIEventsDefault) WithStatusCode

func (o *GetAPIEventsDefault) WithStatusCode(code int) *GetAPIEventsDefault

WithStatusCode adds the status to the get API events default response

func (*GetAPIEventsDefault) WriteResponse

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

WriteResponse to the client

type GetAPIEventsEventID

type GetAPIEventsEventID struct {
	Context *middleware.Context
	Handler GetAPIEventsEventIDHandler
}
GetAPIEventsEventID swagger:route GET /apiEvents/{eventId} getApiEventsEventId

Get API event

func NewGetAPIEventsEventID

func NewGetAPIEventsEventID(ctx *middleware.Context, handler GetAPIEventsEventIDHandler) *GetAPIEventsEventID

NewGetAPIEventsEventID creates a new http.Handler for the get API events event ID operation

func (*GetAPIEventsEventID) ServeHTTP

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

type GetAPIEventsEventIDDefault

type GetAPIEventsEventIDDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIEventsEventIDDefault unknown error

swagger:response getApiEventsEventIdDefault

func NewGetAPIEventsEventIDDefault

func NewGetAPIEventsEventIDDefault(code int) *GetAPIEventsEventIDDefault

NewGetAPIEventsEventIDDefault creates GetAPIEventsEventIDDefault with default headers values

func (*GetAPIEventsEventIDDefault) SetPayload

func (o *GetAPIEventsEventIDDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API events event ID default response

func (*GetAPIEventsEventIDDefault) SetStatusCode

func (o *GetAPIEventsEventIDDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API events event ID default response

func (*GetAPIEventsEventIDDefault) WithPayload

WithPayload adds the payload to the get API events event ID default response

func (*GetAPIEventsEventIDDefault) WithStatusCode

WithStatusCode adds the status to the get API events event ID default response

func (*GetAPIEventsEventIDDefault) WriteResponse

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

WriteResponse to the client

type GetAPIEventsEventIDHandler

type GetAPIEventsEventIDHandler interface {
	Handle(GetAPIEventsEventIDParams) middleware.Responder
}

GetAPIEventsEventIDHandler interface for that can handle valid get API events event ID params

type GetAPIEventsEventIDHandlerFunc

type GetAPIEventsEventIDHandlerFunc func(GetAPIEventsEventIDParams) middleware.Responder

GetAPIEventsEventIDHandlerFunc turns a function with the right signature into a get API events event ID handler

func (GetAPIEventsEventIDHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIEventsEventIDOK

type GetAPIEventsEventIDOK struct {

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

GetAPIEventsEventIDOK Success

swagger:response getApiEventsEventIdOK

func NewGetAPIEventsEventIDOK

func NewGetAPIEventsEventIDOK() *GetAPIEventsEventIDOK

NewGetAPIEventsEventIDOK creates GetAPIEventsEventIDOK with default headers values

func (*GetAPIEventsEventIDOK) SetPayload

func (o *GetAPIEventsEventIDOK) SetPayload(payload *models.APIEvent)

SetPayload sets the payload to the get Api events event Id o k response

func (*GetAPIEventsEventIDOK) WithPayload

func (o *GetAPIEventsEventIDOK) WithPayload(payload *models.APIEvent) *GetAPIEventsEventIDOK

WithPayload adds the payload to the get Api events event Id o k response

func (*GetAPIEventsEventIDOK) WriteResponse

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

WriteResponse to the client

type GetAPIEventsEventIDParams

type GetAPIEventsEventIDParams struct {

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

	/*API event ID
	  Required: true
	  In: path
	*/
	EventID uint32
}

GetAPIEventsEventIDParams contains all the bound params for the get API events event ID operation typically these are obtained from a http.Request

swagger:parameters GetAPIEventsEventID

func NewGetAPIEventsEventIDParams

func NewGetAPIEventsEventIDParams() GetAPIEventsEventIDParams

NewGetAPIEventsEventIDParams creates a new GetAPIEventsEventIDParams object

There are no default values defined in the spec.

func (*GetAPIEventsEventIDParams) 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 NewGetAPIEventsEventIDParams() beforehand.

type GetAPIEventsEventIDProvidedSpecDiff

type GetAPIEventsEventIDProvidedSpecDiff struct {
	Context *middleware.Context
	Handler GetAPIEventsEventIDProvidedSpecDiffHandler
}
GetAPIEventsEventIDProvidedSpecDiff swagger:route GET /apiEvents/{eventId}/providedSpecDiff getApiEventsEventIdProvidedSpecDiff

Get API event provided spec diff

func NewGetAPIEventsEventIDProvidedSpecDiff

func NewGetAPIEventsEventIDProvidedSpecDiff(ctx *middleware.Context, handler GetAPIEventsEventIDProvidedSpecDiffHandler) *GetAPIEventsEventIDProvidedSpecDiff

NewGetAPIEventsEventIDProvidedSpecDiff creates a new http.Handler for the get API events event ID provided spec diff operation

func (*GetAPIEventsEventIDProvidedSpecDiff) ServeHTTP

type GetAPIEventsEventIDProvidedSpecDiffDefault

type GetAPIEventsEventIDProvidedSpecDiffDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIEventsEventIDProvidedSpecDiffDefault unknown error

swagger:response getApiEventsEventIdProvidedSpecDiffDefault

func NewGetAPIEventsEventIDProvidedSpecDiffDefault

func NewGetAPIEventsEventIDProvidedSpecDiffDefault(code int) *GetAPIEventsEventIDProvidedSpecDiffDefault

NewGetAPIEventsEventIDProvidedSpecDiffDefault creates GetAPIEventsEventIDProvidedSpecDiffDefault with default headers values

func (*GetAPIEventsEventIDProvidedSpecDiffDefault) SetPayload

SetPayload sets the payload to the get API events event ID provided spec diff default response

func (*GetAPIEventsEventIDProvidedSpecDiffDefault) SetStatusCode

func (o *GetAPIEventsEventIDProvidedSpecDiffDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API events event ID provided spec diff default response

func (*GetAPIEventsEventIDProvidedSpecDiffDefault) WithPayload

WithPayload adds the payload to the get API events event ID provided spec diff default response

func (*GetAPIEventsEventIDProvidedSpecDiffDefault) WithStatusCode

WithStatusCode adds the status to the get API events event ID provided spec diff default response

func (*GetAPIEventsEventIDProvidedSpecDiffDefault) WriteResponse

WriteResponse to the client

type GetAPIEventsEventIDProvidedSpecDiffHandler

type GetAPIEventsEventIDProvidedSpecDiffHandler interface {
	Handle(GetAPIEventsEventIDProvidedSpecDiffParams) middleware.Responder
}

GetAPIEventsEventIDProvidedSpecDiffHandler interface for that can handle valid get API events event ID provided spec diff params

type GetAPIEventsEventIDProvidedSpecDiffHandlerFunc

type GetAPIEventsEventIDProvidedSpecDiffHandlerFunc func(GetAPIEventsEventIDProvidedSpecDiffParams) middleware.Responder

GetAPIEventsEventIDProvidedSpecDiffHandlerFunc turns a function with the right signature into a get API events event ID provided spec diff handler

func (GetAPIEventsEventIDProvidedSpecDiffHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIEventsEventIDProvidedSpecDiffOK

type GetAPIEventsEventIDProvidedSpecDiffOK struct {

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

GetAPIEventsEventIDProvidedSpecDiffOK Success

swagger:response getApiEventsEventIdProvidedSpecDiffOK

func NewGetAPIEventsEventIDProvidedSpecDiffOK

func NewGetAPIEventsEventIDProvidedSpecDiffOK() *GetAPIEventsEventIDProvidedSpecDiffOK

NewGetAPIEventsEventIDProvidedSpecDiffOK creates GetAPIEventsEventIDProvidedSpecDiffOK with default headers values

func (*GetAPIEventsEventIDProvidedSpecDiffOK) SetPayload

SetPayload sets the payload to the get Api events event Id provided spec diff o k response

func (*GetAPIEventsEventIDProvidedSpecDiffOK) WithPayload

WithPayload adds the payload to the get Api events event Id provided spec diff o k response

func (*GetAPIEventsEventIDProvidedSpecDiffOK) WriteResponse

WriteResponse to the client

type GetAPIEventsEventIDProvidedSpecDiffParams

type GetAPIEventsEventIDProvidedSpecDiffParams struct {

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

	/*API event ID
	  Required: true
	  In: path
	*/
	EventID uint32
}

GetAPIEventsEventIDProvidedSpecDiffParams contains all the bound params for the get API events event ID provided spec diff operation typically these are obtained from a http.Request

swagger:parameters GetAPIEventsEventIDProvidedSpecDiff

func NewGetAPIEventsEventIDProvidedSpecDiffParams

func NewGetAPIEventsEventIDProvidedSpecDiffParams() GetAPIEventsEventIDProvidedSpecDiffParams

NewGetAPIEventsEventIDProvidedSpecDiffParams creates a new GetAPIEventsEventIDProvidedSpecDiffParams object

There are no default values defined in the spec.

func (*GetAPIEventsEventIDProvidedSpecDiffParams) 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 NewGetAPIEventsEventIDProvidedSpecDiffParams() beforehand.

type GetAPIEventsEventIDProvidedSpecDiffURL

type GetAPIEventsEventIDProvidedSpecDiffURL struct {
	EventID uint32
	// contains filtered or unexported fields
}

GetAPIEventsEventIDProvidedSpecDiffURL generates an URL for the get API events event ID provided spec diff operation

func (*GetAPIEventsEventIDProvidedSpecDiffURL) Build

Build a url path and query string

func (*GetAPIEventsEventIDProvidedSpecDiffURL) BuildFull

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

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

func (*GetAPIEventsEventIDProvidedSpecDiffURL) Must

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

func (*GetAPIEventsEventIDProvidedSpecDiffURL) SetBasePath

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 (*GetAPIEventsEventIDProvidedSpecDiffURL) String

String returns the string representation of the path with query string

func (*GetAPIEventsEventIDProvidedSpecDiffURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIEventsEventIDReconstructedSpecDiff struct {
	Context *middleware.Context
	Handler GetAPIEventsEventIDReconstructedSpecDiffHandler
}
GetAPIEventsEventIDReconstructedSpecDiff swagger:route GET /apiEvents/{eventId}/reconstructedSpecDiff getApiEventsEventIdReconstructedSpecDiff

Get API event reconstructed spec diff

func NewGetAPIEventsEventIDReconstructedSpecDiff

func NewGetAPIEventsEventIDReconstructedSpecDiff(ctx *middleware.Context, handler GetAPIEventsEventIDReconstructedSpecDiffHandler) *GetAPIEventsEventIDReconstructedSpecDiff

NewGetAPIEventsEventIDReconstructedSpecDiff creates a new http.Handler for the get API events event ID reconstructed spec diff operation

func (*GetAPIEventsEventIDReconstructedSpecDiff) ServeHTTP

type GetAPIEventsEventIDReconstructedSpecDiffDefault

type GetAPIEventsEventIDReconstructedSpecDiffDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIEventsEventIDReconstructedSpecDiffDefault unknown error

swagger:response getApiEventsEventIdReconstructedSpecDiffDefault

func NewGetAPIEventsEventIDReconstructedSpecDiffDefault

func NewGetAPIEventsEventIDReconstructedSpecDiffDefault(code int) *GetAPIEventsEventIDReconstructedSpecDiffDefault

NewGetAPIEventsEventIDReconstructedSpecDiffDefault creates GetAPIEventsEventIDReconstructedSpecDiffDefault with default headers values

func (*GetAPIEventsEventIDReconstructedSpecDiffDefault) SetPayload

SetPayload sets the payload to the get API events event ID reconstructed spec diff default response

func (*GetAPIEventsEventIDReconstructedSpecDiffDefault) SetStatusCode

SetStatusCode sets the status to the get API events event ID reconstructed spec diff default response

func (*GetAPIEventsEventIDReconstructedSpecDiffDefault) WithPayload

WithPayload adds the payload to the get API events event ID reconstructed spec diff default response

func (*GetAPIEventsEventIDReconstructedSpecDiffDefault) WithStatusCode

WithStatusCode adds the status to the get API events event ID reconstructed spec diff default response

func (*GetAPIEventsEventIDReconstructedSpecDiffDefault) WriteResponse

WriteResponse to the client

type GetAPIEventsEventIDReconstructedSpecDiffHandler

type GetAPIEventsEventIDReconstructedSpecDiffHandler interface {
	Handle(GetAPIEventsEventIDReconstructedSpecDiffParams) middleware.Responder
}

GetAPIEventsEventIDReconstructedSpecDiffHandler interface for that can handle valid get API events event ID reconstructed spec diff params

type GetAPIEventsEventIDReconstructedSpecDiffHandlerFunc

type GetAPIEventsEventIDReconstructedSpecDiffHandlerFunc func(GetAPIEventsEventIDReconstructedSpecDiffParams) middleware.Responder

GetAPIEventsEventIDReconstructedSpecDiffHandlerFunc turns a function with the right signature into a get API events event ID reconstructed spec diff handler

func (GetAPIEventsEventIDReconstructedSpecDiffHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIEventsEventIDReconstructedSpecDiffOK

type GetAPIEventsEventIDReconstructedSpecDiffOK struct {

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

GetAPIEventsEventIDReconstructedSpecDiffOK Success

swagger:response getApiEventsEventIdReconstructedSpecDiffOK

func NewGetAPIEventsEventIDReconstructedSpecDiffOK

func NewGetAPIEventsEventIDReconstructedSpecDiffOK() *GetAPIEventsEventIDReconstructedSpecDiffOK

NewGetAPIEventsEventIDReconstructedSpecDiffOK creates GetAPIEventsEventIDReconstructedSpecDiffOK with default headers values

func (*GetAPIEventsEventIDReconstructedSpecDiffOK) SetPayload

SetPayload sets the payload to the get Api events event Id reconstructed spec diff o k response

func (*GetAPIEventsEventIDReconstructedSpecDiffOK) WithPayload

WithPayload adds the payload to the get Api events event Id reconstructed spec diff o k response

func (*GetAPIEventsEventIDReconstructedSpecDiffOK) WriteResponse

WriteResponse to the client

type GetAPIEventsEventIDReconstructedSpecDiffParams

type GetAPIEventsEventIDReconstructedSpecDiffParams struct {

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

	/*API event ID
	  Required: true
	  In: path
	*/
	EventID uint32
}

GetAPIEventsEventIDReconstructedSpecDiffParams contains all the bound params for the get API events event ID reconstructed spec diff operation typically these are obtained from a http.Request

swagger:parameters GetAPIEventsEventIDReconstructedSpecDiff

func NewGetAPIEventsEventIDReconstructedSpecDiffParams

func NewGetAPIEventsEventIDReconstructedSpecDiffParams() GetAPIEventsEventIDReconstructedSpecDiffParams

NewGetAPIEventsEventIDReconstructedSpecDiffParams creates a new GetAPIEventsEventIDReconstructedSpecDiffParams object

There are no default values defined in the spec.

func (*GetAPIEventsEventIDReconstructedSpecDiffParams) 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 NewGetAPIEventsEventIDReconstructedSpecDiffParams() beforehand.

type GetAPIEventsEventIDReconstructedSpecDiffURL

type GetAPIEventsEventIDReconstructedSpecDiffURL struct {
	EventID uint32
	// contains filtered or unexported fields
}

GetAPIEventsEventIDReconstructedSpecDiffURL generates an URL for the get API events event ID reconstructed spec diff operation

func (*GetAPIEventsEventIDReconstructedSpecDiffURL) Build

Build a url path and query string

func (*GetAPIEventsEventIDReconstructedSpecDiffURL) BuildFull

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

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

func (*GetAPIEventsEventIDReconstructedSpecDiffURL) Must

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

func (*GetAPIEventsEventIDReconstructedSpecDiffURL) SetBasePath

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 (*GetAPIEventsEventIDReconstructedSpecDiffURL) String

String returns the string representation of the path with query string

func (*GetAPIEventsEventIDReconstructedSpecDiffURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIEventsEventIDURL struct {
	EventID uint32
	// contains filtered or unexported fields
}

GetAPIEventsEventIDURL generates an URL for the get API events event ID operation

func (*GetAPIEventsEventIDURL) Build

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

Build a url path and query string

func (*GetAPIEventsEventIDURL) BuildFull

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

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

func (*GetAPIEventsEventIDURL) Must

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

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

func (*GetAPIEventsEventIDURL) SetBasePath

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

func (o *GetAPIEventsEventIDURL) String() string

String returns the string representation of the path with query string

func (*GetAPIEventsEventIDURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIEventsHandler interface {
	Handle(GetAPIEventsParams) middleware.Responder
}

GetAPIEventsHandler interface for that can handle valid get API events params

type GetAPIEventsHandlerFunc

type GetAPIEventsHandlerFunc func(GetAPIEventsParams) middleware.Responder

GetAPIEventsHandlerFunc turns a function with the right signature into a get API events handler

func (GetAPIEventsHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIEventsOK

type GetAPIEventsOK struct {

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

GetAPIEventsOK Success

swagger:response getApiEventsOK

func NewGetAPIEventsOK

func NewGetAPIEventsOK() *GetAPIEventsOK

NewGetAPIEventsOK creates GetAPIEventsOK with default headers values

func (*GetAPIEventsOK) SetPayload

func (o *GetAPIEventsOK) SetPayload(payload *GetAPIEventsOKBody)

SetPayload sets the payload to the get Api events o k response

func (*GetAPIEventsOK) WithPayload

func (o *GetAPIEventsOK) WithPayload(payload *GetAPIEventsOKBody) *GetAPIEventsOK

WithPayload adds the payload to the get Api events o k response

func (*GetAPIEventsOK) WriteResponse

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

WriteResponse to the client

type GetAPIEventsOKBody

type GetAPIEventsOKBody struct {

	// List of API events in the given time range, filters and page. List length must be lower or equal to pageSize
	Items []*models.APIEvent `json:"items"`

	// Total events count in the given time range and filters
	// Required: true
	Total *int64 `json:"total"`
}

GetAPIEventsOKBody get API events o k body

swagger:model GetAPIEventsOKBody

func (*GetAPIEventsOKBody) ContextValidate

func (o *GetAPIEventsOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get API events o k body based on the context it is used

func (*GetAPIEventsOKBody) MarshalBinary

func (o *GetAPIEventsOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetAPIEventsOKBody) UnmarshalBinary

func (o *GetAPIEventsOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetAPIEventsOKBody) Validate

func (o *GetAPIEventsOKBody) Validate(formats strfmt.Registry) error

Validate validates this get API events o k body

type GetAPIEventsParams

type GetAPIEventsParams struct {

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

	/*
	  In: query
	*/
	AlertTypeIs []string
	/*Alert Kind [ALERT_INFO or ALERT_WARN]
	  In: query
	*/
	AlertIs []string
	/*
	  In: query
	*/
	APIInfoIDIs *uint32
	/*
	  In: query
	*/
	DestinationIPIsNot []string
	/*
	  In: query
	*/
	DestinationIPIs []string
	/*
	  In: query
	*/
	DestinationPortIsNot []string
	/*
	  In: query
	*/
	DestinationPortIs []string
	/*End time of the query
	  Required: true
	  In: query
	*/
	EndTime strfmt.DateTime
	/*
	  In: query
	*/
	HasSpecDiffIs *bool
	/*
	  In: query
	*/
	MethodIs []string
	/*Page number of the query
	  Required: true
	  In: query
	*/
	Page int64
	/*Maximum items to return
	  Required: true
	  Maximum: 50
	  Minimum: 1
	  In: query
	*/
	PageSize int64
	/*
	  In: query
	*/
	PathContains []string
	/*
	  In: query
	*/
	PathEnd *string
	/*
	  In: query
	*/
	PathIsNot []string
	/*
	  In: query
	*/
	PathIs []string
	/*
	  In: query
	*/
	PathStart *string
	/*
	  Required: true
	  In: query
	*/
	ShowNonAPI bool
	/*Sorting direction
	  In: query
	  Default: "ASC"
	*/
	SortDir *string
	/*Sort key
	  Required: true
	  In: query
	*/
	SortKey string
	/*
	  In: query
	*/
	SourceIPIsNot []string
	/*
	  In: query
	*/
	SourceIPIs []string
	/*
	  In: query
	*/
	SpecDiffTypeIs []string
	/*
	  In: query
	*/
	SpecContains []string
	/*
	  In: query
	*/
	SpecEnd *string
	/*
	  In: query
	*/
	SpecIsNot []string
	/*
	  In: query
	*/
	SpecIs []string
	/*
	  In: query
	*/
	SpecStart *string
	/*Start time of the query
	  Required: true
	  In: query
	*/
	StartTime strfmt.DateTime
	/*greater than or equal
	  In: query
	*/
	StatusCodeGte *string
	/*
	  In: query
	*/
	StatusCodeIsNot []string
	/*
	  In: query
	*/
	StatusCodeIs []string
	/*less than or equal
	  In: query
	*/
	StatusCodeLte *string
}

GetAPIEventsParams contains all the bound params for the get API events operation typically these are obtained from a http.Request

swagger:parameters GetAPIEvents

func NewGetAPIEventsParams

func NewGetAPIEventsParams() GetAPIEventsParams

NewGetAPIEventsParams creates a new GetAPIEventsParams object with the default values initialized.

func (*GetAPIEventsParams) BindRequest

func (o *GetAPIEventsParams) 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 NewGetAPIEventsParams() beforehand.

type GetAPIEventsURL

type GetAPIEventsURL struct {
	AlertTypeIs          []string
	AlertIs              []string
	APIInfoIDIs          *uint32
	DestinationIPIsNot   []string
	DestinationIPIs      []string
	DestinationPortIsNot []string
	DestinationPortIs    []string
	EndTime              strfmt.DateTime
	HasSpecDiffIs        *bool
	MethodIs             []string
	Page                 int64
	PageSize             int64
	PathContains         []string
	PathEnd              *string
	PathIsNot            []string
	PathIs               []string
	PathStart            *string
	ShowNonAPI           bool
	SortDir              *string
	SortKey              string
	SourceIPIsNot        []string
	SourceIPIs           []string
	SpecDiffTypeIs       []string
	SpecContains         []string
	SpecEnd              *string
	SpecIsNot            []string
	SpecIs               []string
	SpecStart            *string
	StartTime            strfmt.DateTime
	StatusCodeGte        *string
	StatusCodeIsNot      []string
	StatusCodeIs         []string
	StatusCodeLte        *string
	// contains filtered or unexported fields
}

GetAPIEventsURL generates an URL for the get API events operation

func (*GetAPIEventsURL) Build

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

Build a url path and query string

func (*GetAPIEventsURL) BuildFull

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

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

func (*GetAPIEventsURL) Must

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

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

func (*GetAPIEventsURL) SetBasePath

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

func (o *GetAPIEventsURL) String() string

String returns the string representation of the path with query string

func (*GetAPIEventsURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetAPIEventsURL) WithBasePath

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

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 GetAPIInventory

type GetAPIInventory struct {
	Context *middleware.Context
	Handler GetAPIInventoryHandler
}
GetAPIInventory swagger:route GET /apiInventory getApiInventory

Get API inventory

func NewGetAPIInventory

func NewGetAPIInventory(ctx *middleware.Context, handler GetAPIInventoryHandler) *GetAPIInventory

NewGetAPIInventory creates a new http.Handler for the get API inventory operation

func (*GetAPIInventory) ServeHTTP

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

type GetAPIInventoryAPIIDAPIInfo

type GetAPIInventoryAPIIDAPIInfo struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDAPIInfoHandler
}
GetAPIInventoryAPIIDAPIInfo swagger:route GET /apiInventory/{apiId}/apiInfo getApiInventoryApiIdApiInfo

Get api info from apiId

func NewGetAPIInventoryAPIIDAPIInfo

func NewGetAPIInventoryAPIIDAPIInfo(ctx *middleware.Context, handler GetAPIInventoryAPIIDAPIInfoHandler) *GetAPIInventoryAPIIDAPIInfo

NewGetAPIInventoryAPIIDAPIInfo creates a new http.Handler for the get API inventory API ID API info operation

func (*GetAPIInventoryAPIIDAPIInfo) ServeHTTP

type GetAPIInventoryAPIIDAPIInfoDefault

type GetAPIInventoryAPIIDAPIInfoDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDAPIInfoDefault unknown error

swagger:response getApiInventoryApiIdApiInfoDefault

func NewGetAPIInventoryAPIIDAPIInfoDefault

func NewGetAPIInventoryAPIIDAPIInfoDefault(code int) *GetAPIInventoryAPIIDAPIInfoDefault

NewGetAPIInventoryAPIIDAPIInfoDefault creates GetAPIInventoryAPIIDAPIInfoDefault with default headers values

func (*GetAPIInventoryAPIIDAPIInfoDefault) SetPayload

func (o *GetAPIInventoryAPIIDAPIInfoDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API inventory API ID API info default response

func (*GetAPIInventoryAPIIDAPIInfoDefault) SetStatusCode

func (o *GetAPIInventoryAPIIDAPIInfoDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory API ID API info default response

func (*GetAPIInventoryAPIIDAPIInfoDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID API info default response

func (*GetAPIInventoryAPIIDAPIInfoDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID API info default response

func (*GetAPIInventoryAPIIDAPIInfoDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDAPIInfoHandler

type GetAPIInventoryAPIIDAPIInfoHandler interface {
	Handle(GetAPIInventoryAPIIDAPIInfoParams) middleware.Responder
}

GetAPIInventoryAPIIDAPIInfoHandler interface for that can handle valid get API inventory API ID API info params

type GetAPIInventoryAPIIDAPIInfoHandlerFunc

type GetAPIInventoryAPIIDAPIInfoHandlerFunc func(GetAPIInventoryAPIIDAPIInfoParams) middleware.Responder

GetAPIInventoryAPIIDAPIInfoHandlerFunc turns a function with the right signature into a get API inventory API ID API info handler

func (GetAPIInventoryAPIIDAPIInfoHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDAPIInfoOK

type GetAPIInventoryAPIIDAPIInfoOK struct {

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

GetAPIInventoryAPIIDAPIInfoOK Success

swagger:response getApiInventoryApiIdApiInfoOK

func NewGetAPIInventoryAPIIDAPIInfoOK

func NewGetAPIInventoryAPIIDAPIInfoOK() *GetAPIInventoryAPIIDAPIInfoOK

NewGetAPIInventoryAPIIDAPIInfoOK creates GetAPIInventoryAPIIDAPIInfoOK with default headers values

func (*GetAPIInventoryAPIIDAPIInfoOK) SetPayload

func (o *GetAPIInventoryAPIIDAPIInfoOK) SetPayload(payload *models.APIInfoWithType)

SetPayload sets the payload to the get Api inventory Api Id Api info o k response

func (*GetAPIInventoryAPIIDAPIInfoOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id Api info o k response

func (*GetAPIInventoryAPIIDAPIInfoOK) WriteResponse

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

WriteResponse to the client

type GetAPIInventoryAPIIDAPIInfoParams

type GetAPIInventoryAPIIDAPIInfoParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

GetAPIInventoryAPIIDAPIInfoParams contains all the bound params for the get API inventory API ID API info operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDAPIInfo

func NewGetAPIInventoryAPIIDAPIInfoParams

func NewGetAPIInventoryAPIIDAPIInfoParams() GetAPIInventoryAPIIDAPIInfoParams

NewGetAPIInventoryAPIIDAPIInfoParams creates a new GetAPIInventoryAPIIDAPIInfoParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDAPIInfoParams) 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 NewGetAPIInventoryAPIIDAPIInfoParams() beforehand.

type GetAPIInventoryAPIIDAPIInfoURL

type GetAPIInventoryAPIIDAPIInfoURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDAPIInfoURL generates an URL for the get API inventory API ID API info operation

func (*GetAPIInventoryAPIIDAPIInfoURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDAPIInfoURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDAPIInfoURL) Must

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

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

func (*GetAPIInventoryAPIIDAPIInfoURL) SetBasePath

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

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDAPIInfoURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDFromHostAndPort struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDFromHostAndPortHandler
}
GetAPIInventoryAPIIDFromHostAndPort swagger:route GET /apiInventory/apiId/fromHostAndPort getApiInventoryApiIdFromHostAndPort

Get apiId from host and port

func NewGetAPIInventoryAPIIDFromHostAndPort

func NewGetAPIInventoryAPIIDFromHostAndPort(ctx *middleware.Context, handler GetAPIInventoryAPIIDFromHostAndPortHandler) *GetAPIInventoryAPIIDFromHostAndPort

NewGetAPIInventoryAPIIDFromHostAndPort creates a new http.Handler for the get API inventory API ID from host and port operation

func (*GetAPIInventoryAPIIDFromHostAndPort) ServeHTTP

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler
}
GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID swagger:route GET /apiInventory/apiId/fromHostAndPortAndTraceSourceID getApiInventoryApiIdFromHostAndPortAndTraceSourceId

Get apiId from host and port and Trace Source ID

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID

NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID creates a new http.Handler for the get API inventory API ID from host and port and trace source ID operation

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID) ServeHTTP

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault unknown error

swagger:response getApiInventoryApiIdFromHostAndPortAndTraceSourceIdDefault

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault(code int) *GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault

NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault creates GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault) SetPayload

SetPayload sets the payload to the get API inventory API ID from host and port and trace source ID default response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault) SetStatusCode

SetStatusCode sets the status to the get API inventory API ID from host and port and trace source ID default response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID from host and port and trace source ID default response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID from host and port and trace source ID default response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler interface {
	Handle(GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams) middleware.Responder
}

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandler interface for that can handle valid get API inventory API ID from host and port and trace source ID params

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandlerFunc

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandlerFunc func(GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams) middleware.Responder

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandlerFunc turns a function with the right signature into a get API inventory API ID from host and port and trace source ID handler

func (GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound struct {

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

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound API ID Not Found

swagger:response getApiInventoryApiIdFromHostAndPortAndTraceSourceIdNotFound

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound() *GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound

NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound creates GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound) SetPayload

SetPayload sets the payload to the get Api inventory Api Id from host and port and trace source Id not found response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound) WithPayload

WithPayload adds the payload to the get Api inventory Api Id from host and port and trace source Id not found response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDNotFound) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK struct {

	/*api id
	  In: Body
	*/
	Payload uint32 `json:"body,omitempty"`
}

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK Success

swagger:response getApiInventoryApiIdFromHostAndPortAndTraceSourceIdOK

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK() *GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK

NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK creates GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK) SetPayload

SetPayload sets the payload to the get Api inventory Api Id from host and port and trace source Id o k response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id from host and port and trace source Id o k response

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDOK) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams struct {

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

	/*api host name
	  Required: true
	  In: query
	*/
	Host string
	/*api port
	  Required: true
	  In: query
	*/
	Port string
	/*Trace Source ID
	  Required: true
	  In: query
	*/
	TraceSourceID strfmt.UUID
}

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams contains all the bound params for the get API inventory API ID from host and port and trace source ID operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceID

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams

func NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams() GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams

NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams creates a new GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams) 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 NewGetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDParams() beforehand.

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL

type GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL struct {
	Host          string
	Port          string
	TraceSourceID strfmt.UUID
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL generates an URL for the get API inventory API ID from host and port and trace source ID operation

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) BuildFull

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

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) Must

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

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) SetBasePath

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 (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) String

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDFromHostAndPortAndTraceSourceIDURL) StringFull

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDFromHostAndPortDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDFromHostAndPortDefault unknown error

swagger:response getApiInventoryApiIdFromHostAndPortDefault

func NewGetAPIInventoryAPIIDFromHostAndPortDefault

func NewGetAPIInventoryAPIIDFromHostAndPortDefault(code int) *GetAPIInventoryAPIIDFromHostAndPortDefault

NewGetAPIInventoryAPIIDFromHostAndPortDefault creates GetAPIInventoryAPIIDFromHostAndPortDefault with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortDefault) SetPayload

SetPayload sets the payload to the get API inventory API ID from host and port default response

func (*GetAPIInventoryAPIIDFromHostAndPortDefault) SetStatusCode

func (o *GetAPIInventoryAPIIDFromHostAndPortDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory API ID from host and port default response

func (*GetAPIInventoryAPIIDFromHostAndPortDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID from host and port default response

func (*GetAPIInventoryAPIIDFromHostAndPortDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID from host and port default response

func (*GetAPIInventoryAPIIDFromHostAndPortDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortHandler

type GetAPIInventoryAPIIDFromHostAndPortHandler interface {
	Handle(GetAPIInventoryAPIIDFromHostAndPortParams) middleware.Responder
}

GetAPIInventoryAPIIDFromHostAndPortHandler interface for that can handle valid get API inventory API ID from host and port params

type GetAPIInventoryAPIIDFromHostAndPortHandlerFunc

type GetAPIInventoryAPIIDFromHostAndPortHandlerFunc func(GetAPIInventoryAPIIDFromHostAndPortParams) middleware.Responder

GetAPIInventoryAPIIDFromHostAndPortHandlerFunc turns a function with the right signature into a get API inventory API ID from host and port handler

func (GetAPIInventoryAPIIDFromHostAndPortHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDFromHostAndPortNotFound

type GetAPIInventoryAPIIDFromHostAndPortNotFound struct {

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

GetAPIInventoryAPIIDFromHostAndPortNotFound API ID Not Found

swagger:response getApiInventoryApiIdFromHostAndPortNotFound

func NewGetAPIInventoryAPIIDFromHostAndPortNotFound

func NewGetAPIInventoryAPIIDFromHostAndPortNotFound() *GetAPIInventoryAPIIDFromHostAndPortNotFound

NewGetAPIInventoryAPIIDFromHostAndPortNotFound creates GetAPIInventoryAPIIDFromHostAndPortNotFound with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortNotFound) SetPayload

SetPayload sets the payload to the get Api inventory Api Id from host and port not found response

func (*GetAPIInventoryAPIIDFromHostAndPortNotFound) WithPayload

WithPayload adds the payload to the get Api inventory Api Id from host and port not found response

func (*GetAPIInventoryAPIIDFromHostAndPortNotFound) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortOK

type GetAPIInventoryAPIIDFromHostAndPortOK struct {

	/*api id
	  In: Body
	*/
	Payload uint32 `json:"body,omitempty"`
}

GetAPIInventoryAPIIDFromHostAndPortOK Success

swagger:response getApiInventoryApiIdFromHostAndPortOK

func NewGetAPIInventoryAPIIDFromHostAndPortOK

func NewGetAPIInventoryAPIIDFromHostAndPortOK() *GetAPIInventoryAPIIDFromHostAndPortOK

NewGetAPIInventoryAPIIDFromHostAndPortOK creates GetAPIInventoryAPIIDFromHostAndPortOK with default headers values

func (*GetAPIInventoryAPIIDFromHostAndPortOK) SetPayload

func (o *GetAPIInventoryAPIIDFromHostAndPortOK) SetPayload(payload uint32)

SetPayload sets the payload to the get Api inventory Api Id from host and port o k response

func (*GetAPIInventoryAPIIDFromHostAndPortOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id from host and port o k response

func (*GetAPIInventoryAPIIDFromHostAndPortOK) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDFromHostAndPortParams

type GetAPIInventoryAPIIDFromHostAndPortParams struct {

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

	/*api host name
	  Required: true
	  In: query
	*/
	Host string
	/*api port
	  Required: true
	  In: query
	*/
	Port string
}

GetAPIInventoryAPIIDFromHostAndPortParams contains all the bound params for the get API inventory API ID from host and port operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDFromHostAndPort

func NewGetAPIInventoryAPIIDFromHostAndPortParams

func NewGetAPIInventoryAPIIDFromHostAndPortParams() GetAPIInventoryAPIIDFromHostAndPortParams

NewGetAPIInventoryAPIIDFromHostAndPortParams creates a new GetAPIInventoryAPIIDFromHostAndPortParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDFromHostAndPortParams) 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 NewGetAPIInventoryAPIIDFromHostAndPortParams() beforehand.

type GetAPIInventoryAPIIDFromHostAndPortURL

type GetAPIInventoryAPIIDFromHostAndPortURL struct {
	Host string
	Port string
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDFromHostAndPortURL generates an URL for the get API inventory API ID from host and port operation

func (*GetAPIInventoryAPIIDFromHostAndPortURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDFromHostAndPortURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDFromHostAndPortURL) Must

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

func (*GetAPIInventoryAPIIDFromHostAndPortURL) SetBasePath

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 (*GetAPIInventoryAPIIDFromHostAndPortURL) String

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDFromHostAndPortURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDProvidedSwaggerJSON struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDProvidedSwaggerJSONHandler
}
GetAPIInventoryAPIIDProvidedSwaggerJSON swagger:route GET /apiInventory/{apiId}/provided_swagger.json getApiInventoryApiIdProvidedSwaggerJson

Get provided API spec json file

func NewGetAPIInventoryAPIIDProvidedSwaggerJSON

func NewGetAPIInventoryAPIIDProvidedSwaggerJSON(ctx *middleware.Context, handler GetAPIInventoryAPIIDProvidedSwaggerJSONHandler) *GetAPIInventoryAPIIDProvidedSwaggerJSON

NewGetAPIInventoryAPIIDProvidedSwaggerJSON creates a new http.Handler for the get API inventory API ID provided swagger JSON operation

func (*GetAPIInventoryAPIIDProvidedSwaggerJSON) ServeHTTP

type GetAPIInventoryAPIIDProvidedSwaggerJSONDefault

type GetAPIInventoryAPIIDProvidedSwaggerJSONDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDProvidedSwaggerJSONDefault unknown error

swagger:response getApiInventoryApiIdProvidedSwaggerJsonDefault

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONDefault

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONDefault(code int) *GetAPIInventoryAPIIDProvidedSwaggerJSONDefault

NewGetAPIInventoryAPIIDProvidedSwaggerJSONDefault creates GetAPIInventoryAPIIDProvidedSwaggerJSONDefault with default headers values

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) SetPayload

SetPayload sets the payload to the get API inventory API ID provided swagger JSON default response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) SetStatusCode

func (o *GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory API ID provided swagger JSON default response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID provided swagger JSON default response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID provided swagger JSON default response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDProvidedSwaggerJSONHandler

type GetAPIInventoryAPIIDProvidedSwaggerJSONHandler interface {
	Handle(GetAPIInventoryAPIIDProvidedSwaggerJSONParams) middleware.Responder
}

GetAPIInventoryAPIIDProvidedSwaggerJSONHandler interface for that can handle valid get API inventory API ID provided swagger JSON params

type GetAPIInventoryAPIIDProvidedSwaggerJSONHandlerFunc

type GetAPIInventoryAPIIDProvidedSwaggerJSONHandlerFunc func(GetAPIInventoryAPIIDProvidedSwaggerJSONParams) middleware.Responder

GetAPIInventoryAPIIDProvidedSwaggerJSONHandlerFunc turns a function with the right signature into a get API inventory API ID provided swagger JSON handler

func (GetAPIInventoryAPIIDProvidedSwaggerJSONHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDProvidedSwaggerJSONOK

type GetAPIInventoryAPIIDProvidedSwaggerJSONOK struct {

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

GetAPIInventoryAPIIDProvidedSwaggerJSONOK Success

swagger:response getApiInventoryApiIdProvidedSwaggerJsonOK

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONOK

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONOK() *GetAPIInventoryAPIIDProvidedSwaggerJSONOK

NewGetAPIInventoryAPIIDProvidedSwaggerJSONOK creates GetAPIInventoryAPIIDProvidedSwaggerJSONOK with default headers values

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONOK) SetPayload

func (o *GetAPIInventoryAPIIDProvidedSwaggerJSONOK) SetPayload(payload interface{})

SetPayload sets the payload to the get Api inventory Api Id provided swagger Json o k response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id provided swagger Json o k response

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONOK) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDProvidedSwaggerJSONParams

type GetAPIInventoryAPIIDProvidedSwaggerJSONParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

GetAPIInventoryAPIIDProvidedSwaggerJSONParams contains all the bound params for the get API inventory API ID provided swagger JSON operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDProvidedSwaggerJSON

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONParams

func NewGetAPIInventoryAPIIDProvidedSwaggerJSONParams() GetAPIInventoryAPIIDProvidedSwaggerJSONParams

NewGetAPIInventoryAPIIDProvidedSwaggerJSONParams creates a new GetAPIInventoryAPIIDProvidedSwaggerJSONParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONParams) 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 NewGetAPIInventoryAPIIDProvidedSwaggerJSONParams() beforehand.

type GetAPIInventoryAPIIDProvidedSwaggerJSONURL

type GetAPIInventoryAPIIDProvidedSwaggerJSONURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDProvidedSwaggerJSONURL generates an URL for the get API inventory API ID provided swagger JSON operation

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) Must

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

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) SetBasePath

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 (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) String

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDProvidedSwaggerJSONURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDReconstructedSwaggerJSON struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler
}
GetAPIInventoryAPIIDReconstructedSwaggerJSON swagger:route GET /apiInventory/{apiId}/reconstructed_swagger.json getApiInventoryApiIdReconstructedSwaggerJson

Get reconstructed API spec json file

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSON

NewGetAPIInventoryAPIIDReconstructedSwaggerJSON creates a new http.Handler for the get API inventory API ID reconstructed swagger JSON operation

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSON) ServeHTTP

type GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault

type GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault unknown error

swagger:response getApiInventoryApiIdReconstructedSwaggerJsonDefault

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONDefault

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONDefault(code int) *GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault

NewGetAPIInventoryAPIIDReconstructedSwaggerJSONDefault creates GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault with default headers values

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault) SetPayload

SetPayload sets the payload to the get API inventory API ID reconstructed swagger JSON default response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault) SetStatusCode

SetStatusCode sets the status to the get API inventory API ID reconstructed swagger JSON default response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID reconstructed swagger JSON default response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID reconstructed swagger JSON default response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler

type GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler interface {
	Handle(GetAPIInventoryAPIIDReconstructedSwaggerJSONParams) middleware.Responder
}

GetAPIInventoryAPIIDReconstructedSwaggerJSONHandler interface for that can handle valid get API inventory API ID reconstructed swagger JSON params

type GetAPIInventoryAPIIDReconstructedSwaggerJSONHandlerFunc

type GetAPIInventoryAPIIDReconstructedSwaggerJSONHandlerFunc func(GetAPIInventoryAPIIDReconstructedSwaggerJSONParams) middleware.Responder

GetAPIInventoryAPIIDReconstructedSwaggerJSONHandlerFunc turns a function with the right signature into a get API inventory API ID reconstructed swagger JSON handler

func (GetAPIInventoryAPIIDReconstructedSwaggerJSONHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDReconstructedSwaggerJSONOK

type GetAPIInventoryAPIIDReconstructedSwaggerJSONOK struct {

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

GetAPIInventoryAPIIDReconstructedSwaggerJSONOK Success

swagger:response getApiInventoryApiIdReconstructedSwaggerJsonOK

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONOK

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONOK() *GetAPIInventoryAPIIDReconstructedSwaggerJSONOK

NewGetAPIInventoryAPIIDReconstructedSwaggerJSONOK creates GetAPIInventoryAPIIDReconstructedSwaggerJSONOK with default headers values

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONOK) SetPayload

func (o *GetAPIInventoryAPIIDReconstructedSwaggerJSONOK) SetPayload(payload interface{})

SetPayload sets the payload to the get Api inventory Api Id reconstructed swagger Json o k response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id reconstructed swagger Json o k response

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONOK) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDReconstructedSwaggerJSONParams

type GetAPIInventoryAPIIDReconstructedSwaggerJSONParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

GetAPIInventoryAPIIDReconstructedSwaggerJSONParams contains all the bound params for the get API inventory API ID reconstructed swagger JSON operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDReconstructedSwaggerJSON

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONParams

func NewGetAPIInventoryAPIIDReconstructedSwaggerJSONParams() GetAPIInventoryAPIIDReconstructedSwaggerJSONParams

NewGetAPIInventoryAPIIDReconstructedSwaggerJSONParams creates a new GetAPIInventoryAPIIDReconstructedSwaggerJSONParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONParams) 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 NewGetAPIInventoryAPIIDReconstructedSwaggerJSONParams() beforehand.

type GetAPIInventoryAPIIDReconstructedSwaggerJSONURL

type GetAPIInventoryAPIIDReconstructedSwaggerJSONURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDReconstructedSwaggerJSONURL generates an URL for the get API inventory API ID reconstructed swagger JSON operation

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) Must

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

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) SetBasePath

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 (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) String

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDReconstructedSwaggerJSONURL) StringFull

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDSpecs struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDSpecsHandler
}
GetAPIInventoryAPIIDSpecs swagger:route GET /apiInventory/{apiId}/specs getApiInventoryApiIdSpecs

Get provided and reconstructed open api specs for a specific API

func NewGetAPIInventoryAPIIDSpecs

func NewGetAPIInventoryAPIIDSpecs(ctx *middleware.Context, handler GetAPIInventoryAPIIDSpecsHandler) *GetAPIInventoryAPIIDSpecs

NewGetAPIInventoryAPIIDSpecs creates a new http.Handler for the get API inventory API ID specs operation

func (*GetAPIInventoryAPIIDSpecs) ServeHTTP

type GetAPIInventoryAPIIDSpecsDefault

type GetAPIInventoryAPIIDSpecsDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDSpecsDefault unknown error

swagger:response getApiInventoryApiIdSpecsDefault

func NewGetAPIInventoryAPIIDSpecsDefault

func NewGetAPIInventoryAPIIDSpecsDefault(code int) *GetAPIInventoryAPIIDSpecsDefault

NewGetAPIInventoryAPIIDSpecsDefault creates GetAPIInventoryAPIIDSpecsDefault with default headers values

func (*GetAPIInventoryAPIIDSpecsDefault) SetPayload

func (o *GetAPIInventoryAPIIDSpecsDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API inventory API ID specs default response

func (*GetAPIInventoryAPIIDSpecsDefault) SetStatusCode

func (o *GetAPIInventoryAPIIDSpecsDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory API ID specs default response

func (*GetAPIInventoryAPIIDSpecsDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID specs default response

func (*GetAPIInventoryAPIIDSpecsDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID specs default response

func (*GetAPIInventoryAPIIDSpecsDefault) WriteResponse

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

WriteResponse to the client

type GetAPIInventoryAPIIDSpecsHandler

type GetAPIInventoryAPIIDSpecsHandler interface {
	Handle(GetAPIInventoryAPIIDSpecsParams) middleware.Responder
}

GetAPIInventoryAPIIDSpecsHandler interface for that can handle valid get API inventory API ID specs params

type GetAPIInventoryAPIIDSpecsHandlerFunc

type GetAPIInventoryAPIIDSpecsHandlerFunc func(GetAPIInventoryAPIIDSpecsParams) middleware.Responder

GetAPIInventoryAPIIDSpecsHandlerFunc turns a function with the right signature into a get API inventory API ID specs handler

func (GetAPIInventoryAPIIDSpecsHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDSpecsOK

type GetAPIInventoryAPIIDSpecsOK struct {

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

GetAPIInventoryAPIIDSpecsOK Success

swagger:response getApiInventoryApiIdSpecsOK

func NewGetAPIInventoryAPIIDSpecsOK

func NewGetAPIInventoryAPIIDSpecsOK() *GetAPIInventoryAPIIDSpecsOK

NewGetAPIInventoryAPIIDSpecsOK creates GetAPIInventoryAPIIDSpecsOK with default headers values

func (*GetAPIInventoryAPIIDSpecsOK) SetPayload

func (o *GetAPIInventoryAPIIDSpecsOK) SetPayload(payload *models.OpenAPISpecs)

SetPayload sets the payload to the get Api inventory Api Id specs o k response

func (*GetAPIInventoryAPIIDSpecsOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id specs o k response

func (*GetAPIInventoryAPIIDSpecsOK) WriteResponse

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

WriteResponse to the client

type GetAPIInventoryAPIIDSpecsParams

type GetAPIInventoryAPIIDSpecsParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

GetAPIInventoryAPIIDSpecsParams contains all the bound params for the get API inventory API ID specs operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDSpecs

func NewGetAPIInventoryAPIIDSpecsParams

func NewGetAPIInventoryAPIIDSpecsParams() GetAPIInventoryAPIIDSpecsParams

NewGetAPIInventoryAPIIDSpecsParams creates a new GetAPIInventoryAPIIDSpecsParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDSpecsParams) 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 NewGetAPIInventoryAPIIDSpecsParams() beforehand.

type GetAPIInventoryAPIIDSpecsURL

type GetAPIInventoryAPIIDSpecsURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDSpecsURL generates an URL for the get API inventory API ID specs operation

func (*GetAPIInventoryAPIIDSpecsURL) Build

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

Build a url path and query string

func (*GetAPIInventoryAPIIDSpecsURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDSpecsURL) Must

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

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

func (*GetAPIInventoryAPIIDSpecsURL) SetBasePath

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

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDSpecsURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIInventoryAPIIDSuggestedReview struct {
	Context *middleware.Context
	Handler GetAPIInventoryAPIIDSuggestedReviewHandler
}
GetAPIInventoryAPIIDSuggestedReview swagger:route GET /apiInventory/{apiId}/suggestedReview getApiInventoryApiIdSuggestedReview

Get reconstructed spec for review

func NewGetAPIInventoryAPIIDSuggestedReview

func NewGetAPIInventoryAPIIDSuggestedReview(ctx *middleware.Context, handler GetAPIInventoryAPIIDSuggestedReviewHandler) *GetAPIInventoryAPIIDSuggestedReview

NewGetAPIInventoryAPIIDSuggestedReview creates a new http.Handler for the get API inventory API ID suggested review operation

func (*GetAPIInventoryAPIIDSuggestedReview) ServeHTTP

type GetAPIInventoryAPIIDSuggestedReviewDefault

type GetAPIInventoryAPIIDSuggestedReviewDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDSuggestedReviewDefault unknown error

swagger:response getApiInventoryApiIdSuggestedReviewDefault

func NewGetAPIInventoryAPIIDSuggestedReviewDefault

func NewGetAPIInventoryAPIIDSuggestedReviewDefault(code int) *GetAPIInventoryAPIIDSuggestedReviewDefault

NewGetAPIInventoryAPIIDSuggestedReviewDefault creates GetAPIInventoryAPIIDSuggestedReviewDefault with default headers values

func (*GetAPIInventoryAPIIDSuggestedReviewDefault) SetPayload

SetPayload sets the payload to the get API inventory API ID suggested review default response

func (*GetAPIInventoryAPIIDSuggestedReviewDefault) SetStatusCode

func (o *GetAPIInventoryAPIIDSuggestedReviewDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory API ID suggested review default response

func (*GetAPIInventoryAPIIDSuggestedReviewDefault) WithPayload

WithPayload adds the payload to the get API inventory API ID suggested review default response

func (*GetAPIInventoryAPIIDSuggestedReviewDefault) WithStatusCode

WithStatusCode adds the status to the get API inventory API ID suggested review default response

func (*GetAPIInventoryAPIIDSuggestedReviewDefault) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDSuggestedReviewHandler

type GetAPIInventoryAPIIDSuggestedReviewHandler interface {
	Handle(GetAPIInventoryAPIIDSuggestedReviewParams) middleware.Responder
}

GetAPIInventoryAPIIDSuggestedReviewHandler interface for that can handle valid get API inventory API ID suggested review params

type GetAPIInventoryAPIIDSuggestedReviewHandlerFunc

type GetAPIInventoryAPIIDSuggestedReviewHandlerFunc func(GetAPIInventoryAPIIDSuggestedReviewParams) middleware.Responder

GetAPIInventoryAPIIDSuggestedReviewHandlerFunc turns a function with the right signature into a get API inventory API ID suggested review handler

func (GetAPIInventoryAPIIDSuggestedReviewHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryAPIIDSuggestedReviewOK

type GetAPIInventoryAPIIDSuggestedReviewOK struct {

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

GetAPIInventoryAPIIDSuggestedReviewOK Success

swagger:response getApiInventoryApiIdSuggestedReviewOK

func NewGetAPIInventoryAPIIDSuggestedReviewOK

func NewGetAPIInventoryAPIIDSuggestedReviewOK() *GetAPIInventoryAPIIDSuggestedReviewOK

NewGetAPIInventoryAPIIDSuggestedReviewOK creates GetAPIInventoryAPIIDSuggestedReviewOK with default headers values

func (*GetAPIInventoryAPIIDSuggestedReviewOK) SetPayload

SetPayload sets the payload to the get Api inventory Api Id suggested review o k response

func (*GetAPIInventoryAPIIDSuggestedReviewOK) WithPayload

WithPayload adds the payload to the get Api inventory Api Id suggested review o k response

func (*GetAPIInventoryAPIIDSuggestedReviewOK) WriteResponse

WriteResponse to the client

type GetAPIInventoryAPIIDSuggestedReviewParams

type GetAPIInventoryAPIIDSuggestedReviewParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
}

GetAPIInventoryAPIIDSuggestedReviewParams contains all the bound params for the get API inventory API ID suggested review operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventoryAPIIDSuggestedReview

func NewGetAPIInventoryAPIIDSuggestedReviewParams

func NewGetAPIInventoryAPIIDSuggestedReviewParams() GetAPIInventoryAPIIDSuggestedReviewParams

NewGetAPIInventoryAPIIDSuggestedReviewParams creates a new GetAPIInventoryAPIIDSuggestedReviewParams object

There are no default values defined in the spec.

func (*GetAPIInventoryAPIIDSuggestedReviewParams) 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 NewGetAPIInventoryAPIIDSuggestedReviewParams() beforehand.

type GetAPIInventoryAPIIDSuggestedReviewURL

type GetAPIInventoryAPIIDSuggestedReviewURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

GetAPIInventoryAPIIDSuggestedReviewURL generates an URL for the get API inventory API ID suggested review operation

func (*GetAPIInventoryAPIIDSuggestedReviewURL) Build

Build a url path and query string

func (*GetAPIInventoryAPIIDSuggestedReviewURL) BuildFull

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

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

func (*GetAPIInventoryAPIIDSuggestedReviewURL) Must

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

func (*GetAPIInventoryAPIIDSuggestedReviewURL) SetBasePath

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 (*GetAPIInventoryAPIIDSuggestedReviewURL) String

String returns the string representation of the path with query string

func (*GetAPIInventoryAPIIDSuggestedReviewURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetAPIInventoryDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIInventoryDefault unknown error

swagger:response getApiInventoryDefault

func NewGetAPIInventoryDefault

func NewGetAPIInventoryDefault(code int) *GetAPIInventoryDefault

NewGetAPIInventoryDefault creates GetAPIInventoryDefault with default headers values

func (*GetAPIInventoryDefault) SetPayload

func (o *GetAPIInventoryDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API inventory default response

func (*GetAPIInventoryDefault) SetStatusCode

func (o *GetAPIInventoryDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API inventory default response

func (*GetAPIInventoryDefault) WithPayload

WithPayload adds the payload to the get API inventory default response

func (*GetAPIInventoryDefault) WithStatusCode

func (o *GetAPIInventoryDefault) WithStatusCode(code int) *GetAPIInventoryDefault

WithStatusCode adds the status to the get API inventory default response

func (*GetAPIInventoryDefault) WriteResponse

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

WriteResponse to the client

type GetAPIInventoryHandler

type GetAPIInventoryHandler interface {
	Handle(GetAPIInventoryParams) middleware.Responder
}

GetAPIInventoryHandler interface for that can handle valid get API inventory params

type GetAPIInventoryHandlerFunc

type GetAPIInventoryHandlerFunc func(GetAPIInventoryParams) middleware.Responder

GetAPIInventoryHandlerFunc turns a function with the right signature into a get API inventory handler

func (GetAPIInventoryHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIInventoryOK

type GetAPIInventoryOK struct {

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

GetAPIInventoryOK Success

swagger:response getApiInventoryOK

func NewGetAPIInventoryOK

func NewGetAPIInventoryOK() *GetAPIInventoryOK

NewGetAPIInventoryOK creates GetAPIInventoryOK with default headers values

func (*GetAPIInventoryOK) SetPayload

func (o *GetAPIInventoryOK) SetPayload(payload *GetAPIInventoryOKBody)

SetPayload sets the payload to the get Api inventory o k response

func (*GetAPIInventoryOK) WithPayload

func (o *GetAPIInventoryOK) WithPayload(payload *GetAPIInventoryOKBody) *GetAPIInventoryOK

WithPayload adds the payload to the get Api inventory o k response

func (*GetAPIInventoryOK) WriteResponse

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

WriteResponse to the client

type GetAPIInventoryOKBody

type GetAPIInventoryOKBody struct {

	// List of filtered APIs in the given page. List length must be lower or equal to pageSize
	Items []*models.APIInfo `json:"items"`

	// Total filtered APIs count
	// Required: true
	Total *int64 `json:"total"`
}

GetAPIInventoryOKBody get API inventory o k body

swagger:model GetAPIInventoryOKBody

func (*GetAPIInventoryOKBody) ContextValidate

func (o *GetAPIInventoryOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get API inventory o k body based on the context it is used

func (*GetAPIInventoryOKBody) MarshalBinary

func (o *GetAPIInventoryOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetAPIInventoryOKBody) UnmarshalBinary

func (o *GetAPIInventoryOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetAPIInventoryOKBody) Validate

func (o *GetAPIInventoryOKBody) Validate(formats strfmt.Registry) error

Validate validates this get API inventory o k body

type GetAPIInventoryParams

type GetAPIInventoryParams struct {

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

	/*api id to return
	  In: query
	*/
	APIID *string
	/*
	  In: query
	*/
	HasProvidedSpecIs *bool
	/*
	  In: query
	*/
	HasReconstructedSpecIs *bool
	/*
	  In: query
	*/
	NameContains []string
	/*
	  In: query
	*/
	NameEnd *string
	/*
	  In: query
	*/
	NameIsNot []string
	/*
	  In: query
	*/
	NameIs []string
	/*
	  In: query
	*/
	NameStart *string
	/*Page number of the query
	  Required: true
	  In: query
	*/
	Page int64
	/*Maximum items to return
	  Required: true
	  Maximum: 50
	  Minimum: 1
	  In: query
	*/
	PageSize int64
	/*
	  In: query
	*/
	PortIsNot []string
	/*
	  In: query
	*/
	PortIs []string
	/*Sorting direction
	  In: query
	  Default: "ASC"
	*/
	SortDir *string
	/*Sort key
	  Required: true
	  In: query
	*/
	SortKey string
	/*API type [INTERNAL or EXTERNAL]
	  Required: true
	  In: query
	*/
	Type string
}

GetAPIInventoryParams contains all the bound params for the get API inventory operation typically these are obtained from a http.Request

swagger:parameters GetAPIInventory

func NewGetAPIInventoryParams

func NewGetAPIInventoryParams() GetAPIInventoryParams

NewGetAPIInventoryParams creates a new GetAPIInventoryParams object with the default values initialized.

func (*GetAPIInventoryParams) BindRequest

func (o *GetAPIInventoryParams) 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 NewGetAPIInventoryParams() beforehand.

type GetAPIInventoryURL

type GetAPIInventoryURL struct {
	APIID                  *string
	HasProvidedSpecIs      *bool
	HasReconstructedSpecIs *bool
	NameContains           []string
	NameEnd                *string
	NameIsNot              []string
	NameIs                 []string
	NameStart              *string
	Page                   int64
	PageSize               int64
	PortIsNot              []string
	PortIs                 []string
	SortDir                *string
	SortKey                string
	Type                   string
	// contains filtered or unexported fields
}

GetAPIInventoryURL generates an URL for the get API inventory operation

func (*GetAPIInventoryURL) Build

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

Build a url path and query string

func (*GetAPIInventoryURL) BuildFull

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

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

func (*GetAPIInventoryURL) Must

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

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

func (*GetAPIInventoryURL) SetBasePath

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

func (o *GetAPIInventoryURL) String() string

String returns the string representation of the path with query string

func (*GetAPIInventoryURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetAPIInventoryURL) WithBasePath

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

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 GetAPIUsageHitCount

type GetAPIUsageHitCount struct {
	Context *middleware.Context
	Handler GetAPIUsageHitCountHandler
}
GetAPIUsageHitCount swagger:route GET /apiUsage/hitCount getApiUsageHitCount

Get a hit count within a selected timeframe for the filtered API events

func NewGetAPIUsageHitCount

func NewGetAPIUsageHitCount(ctx *middleware.Context, handler GetAPIUsageHitCountHandler) *GetAPIUsageHitCount

NewGetAPIUsageHitCount creates a new http.Handler for the get API usage hit count operation

func (*GetAPIUsageHitCount) ServeHTTP

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

type GetAPIUsageHitCountDefault

type GetAPIUsageHitCountDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetAPIUsageHitCountDefault unknown error

swagger:response getApiUsageHitCountDefault

func NewGetAPIUsageHitCountDefault

func NewGetAPIUsageHitCountDefault(code int) *GetAPIUsageHitCountDefault

NewGetAPIUsageHitCountDefault creates GetAPIUsageHitCountDefault with default headers values

func (*GetAPIUsageHitCountDefault) SetPayload

func (o *GetAPIUsageHitCountDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get API usage hit count default response

func (*GetAPIUsageHitCountDefault) SetStatusCode

func (o *GetAPIUsageHitCountDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get API usage hit count default response

func (*GetAPIUsageHitCountDefault) WithPayload

WithPayload adds the payload to the get API usage hit count default response

func (*GetAPIUsageHitCountDefault) WithStatusCode

WithStatusCode adds the status to the get API usage hit count default response

func (*GetAPIUsageHitCountDefault) WriteResponse

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

WriteResponse to the client

type GetAPIUsageHitCountHandler

type GetAPIUsageHitCountHandler interface {
	Handle(GetAPIUsageHitCountParams) middleware.Responder
}

GetAPIUsageHitCountHandler interface for that can handle valid get API usage hit count params

type GetAPIUsageHitCountHandlerFunc

type GetAPIUsageHitCountHandlerFunc func(GetAPIUsageHitCountParams) middleware.Responder

GetAPIUsageHitCountHandlerFunc turns a function with the right signature into a get API usage hit count handler

func (GetAPIUsageHitCountHandlerFunc) Handle

Handle executing the request and returning a response

type GetAPIUsageHitCountOK

type GetAPIUsageHitCountOK struct {

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

GetAPIUsageHitCountOK Success

swagger:response getApiUsageHitCountOK

func NewGetAPIUsageHitCountOK

func NewGetAPIUsageHitCountOK() *GetAPIUsageHitCountOK

NewGetAPIUsageHitCountOK creates GetAPIUsageHitCountOK with default headers values

func (*GetAPIUsageHitCountOK) SetPayload

func (o *GetAPIUsageHitCountOK) SetPayload(payload []*models.HitCount)

SetPayload sets the payload to the get Api usage hit count o k response

func (*GetAPIUsageHitCountOK) WithPayload

func (o *GetAPIUsageHitCountOK) WithPayload(payload []*models.HitCount) *GetAPIUsageHitCountOK

WithPayload adds the payload to the get Api usage hit count o k response

func (*GetAPIUsageHitCountOK) WriteResponse

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

WriteResponse to the client

type GetAPIUsageHitCountParams

type GetAPIUsageHitCountParams struct {

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

	/*
	  In: query
	*/
	DestinationIPIsNot []string
	/*
	  In: query
	*/
	DestinationIPIs []string
	/*
	  In: query
	*/
	DestinationPortIsNot []string
	/*
	  In: query
	*/
	DestinationPortIs []string
	/*End time of the query
	  Required: true
	  In: query
	*/
	EndTime strfmt.DateTime
	/*
	  In: query
	*/
	HasSpecDiffIs *bool
	/*
	  In: query
	*/
	MethodIs []string
	/*
	  In: query
	*/
	PathContains []string
	/*
	  In: query
	*/
	PathEnd *string
	/*
	  In: query
	*/
	PathIsNot []string
	/*
	  In: query
	*/
	PathIs []string
	/*
	  In: query
	*/
	PathStart *string
	/*
	  In: query
	*/
	ProvidedPathIDIs []string
	/*
	  In: query
	*/
	ReconstructedPathIDIs []string
	/*
	  Required: true
	  In: query
	*/
	ShowNonAPI bool
	/*
	  In: query
	*/
	SourceIPIsNot []string
	/*
	  In: query
	*/
	SourceIPIs []string
	/*
	  In: query
	*/
	SpecDiffTypeIs []string
	/*
	  In: query
	*/
	SpecContains []string
	/*
	  In: query
	*/
	SpecEnd *string
	/*
	  In: query
	*/
	SpecIsNot []string
	/*
	  In: query
	*/
	SpecIs []string
	/*
	  In: query
	*/
	SpecStart *string
	/*Start time of the query
	  Required: true
	  In: query
	*/
	StartTime strfmt.DateTime
	/*greater than or equal
	  In: query
	*/
	StatusCodeGte *string
	/*
	  In: query
	*/
	StatusCodeIsNot []string
	/*
	  In: query
	*/
	StatusCodeIs []string
	/*less than or equal
	  In: query
	*/
	StatusCodeLte *string
}

GetAPIUsageHitCountParams contains all the bound params for the get API usage hit count operation typically these are obtained from a http.Request

swagger:parameters GetAPIUsageHitCount

func NewGetAPIUsageHitCountParams

func NewGetAPIUsageHitCountParams() GetAPIUsageHitCountParams

NewGetAPIUsageHitCountParams creates a new GetAPIUsageHitCountParams object

There are no default values defined in the spec.

func (*GetAPIUsageHitCountParams) 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 NewGetAPIUsageHitCountParams() beforehand.

type GetAPIUsageHitCountURL

type GetAPIUsageHitCountURL struct {
	DestinationIPIsNot    []string
	DestinationIPIs       []string
	DestinationPortIsNot  []string
	DestinationPortIs     []string
	EndTime               strfmt.DateTime
	HasSpecDiffIs         *bool
	MethodIs              []string
	PathContains          []string
	PathEnd               *string
	PathIsNot             []string
	PathIs                []string
	PathStart             *string
	ProvidedPathIDIs      []string
	ReconstructedPathIDIs []string
	ShowNonAPI            bool
	SourceIPIsNot         []string
	SourceIPIs            []string
	SpecDiffTypeIs        []string
	SpecContains          []string
	SpecEnd               *string
	SpecIsNot             []string
	SpecIs                []string
	SpecStart             *string
	StartTime             strfmt.DateTime
	StatusCodeGte         *string
	StatusCodeIsNot       []string
	StatusCodeIs          []string
	StatusCodeLte         *string
	// contains filtered or unexported fields
}

GetAPIUsageHitCountURL generates an URL for the get API usage hit count operation

func (*GetAPIUsageHitCountURL) Build

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

Build a url path and query string

func (*GetAPIUsageHitCountURL) BuildFull

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

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

func (*GetAPIUsageHitCountURL) Must

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

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

func (*GetAPIUsageHitCountURL) SetBasePath

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

func (o *GetAPIUsageHitCountURL) String() string

String returns the string representation of the path with query string

func (*GetAPIUsageHitCountURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetControlTraceSources struct {
	Context *middleware.Context
	Handler GetControlTraceSourcesHandler
}
GetControlTraceSources swagger:route GET /control/traceSources getControlTraceSources

List of configured trace sources

func NewGetControlTraceSources

func NewGetControlTraceSources(ctx *middleware.Context, handler GetControlTraceSourcesHandler) *GetControlTraceSources

NewGetControlTraceSources creates a new http.Handler for the get control trace sources operation

func (*GetControlTraceSources) ServeHTTP

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

type GetControlTraceSourcesDefault

type GetControlTraceSourcesDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetControlTraceSourcesDefault unknown error

swagger:response getControlTraceSourcesDefault

func NewGetControlTraceSourcesDefault

func NewGetControlTraceSourcesDefault(code int) *GetControlTraceSourcesDefault

NewGetControlTraceSourcesDefault creates GetControlTraceSourcesDefault with default headers values

func (*GetControlTraceSourcesDefault) SetPayload

func (o *GetControlTraceSourcesDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get control trace sources default response

func (*GetControlTraceSourcesDefault) SetStatusCode

func (o *GetControlTraceSourcesDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get control trace sources default response

func (*GetControlTraceSourcesDefault) WithPayload

WithPayload adds the payload to the get control trace sources default response

func (*GetControlTraceSourcesDefault) WithStatusCode

WithStatusCode adds the status to the get control trace sources default response

func (*GetControlTraceSourcesDefault) WriteResponse

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

WriteResponse to the client

type GetControlTraceSourcesHandler

type GetControlTraceSourcesHandler interface {
	Handle(GetControlTraceSourcesParams) middleware.Responder
}

GetControlTraceSourcesHandler interface for that can handle valid get control trace sources params

type GetControlTraceSourcesHandlerFunc

type GetControlTraceSourcesHandlerFunc func(GetControlTraceSourcesParams) middleware.Responder

GetControlTraceSourcesHandlerFunc turns a function with the right signature into a get control trace sources handler

func (GetControlTraceSourcesHandlerFunc) Handle

Handle executing the request and returning a response

type GetControlTraceSourcesOK

type GetControlTraceSourcesOK struct {

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

GetControlTraceSourcesOK Success

swagger:response getControlTraceSourcesOK

func NewGetControlTraceSourcesOK

func NewGetControlTraceSourcesOK() *GetControlTraceSourcesOK

NewGetControlTraceSourcesOK creates GetControlTraceSourcesOK with default headers values

func (*GetControlTraceSourcesOK) SetPayload

SetPayload sets the payload to the get control trace sources o k response

func (*GetControlTraceSourcesOK) WithPayload

WithPayload adds the payload to the get control trace sources o k response

func (*GetControlTraceSourcesOK) WriteResponse

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

WriteResponse to the client

type GetControlTraceSourcesOKBody

type GetControlTraceSourcesOKBody struct {

	// List of trace sources
	// Required: true
	TraceSources []*models.TraceSource `json:"trace_sources"`
}

GetControlTraceSourcesOKBody get control trace sources o k body

swagger:model GetControlTraceSourcesOKBody

func (*GetControlTraceSourcesOKBody) ContextValidate

func (o *GetControlTraceSourcesOKBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validate this get control trace sources o k body based on the context it is used

func (*GetControlTraceSourcesOKBody) MarshalBinary

func (o *GetControlTraceSourcesOKBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*GetControlTraceSourcesOKBody) UnmarshalBinary

func (o *GetControlTraceSourcesOKBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*GetControlTraceSourcesOKBody) Validate

func (o *GetControlTraceSourcesOKBody) Validate(formats strfmt.Registry) error

Validate validates this get control trace sources o k body

type GetControlTraceSourcesParams

type GetControlTraceSourcesParams struct {

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

GetControlTraceSourcesParams contains all the bound params for the get control trace sources operation typically these are obtained from a http.Request

swagger:parameters GetControlTraceSources

func NewGetControlTraceSourcesParams

func NewGetControlTraceSourcesParams() GetControlTraceSourcesParams

NewGetControlTraceSourcesParams creates a new GetControlTraceSourcesParams object

There are no default values defined in the spec.

func (*GetControlTraceSourcesParams) 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 NewGetControlTraceSourcesParams() beforehand.

type GetControlTraceSourcesTraceSourceID

type GetControlTraceSourcesTraceSourceID struct {
	Context *middleware.Context
	Handler GetControlTraceSourcesTraceSourceIDHandler
}
GetControlTraceSourcesTraceSourceID swagger:route GET /control/traceSources/{traceSourceId} getControlTraceSourcesTraceSourceId

Get Trace Source information

func NewGetControlTraceSourcesTraceSourceID

func NewGetControlTraceSourcesTraceSourceID(ctx *middleware.Context, handler GetControlTraceSourcesTraceSourceIDHandler) *GetControlTraceSourcesTraceSourceID

NewGetControlTraceSourcesTraceSourceID creates a new http.Handler for the get control trace sources trace source ID operation

func (*GetControlTraceSourcesTraceSourceID) ServeHTTP

type GetControlTraceSourcesTraceSourceIDDefault

type GetControlTraceSourcesTraceSourceIDDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetControlTraceSourcesTraceSourceIDDefault unknown error

swagger:response getControlTraceSourcesTraceSourceIdDefault

func NewGetControlTraceSourcesTraceSourceIDDefault

func NewGetControlTraceSourcesTraceSourceIDDefault(code int) *GetControlTraceSourcesTraceSourceIDDefault

NewGetControlTraceSourcesTraceSourceIDDefault creates GetControlTraceSourcesTraceSourceIDDefault with default headers values

func (*GetControlTraceSourcesTraceSourceIDDefault) SetPayload

SetPayload sets the payload to the get control trace sources trace source ID default response

func (*GetControlTraceSourcesTraceSourceIDDefault) SetStatusCode

func (o *GetControlTraceSourcesTraceSourceIDDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get control trace sources trace source ID default response

func (*GetControlTraceSourcesTraceSourceIDDefault) WithPayload

WithPayload adds the payload to the get control trace sources trace source ID default response

func (*GetControlTraceSourcesTraceSourceIDDefault) WithStatusCode

WithStatusCode adds the status to the get control trace sources trace source ID default response

func (*GetControlTraceSourcesTraceSourceIDDefault) WriteResponse

WriteResponse to the client

type GetControlTraceSourcesTraceSourceIDHandler

type GetControlTraceSourcesTraceSourceIDHandler interface {
	Handle(GetControlTraceSourcesTraceSourceIDParams) middleware.Responder
}

GetControlTraceSourcesTraceSourceIDHandler interface for that can handle valid get control trace sources trace source ID params

type GetControlTraceSourcesTraceSourceIDHandlerFunc

type GetControlTraceSourcesTraceSourceIDHandlerFunc func(GetControlTraceSourcesTraceSourceIDParams) middleware.Responder

GetControlTraceSourcesTraceSourceIDHandlerFunc turns a function with the right signature into a get control trace sources trace source ID handler

func (GetControlTraceSourcesTraceSourceIDHandlerFunc) Handle

Handle executing the request and returning a response

type GetControlTraceSourcesTraceSourceIDNotFound

type GetControlTraceSourcesTraceSourceIDNotFound struct {

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

GetControlTraceSourcesTraceSourceIDNotFound Trace Source not found

swagger:response getControlTraceSourcesTraceSourceIdNotFound

func NewGetControlTraceSourcesTraceSourceIDNotFound

func NewGetControlTraceSourcesTraceSourceIDNotFound() *GetControlTraceSourcesTraceSourceIDNotFound

NewGetControlTraceSourcesTraceSourceIDNotFound creates GetControlTraceSourcesTraceSourceIDNotFound with default headers values

func (*GetControlTraceSourcesTraceSourceIDNotFound) SetPayload

SetPayload sets the payload to the get control trace sources trace source Id not found response

func (*GetControlTraceSourcesTraceSourceIDNotFound) WithPayload

WithPayload adds the payload to the get control trace sources trace source Id not found response

func (*GetControlTraceSourcesTraceSourceIDNotFound) WriteResponse

WriteResponse to the client

type GetControlTraceSourcesTraceSourceIDOK

type GetControlTraceSourcesTraceSourceIDOK struct {

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

GetControlTraceSourcesTraceSourceIDOK Trace Source information

swagger:response getControlTraceSourcesTraceSourceIdOK

func NewGetControlTraceSourcesTraceSourceIDOK

func NewGetControlTraceSourcesTraceSourceIDOK() *GetControlTraceSourcesTraceSourceIDOK

NewGetControlTraceSourcesTraceSourceIDOK creates GetControlTraceSourcesTraceSourceIDOK with default headers values

func (*GetControlTraceSourcesTraceSourceIDOK) SetPayload

SetPayload sets the payload to the get control trace sources trace source Id o k response

func (*GetControlTraceSourcesTraceSourceIDOK) WithPayload

WithPayload adds the payload to the get control trace sources trace source Id o k response

func (*GetControlTraceSourcesTraceSourceIDOK) WriteResponse

WriteResponse to the client

type GetControlTraceSourcesTraceSourceIDParams

type GetControlTraceSourcesTraceSourceIDParams struct {

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

	/*Trace Source ID
	  Required: true
	  In: path
	*/
	TraceSourceID strfmt.UUID
}

GetControlTraceSourcesTraceSourceIDParams contains all the bound params for the get control trace sources trace source ID operation typically these are obtained from a http.Request

swagger:parameters GetControlTraceSourcesTraceSourceID

func NewGetControlTraceSourcesTraceSourceIDParams

func NewGetControlTraceSourcesTraceSourceIDParams() GetControlTraceSourcesTraceSourceIDParams

NewGetControlTraceSourcesTraceSourceIDParams creates a new GetControlTraceSourcesTraceSourceIDParams object

There are no default values defined in the spec.

func (*GetControlTraceSourcesTraceSourceIDParams) 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 NewGetControlTraceSourcesTraceSourceIDParams() beforehand.

type GetControlTraceSourcesTraceSourceIDURL

type GetControlTraceSourcesTraceSourceIDURL struct {
	TraceSourceID strfmt.UUID
	// contains filtered or unexported fields
}

GetControlTraceSourcesTraceSourceIDURL generates an URL for the get control trace sources trace source ID operation

func (*GetControlTraceSourcesTraceSourceIDURL) Build

Build a url path and query string

func (*GetControlTraceSourcesTraceSourceIDURL) BuildFull

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

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

func (*GetControlTraceSourcesTraceSourceIDURL) Must

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

func (*GetControlTraceSourcesTraceSourceIDURL) SetBasePath

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 (*GetControlTraceSourcesTraceSourceIDURL) String

String returns the string representation of the path with query string

func (*GetControlTraceSourcesTraceSourceIDURL) StringFull

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

StringFull returns the string representation of a complete url

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

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

GetControlTraceSourcesURL generates an URL for the get control trace sources operation

func (*GetControlTraceSourcesURL) Build

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

Build a url path and query string

func (*GetControlTraceSourcesURL) BuildFull

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

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

func (*GetControlTraceSourcesURL) Must

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

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

func (*GetControlTraceSourcesURL) SetBasePath

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

func (o *GetControlTraceSourcesURL) String() string

String returns the string representation of the path with query string

func (*GetControlTraceSourcesURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetDashboardAPIUsage struct {
	Context *middleware.Context
	Handler GetDashboardAPIUsageHandler
}
GetDashboardAPIUsage swagger:route GET /dashboard/apiUsage getDashboardApiUsage

Get API usage

func NewGetDashboardAPIUsage

func NewGetDashboardAPIUsage(ctx *middleware.Context, handler GetDashboardAPIUsageHandler) *GetDashboardAPIUsage

NewGetDashboardAPIUsage creates a new http.Handler for the get dashboard API usage operation

func (*GetDashboardAPIUsage) ServeHTTP

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

type GetDashboardAPIUsageDefault

type GetDashboardAPIUsageDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetDashboardAPIUsageDefault unknown error

swagger:response getDashboardApiUsageDefault

func NewGetDashboardAPIUsageDefault

func NewGetDashboardAPIUsageDefault(code int) *GetDashboardAPIUsageDefault

NewGetDashboardAPIUsageDefault creates GetDashboardAPIUsageDefault with default headers values

func (*GetDashboardAPIUsageDefault) SetPayload

func (o *GetDashboardAPIUsageDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get dashboard API usage default response

func (*GetDashboardAPIUsageDefault) SetStatusCode

func (o *GetDashboardAPIUsageDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get dashboard API usage default response

func (*GetDashboardAPIUsageDefault) WithPayload

WithPayload adds the payload to the get dashboard API usage default response

func (*GetDashboardAPIUsageDefault) WithStatusCode

WithStatusCode adds the status to the get dashboard API usage default response

func (*GetDashboardAPIUsageDefault) WriteResponse

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

WriteResponse to the client

type GetDashboardAPIUsageHandler

type GetDashboardAPIUsageHandler interface {
	Handle(GetDashboardAPIUsageParams) middleware.Responder
}

GetDashboardAPIUsageHandler interface for that can handle valid get dashboard API usage params

type GetDashboardAPIUsageHandlerFunc

type GetDashboardAPIUsageHandlerFunc func(GetDashboardAPIUsageParams) middleware.Responder

GetDashboardAPIUsageHandlerFunc turns a function with the right signature into a get dashboard API usage handler

func (GetDashboardAPIUsageHandlerFunc) Handle

Handle executing the request and returning a response

type GetDashboardAPIUsageLatestDiffs

type GetDashboardAPIUsageLatestDiffs struct {
	Context *middleware.Context
	Handler GetDashboardAPIUsageLatestDiffsHandler
}
GetDashboardAPIUsageLatestDiffs swagger:route GET /dashboard/apiUsage/latestDiffs getDashboardApiUsageLatestDiffs

Get latest spec diffs

func NewGetDashboardAPIUsageLatestDiffs

func NewGetDashboardAPIUsageLatestDiffs(ctx *middleware.Context, handler GetDashboardAPIUsageLatestDiffsHandler) *GetDashboardAPIUsageLatestDiffs

NewGetDashboardAPIUsageLatestDiffs creates a new http.Handler for the get dashboard API usage latest diffs operation

func (*GetDashboardAPIUsageLatestDiffs) ServeHTTP

type GetDashboardAPIUsageLatestDiffsDefault

type GetDashboardAPIUsageLatestDiffsDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetDashboardAPIUsageLatestDiffsDefault unknown error

swagger:response getDashboardApiUsageLatestDiffsDefault

func NewGetDashboardAPIUsageLatestDiffsDefault

func NewGetDashboardAPIUsageLatestDiffsDefault(code int) *GetDashboardAPIUsageLatestDiffsDefault

NewGetDashboardAPIUsageLatestDiffsDefault creates GetDashboardAPIUsageLatestDiffsDefault with default headers values

func (*GetDashboardAPIUsageLatestDiffsDefault) SetPayload

SetPayload sets the payload to the get dashboard API usage latest diffs default response

func (*GetDashboardAPIUsageLatestDiffsDefault) SetStatusCode

func (o *GetDashboardAPIUsageLatestDiffsDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get dashboard API usage latest diffs default response

func (*GetDashboardAPIUsageLatestDiffsDefault) WithPayload

WithPayload adds the payload to the get dashboard API usage latest diffs default response

func (*GetDashboardAPIUsageLatestDiffsDefault) WithStatusCode

WithStatusCode adds the status to the get dashboard API usage latest diffs default response

func (*GetDashboardAPIUsageLatestDiffsDefault) WriteResponse

WriteResponse to the client

type GetDashboardAPIUsageLatestDiffsHandler

type GetDashboardAPIUsageLatestDiffsHandler interface {
	Handle(GetDashboardAPIUsageLatestDiffsParams) middleware.Responder
}

GetDashboardAPIUsageLatestDiffsHandler interface for that can handle valid get dashboard API usage latest diffs params

type GetDashboardAPIUsageLatestDiffsHandlerFunc

type GetDashboardAPIUsageLatestDiffsHandlerFunc func(GetDashboardAPIUsageLatestDiffsParams) middleware.Responder

GetDashboardAPIUsageLatestDiffsHandlerFunc turns a function with the right signature into a get dashboard API usage latest diffs handler

func (GetDashboardAPIUsageLatestDiffsHandlerFunc) Handle

Handle executing the request and returning a response

type GetDashboardAPIUsageLatestDiffsOK

type GetDashboardAPIUsageLatestDiffsOK struct {

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

GetDashboardAPIUsageLatestDiffsOK Success

swagger:response getDashboardApiUsageLatestDiffsOK

func NewGetDashboardAPIUsageLatestDiffsOK

func NewGetDashboardAPIUsageLatestDiffsOK() *GetDashboardAPIUsageLatestDiffsOK

NewGetDashboardAPIUsageLatestDiffsOK creates GetDashboardAPIUsageLatestDiffsOK with default headers values

func (*GetDashboardAPIUsageLatestDiffsOK) SetPayload

func (o *GetDashboardAPIUsageLatestDiffsOK) SetPayload(payload []*models.SpecDiffTime)

SetPayload sets the payload to the get dashboard Api usage latest diffs o k response

func (*GetDashboardAPIUsageLatestDiffsOK) WithPayload

WithPayload adds the payload to the get dashboard Api usage latest diffs o k response

func (*GetDashboardAPIUsageLatestDiffsOK) WriteResponse

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

WriteResponse to the client

type GetDashboardAPIUsageLatestDiffsParams

type GetDashboardAPIUsageLatestDiffsParams struct {

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

GetDashboardAPIUsageLatestDiffsParams contains all the bound params for the get dashboard API usage latest diffs operation typically these are obtained from a http.Request

swagger:parameters GetDashboardAPIUsageLatestDiffs

func NewGetDashboardAPIUsageLatestDiffsParams

func NewGetDashboardAPIUsageLatestDiffsParams() GetDashboardAPIUsageLatestDiffsParams

NewGetDashboardAPIUsageLatestDiffsParams creates a new GetDashboardAPIUsageLatestDiffsParams object

There are no default values defined in the spec.

func (*GetDashboardAPIUsageLatestDiffsParams) 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 NewGetDashboardAPIUsageLatestDiffsParams() beforehand.

type GetDashboardAPIUsageLatestDiffsURL

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

GetDashboardAPIUsageLatestDiffsURL generates an URL for the get dashboard API usage latest diffs operation

func (*GetDashboardAPIUsageLatestDiffsURL) Build

Build a url path and query string

func (*GetDashboardAPIUsageLatestDiffsURL) BuildFull

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

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

func (*GetDashboardAPIUsageLatestDiffsURL) Must

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

func (*GetDashboardAPIUsageLatestDiffsURL) SetBasePath

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

String returns the string representation of the path with query string

func (*GetDashboardAPIUsageLatestDiffsURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetDashboardAPIUsageMostUsed struct {
	Context *middleware.Context
	Handler GetDashboardAPIUsageMostUsedHandler
}
GetDashboardAPIUsageMostUsed swagger:route GET /dashboard/apiUsage/mostUsed getDashboardApiUsageMostUsed

Get most used APIs

func NewGetDashboardAPIUsageMostUsed

func NewGetDashboardAPIUsageMostUsed(ctx *middleware.Context, handler GetDashboardAPIUsageMostUsedHandler) *GetDashboardAPIUsageMostUsed

NewGetDashboardAPIUsageMostUsed creates a new http.Handler for the get dashboard API usage most used operation

func (*GetDashboardAPIUsageMostUsed) ServeHTTP

type GetDashboardAPIUsageMostUsedDefault

type GetDashboardAPIUsageMostUsedDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

GetDashboardAPIUsageMostUsedDefault unknown error

swagger:response getDashboardApiUsageMostUsedDefault

func NewGetDashboardAPIUsageMostUsedDefault

func NewGetDashboardAPIUsageMostUsedDefault(code int) *GetDashboardAPIUsageMostUsedDefault

NewGetDashboardAPIUsageMostUsedDefault creates GetDashboardAPIUsageMostUsedDefault with default headers values

func (*GetDashboardAPIUsageMostUsedDefault) SetPayload

func (o *GetDashboardAPIUsageMostUsedDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the get dashboard API usage most used default response

func (*GetDashboardAPIUsageMostUsedDefault) SetStatusCode

func (o *GetDashboardAPIUsageMostUsedDefault) SetStatusCode(code int)

SetStatusCode sets the status to the get dashboard API usage most used default response

func (*GetDashboardAPIUsageMostUsedDefault) WithPayload

WithPayload adds the payload to the get dashboard API usage most used default response

func (*GetDashboardAPIUsageMostUsedDefault) WithStatusCode

WithStatusCode adds the status to the get dashboard API usage most used default response

func (*GetDashboardAPIUsageMostUsedDefault) WriteResponse

WriteResponse to the client

type GetDashboardAPIUsageMostUsedHandler

type GetDashboardAPIUsageMostUsedHandler interface {
	Handle(GetDashboardAPIUsageMostUsedParams) middleware.Responder
}

GetDashboardAPIUsageMostUsedHandler interface for that can handle valid get dashboard API usage most used params

type GetDashboardAPIUsageMostUsedHandlerFunc

type GetDashboardAPIUsageMostUsedHandlerFunc func(GetDashboardAPIUsageMostUsedParams) middleware.Responder

GetDashboardAPIUsageMostUsedHandlerFunc turns a function with the right signature into a get dashboard API usage most used handler

func (GetDashboardAPIUsageMostUsedHandlerFunc) Handle

Handle executing the request and returning a response

type GetDashboardAPIUsageMostUsedOK

type GetDashboardAPIUsageMostUsedOK struct {

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

GetDashboardAPIUsageMostUsedOK Success

swagger:response getDashboardApiUsageMostUsedOK

func NewGetDashboardAPIUsageMostUsedOK

func NewGetDashboardAPIUsageMostUsedOK() *GetDashboardAPIUsageMostUsedOK

NewGetDashboardAPIUsageMostUsedOK creates GetDashboardAPIUsageMostUsedOK with default headers values

func (*GetDashboardAPIUsageMostUsedOK) SetPayload

func (o *GetDashboardAPIUsageMostUsedOK) SetPayload(payload []*models.APICount)

SetPayload sets the payload to the get dashboard Api usage most used o k response

func (*GetDashboardAPIUsageMostUsedOK) WithPayload

WithPayload adds the payload to the get dashboard Api usage most used o k response

func (*GetDashboardAPIUsageMostUsedOK) WriteResponse

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

WriteResponse to the client

type GetDashboardAPIUsageMostUsedParams

type GetDashboardAPIUsageMostUsedParams struct {

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

GetDashboardAPIUsageMostUsedParams contains all the bound params for the get dashboard API usage most used operation typically these are obtained from a http.Request

swagger:parameters GetDashboardAPIUsageMostUsed

func NewGetDashboardAPIUsageMostUsedParams

func NewGetDashboardAPIUsageMostUsedParams() GetDashboardAPIUsageMostUsedParams

NewGetDashboardAPIUsageMostUsedParams creates a new GetDashboardAPIUsageMostUsedParams object

There are no default values defined in the spec.

func (*GetDashboardAPIUsageMostUsedParams) 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 NewGetDashboardAPIUsageMostUsedParams() beforehand.

type GetDashboardAPIUsageMostUsedURL

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

GetDashboardAPIUsageMostUsedURL generates an URL for the get dashboard API usage most used operation

func (*GetDashboardAPIUsageMostUsedURL) Build

Build a url path and query string

func (*GetDashboardAPIUsageMostUsedURL) BuildFull

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

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

func (*GetDashboardAPIUsageMostUsedURL) Must

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

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

func (*GetDashboardAPIUsageMostUsedURL) SetBasePath

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

String returns the string representation of the path with query string

func (*GetDashboardAPIUsageMostUsedURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetDashboardAPIUsageOK struct {

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

GetDashboardAPIUsageOK Success

swagger:response getDashboardApiUsageOK

func NewGetDashboardAPIUsageOK

func NewGetDashboardAPIUsageOK() *GetDashboardAPIUsageOK

NewGetDashboardAPIUsageOK creates GetDashboardAPIUsageOK with default headers values

func (*GetDashboardAPIUsageOK) SetPayload

func (o *GetDashboardAPIUsageOK) SetPayload(payload *models.APIUsages)

SetPayload sets the payload to the get dashboard Api usage o k response

func (*GetDashboardAPIUsageOK) WithPayload

WithPayload adds the payload to the get dashboard Api usage o k response

func (*GetDashboardAPIUsageOK) WriteResponse

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

WriteResponse to the client

type GetDashboardAPIUsageParams

type GetDashboardAPIUsageParams struct {

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

	/*End time of the query
	  Required: true
	  In: query
	*/
	EndTime strfmt.DateTime
	/*Start time of the query
	  Required: true
	  In: query
	*/
	StartTime strfmt.DateTime
}

GetDashboardAPIUsageParams contains all the bound params for the get dashboard API usage operation typically these are obtained from a http.Request

swagger:parameters GetDashboardAPIUsage

func NewGetDashboardAPIUsageParams

func NewGetDashboardAPIUsageParams() GetDashboardAPIUsageParams

NewGetDashboardAPIUsageParams creates a new GetDashboardAPIUsageParams object

There are no default values defined in the spec.

func (*GetDashboardAPIUsageParams) 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 NewGetDashboardAPIUsageParams() beforehand.

type GetDashboardAPIUsageURL

type GetDashboardAPIUsageURL struct {
	EndTime   strfmt.DateTime
	StartTime strfmt.DateTime
	// contains filtered or unexported fields
}

GetDashboardAPIUsageURL generates an URL for the get dashboard API usage operation

func (*GetDashboardAPIUsageURL) Build

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

Build a url path and query string

func (*GetDashboardAPIUsageURL) BuildFull

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

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

func (*GetDashboardAPIUsageURL) Must

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

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

func (*GetDashboardAPIUsageURL) SetBasePath

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

func (o *GetDashboardAPIUsageURL) String() string

String returns the string representation of the path with query string

func (*GetDashboardAPIUsageURL) StringFull

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

StringFull returns the string representation of a complete url

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

type GetFeatures struct {
	Context *middleware.Context
	Handler GetFeaturesHandler
}
GetFeatures swagger:route GET /features getFeatures

Get the list of APIClarity features and for each feature the list of API hosts (in the form 'host:port') the feature requires to get trace for

func NewGetFeatures

func NewGetFeatures(ctx *middleware.Context, handler GetFeaturesHandler) *GetFeatures

NewGetFeatures creates a new http.Handler for the get features operation

func (*GetFeatures) ServeHTTP

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

type GetFeaturesHandler

type GetFeaturesHandler interface {
	Handle(GetFeaturesParams) middleware.Responder
}

GetFeaturesHandler interface for that can handle valid get features params

type GetFeaturesHandlerFunc

type GetFeaturesHandlerFunc func(GetFeaturesParams) middleware.Responder

GetFeaturesHandlerFunc turns a function with the right signature into a get features handler

func (GetFeaturesHandlerFunc) Handle

Handle executing the request and returning a response

type GetFeaturesOK

type GetFeaturesOK struct {

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

GetFeaturesOK Success

swagger:response getFeaturesOK

func NewGetFeaturesOK

func NewGetFeaturesOK() *GetFeaturesOK

NewGetFeaturesOK creates GetFeaturesOK with default headers values

func (*GetFeaturesOK) SetPayload

func (o *GetFeaturesOK) SetPayload(payload *models.APIClarityFeatureList)

SetPayload sets the payload to the get features o k response

func (*GetFeaturesOK) WithPayload

func (o *GetFeaturesOK) WithPayload(payload *models.APIClarityFeatureList) *GetFeaturesOK

WithPayload adds the payload to the get features o k response

func (*GetFeaturesOK) WriteResponse

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

WriteResponse to the client

type GetFeaturesParams

type GetFeaturesParams struct {

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

GetFeaturesParams contains all the bound params for the get features operation typically these are obtained from a http.Request

swagger:parameters GetFeatures

func NewGetFeaturesParams

func NewGetFeaturesParams() GetFeaturesParams

NewGetFeaturesParams creates a new GetFeaturesParams object

There are no default values defined in the spec.

func (*GetFeaturesParams) BindRequest

func (o *GetFeaturesParams) 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 NewGetFeaturesParams() beforehand.

type GetFeaturesURL

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

GetFeaturesURL generates an URL for the get features operation

func (*GetFeaturesURL) Build

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

Build a url path and query string

func (*GetFeaturesURL) BuildFull

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

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

func (*GetFeaturesURL) Must

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

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

func (*GetFeaturesURL) SetBasePath

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

func (o *GetFeaturesURL) String() string

String returns the string representation of the path with query string

func (*GetFeaturesURL) StringFull

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

StringFull returns the string representation of a complete url

func (*GetFeaturesURL) WithBasePath

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

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 PostAPIInventory

type PostAPIInventory struct {
	Context *middleware.Context
	Handler PostAPIInventoryHandler
}
PostAPIInventory swagger:route POST /apiInventory postApiInventory

Create API inventory item

func NewPostAPIInventory

func NewPostAPIInventory(ctx *middleware.Context, handler PostAPIInventoryHandler) *PostAPIInventory

NewPostAPIInventory creates a new http.Handler for the post API inventory operation

func (*PostAPIInventory) ServeHTTP

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

type PostAPIInventoryDefault

type PostAPIInventoryDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

PostAPIInventoryDefault unknown error

swagger:response postApiInventoryDefault

func NewPostAPIInventoryDefault

func NewPostAPIInventoryDefault(code int) *PostAPIInventoryDefault

NewPostAPIInventoryDefault creates PostAPIInventoryDefault with default headers values

func (*PostAPIInventoryDefault) SetPayload

func (o *PostAPIInventoryDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the post API inventory default response

func (*PostAPIInventoryDefault) SetStatusCode

func (o *PostAPIInventoryDefault) SetStatusCode(code int)

SetStatusCode sets the status to the post API inventory default response

func (*PostAPIInventoryDefault) WithPayload

WithPayload adds the payload to the post API inventory default response

func (*PostAPIInventoryDefault) WithStatusCode

func (o *PostAPIInventoryDefault) WithStatusCode(code int) *PostAPIInventoryDefault

WithStatusCode adds the status to the post API inventory default response

func (*PostAPIInventoryDefault) WriteResponse

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

WriteResponse to the client

type PostAPIInventoryHandler

type PostAPIInventoryHandler interface {
	Handle(PostAPIInventoryParams) middleware.Responder
}

PostAPIInventoryHandler interface for that can handle valid post API inventory params

type PostAPIInventoryHandlerFunc

type PostAPIInventoryHandlerFunc func(PostAPIInventoryParams) middleware.Responder

PostAPIInventoryHandlerFunc turns a function with the right signature into a post API inventory handler

func (PostAPIInventoryHandlerFunc) Handle

Handle executing the request and returning a response

type PostAPIInventoryOK

type PostAPIInventoryOK struct {

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

PostAPIInventoryOK Success

swagger:response postApiInventoryOK

func NewPostAPIInventoryOK

func NewPostAPIInventoryOK() *PostAPIInventoryOK

NewPostAPIInventoryOK creates PostAPIInventoryOK with default headers values

func (*PostAPIInventoryOK) SetPayload

func (o *PostAPIInventoryOK) SetPayload(payload *models.APIInfo)

SetPayload sets the payload to the post Api inventory o k response

func (*PostAPIInventoryOK) WithPayload

func (o *PostAPIInventoryOK) WithPayload(payload *models.APIInfo) *PostAPIInventoryOK

WithPayload adds the payload to the post Api inventory o k response

func (*PostAPIInventoryOK) WriteResponse

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

WriteResponse to the client

type PostAPIInventoryParams

type PostAPIInventoryParams struct {

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

	/*
	  In: body
	*/
	Body *models.APIInfoWithType
}

PostAPIInventoryParams contains all the bound params for the post API inventory operation typically these are obtained from a http.Request

swagger:parameters PostAPIInventory

func NewPostAPIInventoryParams

func NewPostAPIInventoryParams() PostAPIInventoryParams

NewPostAPIInventoryParams creates a new PostAPIInventoryParams object

There are no default values defined in the spec.

func (*PostAPIInventoryParams) BindRequest

func (o *PostAPIInventoryParams) 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 NewPostAPIInventoryParams() beforehand.

type PostAPIInventoryReviewIDApprovedReview

type PostAPIInventoryReviewIDApprovedReview struct {
	Context *middleware.Context
	Handler PostAPIInventoryReviewIDApprovedReviewHandler
}
PostAPIInventoryReviewIDApprovedReview swagger:route POST /apiInventory/{reviewId}/approvedReview postApiInventoryReviewIdApprovedReview

Apply the approved review to create the reconstructed spec

func NewPostAPIInventoryReviewIDApprovedReview

func NewPostAPIInventoryReviewIDApprovedReview(ctx *middleware.Context, handler PostAPIInventoryReviewIDApprovedReviewHandler) *PostAPIInventoryReviewIDApprovedReview

NewPostAPIInventoryReviewIDApprovedReview creates a new http.Handler for the post API inventory review ID approved review operation

func (*PostAPIInventoryReviewIDApprovedReview) ServeHTTP

type PostAPIInventoryReviewIDApprovedReviewDefault

type PostAPIInventoryReviewIDApprovedReviewDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

PostAPIInventoryReviewIDApprovedReviewDefault unknown error

swagger:response postApiInventoryReviewIdApprovedReviewDefault

func NewPostAPIInventoryReviewIDApprovedReviewDefault

func NewPostAPIInventoryReviewIDApprovedReviewDefault(code int) *PostAPIInventoryReviewIDApprovedReviewDefault

NewPostAPIInventoryReviewIDApprovedReviewDefault creates PostAPIInventoryReviewIDApprovedReviewDefault with default headers values

func (*PostAPIInventoryReviewIDApprovedReviewDefault) SetPayload

SetPayload sets the payload to the post API inventory review ID approved review default response

func (*PostAPIInventoryReviewIDApprovedReviewDefault) SetStatusCode

func (o *PostAPIInventoryReviewIDApprovedReviewDefault) SetStatusCode(code int)

SetStatusCode sets the status to the post API inventory review ID approved review default response

func (*PostAPIInventoryReviewIDApprovedReviewDefault) WithPayload

WithPayload adds the payload to the post API inventory review ID approved review default response

func (*PostAPIInventoryReviewIDApprovedReviewDefault) WithStatusCode

WithStatusCode adds the status to the post API inventory review ID approved review default response

func (*PostAPIInventoryReviewIDApprovedReviewDefault) WriteResponse

WriteResponse to the client

type PostAPIInventoryReviewIDApprovedReviewHandler

type PostAPIInventoryReviewIDApprovedReviewHandler interface {
	Handle(PostAPIInventoryReviewIDApprovedReviewParams) middleware.Responder
}

PostAPIInventoryReviewIDApprovedReviewHandler interface for that can handle valid post API inventory review ID approved review params

type PostAPIInventoryReviewIDApprovedReviewHandlerFunc

type PostAPIInventoryReviewIDApprovedReviewHandlerFunc func(PostAPIInventoryReviewIDApprovedReviewParams) middleware.Responder

PostAPIInventoryReviewIDApprovedReviewHandlerFunc turns a function with the right signature into a post API inventory review ID approved review handler

func (PostAPIInventoryReviewIDApprovedReviewHandlerFunc) Handle

Handle executing the request and returning a response

type PostAPIInventoryReviewIDApprovedReviewOK

type PostAPIInventoryReviewIDApprovedReviewOK struct {

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

PostAPIInventoryReviewIDApprovedReviewOK Success

swagger:response postApiInventoryReviewIdApprovedReviewOK

func NewPostAPIInventoryReviewIDApprovedReviewOK

func NewPostAPIInventoryReviewIDApprovedReviewOK() *PostAPIInventoryReviewIDApprovedReviewOK

NewPostAPIInventoryReviewIDApprovedReviewOK creates PostAPIInventoryReviewIDApprovedReviewOK with default headers values

func (*PostAPIInventoryReviewIDApprovedReviewOK) SetPayload

func (o *PostAPIInventoryReviewIDApprovedReviewOK) SetPayload(payload interface{})

SetPayload sets the payload to the post Api inventory review Id approved review o k response

func (*PostAPIInventoryReviewIDApprovedReviewOK) WithPayload

WithPayload adds the payload to the post Api inventory review Id approved review o k response

func (*PostAPIInventoryReviewIDApprovedReviewOK) WriteResponse

WriteResponse to the client

type PostAPIInventoryReviewIDApprovedReviewParams

type PostAPIInventoryReviewIDApprovedReviewParams struct {

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

	/*
	  Required: true
	  In: body
	*/
	Body *models.ApprovedReview
	/*
	  Required: true
	  In: path
	*/
	ReviewID uint32
}

PostAPIInventoryReviewIDApprovedReviewParams contains all the bound params for the post API inventory review ID approved review operation typically these are obtained from a http.Request

swagger:parameters PostAPIInventoryReviewIDApprovedReview

func NewPostAPIInventoryReviewIDApprovedReviewParams

func NewPostAPIInventoryReviewIDApprovedReviewParams() PostAPIInventoryReviewIDApprovedReviewParams

NewPostAPIInventoryReviewIDApprovedReviewParams creates a new PostAPIInventoryReviewIDApprovedReviewParams object

There are no default values defined in the spec.

func (*PostAPIInventoryReviewIDApprovedReviewParams) 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 NewPostAPIInventoryReviewIDApprovedReviewParams() beforehand.

type PostAPIInventoryReviewIDApprovedReviewURL

type PostAPIInventoryReviewIDApprovedReviewURL struct {
	ReviewID uint32
	// contains filtered or unexported fields
}

PostAPIInventoryReviewIDApprovedReviewURL generates an URL for the post API inventory review ID approved review operation

func (*PostAPIInventoryReviewIDApprovedReviewURL) Build

Build a url path and query string

func (*PostAPIInventoryReviewIDApprovedReviewURL) BuildFull

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

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

func (*PostAPIInventoryReviewIDApprovedReviewURL) Must

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

func (*PostAPIInventoryReviewIDApprovedReviewURL) SetBasePath

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 (*PostAPIInventoryReviewIDApprovedReviewURL) String

String returns the string representation of the path with query string

func (*PostAPIInventoryReviewIDApprovedReviewURL) StringFull

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

StringFull returns the string representation of a complete url

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

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

PostAPIInventoryURL generates an URL for the post API inventory operation

func (*PostAPIInventoryURL) Build

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

Build a url path and query string

func (*PostAPIInventoryURL) BuildFull

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

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

func (*PostAPIInventoryURL) Must

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

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

func (*PostAPIInventoryURL) SetBasePath

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

func (o *PostAPIInventoryURL) String() string

String returns the string representation of the path with query string

func (*PostAPIInventoryURL) StringFull

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

StringFull returns the string representation of a complete url

func (*PostAPIInventoryURL) WithBasePath

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

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 PostControlNewDiscoveredAPIs

type PostControlNewDiscoveredAPIs struct {
	Context *middleware.Context
	Handler PostControlNewDiscoveredAPIsHandler
}
PostControlNewDiscoveredAPIs swagger:route POST /control/newDiscoveredAPIs postControlNewDiscoveredAPIs

Allows a client to notify APIClarity about new APIs.

This allows a client (a gateway for example) to notify APIclarity about newly discovered APIs. If one of the APIs already exists, it is ignored.

func NewPostControlNewDiscoveredAPIs

func NewPostControlNewDiscoveredAPIs(ctx *middleware.Context, handler PostControlNewDiscoveredAPIsHandler) *PostControlNewDiscoveredAPIs

NewPostControlNewDiscoveredAPIs creates a new http.Handler for the post control new discovered a p is operation

func (*PostControlNewDiscoveredAPIs) ServeHTTP

type PostControlNewDiscoveredAPIsBody

type PostControlNewDiscoveredAPIsBody struct {

	// List of discovered APIs, format of hostname:port
	// Required: true
	Hosts []string `json:"hosts"`
}

PostControlNewDiscoveredAPIsBody post control new discovered a p is body

swagger:model PostControlNewDiscoveredAPIsBody

func (*PostControlNewDiscoveredAPIsBody) ContextValidate

func (o *PostControlNewDiscoveredAPIsBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this post control new discovered a p is body based on context it is used

func (*PostControlNewDiscoveredAPIsBody) MarshalBinary

func (o *PostControlNewDiscoveredAPIsBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*PostControlNewDiscoveredAPIsBody) UnmarshalBinary

func (o *PostControlNewDiscoveredAPIsBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*PostControlNewDiscoveredAPIsBody) Validate

Validate validates this post control new discovered a p is body

type PostControlNewDiscoveredAPIsDefault

type PostControlNewDiscoveredAPIsDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

PostControlNewDiscoveredAPIsDefault unknown error

swagger:response postControlNewDiscoveredAPIsDefault

func NewPostControlNewDiscoveredAPIsDefault

func NewPostControlNewDiscoveredAPIsDefault(code int) *PostControlNewDiscoveredAPIsDefault

NewPostControlNewDiscoveredAPIsDefault creates PostControlNewDiscoveredAPIsDefault with default headers values

func (*PostControlNewDiscoveredAPIsDefault) SetPayload

func (o *PostControlNewDiscoveredAPIsDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the post control new discovered a p is default response

func (*PostControlNewDiscoveredAPIsDefault) SetStatusCode

func (o *PostControlNewDiscoveredAPIsDefault) SetStatusCode(code int)

SetStatusCode sets the status to the post control new discovered a p is default response

func (*PostControlNewDiscoveredAPIsDefault) WithPayload

WithPayload adds the payload to the post control new discovered a p is default response

func (*PostControlNewDiscoveredAPIsDefault) WithStatusCode

WithStatusCode adds the status to the post control new discovered a p is default response

func (*PostControlNewDiscoveredAPIsDefault) WriteResponse

WriteResponse to the client

type PostControlNewDiscoveredAPIsHandler

type PostControlNewDiscoveredAPIsHandler interface {
	Handle(PostControlNewDiscoveredAPIsParams) middleware.Responder
}

PostControlNewDiscoveredAPIsHandler interface for that can handle valid post control new discovered a p is params

type PostControlNewDiscoveredAPIsHandlerFunc

type PostControlNewDiscoveredAPIsHandlerFunc func(PostControlNewDiscoveredAPIsParams) middleware.Responder

PostControlNewDiscoveredAPIsHandlerFunc turns a function with the right signature into a post control new discovered a p is handler

func (PostControlNewDiscoveredAPIsHandlerFunc) Handle

Handle executing the request and returning a response

type PostControlNewDiscoveredAPIsOK

type PostControlNewDiscoveredAPIsOK struct {

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

PostControlNewDiscoveredAPIsOK Success

swagger:response postControlNewDiscoveredAPIsOK

func NewPostControlNewDiscoveredAPIsOK

func NewPostControlNewDiscoveredAPIsOK() *PostControlNewDiscoveredAPIsOK

NewPostControlNewDiscoveredAPIsOK creates PostControlNewDiscoveredAPIsOK with default headers values

func (*PostControlNewDiscoveredAPIsOK) SetPayload

func (o *PostControlNewDiscoveredAPIsOK) SetPayload(payload interface{})

SetPayload sets the payload to the post control new discovered a p is o k response

func (*PostControlNewDiscoveredAPIsOK) WithPayload

func (o *PostControlNewDiscoveredAPIsOK) WithPayload(payload interface{}) *PostControlNewDiscoveredAPIsOK

WithPayload adds the payload to the post control new discovered a p is o k response

func (*PostControlNewDiscoveredAPIsOK) WriteResponse

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

WriteResponse to the client

type PostControlNewDiscoveredAPIsParams

type PostControlNewDiscoveredAPIsParams struct {

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

	/*List of new discovered APIs
	  Required: true
	  In: body
	*/
	Body PostControlNewDiscoveredAPIsBody
}

PostControlNewDiscoveredAPIsParams contains all the bound params for the post control new discovered a p is operation typically these are obtained from a http.Request

swagger:parameters PostControlNewDiscoveredAPIs

func NewPostControlNewDiscoveredAPIsParams

func NewPostControlNewDiscoveredAPIsParams() PostControlNewDiscoveredAPIsParams

NewPostControlNewDiscoveredAPIsParams creates a new PostControlNewDiscoveredAPIsParams object

There are no default values defined in the spec.

func (*PostControlNewDiscoveredAPIsParams) 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 NewPostControlNewDiscoveredAPIsParams() beforehand.

type PostControlNewDiscoveredAPIsURL

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

PostControlNewDiscoveredAPIsURL generates an URL for the post control new discovered a p is operation

func (*PostControlNewDiscoveredAPIsURL) Build

Build a url path and query string

func (*PostControlNewDiscoveredAPIsURL) BuildFull

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

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

func (*PostControlNewDiscoveredAPIsURL) Must

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

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

func (*PostControlNewDiscoveredAPIsURL) SetBasePath

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

String returns the string representation of the path with query string

func (*PostControlNewDiscoveredAPIsURL) StringFull

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

StringFull returns the string representation of a complete url

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

type PostControlTraceSources struct {
	Context *middleware.Context
	Handler PostControlTraceSourcesHandler
}
PostControlTraceSources swagger:route POST /control/traceSources postControlTraceSources

Create a new Trace Source

func NewPostControlTraceSources

func NewPostControlTraceSources(ctx *middleware.Context, handler PostControlTraceSourcesHandler) *PostControlTraceSources

NewPostControlTraceSources creates a new http.Handler for the post control trace sources operation

func (*PostControlTraceSources) ServeHTTP

type PostControlTraceSourcesCreated

type PostControlTraceSourcesCreated struct {

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

PostControlTraceSourcesCreated Success

swagger:response postControlTraceSourcesCreated

func NewPostControlTraceSourcesCreated

func NewPostControlTraceSourcesCreated() *PostControlTraceSourcesCreated

NewPostControlTraceSourcesCreated creates PostControlTraceSourcesCreated with default headers values

func (*PostControlTraceSourcesCreated) SetPayload

func (o *PostControlTraceSourcesCreated) SetPayload(payload *models.TraceSource)

SetPayload sets the payload to the post control trace sources created response

func (*PostControlTraceSourcesCreated) WithPayload

WithPayload adds the payload to the post control trace sources created response

func (*PostControlTraceSourcesCreated) WriteResponse

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

WriteResponse to the client

type PostControlTraceSourcesDefault

type PostControlTraceSourcesDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

PostControlTraceSourcesDefault unknown error

swagger:response postControlTraceSourcesDefault

func NewPostControlTraceSourcesDefault

func NewPostControlTraceSourcesDefault(code int) *PostControlTraceSourcesDefault

NewPostControlTraceSourcesDefault creates PostControlTraceSourcesDefault with default headers values

func (*PostControlTraceSourcesDefault) SetPayload

func (o *PostControlTraceSourcesDefault) SetPayload(payload *models.APIResponse)

SetPayload sets the payload to the post control trace sources default response

func (*PostControlTraceSourcesDefault) SetStatusCode

func (o *PostControlTraceSourcesDefault) SetStatusCode(code int)

SetStatusCode sets the status to the post control trace sources default response

func (*PostControlTraceSourcesDefault) WithPayload

WithPayload adds the payload to the post control trace sources default response

func (*PostControlTraceSourcesDefault) WithStatusCode

WithStatusCode adds the status to the post control trace sources default response

func (*PostControlTraceSourcesDefault) WriteResponse

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

WriteResponse to the client

type PostControlTraceSourcesHandler

type PostControlTraceSourcesHandler interface {
	Handle(PostControlTraceSourcesParams) middleware.Responder
}

PostControlTraceSourcesHandler interface for that can handle valid post control trace sources params

type PostControlTraceSourcesHandlerFunc

type PostControlTraceSourcesHandlerFunc func(PostControlTraceSourcesParams) middleware.Responder

PostControlTraceSourcesHandlerFunc turns a function with the right signature into a post control trace sources handler

func (PostControlTraceSourcesHandlerFunc) Handle

Handle executing the request and returning a response

type PostControlTraceSourcesParams

type PostControlTraceSourcesParams struct {

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

	/*
	  Required: true
	  In: body
	*/
	Body *models.TraceSource
}

PostControlTraceSourcesParams contains all the bound params for the post control trace sources operation typically these are obtained from a http.Request

swagger:parameters PostControlTraceSources

func NewPostControlTraceSourcesParams

func NewPostControlTraceSourcesParams() PostControlTraceSourcesParams

NewPostControlTraceSourcesParams creates a new PostControlTraceSourcesParams object

There are no default values defined in the spec.

func (*PostControlTraceSourcesParams) 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 NewPostControlTraceSourcesParams() beforehand.

type PostControlTraceSourcesURL

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

PostControlTraceSourcesURL generates an URL for the post control trace sources operation

func (*PostControlTraceSourcesURL) Build

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

Build a url path and query string

func (*PostControlTraceSourcesURL) BuildFull

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

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

func (*PostControlTraceSourcesURL) Must

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

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

func (*PostControlTraceSourcesURL) SetBasePath

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

func (o *PostControlTraceSourcesURL) String() string

String returns the string representation of the path with query string

func (*PostControlTraceSourcesURL) StringFull

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

StringFull returns the string representation of a complete url

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

type PutAPIInventoryAPIIDSpecsProvidedSpec struct {
	Context *middleware.Context
	Handler PutAPIInventoryAPIIDSpecsProvidedSpecHandler
}
PutAPIInventoryAPIIDSpecsProvidedSpec swagger:route PUT /apiInventory/{apiId}/specs/providedSpec putApiInventoryApiIdSpecsProvidedSpec

Add or edit a spec for a specific API

func NewPutAPIInventoryAPIIDSpecsProvidedSpec

func NewPutAPIInventoryAPIIDSpecsProvidedSpec(ctx *middleware.Context, handler PutAPIInventoryAPIIDSpecsProvidedSpecHandler) *PutAPIInventoryAPIIDSpecsProvidedSpec

NewPutAPIInventoryAPIIDSpecsProvidedSpec creates a new http.Handler for the put API inventory API ID specs provided spec operation

func (*PutAPIInventoryAPIIDSpecsProvidedSpec) ServeHTTP

type PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest

type PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest struct {

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

PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest Spec validation failure

swagger:response putApiInventoryApiIdSpecsProvidedSpecBadRequest

func NewPutAPIInventoryAPIIDSpecsProvidedSpecBadRequest

func NewPutAPIInventoryAPIIDSpecsProvidedSpecBadRequest() *PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest

NewPutAPIInventoryAPIIDSpecsProvidedSpecBadRequest creates PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest with default headers values

func (*PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest) SetPayload

SetPayload sets the payload to the put Api inventory Api Id specs provided spec bad request response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest) WithPayload

WithPayload adds the payload to the put Api inventory Api Id specs provided spec bad request response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecBadRequest) WriteResponse

WriteResponse to the client

type PutAPIInventoryAPIIDSpecsProvidedSpecCreated

type PutAPIInventoryAPIIDSpecsProvidedSpecCreated struct {

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

PutAPIInventoryAPIIDSpecsProvidedSpecCreated Success

swagger:response putApiInventoryApiIdSpecsProvidedSpecCreated

func NewPutAPIInventoryAPIIDSpecsProvidedSpecCreated

func NewPutAPIInventoryAPIIDSpecsProvidedSpecCreated() *PutAPIInventoryAPIIDSpecsProvidedSpecCreated

NewPutAPIInventoryAPIIDSpecsProvidedSpecCreated creates PutAPIInventoryAPIIDSpecsProvidedSpecCreated with default headers values

func (*PutAPIInventoryAPIIDSpecsProvidedSpecCreated) SetPayload

SetPayload sets the payload to the put Api inventory Api Id specs provided spec created response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecCreated) WithPayload

WithPayload adds the payload to the put Api inventory Api Id specs provided spec created response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecCreated) WriteResponse

WriteResponse to the client

type PutAPIInventoryAPIIDSpecsProvidedSpecDefault

type PutAPIInventoryAPIIDSpecsProvidedSpecDefault struct {

	/*
	  In: Body
	*/
	Payload *models.APIResponse `json:"body,omitempty"`
	// contains filtered or unexported fields
}

PutAPIInventoryAPIIDSpecsProvidedSpecDefault unknown error

swagger:response putApiInventoryApiIdSpecsProvidedSpecDefault

func NewPutAPIInventoryAPIIDSpecsProvidedSpecDefault

func NewPutAPIInventoryAPIIDSpecsProvidedSpecDefault(code int) *PutAPIInventoryAPIIDSpecsProvidedSpecDefault

NewPutAPIInventoryAPIIDSpecsProvidedSpecDefault creates PutAPIInventoryAPIIDSpecsProvidedSpecDefault with default headers values

func (*PutAPIInventoryAPIIDSpecsProvidedSpecDefault) SetPayload

SetPayload sets the payload to the put API inventory API ID specs provided spec default response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecDefault) SetStatusCode

func (o *PutAPIInventoryAPIIDSpecsProvidedSpecDefault) SetStatusCode(code int)

SetStatusCode sets the status to the put API inventory API ID specs provided spec default response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecDefault) WithPayload

WithPayload adds the payload to the put API inventory API ID specs provided spec default response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecDefault) WithStatusCode

WithStatusCode adds the status to the put API inventory API ID specs provided spec default response

func (*PutAPIInventoryAPIIDSpecsProvidedSpecDefault) WriteResponse

WriteResponse to the client

type PutAPIInventoryAPIIDSpecsProvidedSpecHandler

type PutAPIInventoryAPIIDSpecsProvidedSpecHandler interface {
	Handle(PutAPIInventoryAPIIDSpecsProvidedSpecParams) middleware.Responder
}

PutAPIInventoryAPIIDSpecsProvidedSpecHandler interface for that can handle valid put API inventory API ID specs provided spec params

type PutAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc

type PutAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc func(PutAPIInventoryAPIIDSpecsProvidedSpecParams) middleware.Responder

PutAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc turns a function with the right signature into a put API inventory API ID specs provided spec handler

func (PutAPIInventoryAPIIDSpecsProvidedSpecHandlerFunc) Handle

Handle executing the request and returning a response

type PutAPIInventoryAPIIDSpecsProvidedSpecParams

type PutAPIInventoryAPIIDSpecsProvidedSpecParams struct {

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

	/*
	  Required: true
	  In: path
	*/
	APIID uint32
	/*
	  Required: true
	  In: body
	*/
	Body *models.RawSpec
}

PutAPIInventoryAPIIDSpecsProvidedSpecParams contains all the bound params for the put API inventory API ID specs provided spec operation typically these are obtained from a http.Request

swagger:parameters PutAPIInventoryAPIIDSpecsProvidedSpec

func NewPutAPIInventoryAPIIDSpecsProvidedSpecParams

func NewPutAPIInventoryAPIIDSpecsProvidedSpecParams() PutAPIInventoryAPIIDSpecsProvidedSpecParams

NewPutAPIInventoryAPIIDSpecsProvidedSpecParams creates a new PutAPIInventoryAPIIDSpecsProvidedSpecParams object

There are no default values defined in the spec.

func (*PutAPIInventoryAPIIDSpecsProvidedSpecParams) 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 NewPutAPIInventoryAPIIDSpecsProvidedSpecParams() beforehand.

type PutAPIInventoryAPIIDSpecsProvidedSpecURL

type PutAPIInventoryAPIIDSpecsProvidedSpecURL struct {
	APIID uint32
	// contains filtered or unexported fields
}

PutAPIInventoryAPIIDSpecsProvidedSpecURL generates an URL for the put API inventory API ID specs provided spec operation

func (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) Build

Build a url path and query string

func (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) BuildFull

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

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

func (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) Must

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

func (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) SetBasePath

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 (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) String

String returns the string representation of the path with query string

func (*PutAPIInventoryAPIIDSpecsProvidedSpecURL) StringFull

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

StringFull returns the string representation of a complete url

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

Source Files

Jump to

Keyboard shortcuts

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