client

package
v0.0.0-...-b9360c4 Latest Latest
Warning

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

Go to latest
Published: Dec 15, 2023 License: BSD-3-Clause Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func BuildDeletePayload

func BuildDeletePayload(ingestionDeleteIngestionID string, ingestionDeleteAuth string) (*ingestion.DeletePayload, error)

BuildDeletePayload builds the payload for the ingestion delete endpoint from CLI flags.

func BuildProcessIngestionPayload

func BuildProcessIngestionPayload(ingestionProcessIngestionIngestionID string, ingestionProcessIngestionAuth string) (*ingestion.ProcessIngestionPayload, error)

BuildProcessIngestionPayload builds the payload for the ingestion process ingestion endpoint from CLI flags.

func BuildProcessPendingPayload

func BuildProcessPendingPayload(ingestionProcessPendingAuth string) (*ingestion.ProcessPendingPayload, error)

BuildProcessPendingPayload builds the payload for the ingestion process pending endpoint from CLI flags.

func BuildProcessStationIngestionsPayload

func BuildProcessStationIngestionsPayload(ingestionProcessStationIngestionsStationID string, ingestionProcessStationIngestionsAuth string) (*ingestion.ProcessStationIngestionsPayload, error)

BuildProcessStationIngestionsPayload builds the payload for the ingestion process station ingestions endpoint from CLI flags.

func BuildProcessStationPayload

func BuildProcessStationPayload(ingestionProcessStationStationID string, ingestionProcessStationCompletely string, ingestionProcessStationSkipManual string, ingestionProcessStationAuth string) (*ingestion.ProcessStationPayload, error)

BuildProcessStationPayload builds the payload for the ingestion process station endpoint from CLI flags.

func BuildRefreshViewsPayload

func BuildRefreshViewsPayload(ingestionRefreshViewsAuth string) (*ingestion.RefreshViewsPayload, error)

BuildRefreshViewsPayload builds the payload for the ingestion refresh views endpoint from CLI flags.

func BuildWalkEverythingPayload

func BuildWalkEverythingPayload(ingestionWalkEverythingAuth string) (*ingestion.WalkEverythingPayload, error)

BuildWalkEverythingPayload builds the payload for the ingestion walk everything endpoint from CLI flags.

func DecodeDeleteResponse

func DecodeDeleteResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeDeleteResponse returns a decoder for responses returned by the ingestion delete endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeDeleteResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeProcessIngestionResponse

func DecodeProcessIngestionResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeProcessIngestionResponse returns a decoder for responses returned by the ingestion process ingestion endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeProcessIngestionResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeProcessPendingResponse

func DecodeProcessPendingResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeProcessPendingResponse returns a decoder for responses returned by the ingestion process pending endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeProcessPendingResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeProcessStationIngestionsResponse

func DecodeProcessStationIngestionsResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeProcessStationIngestionsResponse returns a decoder for responses returned by the ingestion process station ingestions endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeProcessStationIngestionsResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeProcessStationResponse

func DecodeProcessStationResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeProcessStationResponse returns a decoder for responses returned by the ingestion process station endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeProcessStationResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeRefreshViewsResponse

func DecodeRefreshViewsResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeRefreshViewsResponse returns a decoder for responses returned by the ingestion refresh views endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeRefreshViewsResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DecodeWalkEverythingResponse

func DecodeWalkEverythingResponse(decoder func(*http.Response) goahttp.Decoder, restoreBody bool) func(*http.Response) (interface{}, error)

DecodeWalkEverythingResponse returns a decoder for responses returned by the ingestion walk everything endpoint. restoreBody controls whether the response body should be restored after having been read. DecodeWalkEverythingResponse may return the following errors:

  • "unauthorized" (type *goa.ServiceError): http.StatusUnauthorized
  • "forbidden" (type *goa.ServiceError): http.StatusForbidden
  • "not-found" (type *goa.ServiceError): http.StatusNotFound
  • "bad-request" (type *goa.ServiceError): http.StatusBadRequest
  • error: internal error

func DeleteIngestionPath

