Documentation
¶
Overview ¶
Code generated by ogen, DO NOT EDIT.
Index ¶
- func WithServerURL(ctx context.Context, u *url.URL) context.Context
- type Client
- func (c *Client) CreateTask(ctx context.Context, request *CreateTaskRequest) (*Task, error)
- func (c *Client) DeleteTask(ctx context.Context, params DeleteTaskParams) (DeleteTaskRes, error)
- func (c *Client) GenerateError(ctx context.Context) (*Error, error)
- func (c *Client) GetHealth(ctx context.Context) (*Health, error)
- func (c *Client) ListTasks(ctx context.Context) (*TaskList, error)
- type ClientOption
- type CreateTaskRequest
- func (s *CreateTaskRequest) Decode(d *jx.Decoder) error
- func (s *CreateTaskRequest) Encode(e *jx.Encoder)
- func (s *CreateTaskRequest) GetTitle() string
- func (s *CreateTaskRequest) MarshalJSON() ([]byte, error)
- func (s *CreateTaskRequest) SetFake()
- func (s *CreateTaskRequest) SetTitle(val string)
- func (s *CreateTaskRequest) UnmarshalJSON(data []byte) error
- func (s *CreateTaskRequest) Validate() error
- type DeleteTaskNoContent
- type DeleteTaskParams
- type DeleteTaskRes
- type Error
- func (s *Error) Decode(d *jx.Decoder) error
- func (s *Error) Encode(e *jx.Encoder)
- func (s *Error) GetErrorMessage() string
- func (s *Error) GetSpanID() OptSpanID
- func (s *Error) GetTraceID() OptTraceID
- func (s *Error) MarshalJSON() ([]byte, error)
- func (s *Error) SetErrorMessage(val string)
- func (s *Error) SetFake()
- func (s *Error) SetSpanID(val OptSpanID)
- func (s *Error) SetTraceID(val OptTraceID)
- func (s *Error) UnmarshalJSON(data []byte) error
- func (s *Error) Validate() error
- type ErrorHandler
- type ErrorStatusCode
- type Handler
- type Health
- func (s *Health) Decode(d *jx.Decoder) error
- func (s *Health) Encode(e *jx.Encoder)
- func (s *Health) GetBuildDate() time.Time
- func (s *Health) GetCommit() string
- func (s *Health) GetStatus() string
- func (s *Health) GetVersion() string
- func (s *Health) MarshalJSON() ([]byte, error)
- func (s *Health) SetBuildDate(val time.Time)
- func (s *Health) SetCommit(val string)
- func (s *Health) SetFake()
- func (s *Health) SetStatus(val string)
- func (s *Health) SetVersion(val string)
- func (s *Health) UnmarshalJSON(data []byte) error
- type Invoker
- type Labeler
- type Middleware
- type OperationName
- type OptSpanID
- func (o *OptSpanID) Decode(d *jx.Decoder) error
- func (o OptSpanID) Encode(e *jx.Encoder)
- func (o OptSpanID) Get() (v SpanID, ok bool)
- func (o OptSpanID) IsSet() bool
- func (s OptSpanID) MarshalJSON() ([]byte, error)
- func (o OptSpanID) Or(d SpanID) SpanID
- func (o *OptSpanID) Reset()
- func (s *OptSpanID) SetFake()
- func (o *OptSpanID) SetTo(v SpanID)
- func (s *OptSpanID) UnmarshalJSON(data []byte) error
- type OptTraceID
- func (o *OptTraceID) Decode(d *jx.Decoder) error
- func (o OptTraceID) Encode(e *jx.Encoder)
- func (o OptTraceID) Get() (v TraceID, ok bool)
- func (o OptTraceID) IsSet() bool
- func (s OptTraceID) MarshalJSON() ([]byte, error)
- func (o OptTraceID) Or(d TraceID) TraceID
- func (o *OptTraceID) Reset()
- func (s *OptTraceID) SetFake()
- func (o *OptTraceID) SetTo(v TraceID)
- func (s *OptTraceID) UnmarshalJSON(data []byte) error
- type Option
- type Route
- type Server
- type ServerOption
- func WithErrorHandler(h ErrorHandler) ServerOption
- func WithMaxMultipartMemory(max int64) ServerOption
- func WithMethodNotAllowed(methodNotAllowed func(w http.ResponseWriter, r *http.Request, allowed string)) ServerOption
- func WithMiddleware(m ...Middleware) ServerOption
- func WithNotFound(notFound http.HandlerFunc) ServerOption
- func WithPathPrefix(prefix string) ServerOption
- type SpanID
- type Task
- func (s *Task) Decode(d *jx.Decoder) error
- func (s *Task) Encode(e *jx.Encoder)
- func (s *Task) GetID() int64
- func (s *Task) GetTitle() string
- func (s *Task) MarshalJSON() ([]byte, error)
- func (s *Task) SetFake()
- func (s *Task) SetID(val int64)
- func (s *Task) SetTitle(val string)
- func (s *Task) UnmarshalJSON(data []byte) error
- func (s *Task) Validate() error
- type TaskList
- func (s *TaskList) Decode(d *jx.Decoder) error
- func (s *TaskList) Encode(e *jx.Encoder)
- func (s *TaskList) GetTasks() []Task
- func (s *TaskList) MarshalJSON() ([]byte, error)
- func (s *TaskList) SetFake()
- func (s *TaskList) SetTasks(val []Task)
- func (s *TaskList) UnmarshalJSON(data []byte) error
- func (s *TaskList) Validate() error
- type TraceID
- type UnimplementedHandler
- func (UnimplementedHandler) CreateTask(ctx context.Context, req *CreateTaskRequest) (r *Task, _ error)
- func (UnimplementedHandler) DeleteTask(ctx context.Context, params DeleteTaskParams) (r DeleteTaskRes, _ error)
- func (UnimplementedHandler) GenerateError(ctx context.Context) (r *Error, _ error)
- func (UnimplementedHandler) GetHealth(ctx context.Context) (r *Health, _ error)
- func (UnimplementedHandler) ListTasks(ctx context.Context) (r *TaskList, _ error)
- func (UnimplementedHandler) NewError(ctx context.Context, err error) (r *ErrorStatusCode)
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client implements OAS client.
func NewClient ¶
func NewClient(serverURL string, opts ...ClientOption) (*Client, error)
NewClient initializes new Client defined by OAS.
func (*Client) CreateTask ¶ added in v0.2.0
CreateTask invokes createTask operation.
Create a new task with the provided title.
POST /tasks
func (*Client) DeleteTask ¶ added in v0.2.0
func (c *Client) DeleteTask(ctx context.Context, params DeleteTaskParams) (DeleteTaskRes, error)
DeleteTask invokes deleteTask operation.
Delete a task by its unique identifier.
DELETE /tasks/{id}
func (*Client) GenerateError ¶ added in v0.2.0
GenerateError invokes generateError operation.
Utility endpoint for testing error handling - always returns an error response.
POST /tasks/error
type ClientOption ¶
type ClientOption interface {
// contains filtered or unexported methods
}
ClientOption is client config option.
func WithClient ¶
func WithClient(client ht.Client) ClientOption
WithClient specifies http client to use.
type CreateTaskRequest ¶ added in v0.2.0
type CreateTaskRequest struct {
// Title or description of the task to create.
Title string `json:"title"`
}
Request payload for creating a new task. Ref: #/components/schemas/CreateTaskRequest
func (*CreateTaskRequest) Decode ¶ added in v0.2.0
func (s *CreateTaskRequest) Decode(d *jx.Decoder) error
Decode decodes CreateTaskRequest from json.
func (*CreateTaskRequest) Encode ¶ added in v0.2.0
func (s *CreateTaskRequest) Encode(e *jx.Encoder)
Encode implements json.Marshaler.
func (*CreateTaskRequest) GetTitle ¶ added in v0.2.0
func (s *CreateTaskRequest) GetTitle() string
GetTitle returns the value of Title.
func (*CreateTaskRequest) MarshalJSON ¶ added in v0.2.0
func (s *CreateTaskRequest) MarshalJSON() ([]byte, error)
MarshalJSON implements stdjson.Marshaler.
func (*CreateTaskRequest) SetFake ¶ added in v0.2.0
func (s *CreateTaskRequest) SetFake()
SetFake set fake values.
func (*CreateTaskRequest) SetTitle ¶ added in v0.2.0
func (s *CreateTaskRequest) SetTitle(val string)
SetTitle sets the value of Title.
func (*CreateTaskRequest) UnmarshalJSON ¶ added in v0.2.0
func (s *CreateTaskRequest) UnmarshalJSON(data []byte) error
UnmarshalJSON implements stdjson.Unmarshaler.
func (*CreateTaskRequest) Validate ¶ added in v0.2.0
func (s *CreateTaskRequest) Validate() error
type DeleteTaskNoContent ¶ added in v0.2.0
type DeleteTaskNoContent struct{}
DeleteTaskNoContent is response for DeleteTask operation.
type DeleteTaskParams ¶ added in v0.2.0
type DeleteTaskParams struct {
// Unique identifier of the task to delete.
ID int64
}
DeleteTaskParams is parameters of deleteTask operation.
type DeleteTaskRes ¶ added in v0.2.0
type DeleteTaskRes interface {
// contains filtered or unexported methods
}
type Error ¶
type Error struct {
// Human-readable error message.
ErrorMessage string `json:"errorMessage"`
TraceID OptTraceID `json:"traceID"`
SpanID OptSpanID `json:"spanID"`
}
Error occurred while processing request. Ref: #/components/schemas/Error
func (*Error) GetErrorMessage ¶
GetErrorMessage returns the value of ErrorMessage.
func (*Error) GetTraceID ¶
func (s *Error) GetTraceID() OptTraceID
GetTraceID returns the value of TraceID.
func (*Error) MarshalJSON ¶
MarshalJSON implements stdjson.Marshaler.
func (*Error) SetErrorMessage ¶
SetErrorMessage sets the value of ErrorMessage.
func (*Error) SetTraceID ¶
func (s *Error) SetTraceID(val OptTraceID)
SetTraceID sets the value of TraceID.
func (*Error) UnmarshalJSON ¶
UnmarshalJSON implements stdjson.Unmarshaler.
type ErrorStatusCode ¶
ErrorStatusCode wraps Error with StatusCode.
func (*ErrorStatusCode) Error ¶
func (s *ErrorStatusCode) Error() string
func (*ErrorStatusCode) GetResponse ¶
func (s *ErrorStatusCode) GetResponse() Error
GetResponse returns the value of Response.
func (*ErrorStatusCode) GetStatusCode ¶
func (s *ErrorStatusCode) GetStatusCode() int
GetStatusCode returns the value of StatusCode.
func (*ErrorStatusCode) SetResponse ¶
func (s *ErrorStatusCode) SetResponse(val Error)
SetResponse sets the value of Response.
func (*ErrorStatusCode) SetStatusCode ¶
func (s *ErrorStatusCode) SetStatusCode(val int)
SetStatusCode sets the value of StatusCode.
func (*ErrorStatusCode) Validate ¶
func (s *ErrorStatusCode) Validate() error
type Handler ¶
type Handler interface {
// CreateTask implements createTask operation.
//
// Create a new task with the provided title.
//
// POST /tasks
CreateTask(ctx context.Context, req *CreateTaskRequest) (*Task, error)
// DeleteTask implements deleteTask operation.
//
// Delete a task by its unique identifier.
//
// DELETE /tasks/{id}
DeleteTask(ctx context.Context, params DeleteTaskParams) (DeleteTaskRes, error)
// GenerateError implements generateError operation.
//
// Utility endpoint for testing error handling - always returns an error response.
//
// POST /tasks/error
GenerateError(ctx context.Context) (*Error, error)
// GetHealth implements getHealth operation.
//
// Get health.
//
// GET /health
GetHealth(ctx context.Context) (*Health, error)
// ListTasks implements listTasks operation.
//
// Retrieve a list of all tasks in the system.
//
// GET /tasks
ListTasks(ctx context.Context) (*TaskList, error)
// NewError creates *ErrorStatusCode from error returned by handler.
//
// Used for common default response.
NewError(ctx context.Context, err error) *ErrorStatusCode
}
Handler handles operations described by OpenAPI v3 specification.
type Health ¶
type Health struct {
// Health status string.
Status string `json:"status"`
// Service version.
Version string `json:"version"`
// Service commit.
Commit string `json:"commit"`
// Service build date.
BuildDate time.Time `json:"buildDate"`
}
Health status. Ref: #/components/schemas/Health
func (*Health) GetBuildDate ¶
GetBuildDate returns the value of BuildDate.
func (*Health) GetVersion ¶
GetVersion returns the value of Version.
func (*Health) MarshalJSON ¶
MarshalJSON implements stdjson.Marshaler.
func (*Health) SetBuildDate ¶
SetBuildDate sets the value of BuildDate.
func (*Health) SetVersion ¶
SetVersion sets the value of Version.
func (*Health) UnmarshalJSON ¶
UnmarshalJSON implements stdjson.Unmarshaler.
type Invoker ¶
type Invoker interface {
// CreateTask invokes createTask operation.
//
// Create a new task with the provided title.
//
// POST /tasks
CreateTask(ctx context.Context, request *CreateTaskRequest) (*Task, error)
// DeleteTask invokes deleteTask operation.
//
// Delete a task by its unique identifier.
//
// DELETE /tasks/{id}
DeleteTask(ctx context.Context, params DeleteTaskParams) (DeleteTaskRes, error)
// GenerateError invokes generateError operation.
//
// Utility endpoint for testing error handling - always returns an error response.
//
// POST /tasks/error
GenerateError(ctx context.Context) (*Error, error)
// GetHealth invokes getHealth operation.
//
// Get health.
//
// GET /health
GetHealth(ctx context.Context) (*Health, error)
// ListTasks invokes listTasks operation.
//
// Retrieve a list of all tasks in the system.
//
// GET /tasks
ListTasks(ctx context.Context) (*TaskList, error)
}
Invoker invokes operations described by OpenAPI v3 specification.
type Labeler ¶
type Labeler struct {
// contains filtered or unexported fields
}
Labeler is used to allow adding custom attributes to the server request metrics.
func LabelerFromContext ¶
LabelerFromContext retrieves the Labeler from the provided context, if present.
If no Labeler was found in the provided context a new, empty Labeler is returned and the second return value is false. In this case it is safe to use the Labeler but any attributes added to it will not be used.
func (*Labeler) AttributeSet ¶
AttributeSet returns the attributes added to the Labeler as an attribute.Set.
type OperationName ¶
type OperationName = string
OperationName is the ogen operation name
const ( CreateTaskOperation OperationName = "CreateTask" DeleteTaskOperation OperationName = "DeleteTask" GenerateErrorOperation OperationName = "GenerateError" GetHealthOperation OperationName = "GetHealth" ListTasksOperation OperationName = "ListTasks" )
type OptSpanID ¶
OptSpanID is optional SpanID.
func NewOptSpanID ¶
NewOptSpanID returns new OptSpanID with value set to v.
func (OptSpanID) MarshalJSON ¶
MarshalJSON implements stdjson.Marshaler.
func (*OptSpanID) UnmarshalJSON ¶
UnmarshalJSON implements stdjson.Unmarshaler.
type OptTraceID ¶
OptTraceID is optional TraceID.
func NewOptTraceID ¶
func NewOptTraceID(v TraceID) OptTraceID
NewOptTraceID returns new OptTraceID with value set to v.
func (*OptTraceID) Decode ¶
func (o *OptTraceID) Decode(d *jx.Decoder) error
Decode decodes TraceID from json.
func (OptTraceID) Encode ¶
func (o OptTraceID) Encode(e *jx.Encoder)
Encode encodes TraceID as json.
func (OptTraceID) Get ¶
func (o OptTraceID) Get() (v TraceID, ok bool)
Get returns value and boolean that denotes whether value was set.
func (OptTraceID) IsSet ¶
func (o OptTraceID) IsSet() bool
IsSet returns true if OptTraceID was set.
func (OptTraceID) MarshalJSON ¶
func (s OptTraceID) MarshalJSON() ([]byte, error)
MarshalJSON implements stdjson.Marshaler.
func (OptTraceID) Or ¶
func (o OptTraceID) Or(d TraceID) TraceID
Or returns value if set, or given parameter if does not.
func (*OptTraceID) UnmarshalJSON ¶
func (s *OptTraceID) UnmarshalJSON(data []byte) error
UnmarshalJSON implements stdjson.Unmarshaler.
type Option ¶
type Option interface {
ServerOption
ClientOption
}
Option is config option.
func WithAttributes ¶
WithAttributes specifies default otel attributes.
func WithMeterProvider ¶
func WithMeterProvider(provider metric.MeterProvider) Option
WithMeterProvider specifies a meter provider to use for creating a meter.
If none is specified, the otel.GetMeterProvider() is used.
func WithTracerProvider ¶
func WithTracerProvider(provider trace.TracerProvider) Option
WithTracerProvider specifies a tracer provider to use for creating a tracer.
If none is specified, the global provider is used.
type Route ¶
type Route struct {
// contains filtered or unexported fields
}
Route is route object.
func (Route) OperationID ¶
OperationID returns OpenAPI operationId.
type Server ¶
type Server struct {
// contains filtered or unexported fields
}
Server implements http server based on OpenAPI v3 specification and calls Handler to handle requests.
func NewServer ¶
func NewServer(h Handler, opts ...ServerOption) (*Server, error)
NewServer creates new Server.
type ServerOption ¶
type ServerOption interface {
// contains filtered or unexported methods
}
ServerOption is server config option.
func WithErrorHandler ¶
func WithErrorHandler(h ErrorHandler) ServerOption
WithErrorHandler specifies error handler to use.
func WithMaxMultipartMemory ¶
func WithMaxMultipartMemory(max int64) ServerOption
WithMaxMultipartMemory specifies limit of memory for storing file parts. File parts which can't be stored in memory will be stored on disk in temporary files.
func WithMethodNotAllowed ¶
func WithMethodNotAllowed(methodNotAllowed func(w http.ResponseWriter, r *http.Request, allowed string)) ServerOption
WithMethodNotAllowed specifies Method Not Allowed handler to use.
func WithMiddleware ¶
func WithMiddleware(m ...Middleware) ServerOption
WithMiddleware specifies middlewares to use.
func WithNotFound ¶
func WithNotFound(notFound http.HandlerFunc) ServerOption
WithNotFound specifies Not Found handler to use.
func WithPathPrefix ¶
func WithPathPrefix(prefix string) ServerOption
WithPathPrefix specifies server path prefix.
type SpanID ¶
type SpanID string
func (SpanID) MarshalJSON ¶
MarshalJSON implements stdjson.Marshaler.
func (*SpanID) UnmarshalJSON ¶
UnmarshalJSON implements stdjson.Unmarshaler.
type Task ¶ added in v0.2.0
type Task struct {
// Unique identifier for the task.
ID int64 `json:"id"`
// Title or description of the task.
Title string `json:"title"`
}
A task entity with unique identifier and title. Ref: #/components/schemas/Task
func (*Task) MarshalJSON ¶ added in v0.2.0
MarshalJSON implements stdjson.Marshaler.
func (*Task) UnmarshalJSON ¶ added in v0.2.0
UnmarshalJSON implements stdjson.Unmarshaler.
type TaskList ¶ added in v0.2.0
type TaskList struct {
// Array of tasks.
Tasks []Task `json:"tasks"`
}
Response containing a list of tasks. Ref: #/components/schemas/TaskList
func (*TaskList) MarshalJSON ¶ added in v0.2.0
MarshalJSON implements stdjson.Marshaler.
func (*TaskList) UnmarshalJSON ¶ added in v0.2.0
UnmarshalJSON implements stdjson.Unmarshaler.
type TraceID ¶
type TraceID string
func (TraceID) MarshalJSON ¶
MarshalJSON implements stdjson.Marshaler.
func (*TraceID) UnmarshalJSON ¶
UnmarshalJSON implements stdjson.Unmarshaler.
type UnimplementedHandler ¶
type UnimplementedHandler struct{}
UnimplementedHandler is no-op Handler which returns http.ErrNotImplemented.
func (UnimplementedHandler) CreateTask ¶ added in v0.2.0
func (UnimplementedHandler) CreateTask(ctx context.Context, req *CreateTaskRequest) (r *Task, _ error)
CreateTask implements createTask operation.
Create a new task with the provided title.
POST /tasks
func (UnimplementedHandler) DeleteTask ¶ added in v0.2.0
func (UnimplementedHandler) DeleteTask(ctx context.Context, params DeleteTaskParams) (r DeleteTaskRes, _ error)
DeleteTask implements deleteTask operation.
Delete a task by its unique identifier.
DELETE /tasks/{id}
func (UnimplementedHandler) GenerateError ¶ added in v0.2.0
func (UnimplementedHandler) GenerateError(ctx context.Context) (r *Error, _ error)
GenerateError implements generateError operation.
Utility endpoint for testing error handling - always returns an error response.
POST /tasks/error
func (UnimplementedHandler) GetHealth ¶
func (UnimplementedHandler) GetHealth(ctx context.Context) (r *Health, _ error)
GetHealth implements getHealth operation.
Get health.
GET /health
func (UnimplementedHandler) ListTasks ¶ added in v0.2.0
func (UnimplementedHandler) ListTasks(ctx context.Context) (r *TaskList, _ error)
ListTasks implements listTasks operation.
Retrieve a list of all tasks in the system.
GET /tasks
func (UnimplementedHandler) NewError ¶
func (UnimplementedHandler) NewError(ctx context.Context, err error) (r *ErrorStatusCode)
NewError creates *ErrorStatusCode from error returned by handler.
Used for common default response.
Source Files
¶
- oas_cfg_gen.go
- oas_client_gen.go
- oas_faker_gen.go
- oas_handlers_gen.go
- oas_interfaces_gen.go
- oas_json_gen.go
- oas_labeler_gen.go
- oas_middleware_gen.go
- oas_operations_gen.go
- oas_parameters_gen.go
- oas_request_decoders_gen.go
- oas_request_encoders_gen.go
- oas_response_decoders_gen.go
- oas_response_encoders_gen.go
- oas_router_gen.go
- oas_schemas_gen.go
- oas_server_gen.go
- oas_unimplemented_gen.go
- oas_validators_gen.go