// Code generated by go-swagger; DO NOT EDIT. package entries // This file was generated by the swagger tool. // Editing this file might prove futile when you re-run the swagger generate command import ( "github.com/go-openapi/runtime" "github.com/go-openapi/strfmt" ) // New creates a new entries API client. func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService { return &Client{transport: transport, formats: formats} } /* Client for entries API */ type Client struct { transport runtime.ClientTransport formats strfmt.Registry } // ClientService is the interface for Client methods type ClientService interface { CreateLogEntry(params *CreateLogEntryParams) (*CreateLogEntryCreated, error) GetLogEntryByIndex(params *GetLogEntryByIndexParams) (*GetLogEntryByIndexOK, error) GetLogEntryByUUID(params *GetLogEntryByUUIDParams) (*GetLogEntryByUUIDOK, error) GetLogEntryProof(params *GetLogEntryProofParams) (*GetLogEntryProofOK, error) SearchLogQuery(params *SearchLogQueryParams) (*SearchLogQueryOK, error) SetTransport(transport runtime.ClientTransport) } /* CreateLogEntry creates an entry in the transparency log Creates an entry in the transparency log for a detached signature, public key, and content. Items can be included in the request or fetched by the server when URLs are specified. */ func (a *Client) CreateLogEntry(params *CreateLogEntryParams) (*CreateLogEntryCreated, error) { // TODO: Validate the params before sending if params == nil { params = NewCreateLogEntryParams() } result, err := a.transport.Submit(&runtime.ClientOperation{ ID: "createLogEntry", Method: "POST", PathPattern: "/api/v1/log/entries", ProducesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, ConsumesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, Schemes: []string{"http"}, Params: params, Reader: &CreateLogEntryReader{formats: a.formats}, Context: params.Context, Client: params.HTTPClient, }) if err != nil { return nil, err } success, ok := result.(*CreateLogEntryCreated) if ok { return success, nil } // unexpected success response unexpectedSuccess := result.(*CreateLogEntryDefault) return nil, runtime.NewAPIError("unexpected success response: content available as default response in error", unexpectedSuccess, unexpectedSuccess.Code()) } /* GetLogEntryByIndex retrieves an entry from the transparency log if it exists by index */ func (a *Client) GetLogEntryByIndex(params *GetLogEntryByIndexParams) (*GetLogEntryByIndexOK, error) { // TODO: Validate the params before sending if params == nil { params = NewGetLogEntryByIndexParams() } result, err := a.transport.Submit(&runtime.ClientOperation{ ID: "getLogEntryByIndex", Method: "GET", PathPattern: "/api/v1/log/entries", ProducesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, ConsumesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, Schemes: []string{"http"}, Params: params, Reader: &GetLogEntryByIndexReader{formats: a.formats}, Context: params.Context, Client: params.HTTPClient, }) if err != nil { return nil, err } success, ok := result.(*GetLogEntryByIndexOK) if ok { return success, nil } // unexpected success response unexpectedSuccess := result.(*GetLogEntryByIndexDefault) return nil, runtime.NewAPIError("unexpected success response: content available as default response in error", unexpectedSuccess, unexpectedSuccess.Code()) } /* GetLogEntryByUUID retrieves an entry from the transparency log if it exists by UUID */ func (a *Client) GetLogEntryByUUID(params *GetLogEntryByUUIDParams) (*GetLogEntryByUUIDOK, error) { // TODO: Validate the params before sending if params == nil { params = NewGetLogEntryByUUIDParams() } result, err := a.transport.Submit(&runtime.ClientOperation{ ID: "getLogEntryByUUID", Method: "GET", PathPattern: "/api/v1/log/entries/{entryUUID}", ProducesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, ConsumesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, Schemes: []string{"http"}, Params: params, Reader: &GetLogEntryByUUIDReader{formats: a.formats}, Context: params.Context, Client: params.HTTPClient, }) if err != nil { return nil, err } success, ok := result.(*GetLogEntryByUUIDOK) if ok { return success, nil } // unexpected success response unexpectedSuccess := result.(*GetLogEntryByUUIDDefault) return nil, runtime.NewAPIError("unexpected success response: content available as default response in error", unexpectedSuccess, unexpectedSuccess.Code()) } /* GetLogEntryProof gets information required to generate an inclusion proof for a specified entry in the transparency log Returns root hash, tree size, and a list of hashes that can be used to calculate proof of an entry being included in the transparency log */ func (a *Client) GetLogEntryProof(params *GetLogEntryProofParams) (*GetLogEntryProofOK, error) { // TODO: Validate the params before sending if params == nil { params = NewGetLogEntryProofParams() } result, err := a.transport.Submit(&runtime.ClientOperation{ ID: "getLogEntryProof", Method: "GET", PathPattern: "/api/v1/log/entries/{entryUUID}/proof", ProducesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, ConsumesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, Schemes: []string{"http"}, Params: params, Reader: &GetLogEntryProofReader{formats: a.formats}, Context: params.Context, Client: params.HTTPClient, }) if err != nil { return nil, err } success, ok := result.(*GetLogEntryProofOK) if ok { return success, nil } // unexpected success response unexpectedSuccess := result.(*GetLogEntryProofDefault) return nil, runtime.NewAPIError("unexpected success response: content available as default response in error", unexpectedSuccess, unexpectedSuccess.Code()) } /* SearchLogQuery searches transparency log for one or more log entries */ func (a *Client) SearchLogQuery(params *SearchLogQueryParams) (*SearchLogQueryOK, error) { // TODO: Validate the params before sending if params == nil { params = NewSearchLogQueryParams() } result, err := a.transport.Submit(&runtime.ClientOperation{ ID: "searchLogQuery", Method: "POST", PathPattern: "/api/v1/log/entries/retrieve", ProducesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, ConsumesMediaTypes: []string{"application/json", "application/xml", "application/yaml"}, Schemes: []string{"http"}, Params: params, Reader: &SearchLogQueryReader{formats: a.formats}, Context: params.Context, Client: params.HTTPClient, }) if err != nil { return nil, err } success, ok := result.(*SearchLogQueryOK) if ok { return success, nil } // unexpected success response unexpectedSuccess := result.(*SearchLogQueryDefault) return nil, runtime.NewAPIError("unexpected success response: content available as default response in error", unexpectedSuccess, unexpectedSuccess.Code()) } // SetTransport changes the transport on the client func (a *Client) SetTransport(transport runtime.ClientTransport) { a.transport = transport }