func DeleteIngestionPath(ingestionID int64) string

DeleteIngestionPath returns the URL path to the ingestion service delete HTTP endpoint.

func EncodeDeleteRequest

func EncodeDeleteRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeDeleteRequest returns an encoder for requests sent to the ingestion delete server.

func EncodeProcessIngestionRequest

func EncodeProcessIngestionRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeProcessIngestionRequest returns an encoder for requests sent to the ingestion process ingestion server.

func EncodeProcessPendingRequest

func EncodeProcessPendingRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeProcessPendingRequest returns an encoder for requests sent to the ingestion process pending server.

func EncodeProcessStationIngestionsRequest

func EncodeProcessStationIngestionsRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeProcessStationIngestionsRequest returns an encoder for requests sent to the ingestion process station ingestions server.

func EncodeProcessStationRequest

func EncodeProcessStationRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeProcessStationRequest returns an encoder for requests sent to the ingestion process station server.

func EncodeRefreshViewsRequest

func EncodeRefreshViewsRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeRefreshViewsRequest returns an encoder for requests sent to the ingestion refresh views server.

func EncodeWalkEverythingRequest

func EncodeWalkEverythingRequest(encoder func(*http.Request) goahttp.Encoder) func(*http.Request, interface{}) error

EncodeWalkEverythingRequest returns an encoder for requests sent to the ingestion walk everything server.

func NewDeleteBadRequest

func NewDeleteBadRequest(body *DeleteBadRequestResponseBody) *goa.ServiceError

NewDeleteBadRequest builds a ingestion service delete endpoint bad-request error.

func NewDeleteForbidden

func NewDeleteForbidden(body *DeleteForbiddenResponseBody) *goa.ServiceError

NewDeleteForbidden builds a ingestion service delete endpoint forbidden error.

func NewDeleteNotFound

func NewDeleteNotFound(body *DeleteNotFoundResponseBody) *goa.ServiceError

NewDeleteNotFound builds a ingestion service delete endpoint not-found error.

func NewDeleteUnauthorized

func NewDeleteUnauthorized(body *DeleteUnauthorizedResponseBody) *goa.ServiceError

NewDeleteUnauthorized builds a ingestion service delete endpoint unauthorized error.

func NewProcessIngestionBadRequest

func NewProcessIngestionBadRequest(body *ProcessIngestionBadRequestResponseBody) *goa.ServiceError

NewProcessIngestionBadRequest builds a ingestion service process ingestion endpoint bad-request error.

func NewProcessIngestionForbidden

func NewProcessIngestionForbidden(body *ProcessIngestionForbiddenResponseBody) *goa.ServiceError

NewProcessIngestionForbidden builds a ingestion service process ingestion endpoint forbidden error.

func NewProcessIngestionNotFound

func NewProcessIngestionNotFound(body *ProcessIngestionNotFoundResponseBody) *goa.ServiceError

NewProcessIngestionNotFound builds a ingestion service process ingestion endpoint not-found error.

func NewProcessIngestionUnauthorized

func NewProcessIngestionUnauthorized(body *ProcessIngestionUnauthorizedResponseBody) *goa.ServiceError

NewProcessIngestionUnauthorized builds a ingestion service process ingestion endpoint unauthorized error.

func NewProcessPendingBadRequest

func NewProcessPendingBadRequest(body *ProcessPendingBadRequestResponseBody) *goa.ServiceError

NewProcessPendingBadRequest builds a ingestion service process pending endpoint bad-request error.

func NewProcessPendingForbidden

func NewProcessPendingForbidden(body *ProcessPendingForbiddenResponseBody) *goa.ServiceError

NewProcessPendingForbidden builds a ingestion service process pending endpoint forbidden error.

func NewProcessPendingNotFound

func NewProcessPendingNotFound(body *ProcessPendingNotFoundResponseBody) *goa.ServiceError

NewProcessPendingNotFound builds a ingestion service process pending endpoint not-found error.

func NewProcessPendingUnauthorized

func NewProcessPendingUnauthorized(body *ProcessPendingUnauthorizedResponseBody) *goa.ServiceError

NewProcessPendingUnauthorized builds a ingestion service process pending endpoint unauthorized error.

func NewProcessStationBadRequest

func NewProcessStationBadRequest(body *ProcessStationBadRequestResponseBody) *goa.ServiceError

NewProcessStationBadRequest builds a ingestion service process station endpoint bad-request error.

func NewProcessStationForbidden

func NewProcessStationForbidden(body *ProcessStationForbiddenResponseBody) *goa.ServiceError

NewProcessStationForbidden builds a ingestion service process station endpoint forbidden error.

func NewProcessStationIngestionsBadRequest

func NewProcessStationIngestionsBadRequest(body *ProcessStationIngestionsBadRequestResponseBody) *goa.ServiceError

NewProcessStationIngestionsBadRequest builds a ingestion service process station ingestions endpoint bad-request error.

func NewProcessStationIngestionsForbidden

func NewProcessStationIngestionsForbidden(body *ProcessStationIngestionsForbiddenResponseBody) *goa.ServiceError

NewProcessStationIngestionsForbidden builds a ingestion service process station ingestions endpoint forbidden error.

func NewProcessStationIngestionsNotFound

func NewProcessStationIngestionsNotFound(body *ProcessStationIngestionsNotFoundResponseBody) *goa.ServiceError

NewProcessStationIngestionsNotFound builds a ingestion service process station ingestions endpoint not-found error.

func NewProcessStationIngestionsUnauthorized

func NewProcessStationIngestionsUnauthorized(body *ProcessStationIngestionsUnauthorizedResponseBody) *goa.ServiceError

NewProcessStationIngestionsUnauthorized builds a ingestion service process station ingestions endpoint unauthorized error.

func NewProcessStationNotFound

func NewProcessStationNotFound(body *ProcessStationNotFoundResponseBody) *goa.ServiceError

NewProcessStationNotFound builds a ingestion service process station endpoint not-found error.

func NewProcessStationUnauthorized

func NewProcessStationUnauthorized(body *ProcessStationUnauthorizedResponseBody) *goa.ServiceError

NewProcessStationUnauthorized builds a ingestion service process station endpoint unauthorized error.

func NewRefreshViewsBadRequest

func NewRefreshViewsBadRequest(body *RefreshViewsBadRequestResponseBody) *goa.ServiceError

NewRefreshViewsBadRequest builds a ingestion service refresh views endpoint bad-request error.

func NewRefreshViewsForbidden

func NewRefreshViewsForbidden(body *RefreshViewsForbiddenResponseBody) *goa.ServiceError

NewRefreshViewsForbidden builds a ingestion service refresh views endpoint forbidden error.

func NewRefreshViewsNotFound

func NewRefreshViewsNotFound(body *RefreshViewsNotFoundResponseBody) *goa.ServiceError

NewRefreshViewsNotFound builds a ingestion service refresh views endpoint not-found error.

func NewRefreshViewsUnauthorized

func NewRefreshViewsUnauthorized(body *RefreshViewsUnauthorizedResponseBody) *goa.ServiceError

NewRefreshViewsUnauthorized builds a ingestion service refresh views endpoint unauthorized error.

func NewWalkEverythingBadRequest

func NewWalkEverythingBadRequest(body *WalkEverythingBadRequestResponseBody) *goa.ServiceError

NewWalkEverythingBadRequest builds a ingestion service walk everything endpoint bad-request error.

func NewWalkEverythingForbidden

func NewWalkEverythingForbidden(body *WalkEverythingForbiddenResponseBody) *goa.ServiceError

NewWalkEverythingForbidden builds a ingestion service walk everything endpoint forbidden error.

func NewWalkEverythingNotFound

func NewWalkEverythingNotFound(body *WalkEverythingNotFoundResponseBody) *goa.ServiceError

NewWalkEverythingNotFound builds a ingestion service walk everything endpoint not-found error.

func NewWalkEverythingUnauthorized

func NewWalkEverythingUnauthorized(body *WalkEverythingUnauthorizedResponseBody) *goa.ServiceError

NewWalkEverythingUnauthorized builds a ingestion service walk everything endpoint unauthorized error.

func ProcessIngestionIngestionPath

func ProcessIngestionIngestionPath(ingestionID int64) string

ProcessIngestionIngestionPath returns the URL path to the ingestion service process ingestion HTTP endpoint.

func ProcessPendingIngestionPath

func ProcessPendingIngestionPath() string

ProcessPendingIngestionPath returns the URL path to the ingestion service process pending HTTP endpoint.

func ProcessStationIngestionPath

func ProcessStationIngestionPath(stationID int32) string

ProcessStationIngestionPath returns the URL path to the ingestion service process station HTTP endpoint.

func ProcessStationIngestionsIngestionPath

func ProcessStationIngestionsIngestionPath(stationID int64) string

ProcessStationIngestionsIngestionPath returns the URL path to the ingestion service process station ingestions HTTP endpoint.

func RefreshViewsIngestionPath

func RefreshViewsIngestionPath() string

RefreshViewsIngestionPath returns the URL path to the ingestion service refresh views HTTP endpoint.

func ValidateDeleteBadRequestResponseBody

func ValidateDeleteBadRequestResponseBody(body *DeleteBadRequestResponseBody) (err error)

ValidateDeleteBadRequestResponseBody runs the validations defined on delete_bad-request_response_body

func ValidateDeleteForbiddenResponseBody

func ValidateDeleteForbiddenResponseBody(body *DeleteForbiddenResponseBody) (err error)

ValidateDeleteForbiddenResponseBody runs the validations defined on delete_forbidden_response_body

func ValidateDeleteNotFoundResponseBody

func ValidateDeleteNotFoundResponseBody(body *DeleteNotFoundResponseBody) (err error)

ValidateDeleteNotFoundResponseBody runs the validations defined on delete_not-found_response_body

func ValidateDeleteUnauthorizedResponseBody

func ValidateDeleteUnauthorizedResponseBody(body *DeleteUnauthorizedResponseBody) (err error)

ValidateDeleteUnauthorizedResponseBody runs the validations defined on delete_unauthorized_response_body

func ValidateProcessIngestionBadRequestResponseBody

func ValidateProcessIngestionBadRequestResponseBody(body *ProcessIngestionBadRequestResponseBody) (err error)

ValidateProcessIngestionBadRequestResponseBody runs the validations defined on process ingestion_bad-request_response_body

func ValidateProcessIngestionForbiddenResponseBody

func ValidateProcessIngestionForbiddenResponseBody(body *ProcessIngestionForbiddenResponseBody) (err error)

ValidateProcessIngestionForbiddenResponseBody runs the validations defined on process ingestion_forbidden_response_body

func ValidateProcessIngestionNotFoundResponseBody

func ValidateProcessIngestionNotFoundResponseBody(body *ProcessIngestionNotFoundResponseBody) (err error)

ValidateProcessIngestionNotFoundResponseBody runs the validations defined on process ingestion_not-found_response_body

func ValidateProcessIngestionUnauthorizedResponseBody

func ValidateProcessIngestionUnauthorizedResponseBody(body *ProcessIngestionUnauthorizedResponseBody) (err error)

ValidateProcessIngestionUnauthorizedResponseBody runs the validations defined on process ingestion_unauthorized_response_body

func ValidateProcessPendingBadRequestResponseBody

func ValidateProcessPendingBadRequestResponseBody(body *ProcessPendingBadRequestResponseBody) (err error)

ValidateProcessPendingBadRequestResponseBody runs the validations defined on process pending_bad-request_response_body

func ValidateProcessPendingForbiddenResponseBody

func ValidateProcessPendingForbiddenResponseBody(body *ProcessPendingForbiddenResponseBody) (err error)

ValidateProcessPendingForbiddenResponseBody runs the validations defined on process pending_forbidden_response_body

func ValidateProcessPendingNotFoundResponseBody

func ValidateProcessPendingNotFoundResponseBody(body *ProcessPendingNotFoundResponseBody) (err error)

ValidateProcessPendingNotFoundResponseBody runs the validations defined on process pending_not-found_response_body

func ValidateProcessPendingUnauthorizedResponseBody

func ValidateProcessPendingUnauthorizedResponseBody(body *ProcessPendingUnauthorizedResponseBody) (err error)

ValidateProcessPendingUnauthorizedResponseBody runs the validations defined on process pending_unauthorized_response_body

func ValidateProcessStationBadRequestResponseBody

func ValidateProcessStationBadRequestResponseBody(body *ProcessStationBadRequestResponseBody) (err error)

ValidateProcessStationBadRequestResponseBody runs the validations defined on process station_bad-request_response_body

func ValidateProcessStationForbiddenResponseBody

func ValidateProcessStationForbiddenResponseBody(body *ProcessStationForbiddenResponseBody) (err error)

ValidateProcessStationForbiddenResponseBody runs the validations defined on process station_forbidden_response_body

func ValidateProcessStationIngestionsBadRequestResponseBody

func ValidateProcessStationIngestionsBadRequestResponseBody(body *ProcessStationIngestionsBadRequestResponseBody) (err error)

ValidateProcessStationIngestionsBadRequestResponseBody runs the validations defined on process station ingestions_bad-request_response_body

func ValidateProcessStationIngestionsForbiddenResponseBody

func ValidateProcessStationIngestionsForbiddenResponseBody(body *ProcessStationIngestionsForbiddenResponseBody) (err error)

ValidateProcessStationIngestionsForbiddenResponseBody runs the validations defined on process station ingestions_forbidden_response_body

func ValidateProcessStationIngestionsNotFoundResponseBody

func ValidateProcessStationIngestionsNotFoundResponseBody(body *ProcessStationIngestionsNotFoundResponseBody) (err error)

ValidateProcessStationIngestionsNotFoundResponseBody runs the validations defined on process station ingestions_not-found_response_body

func ValidateProcessStationIngestionsUnauthorizedResponseBody

func ValidateProcessStationIngestionsUnauthorizedResponseBody(body *ProcessStationIngestionsUnauthorizedResponseBody) (err error)

ValidateProcessStationIngestionsUnauthorizedResponseBody runs the validations defined on process station ingestions_unauthorized_response_body

func ValidateProcessStationNotFoundResponseBody

func ValidateProcessStationNotFoundResponseBody(body *ProcessStationNotFoundResponseBody) (err error)

ValidateProcessStationNotFoundResponseBody runs the validations defined on process station_not-found_response_body

func ValidateProcessStationUnauthorizedResponseBody

func ValidateProcessStationUnauthorizedResponseBody(body *ProcessStationUnauthorizedResponseBody) (err error)

ValidateProcessStationUnauthorizedResponseBody runs the validations defined on process station_unauthorized_response_body

func ValidateRefreshViewsBadRequestResponseBody

func ValidateRefreshViewsBadRequestResponseBody(body *RefreshViewsBadRequestResponseBody) (err error)

ValidateRefreshViewsBadRequestResponseBody runs the validations defined on refresh views_bad-request_response_body

func ValidateRefreshViewsForbiddenResponseBody

func ValidateRefreshViewsForbiddenResponseBody(body *RefreshViewsForbiddenResponseBody) (err error)

ValidateRefreshViewsForbiddenResponseBody runs the validations defined on refresh views_forbidden_response_body

func ValidateRefreshViewsNotFoundResponseBody

func ValidateRefreshViewsNotFoundResponseBody(body *RefreshViewsNotFoundResponseBody) (err error)

ValidateRefreshViewsNotFoundResponseBody runs the validations defined on refresh views_not-found_response_body

func ValidateRefreshViewsUnauthorizedResponseBody

func ValidateRefreshViewsUnauthorizedResponseBody(body *RefreshViewsUnauthorizedResponseBody) (err error)

ValidateRefreshViewsUnauthorizedResponseBody runs the validations defined on refresh views_unauthorized_response_body

func ValidateWalkEverythingBadRequestResponseBody

func ValidateWalkEverythingBadRequestResponseBody(body *WalkEverythingBadRequestResponseBody) (err error)

ValidateWalkEverythingBadRequestResponseBody runs the validations defined on walk everything_bad-request_response_body

func ValidateWalkEverythingForbiddenResponseBody

func ValidateWalkEverythingForbiddenResponseBody(body *WalkEverythingForbiddenResponseBody) (err error)

ValidateWalkEverythingForbiddenResponseBody runs the validations defined on walk everything_forbidden_response_body

func ValidateWalkEverythingNotFoundResponseBody

func ValidateWalkEverythingNotFoundResponseBody(body *WalkEverythingNotFoundResponseBody) (err error)

ValidateWalkEverythingNotFoundResponseBody runs the validations defined on walk everything_not-found_response_body

func ValidateWalkEverythingUnauthorizedResponseBody

func ValidateWalkEverythingUnauthorizedResponseBody(body *WalkEverythingUnauthorizedResponseBody) (err error)

ValidateWalkEverythingUnauthorizedResponseBody runs the validations defined on walk everything_unauthorized_response_body

func WalkEverythingIngestionPath

func WalkEverythingIngestionPath() string

WalkEverythingIngestionPath returns the URL path to the ingestion service walk everything HTTP endpoint.

Types

type Client

type Client struct {
	// ProcessPending Doer is the HTTP client used to make requests to the process
	// pending endpoint.
	ProcessPendingDoer goahttp.Doer

	// WalkEverything Doer is the HTTP client used to make requests to the walk
	// everything endpoint.
	WalkEverythingDoer goahttp.Doer

	// ProcessStation Doer is the HTTP client used to make requests to the process
	// station endpoint.
	ProcessStationDoer goahttp.Doer

	// ProcessStationIngestions Doer is the HTTP client used to make requests to
	// the process station ingestions endpoint.
	ProcessStationIngestionsDoer goahttp.Doer

	// ProcessIngestion Doer is the HTTP client used to make requests to the
	// process ingestion endpoint.
	ProcessIngestionDoer goahttp.Doer

	// RefreshViews Doer is the HTTP client used to make requests to the refresh
	// views endpoint.
	RefreshViewsDoer goahttp.Doer

	// Delete Doer is the HTTP client used to make requests to the delete endpoint.
	DeleteDoer goahttp.Doer

	// CORS Doer is the HTTP client used to make requests to the  endpoint.
	CORSDoer goahttp.Doer

	// RestoreResponseBody controls whether the response bodies are reset after
	// decoding so they can be read again.
	RestoreResponseBody bool
	// contains filtered or unexported fields
}

Client lists the ingestion service endpoint HTTP clients.

func NewClient

func NewClient(
	scheme string,
	host string,
	doer goahttp.Doer,
	enc func(*http.Request) goahttp.Encoder,
	dec func(*http.Response) goahttp.Decoder,
	restoreBody bool,
) *Client

NewClient instantiates HTTP clients for all the ingestion service servers.

func (*Client) BuildDeleteRequest

func (c *Client) BuildDeleteRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildDeleteRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "delete" endpoint

func (*Client) BuildProcessIngestionRequest

func (c *Client) BuildProcessIngestionRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildProcessIngestionRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "process ingestion" endpoint

func (*Client) BuildProcessPendingRequest

func (c *Client) BuildProcessPendingRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildProcessPendingRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "process pending" endpoint

func (*Client) BuildProcessStationIngestionsRequest

func (c *Client) BuildProcessStationIngestionsRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildProcessStationIngestionsRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "process station ingestions" endpoint

func (*Client) BuildProcessStationRequest

func (c *Client) BuildProcessStationRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildProcessStationRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "process station" endpoint

func (*Client) BuildRefreshViewsRequest

func (c *Client) BuildRefreshViewsRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildRefreshViewsRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "refresh views" endpoint

func (*Client) BuildWalkEverythingRequest

func (c *Client) BuildWalkEverythingRequest(ctx context.Context, v interface{}) (*http.Request, error)

BuildWalkEverythingRequest instantiates a HTTP request object with method and path set to call the "ingestion" service "walk everything" endpoint

func (*Client) Delete

func (c *Client) Delete() goa.Endpoint

Delete returns an endpoint that makes HTTP requests to the ingestion service delete server.

func (*Client) ProcessIngestion

func (c *Client) ProcessIngestion() goa.Endpoint

ProcessIngestion returns an endpoint that makes HTTP requests to the ingestion service process ingestion server.

func (*Client) ProcessPending

func (c *Client) ProcessPending() goa.Endpoint

ProcessPending returns an endpoint that makes HTTP requests to the ingestion service process pending server.

func (*Client) ProcessStation

func (c *Client) ProcessStation() goa.Endpoint

ProcessStation returns an endpoint that makes HTTP requests to the ingestion service process station server.

func (*Client) ProcessStationIngestions

func (c *Client) ProcessStationIngestions() goa.Endpoint

ProcessStationIngestions returns an endpoint that makes HTTP requests to the ingestion service process station ingestions server.

func (*Client) RefreshViews

func (c *Client) RefreshViews() goa.Endpoint

RefreshViews returns an endpoint that makes HTTP requests to the ingestion service refresh views server.

func (*Client) WalkEverything

func (c *Client) WalkEverything() goa.Endpoint

WalkEverything returns an endpoint that makes HTTP requests to the ingestion service walk everything server.

type DeleteBadRequestResponseBody

type DeleteBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

DeleteBadRequestResponseBody is the type of the "ingestion" service "delete" endpoint HTTP response body for the "bad-request" error.

type DeleteForbiddenResponseBody

type DeleteForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

DeleteForbiddenResponseBody is the type of the "ingestion" service "delete" endpoint HTTP response body for the "forbidden" error.

type DeleteNotFoundResponseBody

type DeleteNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

DeleteNotFoundResponseBody is the type of the "ingestion" service "delete" endpoint HTTP response body for the "not-found" error.

type DeleteUnauthorizedResponseBody

type DeleteUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

DeleteUnauthorizedResponseBody is the type of the "ingestion" service "delete" endpoint HTTP response body for the "unauthorized" error.

type ProcessIngestionBadRequestResponseBody

type ProcessIngestionBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessIngestionBadRequestResponseBody is the type of the "ingestion" service "process ingestion" endpoint HTTP response body for the "bad-request" error.

type ProcessIngestionForbiddenResponseBody

type ProcessIngestionForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessIngestionForbiddenResponseBody is the type of the "ingestion" service "process ingestion" endpoint HTTP response body for the "forbidden" error.

type ProcessIngestionNotFoundResponseBody

type ProcessIngestionNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessIngestionNotFoundResponseBody is the type of the "ingestion" service "process ingestion" endpoint HTTP response body for the "not-found" error.

type ProcessIngestionUnauthorizedResponseBody

type ProcessIngestionUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessIngestionUnauthorizedResponseBody is the type of the "ingestion" service "process ingestion" endpoint HTTP response body for the "unauthorized" error.

type ProcessPendingBadRequestResponseBody

type ProcessPendingBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessPendingBadRequestResponseBody is the type of the "ingestion" service "process pending" endpoint HTTP response body for the "bad-request" error.

type ProcessPendingForbiddenResponseBody

type ProcessPendingForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessPendingForbiddenResponseBody is the type of the "ingestion" service "process pending" endpoint HTTP response body for the "forbidden" error.

type ProcessPendingNotFoundResponseBody

type ProcessPendingNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessPendingNotFoundResponseBody is the type of the "ingestion" service "process pending" endpoint HTTP response body for the "not-found" error.

type ProcessPendingUnauthorizedResponseBody

type ProcessPendingUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessPendingUnauthorizedResponseBody is the type of the "ingestion" service "process pending" endpoint HTTP response body for the "unauthorized" error.

type ProcessStationBadRequestResponseBody

type ProcessStationBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationBadRequestResponseBody is the type of the "ingestion" service "process station" endpoint HTTP response body for the "bad-request" error.

type ProcessStationForbiddenResponseBody

type ProcessStationForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationForbiddenResponseBody is the type of the "ingestion" service "process station" endpoint HTTP response body for the "forbidden" error.

type ProcessStationIngestionsBadRequestResponseBody

type ProcessStationIngestionsBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationIngestionsBadRequestResponseBody is the type of the "ingestion" service "process station ingestions" endpoint HTTP response body for the "bad-request" error.

type ProcessStationIngestionsForbiddenResponseBody

type ProcessStationIngestionsForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationIngestionsForbiddenResponseBody is the type of the "ingestion" service "process station ingestions" endpoint HTTP response body for the "forbidden" error.

type ProcessStationIngestionsNotFoundResponseBody

type ProcessStationIngestionsNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationIngestionsNotFoundResponseBody is the type of the "ingestion" service "process station ingestions" endpoint HTTP response body for the "not-found" error.

type ProcessStationIngestionsUnauthorizedResponseBody

type ProcessStationIngestionsUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationIngestionsUnauthorizedResponseBody is the type of the "ingestion" service "process station ingestions" endpoint HTTP response body for the "unauthorized" error.

type ProcessStationNotFoundResponseBody

type ProcessStationNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationNotFoundResponseBody is the type of the "ingestion" service "process station" endpoint HTTP response body for the "not-found" error.

type ProcessStationUnauthorizedResponseBody

type ProcessStationUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

ProcessStationUnauthorizedResponseBody is the type of the "ingestion" service "process station" endpoint HTTP response body for the "unauthorized" error.

type RefreshViewsBadRequestResponseBody

type RefreshViewsBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

RefreshViewsBadRequestResponseBody is the type of the "ingestion" service "refresh views" endpoint HTTP response body for the "bad-request" error.

type RefreshViewsForbiddenResponseBody

type RefreshViewsForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

RefreshViewsForbiddenResponseBody is the type of the "ingestion" service "refresh views" endpoint HTTP response body for the "forbidden" error.

type RefreshViewsNotFoundResponseBody

type RefreshViewsNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

RefreshViewsNotFoundResponseBody is the type of the "ingestion" service "refresh views" endpoint HTTP response body for the "not-found" error.

type RefreshViewsUnauthorizedResponseBody

type RefreshViewsUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

RefreshViewsUnauthorizedResponseBody is the type of the "ingestion" service "refresh views" endpoint HTTP response body for the "unauthorized" error.

type WalkEverythingBadRequestResponseBody

type WalkEverythingBadRequestResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

WalkEverythingBadRequestResponseBody is the type of the "ingestion" service "walk everything" endpoint HTTP response body for the "bad-request" error.

type WalkEverythingForbiddenResponseBody

type WalkEverythingForbiddenResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

WalkEverythingForbiddenResponseBody is the type of the "ingestion" service "walk everything" endpoint HTTP response body for the "forbidden" error.

type WalkEverythingNotFoundResponseBody

type WalkEverythingNotFoundResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

WalkEverythingNotFoundResponseBody is the type of the "ingestion" service "walk everything" endpoint HTTP response body for the "not-found" error.

type WalkEverythingUnauthorizedResponseBody

type WalkEverythingUnauthorizedResponseBody struct {
	// Name is the name of this class of errors.
	Name *string `form:"name,omitempty" json:"name,omitempty" xml:"name,omitempty"`
	// ID is a unique identifier for this particular occurrence of the problem.
	ID *string `form:"id,omitempty" json:"id,omitempty" xml:"id,omitempty"`
	// Message is a human-readable explanation specific to this occurrence of the
	// problem.
	Message *string `form:"message,omitempty" json:"message,omitempty" xml:"message,omitempty"`
	// Is the error temporary?
	Temporary *bool `form:"temporary,omitempty" json:"temporary,omitempty" xml:"temporary,omitempty"`
	// Is the error a timeout?
	Timeout *bool `form:"timeout,omitempty" json:"timeout,omitempty" xml:"timeout,omitempty"`
	// Is the error a server-side fault?
	Fault *bool `form:"fault,omitempty" json:"fault,omitempty" xml:"fault,omitempty"`
}

WalkEverythingUnauthorizedResponseBody is the type of the "ingestion" service "walk everything" endpoint HTTP response body for the "unauthorized" error.

Jump to

Keyboard shortcuts

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