operations

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Apr 17, 2021 License: MPL-2.0-no-copyleft-exception, MIT Imports: 22 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client is the base client struct.

func New

func New(baseURL string, token string, cert *transport.Cert) (*Client, error)

New creates a new *Client. Passing a cert will enable client/server certificate authentication; otherwise pass nil for no auth.

func (*Client) DeleteCapabilitiesUsernameCapability

func (c *Client) DeleteCapabilitiesUsernameCapability(ctx context.Context, capability string, username string) error

DeleteCapabilitiesUsernameCapability remove a named capability

func (*Client) DeleteToken

func (c *Client) DeleteToken(ctx context.Context) error

DeleteToken remove and reset your tiny c i access token

func (*Client) GetErrors

func (c *Client) GetErrors(ctx context.Context) ([]*models.UserError, error)

GetErrors retrieve errors

func (*Client) GetLogAttachID

func (c *Client) GetLogAttachID(ctx context.Context, id int64, w io.WriteCloser) error

GetLogAttachID attach to a running log

func (*Client) GetLoggedin

func (c *Client) GetLoggedin(ctx context.Context) (string, error)

GetLoggedin check logged in state

func (*Client) GetLogin

func (c *Client) GetLogin(ctx context.Context, code string, state string) error

GetLogin log into the system

func (*Client) GetLoginUpgrade

func (c *Client) GetLoginUpgrade(ctx context.Context) error

GetLoginUpgrade log into the system with upgraded permissions

func (*Client) GetLogout

func (c *Client) GetLogout(ctx context.Context) error

GetLogout log out of the system

func (*Client) GetRepositoriesCiAddOwnerRepo

func (c *Client) GetRepositoriesCiAddOwnerRepo(ctx context.Context, owner string, repo string) error

GetRepositoriesCiAddOwnerRepo add a specific repository to c i

func (*Client) GetRepositoriesCiDelOwnerRepo

func (c *Client) GetRepositoriesCiDelOwnerRepo(ctx context.Context, owner string, repo string) error

GetRepositoriesCiDelOwnerRepo removes a specific repository from c i

func (*Client) GetRepositoriesMy

func (c *Client) GetRepositoriesMy(ctx context.Context, search string) (models.RepositoryList, error)

GetRepositoriesMy fetch all the writable repositories for the user

func (*Client) GetRepositoriesScan

func (c *Client) GetRepositoriesScan(ctx context.Context) error

GetRepositoriesScan scan repositories from the remote resource

func (*Client) GetRepositoriesSubAddOwnerRepo

func (c *Client) GetRepositoriesSubAddOwnerRepo(ctx context.Context, owner string, repo string) error

GetRepositoriesSubAddOwnerRepo subscribe to a repository running c i

func (*Client) GetRepositoriesSubDelOwnerRepo

func (c *Client) GetRepositoriesSubDelOwnerRepo(ctx context.Context, owner string, repo string) error

GetRepositoriesSubDelOwnerRepo unsubscribe from a repository

func (*Client) GetRepositoriesSubscribed

func (c *Client) GetRepositoriesSubscribed(ctx context.Context, search string) (models.RepositoryList, error)

GetRepositoriesSubscribed list all subscribed repositories

func (*Client) GetRepositoriesVisible

func (c *Client) GetRepositoriesVisible(ctx context.Context, search string) (models.RepositoryList, error)

GetRepositoriesVisible fetch all the repositories the user can view

func (*Client) GetRunRunID

func (c *Client) GetRunRunID(ctx context.Context, runID int64) (*models.Run, error)

GetRunRunID get a run by ID

func (*Client) GetRuns

func (c *Client) GetRuns(ctx context.Context, page int64, perPage int64, repository string, sha string) (models.RunList, error)

GetRuns obtain the run list for the user

func (*Client) GetRunsCount

func (c *Client) GetRunsCount(ctx context.Context, repository string, sha string) (int64, error)

GetRunsCount count the runs

func (*Client) GetSubmissionID

func (c *Client) GetSubmissionID(ctx context.Context, id int64) (*models.ModelSubmission, error)

GetSubmissionID get a submission by ID

func (*Client) GetSubmissionIDRuns

func (c *Client) GetSubmissionIDRuns(ctx context.Context, id int64, page int64, perPage int64) (models.RunList, error)

GetSubmissionIDRuns get submission runs by ID

func (*Client) GetSubmissionIDTasks

func (c *Client) GetSubmissionIDTasks(ctx context.Context, id int64, page int64, perPage int64) (models.TaskList, error)

GetSubmissionIDTasks get submission tasks by ID

func (*Client) GetSubmissions

func (c *Client) GetSubmissions(ctx context.Context, page int64, perPage int64, repository string, sha string) (models.ModelSubmissionList, error)

GetSubmissions list submisssions

func (*Client) GetSubmissionsCount

func (c *Client) GetSubmissionsCount(ctx context.Context, repository string, sha string) (int64, error)

GetSubmissionsCount count submisssions

func (*Client) GetSubmit

func (c *Client) GetSubmit(ctx context.Context, all bool, repository string, sha string) error

GetSubmit perform a manual submission to tiny c i

func (*Client) GetTasks

func (c *Client) GetTasks(ctx context.Context, page int64, perPage int64, repository string, sha string) (models.TaskList, error)

GetTasks obtain the task list optionally filtering by repository and sha

func (*Client) GetTasksCount

func (c *Client) GetTasksCount(ctx context.Context, repository string, sha string) (int64, error)

GetTasksCount count the tasks

func (*Client) GetTasksRunsID

func (c *Client) GetTasksRunsID(ctx context.Context, id int64, page int64, perPage int64) (models.RunList, error)

GetTasksRunsID obtain the run list based on the task ID

func (*Client) GetTasksRunsIDCount

func (c *Client) GetTasksRunsIDCount(ctx context.Context, id int64) (int64, error)

GetTasksRunsIDCount count the runs corresponding to the task ID

func (*Client) GetTasksSubscribed

func (c *Client) GetTasksSubscribed(ctx context.Context, page int64, perPage int64) (models.TaskList, error)

GetTasksSubscribed obtain the list of tasks that belong to repositories you are subscribed to

func (*Client) GetToken

func (c *Client) GetToken(ctx context.Context) (string, error)

GetToken get a tiny c i access token

func (*Client) GetUserProperties

func (c *Client) GetUserProperties(ctx context.Context) (interface{}, error)

GetUserProperties get information about the current user

func (*Client) MarshalCookies

func (c *Client) MarshalCookies() ([]byte, error)

MarshalCookies will marshal any existing cookies to the byte array.

func (*Client) PostCancelRunID

func (c *Client) PostCancelRunID(ctx context.Context, runID int64) error

PostCancelRunID cancel by run ID

func (*Client) PostCapabilitiesUsernameCapability

func (c *Client) PostCapabilitiesUsernameCapability(ctx context.Context, capability string, username string) error

PostCapabilitiesUsernameCapability add a named capability

func (*Client) PostSubmissionIDCancel

func (c *Client) PostSubmissionIDCancel(ctx context.Context, id int64) error

PostSubmissionIDCancel cancel a submission by ID

func (*Client) PostTasksCancelID

func (c *Client) PostTasksCancelID(ctx context.Context, id int64) error

PostTasksCancelID cancel by task ID

func (*Client) SetJar

func (c *Client) SetJar(jar *cookiejar.Jar)

SetJar overwrites the cookie jar for the underlying HTTP client.

func (*Client) UnmarshalCookies

func (c *Client) UnmarshalCookies(content []byte) error

UnmarshalCookies loads cookies into the given client.

type DeleteCapabilitiesUsernameCapabilityInternalServerError

type DeleteCapabilitiesUsernameCapabilityInternalServerError struct {
	Payload *models.Error
}

DeleteCapabilitiesUsernameCapabilityInternalServerError handles this case with default header values.

An error occurred adding. Body has error result.

func NewDeleteCapabilitiesUsernameCapabilityInternalServerError

func NewDeleteCapabilitiesUsernameCapabilityInternalServerError() *DeleteCapabilitiesUsernameCapabilityInternalServerError

NewDeleteCapabilitiesUsernameCapabilityInternalServerError creates a DeleteCapabilitiesUsernameCapabilityInternalServerError with default headers values

func (*DeleteCapabilitiesUsernameCapabilityInternalServerError) Error

type DeleteCapabilitiesUsernameCapabilityOK

type DeleteCapabilitiesUsernameCapabilityOK struct {
}

DeleteCapabilitiesUsernameCapabilityOK handles this case with default header values.

The capability was successfully removed

func NewDeleteCapabilitiesUsernameCapabilityOK

func NewDeleteCapabilitiesUsernameCapabilityOK() *DeleteCapabilitiesUsernameCapabilityOK

NewDeleteCapabilitiesUsernameCapabilityOK creates a DeleteCapabilitiesUsernameCapabilityOK with default headers values

func (*DeleteCapabilitiesUsernameCapabilityOK) Error

type DeleteCapabilitiesUsernameCapabilityParams

type DeleteCapabilitiesUsernameCapabilityParams struct {

	/*Capability
	  The name of the capability to remove.


	*/
	Capability string
	/*Username
	  The user ID to remove the capability from.


	*/
	Username string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteCapabilitiesUsernameCapabilityParams contains all the parameters to send to the API endpoint for the delete capabilities username capability operation typically these are written to a http.Request

func NewDeleteCapabilitiesUsernameCapabilityParams

func NewDeleteCapabilitiesUsernameCapabilityParams() *DeleteCapabilitiesUsernameCapabilityParams

NewDeleteCapabilitiesUsernameCapabilityParams creates a new DeleteCapabilitiesUsernameCapabilityParams object with the default values initialized.

func NewDeleteCapabilitiesUsernameCapabilityParamsWithContext

func NewDeleteCapabilitiesUsernameCapabilityParamsWithContext(ctx context.Context) *DeleteCapabilitiesUsernameCapabilityParams

NewDeleteCapabilitiesUsernameCapabilityParamsWithContext creates a new DeleteCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a context for a request

func NewDeleteCapabilitiesUsernameCapabilityParamsWithHTTPClient

func NewDeleteCapabilitiesUsernameCapabilityParamsWithHTTPClient(client *http.Client) *DeleteCapabilitiesUsernameCapabilityParams

NewDeleteCapabilitiesUsernameCapabilityParamsWithHTTPClient creates a new DeleteCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDeleteCapabilitiesUsernameCapabilityParamsWithTimeout

func NewDeleteCapabilitiesUsernameCapabilityParamsWithTimeout(timeout time.Duration) *DeleteCapabilitiesUsernameCapabilityParams

NewDeleteCapabilitiesUsernameCapabilityParamsWithTimeout creates a new DeleteCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a timeout on a request

func (*DeleteCapabilitiesUsernameCapabilityParams) HandleQueryParam

func (o *DeleteCapabilitiesUsernameCapabilityParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*DeleteCapabilitiesUsernameCapabilityParams) SetCapability

func (o *DeleteCapabilitiesUsernameCapabilityParams) SetCapability(capability string)

SetCapability adds the capability to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) SetContext

SetContext adds the context to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) SetHTTPClient

func (o *DeleteCapabilitiesUsernameCapabilityParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) SetTimeout

SetTimeout adds the timeout to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) SetUsername

func (o *DeleteCapabilitiesUsernameCapabilityParams) SetUsername(username string)

SetUsername adds the username to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WithCapability

WithCapability adds the capability to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WithContext

WithContext adds the context to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WithTimeout

WithTimeout adds the timeout to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WithUsername

WithUsername adds the username to the delete capabilities username capability params

func (*DeleteCapabilitiesUsernameCapabilityParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteCapabilitiesUsernameCapabilityReader

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

DeleteCapabilitiesUsernameCapabilityReader is a Reader for the DeleteCapabilitiesUsernameCapability structure.

func (*DeleteCapabilitiesUsernameCapabilityReader) ReadResponse

func (o *DeleteCapabilitiesUsernameCapabilityReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type DeleteTokenInternalServerError

type DeleteTokenInternalServerError struct {
	Payload *models.Error
}

DeleteTokenInternalServerError handles this case with default header values.

Internal Server Error

func NewDeleteTokenInternalServerError

func NewDeleteTokenInternalServerError() *DeleteTokenInternalServerError

NewDeleteTokenInternalServerError creates a DeleteTokenInternalServerError with default headers values

func (*DeleteTokenInternalServerError) Error

type DeleteTokenOK

type DeleteTokenOK struct {
}

DeleteTokenOK handles this case with default header values.

OK

func NewDeleteTokenOK

func NewDeleteTokenOK() *DeleteTokenOK

NewDeleteTokenOK creates a DeleteTokenOK with default headers values

func (*DeleteTokenOK) Error

func (o *DeleteTokenOK) Error() string

type DeleteTokenParams

type DeleteTokenParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

DeleteTokenParams contains all the parameters to send to the API endpoint for the delete token operation typically these are written to a http.Request

func NewDeleteTokenParams

func NewDeleteTokenParams() *DeleteTokenParams

NewDeleteTokenParams creates a new DeleteTokenParams object with the default values initialized.

func NewDeleteTokenParamsWithContext

func NewDeleteTokenParamsWithContext(ctx context.Context) *DeleteTokenParams

NewDeleteTokenParamsWithContext creates a new DeleteTokenParams object with the default values initialized, and the ability to set a context for a request

func NewDeleteTokenParamsWithHTTPClient

func NewDeleteTokenParamsWithHTTPClient(client *http.Client) *DeleteTokenParams

NewDeleteTokenParamsWithHTTPClient creates a new DeleteTokenParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDeleteTokenParamsWithTimeout

func NewDeleteTokenParamsWithTimeout(timeout time.Duration) *DeleteTokenParams

NewDeleteTokenParamsWithTimeout creates a new DeleteTokenParams object with the default values initialized, and the ability to set a timeout on a request

func (*DeleteTokenParams) HandleQueryParam

func (o *DeleteTokenParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*DeleteTokenParams) SetContext

func (o *DeleteTokenParams) SetContext(ctx context.Context)

SetContext adds the context to the delete token params

func (*DeleteTokenParams) SetHTTPClient

func (o *DeleteTokenParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the delete token params

func (*DeleteTokenParams) SetTimeout

func (o *DeleteTokenParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the delete token params

func (*DeleteTokenParams) WithContext

func (o *DeleteTokenParams) WithContext(ctx context.Context) *DeleteTokenParams

WithContext adds the context to the delete token params

func (*DeleteTokenParams) WithHTTPClient

func (o *DeleteTokenParams) WithHTTPClient(client *http.Client) *DeleteTokenParams

WithHTTPClient adds the HTTPClient to the delete token params

func (*DeleteTokenParams) WithTimeout

func (o *DeleteTokenParams) WithTimeout(timeout time.Duration) *DeleteTokenParams

WithTimeout adds the timeout to the delete token params

func (*DeleteTokenParams) WriteToRequest

func (o *DeleteTokenParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type DeleteTokenReader

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

DeleteTokenReader is a Reader for the DeleteToken structure.

func (*DeleteTokenReader) ReadResponse

func (o *DeleteTokenReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetErrorsInternalServerError

type GetErrorsInternalServerError struct {
	Payload *models.Error
}

GetErrorsInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetErrorsInternalServerError

func NewGetErrorsInternalServerError() *GetErrorsInternalServerError

NewGetErrorsInternalServerError creates a GetErrorsInternalServerError with default headers values

func (*GetErrorsInternalServerError) Error

type GetErrorsOK

type GetErrorsOK struct {
	Payload []*models.UserError
}

GetErrorsOK handles this case with default header values.

Any errors returned

func NewGetErrorsOK

func NewGetErrorsOK() *GetErrorsOK

NewGetErrorsOK creates a GetErrorsOK with default headers values

func (*GetErrorsOK) Error

func (o *GetErrorsOK) Error() string

type GetErrorsParams

type GetErrorsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetErrorsParams contains all the parameters to send to the API endpoint for the get errors operation typically these are written to a http.Request

func NewGetErrorsParams

func NewGetErrorsParams() *GetErrorsParams

NewGetErrorsParams creates a new GetErrorsParams object with the default values initialized.

func NewGetErrorsParamsWithContext

func NewGetErrorsParamsWithContext(ctx context.Context) *GetErrorsParams

NewGetErrorsParamsWithContext creates a new GetErrorsParams object with the default values initialized, and the ability to set a context for a request

func NewGetErrorsParamsWithHTTPClient

func NewGetErrorsParamsWithHTTPClient(client *http.Client) *GetErrorsParams

NewGetErrorsParamsWithHTTPClient creates a new GetErrorsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetErrorsParamsWithTimeout

func NewGetErrorsParamsWithTimeout(timeout time.Duration) *GetErrorsParams

NewGetErrorsParamsWithTimeout creates a new GetErrorsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetErrorsParams) HandleQueryParam

func (o *GetErrorsParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetErrorsParams) SetContext

func (o *GetErrorsParams) SetContext(ctx context.Context)

SetContext adds the context to the get errors params

func (*GetErrorsParams) SetHTTPClient

func (o *GetErrorsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get errors params

func (*GetErrorsParams) SetTimeout

func (o *GetErrorsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get errors params

func (*GetErrorsParams) WithContext

func (o *GetErrorsParams) WithContext(ctx context.Context) *GetErrorsParams

WithContext adds the context to the get errors params

func (*GetErrorsParams) WithHTTPClient

func (o *GetErrorsParams) WithHTTPClient(client *http.Client) *GetErrorsParams

WithHTTPClient adds the HTTPClient to the get errors params

func (*GetErrorsParams) WithTimeout

func (o *GetErrorsParams) WithTimeout(timeout time.Duration) *GetErrorsParams

WithTimeout adds the timeout to the get errors params

func (*GetErrorsParams) WriteToRequest

func (o *GetErrorsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetErrorsReader

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

GetErrorsReader is a Reader for the GetErrors structure.

func (*GetErrorsReader) ReadResponse

func (o *GetErrorsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetLogAttachIDInternalServerError

type GetLogAttachIDInternalServerError struct {
	Payload *models.Error
}

GetLogAttachIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetLogAttachIDInternalServerError

func NewGetLogAttachIDInternalServerError() *GetLogAttachIDInternalServerError

NewGetLogAttachIDInternalServerError creates a GetLogAttachIDInternalServerError with default headers values

func (*GetLogAttachIDInternalServerError) Error

type GetLogAttachIDParams

type GetLogAttachIDParams struct {

	/*ID
	  The ID of the run to retrieve the log for.

	*/
	ID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLogAttachIDParams contains all the parameters to send to the API endpoint for the get log attach ID operation typically these are written to a http.Request

func NewGetLogAttachIDParams

func NewGetLogAttachIDParams() *GetLogAttachIDParams

NewGetLogAttachIDParams creates a new GetLogAttachIDParams object with the default values initialized.

func NewGetLogAttachIDParamsWithContext

func NewGetLogAttachIDParamsWithContext(ctx context.Context) *GetLogAttachIDParams

NewGetLogAttachIDParamsWithContext creates a new GetLogAttachIDParams object with the default values initialized, and the ability to set a context for a request

func NewGetLogAttachIDParamsWithHTTPClient

func NewGetLogAttachIDParamsWithHTTPClient(client *http.Client) *GetLogAttachIDParams

NewGetLogAttachIDParamsWithHTTPClient creates a new GetLogAttachIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLogAttachIDParamsWithTimeout

func NewGetLogAttachIDParamsWithTimeout(timeout time.Duration) *GetLogAttachIDParams

NewGetLogAttachIDParamsWithTimeout creates a new GetLogAttachIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLogAttachIDParams) HandleQueryParam

func (o *GetLogAttachIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetLogAttachIDParams) SetContext

func (o *GetLogAttachIDParams) SetContext(ctx context.Context)

SetContext adds the context to the get log attach ID params

func (*GetLogAttachIDParams) SetHTTPClient

func (o *GetLogAttachIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get log attach ID params

func (*GetLogAttachIDParams) SetID

func (o *GetLogAttachIDParams) SetID(id int64)

SetID adds the id to the get log attach ID params

func (*GetLogAttachIDParams) SetTimeout

func (o *GetLogAttachIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get log attach ID params

func (*GetLogAttachIDParams) WithContext

WithContext adds the context to the get log attach ID params

func (*GetLogAttachIDParams) WithHTTPClient

func (o *GetLogAttachIDParams) WithHTTPClient(client *http.Client) *GetLogAttachIDParams

WithHTTPClient adds the HTTPClient to the get log attach ID params

func (*GetLogAttachIDParams) WithID

WithID adds the id to the get log attach ID params

func (*GetLogAttachIDParams) WithTimeout

func (o *GetLogAttachIDParams) WithTimeout(timeout time.Duration) *GetLogAttachIDParams

WithTimeout adds the timeout to the get log attach ID params

func (*GetLogAttachIDParams) WriteToRequest

func (o *GetLogAttachIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetLogAttachIDReader

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

GetLogAttachIDReader is a Reader for the GetLogAttachID structure.

func (*GetLogAttachIDReader) ReadResponse

func (o *GetLogAttachIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetLogAttachIDSwitchingProtocols

type GetLogAttachIDSwitchingProtocols struct {
}

GetLogAttachIDSwitchingProtocols handles this case with default header values.

Established websocket

func NewGetLogAttachIDSwitchingProtocols

func NewGetLogAttachIDSwitchingProtocols() *GetLogAttachIDSwitchingProtocols

NewGetLogAttachIDSwitchingProtocols creates a GetLogAttachIDSwitchingProtocols with default headers values

func (*GetLogAttachIDSwitchingProtocols) Error

type GetLoggedinInternalServerError

type GetLoggedinInternalServerError struct {
	Payload *models.Error
}

GetLoggedinInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetLoggedinInternalServerError

func NewGetLoggedinInternalServerError() *GetLoggedinInternalServerError

NewGetLoggedinInternalServerError creates a GetLoggedinInternalServerError with default headers values

func (*GetLoggedinInternalServerError) Error

type GetLoggedinOK

type GetLoggedinOK struct {
	Payload string
}

GetLoggedinOK handles this case with default header values.

Either "true" or the URL to the oauth challenge.

func NewGetLoggedinOK

func NewGetLoggedinOK() *GetLoggedinOK

NewGetLoggedinOK creates a GetLoggedinOK with default headers values

func (*GetLoggedinOK) Error

func (o *GetLoggedinOK) Error() string

type GetLoggedinParams

type GetLoggedinParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLoggedinParams contains all the parameters to send to the API endpoint for the get loggedin operation typically these are written to a http.Request

func NewGetLoggedinParams

func NewGetLoggedinParams() *GetLoggedinParams

NewGetLoggedinParams creates a new GetLoggedinParams object with the default values initialized.

func NewGetLoggedinParamsWithContext

func NewGetLoggedinParamsWithContext(ctx context.Context) *GetLoggedinParams

NewGetLoggedinParamsWithContext creates a new GetLoggedinParams object with the default values initialized, and the ability to set a context for a request

func NewGetLoggedinParamsWithHTTPClient

func NewGetLoggedinParamsWithHTTPClient(client *http.Client) *GetLoggedinParams

NewGetLoggedinParamsWithHTTPClient creates a new GetLoggedinParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLoggedinParamsWithTimeout

func NewGetLoggedinParamsWithTimeout(timeout time.Duration) *GetLoggedinParams

NewGetLoggedinParamsWithTimeout creates a new GetLoggedinParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLoggedinParams) HandleQueryParam

func (o *GetLoggedinParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetLoggedinParams) SetContext

func (o *GetLoggedinParams) SetContext(ctx context.Context)

SetContext adds the context to the get loggedin params

func (*GetLoggedinParams) SetHTTPClient

func (o *GetLoggedinParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get loggedin params

func (*GetLoggedinParams) SetTimeout

func (o *GetLoggedinParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get loggedin params

func (*GetLoggedinParams) WithContext

func (o *GetLoggedinParams) WithContext(ctx context.Context) *GetLoggedinParams

WithContext adds the context to the get loggedin params

func (*GetLoggedinParams) WithHTTPClient

func (o *GetLoggedinParams) WithHTTPClient(client *http.Client) *GetLoggedinParams

WithHTTPClient adds the HTTPClient to the get loggedin params

func (*GetLoggedinParams) WithTimeout

func (o *GetLoggedinParams) WithTimeout(timeout time.Duration) *GetLoggedinParams

WithTimeout adds the timeout to the get loggedin params

func (*GetLoggedinParams) WriteToRequest

func (o *GetLoggedinParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetLoggedinReader

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

GetLoggedinReader is a Reader for the GetLoggedin structure.

func (*GetLoggedinReader) ReadResponse

func (o *GetLoggedinReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetLoginFound

type GetLoginFound struct {
}

GetLoginFound handles this case with default header values.

Redirection to another page indicates success of the login function. Follow the redirection to complete the login process. If the location is "/", that means login was successful.

func NewGetLoginFound

func NewGetLoginFound() *GetLoginFound

NewGetLoginFound creates a GetLoginFound with default headers values

func (*GetLoginFound) Error

func (o *GetLoginFound) Error() string

type GetLoginInternalServerError

type GetLoginInternalServerError struct {
	Payload *models.Error
}

GetLoginInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetLoginInternalServerError

func NewGetLoginInternalServerError() *GetLoginInternalServerError

NewGetLoginInternalServerError creates a GetLoginInternalServerError with default headers values

func (*GetLoginInternalServerError) Error

type GetLoginParams

type GetLoginParams struct {

	/*Code
	  The code github sent back to us with the callback, we use it in the OAuth2 exchange to validate the request.


	*/
	Code string
	/*State
	  The state (randomized string) we sent with the original link; this is echoed back to us so we can further identify the user.


	*/
	State string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLoginParams contains all the parameters to send to the API endpoint for the get login operation typically these are written to a http.Request

func NewGetLoginParams

func NewGetLoginParams() *GetLoginParams

NewGetLoginParams creates a new GetLoginParams object with the default values initialized.

func NewGetLoginParamsWithContext

func NewGetLoginParamsWithContext(ctx context.Context) *GetLoginParams

NewGetLoginParamsWithContext creates a new GetLoginParams object with the default values initialized, and the ability to set a context for a request

func NewGetLoginParamsWithHTTPClient

func NewGetLoginParamsWithHTTPClient(client *http.Client) *GetLoginParams

NewGetLoginParamsWithHTTPClient creates a new GetLoginParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLoginParamsWithTimeout

func NewGetLoginParamsWithTimeout(timeout time.Duration) *GetLoginParams

NewGetLoginParamsWithTimeout creates a new GetLoginParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLoginParams) HandleQueryParam

func (o *GetLoginParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetLoginParams) SetCode

func (o *GetLoginParams) SetCode(code string)

SetCode adds the code to the get login params

func (*GetLoginParams) SetContext

func (o *GetLoginParams) SetContext(ctx context.Context)

SetContext adds the context to the get login params

func (*GetLoginParams) SetHTTPClient

func (o *GetLoginParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get login params

func (*GetLoginParams) SetState

func (o *GetLoginParams) SetState(state string)

SetState adds the state to the get login params

func (*GetLoginParams) SetTimeout

func (o *GetLoginParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get login params

func (*GetLoginParams) WithCode

func (o *GetLoginParams) WithCode(code string) *GetLoginParams

WithCode adds the code to the get login params

func (*GetLoginParams) WithContext

func (o *GetLoginParams) WithContext(ctx context.Context) *GetLoginParams

WithContext adds the context to the get login params

func (*GetLoginParams) WithHTTPClient

func (o *GetLoginParams) WithHTTPClient(client *http.Client) *GetLoginParams

WithHTTPClient adds the HTTPClient to the get login params

func (*GetLoginParams) WithState

func (o *GetLoginParams) WithState(state string) *GetLoginParams

WithState adds the state to the get login params

func (*GetLoginParams) WithTimeout

func (o *GetLoginParams) WithTimeout(timeout time.Duration) *GetLoginParams

WithTimeout adds the timeout to the get login params

func (*GetLoginParams) WriteToRequest

func (o *GetLoginParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetLoginReader

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

GetLoginReader is a Reader for the GetLogin structure.

func (*GetLoginReader) ReadResponse

func (o *GetLoginReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetLoginUpgradeFound

type GetLoginUpgradeFound struct {
}

GetLoginUpgradeFound handles this case with default header values.

This will be the redirection to github.

func NewGetLoginUpgradeFound

func NewGetLoginUpgradeFound() *GetLoginUpgradeFound

NewGetLoginUpgradeFound creates a GetLoginUpgradeFound with default headers values

func (*GetLoginUpgradeFound) Error

func (o *GetLoginUpgradeFound) Error() string

type GetLoginUpgradeInternalServerError

type GetLoginUpgradeInternalServerError struct {
	Payload *models.Error
}

GetLoginUpgradeInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetLoginUpgradeInternalServerError

func NewGetLoginUpgradeInternalServerError() *GetLoginUpgradeInternalServerError

NewGetLoginUpgradeInternalServerError creates a GetLoginUpgradeInternalServerError with default headers values

func (*GetLoginUpgradeInternalServerError) Error

type GetLoginUpgradeParams

type GetLoginUpgradeParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLoginUpgradeParams contains all the parameters to send to the API endpoint for the get login upgrade operation typically these are written to a http.Request

func NewGetLoginUpgradeParams

func NewGetLoginUpgradeParams() *GetLoginUpgradeParams

NewGetLoginUpgradeParams creates a new GetLoginUpgradeParams object with the default values initialized.

func NewGetLoginUpgradeParamsWithContext

func NewGetLoginUpgradeParamsWithContext(ctx context.Context) *GetLoginUpgradeParams

NewGetLoginUpgradeParamsWithContext creates a new GetLoginUpgradeParams object with the default values initialized, and the ability to set a context for a request

func NewGetLoginUpgradeParamsWithHTTPClient

func NewGetLoginUpgradeParamsWithHTTPClient(client *http.Client) *GetLoginUpgradeParams

NewGetLoginUpgradeParamsWithHTTPClient creates a new GetLoginUpgradeParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLoginUpgradeParamsWithTimeout

func NewGetLoginUpgradeParamsWithTimeout(timeout time.Duration) *GetLoginUpgradeParams

NewGetLoginUpgradeParamsWithTimeout creates a new GetLoginUpgradeParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLoginUpgradeParams) HandleQueryParam

func (o *GetLoginUpgradeParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetLoginUpgradeParams) SetContext

func (o *GetLoginUpgradeParams) SetContext(ctx context.Context)

SetContext adds the context to the get login upgrade params

func (*GetLoginUpgradeParams) SetHTTPClient

func (o *GetLoginUpgradeParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get login upgrade params

func (*GetLoginUpgradeParams) SetTimeout

func (o *GetLoginUpgradeParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get login upgrade params

func (*GetLoginUpgradeParams) WithContext

WithContext adds the context to the get login upgrade params

func (*GetLoginUpgradeParams) WithHTTPClient

func (o *GetLoginUpgradeParams) WithHTTPClient(client *http.Client) *GetLoginUpgradeParams

WithHTTPClient adds the HTTPClient to the get login upgrade params

func (*GetLoginUpgradeParams) WithTimeout

func (o *GetLoginUpgradeParams) WithTimeout(timeout time.Duration) *GetLoginUpgradeParams

WithTimeout adds the timeout to the get login upgrade params

func (*GetLoginUpgradeParams) WriteToRequest

func (o *GetLoginUpgradeParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetLoginUpgradeReader

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

GetLoginUpgradeReader is a Reader for the GetLoginUpgrade structure.

func (*GetLoginUpgradeReader) ReadResponse

func (o *GetLoginUpgradeReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetLogoutFound

type GetLogoutFound struct {
}

GetLogoutFound handles this case with default header values.

Redirection to another page indicates success.

func NewGetLogoutFound

func NewGetLogoutFound() *GetLogoutFound

NewGetLogoutFound creates a GetLogoutFound with default headers values

func (*GetLogoutFound) Error

func (o *GetLogoutFound) Error() string

type GetLogoutInternalServerError

type GetLogoutInternalServerError struct {
	Payload *models.Error
}

GetLogoutInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetLogoutInternalServerError

func NewGetLogoutInternalServerError() *GetLogoutInternalServerError

NewGetLogoutInternalServerError creates a GetLogoutInternalServerError with default headers values

func (*GetLogoutInternalServerError) Error

type GetLogoutParams

type GetLogoutParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetLogoutParams contains all the parameters to send to the API endpoint for the get logout operation typically these are written to a http.Request

func NewGetLogoutParams

func NewGetLogoutParams() *GetLogoutParams

NewGetLogoutParams creates a new GetLogoutParams object with the default values initialized.

func NewGetLogoutParamsWithContext

func NewGetLogoutParamsWithContext(ctx context.Context) *GetLogoutParams

NewGetLogoutParamsWithContext creates a new GetLogoutParams object with the default values initialized, and the ability to set a context for a request

func NewGetLogoutParamsWithHTTPClient

func NewGetLogoutParamsWithHTTPClient(client *http.Client) *GetLogoutParams

NewGetLogoutParamsWithHTTPClient creates a new GetLogoutParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetLogoutParamsWithTimeout

func NewGetLogoutParamsWithTimeout(timeout time.Duration) *GetLogoutParams

NewGetLogoutParamsWithTimeout creates a new GetLogoutParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetLogoutParams) HandleQueryParam

func (o *GetLogoutParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetLogoutParams) SetContext

func (o *GetLogoutParams) SetContext(ctx context.Context)

SetContext adds the context to the get logout params

func (*GetLogoutParams) SetHTTPClient

func (o *GetLogoutParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get logout params

func (*GetLogoutParams) SetTimeout

func (o *GetLogoutParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get logout params

func (*GetLogoutParams) WithContext

func (o *GetLogoutParams) WithContext(ctx context.Context) *GetLogoutParams

WithContext adds the context to the get logout params

func (*GetLogoutParams) WithHTTPClient

func (o *GetLogoutParams) WithHTTPClient(client *http.Client) *GetLogoutParams

WithHTTPClient adds the HTTPClient to the get logout params

func (*GetLogoutParams) WithTimeout

func (o *GetLogoutParams) WithTimeout(timeout time.Duration) *GetLogoutParams

WithTimeout adds the timeout to the get logout params

func (*GetLogoutParams) WriteToRequest

func (o *GetLogoutParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetLogoutReader

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

GetLogoutReader is a Reader for the GetLogout structure.

func (*GetLogoutReader) ReadResponse

func (o *GetLogoutReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesCiAddOwnerRepoInternalServerError

type GetRepositoriesCiAddOwnerRepoInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesCiAddOwnerRepoInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesCiAddOwnerRepoInternalServerError

func NewGetRepositoriesCiAddOwnerRepoInternalServerError() *GetRepositoriesCiAddOwnerRepoInternalServerError

NewGetRepositoriesCiAddOwnerRepoInternalServerError creates a GetRepositoriesCiAddOwnerRepoInternalServerError with default headers values

func (*GetRepositoriesCiAddOwnerRepoInternalServerError) Error

type GetRepositoriesCiAddOwnerRepoOK

type GetRepositoriesCiAddOwnerRepoOK struct {
}

GetRepositoriesCiAddOwnerRepoOK handles this case with default header values.

OK

func NewGetRepositoriesCiAddOwnerRepoOK

func NewGetRepositoriesCiAddOwnerRepoOK() *GetRepositoriesCiAddOwnerRepoOK

NewGetRepositoriesCiAddOwnerRepoOK creates a GetRepositoriesCiAddOwnerRepoOK with default headers values

func (*GetRepositoriesCiAddOwnerRepoOK) Error

type GetRepositoriesCiAddOwnerRepoParams

type GetRepositoriesCiAddOwnerRepoParams struct {

	/*Owner
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Owner string
	/*Repo
	  name of the repository, the second half of the github repository name such as 'foo' in 'erikh/foo'.


	*/
	Repo string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesCiAddOwnerRepoParams contains all the parameters to send to the API endpoint for the get repositories ci add owner repo operation typically these are written to a http.Request

func NewGetRepositoriesCiAddOwnerRepoParams

func NewGetRepositoriesCiAddOwnerRepoParams() *GetRepositoriesCiAddOwnerRepoParams

NewGetRepositoriesCiAddOwnerRepoParams creates a new GetRepositoriesCiAddOwnerRepoParams object with the default values initialized.

func NewGetRepositoriesCiAddOwnerRepoParamsWithContext

func NewGetRepositoriesCiAddOwnerRepoParamsWithContext(ctx context.Context) *GetRepositoriesCiAddOwnerRepoParams

NewGetRepositoriesCiAddOwnerRepoParamsWithContext creates a new GetRepositoriesCiAddOwnerRepoParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesCiAddOwnerRepoParamsWithHTTPClient

func NewGetRepositoriesCiAddOwnerRepoParamsWithHTTPClient(client *http.Client) *GetRepositoriesCiAddOwnerRepoParams

NewGetRepositoriesCiAddOwnerRepoParamsWithHTTPClient creates a new GetRepositoriesCiAddOwnerRepoParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesCiAddOwnerRepoParamsWithTimeout

func NewGetRepositoriesCiAddOwnerRepoParamsWithTimeout(timeout time.Duration) *GetRepositoriesCiAddOwnerRepoParams

NewGetRepositoriesCiAddOwnerRepoParamsWithTimeout creates a new GetRepositoriesCiAddOwnerRepoParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesCiAddOwnerRepoParams) HandleQueryParam

func (o *GetRepositoriesCiAddOwnerRepoParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesCiAddOwnerRepoParams) SetContext

SetContext adds the context to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) SetHTTPClient

func (o *GetRepositoriesCiAddOwnerRepoParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) SetOwner

func (o *GetRepositoriesCiAddOwnerRepoParams) SetOwner(owner string)

SetOwner adds the owner to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) SetRepo

SetRepo adds the repo to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) SetTimeout

func (o *GetRepositoriesCiAddOwnerRepoParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WithContext

WithContext adds the context to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WithOwner

WithOwner adds the owner to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WithRepo

WithRepo adds the repo to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WithTimeout

WithTimeout adds the timeout to the get repositories ci add owner repo params

func (*GetRepositoriesCiAddOwnerRepoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesCiAddOwnerRepoReader

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

GetRepositoriesCiAddOwnerRepoReader is a Reader for the GetRepositoriesCiAddOwnerRepo structure.

func (*GetRepositoriesCiAddOwnerRepoReader) ReadResponse

func (o *GetRepositoriesCiAddOwnerRepoReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesCiDelOwnerRepoInternalServerError

type GetRepositoriesCiDelOwnerRepoInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesCiDelOwnerRepoInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesCiDelOwnerRepoInternalServerError

func NewGetRepositoriesCiDelOwnerRepoInternalServerError() *GetRepositoriesCiDelOwnerRepoInternalServerError

NewGetRepositoriesCiDelOwnerRepoInternalServerError creates a GetRepositoriesCiDelOwnerRepoInternalServerError with default headers values

func (*GetRepositoriesCiDelOwnerRepoInternalServerError) Error

type GetRepositoriesCiDelOwnerRepoOK

type GetRepositoriesCiDelOwnerRepoOK struct {
}

GetRepositoriesCiDelOwnerRepoOK handles this case with default header values.

OK

func NewGetRepositoriesCiDelOwnerRepoOK

func NewGetRepositoriesCiDelOwnerRepoOK() *GetRepositoriesCiDelOwnerRepoOK

NewGetRepositoriesCiDelOwnerRepoOK creates a GetRepositoriesCiDelOwnerRepoOK with default headers values

func (*GetRepositoriesCiDelOwnerRepoOK) Error

type GetRepositoriesCiDelOwnerRepoParams

type GetRepositoriesCiDelOwnerRepoParams struct {

	/*Owner
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Owner string
	/*Repo
	  name of the repository, the second half of the github repository name such as 'foo' in 'erikh/foo'.


	*/
	Repo string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesCiDelOwnerRepoParams contains all the parameters to send to the API endpoint for the get repositories ci del owner repo operation typically these are written to a http.Request

func NewGetRepositoriesCiDelOwnerRepoParams

func NewGetRepositoriesCiDelOwnerRepoParams() *GetRepositoriesCiDelOwnerRepoParams

NewGetRepositoriesCiDelOwnerRepoParams creates a new GetRepositoriesCiDelOwnerRepoParams object with the default values initialized.

func NewGetRepositoriesCiDelOwnerRepoParamsWithContext

func NewGetRepositoriesCiDelOwnerRepoParamsWithContext(ctx context.Context) *GetRepositoriesCiDelOwnerRepoParams

NewGetRepositoriesCiDelOwnerRepoParamsWithContext creates a new GetRepositoriesCiDelOwnerRepoParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesCiDelOwnerRepoParamsWithHTTPClient

func NewGetRepositoriesCiDelOwnerRepoParamsWithHTTPClient(client *http.Client) *GetRepositoriesCiDelOwnerRepoParams

NewGetRepositoriesCiDelOwnerRepoParamsWithHTTPClient creates a new GetRepositoriesCiDelOwnerRepoParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesCiDelOwnerRepoParamsWithTimeout

func NewGetRepositoriesCiDelOwnerRepoParamsWithTimeout(timeout time.Duration) *GetRepositoriesCiDelOwnerRepoParams

NewGetRepositoriesCiDelOwnerRepoParamsWithTimeout creates a new GetRepositoriesCiDelOwnerRepoParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesCiDelOwnerRepoParams) HandleQueryParam

func (o *GetRepositoriesCiDelOwnerRepoParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesCiDelOwnerRepoParams) SetContext

SetContext adds the context to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) SetHTTPClient

func (o *GetRepositoriesCiDelOwnerRepoParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) SetOwner

func (o *GetRepositoriesCiDelOwnerRepoParams) SetOwner(owner string)

SetOwner adds the owner to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) SetRepo

SetRepo adds the repo to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) SetTimeout

func (o *GetRepositoriesCiDelOwnerRepoParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WithContext

WithContext adds the context to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WithOwner

WithOwner adds the owner to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WithRepo

WithRepo adds the repo to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WithTimeout

WithTimeout adds the timeout to the get repositories ci del owner repo params

func (*GetRepositoriesCiDelOwnerRepoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesCiDelOwnerRepoReader

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

GetRepositoriesCiDelOwnerRepoReader is a Reader for the GetRepositoriesCiDelOwnerRepo structure.

func (*GetRepositoriesCiDelOwnerRepoReader) ReadResponse

func (o *GetRepositoriesCiDelOwnerRepoReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesMyInternalServerError

type GetRepositoriesMyInternalServerError struct {
	Payload string
}

GetRepositoriesMyInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesMyInternalServerError

func NewGetRepositoriesMyInternalServerError() *GetRepositoriesMyInternalServerError

NewGetRepositoriesMyInternalServerError creates a GetRepositoriesMyInternalServerError with default headers values

func (*GetRepositoriesMyInternalServerError) Error

type GetRepositoriesMyOK

type GetRepositoriesMyOK struct {
	Payload models.RepositoryList
}

GetRepositoriesMyOK handles this case with default header values.

OK

func NewGetRepositoriesMyOK

func NewGetRepositoriesMyOK() *GetRepositoriesMyOK

NewGetRepositoriesMyOK creates a GetRepositoriesMyOK with default headers values

func (*GetRepositoriesMyOK) Error

func (o *GetRepositoriesMyOK) Error() string

type GetRepositoriesMyParams

type GetRepositoriesMyParams struct {

	/*Search
	  search string by which to filter results

	*/
	Search *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesMyParams contains all the parameters to send to the API endpoint for the get repositories my operation typically these are written to a http.Request

func NewGetRepositoriesMyParams

func NewGetRepositoriesMyParams() *GetRepositoriesMyParams

NewGetRepositoriesMyParams creates a new GetRepositoriesMyParams object with the default values initialized.

func NewGetRepositoriesMyParamsWithContext

func NewGetRepositoriesMyParamsWithContext(ctx context.Context) *GetRepositoriesMyParams

NewGetRepositoriesMyParamsWithContext creates a new GetRepositoriesMyParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesMyParamsWithHTTPClient

func NewGetRepositoriesMyParamsWithHTTPClient(client *http.Client) *GetRepositoriesMyParams

NewGetRepositoriesMyParamsWithHTTPClient creates a new GetRepositoriesMyParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesMyParamsWithTimeout

func NewGetRepositoriesMyParamsWithTimeout(timeout time.Duration) *GetRepositoriesMyParams

NewGetRepositoriesMyParamsWithTimeout creates a new GetRepositoriesMyParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesMyParams) HandleQueryParam

func (o *GetRepositoriesMyParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesMyParams) SetContext

func (o *GetRepositoriesMyParams) SetContext(ctx context.Context)

SetContext adds the context to the get repositories my params

func (*GetRepositoriesMyParams) SetHTTPClient

func (o *GetRepositoriesMyParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories my params

func (*GetRepositoriesMyParams) SetSearch

func (o *GetRepositoriesMyParams) SetSearch(search *string)

SetSearch adds the search to the get repositories my params

func (*GetRepositoriesMyParams) SetTimeout

func (o *GetRepositoriesMyParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories my params

func (*GetRepositoriesMyParams) WithContext

WithContext adds the context to the get repositories my params

func (*GetRepositoriesMyParams) WithHTTPClient

func (o *GetRepositoriesMyParams) WithHTTPClient(client *http.Client) *GetRepositoriesMyParams

WithHTTPClient adds the HTTPClient to the get repositories my params

func (*GetRepositoriesMyParams) WithSearch

func (o *GetRepositoriesMyParams) WithSearch(search *string) *GetRepositoriesMyParams

WithSearch adds the search to the get repositories my params

func (*GetRepositoriesMyParams) WithTimeout

WithTimeout adds the timeout to the get repositories my params

func (*GetRepositoriesMyParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesMyReader

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

GetRepositoriesMyReader is a Reader for the GetRepositoriesMy structure.

func (*GetRepositoriesMyReader) ReadResponse

func (o *GetRepositoriesMyReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesScanInternalServerError

type GetRepositoriesScanInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesScanInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesScanInternalServerError

func NewGetRepositoriesScanInternalServerError() *GetRepositoriesScanInternalServerError

NewGetRepositoriesScanInternalServerError creates a GetRepositoriesScanInternalServerError with default headers values

func (*GetRepositoriesScanInternalServerError) Error

type GetRepositoriesScanOK

type GetRepositoriesScanOK struct {
}

GetRepositoriesScanOK handles this case with default header values.

OK

func NewGetRepositoriesScanOK

func NewGetRepositoriesScanOK() *GetRepositoriesScanOK

NewGetRepositoriesScanOK creates a GetRepositoriesScanOK with default headers values

func (*GetRepositoriesScanOK) Error

func (o *GetRepositoriesScanOK) Error() string

type GetRepositoriesScanParams

type GetRepositoriesScanParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesScanParams contains all the parameters to send to the API endpoint for the get repositories scan operation typically these are written to a http.Request

func NewGetRepositoriesScanParams

func NewGetRepositoriesScanParams() *GetRepositoriesScanParams

NewGetRepositoriesScanParams creates a new GetRepositoriesScanParams object with the default values initialized.

func NewGetRepositoriesScanParamsWithContext

func NewGetRepositoriesScanParamsWithContext(ctx context.Context) *GetRepositoriesScanParams

NewGetRepositoriesScanParamsWithContext creates a new GetRepositoriesScanParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesScanParamsWithHTTPClient

func NewGetRepositoriesScanParamsWithHTTPClient(client *http.Client) *GetRepositoriesScanParams

NewGetRepositoriesScanParamsWithHTTPClient creates a new GetRepositoriesScanParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesScanParamsWithTimeout

func NewGetRepositoriesScanParamsWithTimeout(timeout time.Duration) *GetRepositoriesScanParams

NewGetRepositoriesScanParamsWithTimeout creates a new GetRepositoriesScanParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesScanParams) HandleQueryParam

func (o *GetRepositoriesScanParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesScanParams) SetContext

func (o *GetRepositoriesScanParams) SetContext(ctx context.Context)

SetContext adds the context to the get repositories scan params

func (*GetRepositoriesScanParams) SetHTTPClient

func (o *GetRepositoriesScanParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories scan params

func (*GetRepositoriesScanParams) SetTimeout

func (o *GetRepositoriesScanParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories scan params

func (*GetRepositoriesScanParams) WithContext

WithContext adds the context to the get repositories scan params

func (*GetRepositoriesScanParams) WithHTTPClient

func (o *GetRepositoriesScanParams) WithHTTPClient(client *http.Client) *GetRepositoriesScanParams

WithHTTPClient adds the HTTPClient to the get repositories scan params

func (*GetRepositoriesScanParams) WithTimeout

WithTimeout adds the timeout to the get repositories scan params

func (*GetRepositoriesScanParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesScanReader

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

GetRepositoriesScanReader is a Reader for the GetRepositoriesScan structure.

func (*GetRepositoriesScanReader) ReadResponse

func (o *GetRepositoriesScanReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesSubAddOwnerRepoInternalServerError

type GetRepositoriesSubAddOwnerRepoInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesSubAddOwnerRepoInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesSubAddOwnerRepoInternalServerError

func NewGetRepositoriesSubAddOwnerRepoInternalServerError() *GetRepositoriesSubAddOwnerRepoInternalServerError

NewGetRepositoriesSubAddOwnerRepoInternalServerError creates a GetRepositoriesSubAddOwnerRepoInternalServerError with default headers values

func (*GetRepositoriesSubAddOwnerRepoInternalServerError) Error

type GetRepositoriesSubAddOwnerRepoOK

type GetRepositoriesSubAddOwnerRepoOK struct {
}

GetRepositoriesSubAddOwnerRepoOK handles this case with default header values.

OK

func NewGetRepositoriesSubAddOwnerRepoOK

func NewGetRepositoriesSubAddOwnerRepoOK() *GetRepositoriesSubAddOwnerRepoOK

NewGetRepositoriesSubAddOwnerRepoOK creates a GetRepositoriesSubAddOwnerRepoOK with default headers values

func (*GetRepositoriesSubAddOwnerRepoOK) Error

type GetRepositoriesSubAddOwnerRepoParams

type GetRepositoriesSubAddOwnerRepoParams struct {

	/*Owner
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Owner string
	/*Repo
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Repo string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesSubAddOwnerRepoParams contains all the parameters to send to the API endpoint for the get repositories sub add owner repo operation typically these are written to a http.Request

func NewGetRepositoriesSubAddOwnerRepoParams

func NewGetRepositoriesSubAddOwnerRepoParams() *GetRepositoriesSubAddOwnerRepoParams

NewGetRepositoriesSubAddOwnerRepoParams creates a new GetRepositoriesSubAddOwnerRepoParams object with the default values initialized.

func NewGetRepositoriesSubAddOwnerRepoParamsWithContext

func NewGetRepositoriesSubAddOwnerRepoParamsWithContext(ctx context.Context) *GetRepositoriesSubAddOwnerRepoParams

NewGetRepositoriesSubAddOwnerRepoParamsWithContext creates a new GetRepositoriesSubAddOwnerRepoParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesSubAddOwnerRepoParamsWithHTTPClient

func NewGetRepositoriesSubAddOwnerRepoParamsWithHTTPClient(client *http.Client) *GetRepositoriesSubAddOwnerRepoParams

NewGetRepositoriesSubAddOwnerRepoParamsWithHTTPClient creates a new GetRepositoriesSubAddOwnerRepoParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesSubAddOwnerRepoParamsWithTimeout

func NewGetRepositoriesSubAddOwnerRepoParamsWithTimeout(timeout time.Duration) *GetRepositoriesSubAddOwnerRepoParams

NewGetRepositoriesSubAddOwnerRepoParamsWithTimeout creates a new GetRepositoriesSubAddOwnerRepoParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesSubAddOwnerRepoParams) HandleQueryParam

func (o *GetRepositoriesSubAddOwnerRepoParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesSubAddOwnerRepoParams) SetContext

SetContext adds the context to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) SetHTTPClient

func (o *GetRepositoriesSubAddOwnerRepoParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) SetOwner

func (o *GetRepositoriesSubAddOwnerRepoParams) SetOwner(owner string)

SetOwner adds the owner to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) SetRepo

SetRepo adds the repo to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) SetTimeout

func (o *GetRepositoriesSubAddOwnerRepoParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WithContext

WithContext adds the context to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WithOwner

WithOwner adds the owner to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WithRepo

WithRepo adds the repo to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WithTimeout

WithTimeout adds the timeout to the get repositories sub add owner repo params

func (*GetRepositoriesSubAddOwnerRepoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesSubAddOwnerRepoReader

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

GetRepositoriesSubAddOwnerRepoReader is a Reader for the GetRepositoriesSubAddOwnerRepo structure.

func (*GetRepositoriesSubAddOwnerRepoReader) ReadResponse

func (o *GetRepositoriesSubAddOwnerRepoReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesSubDelOwnerRepoInternalServerError

type GetRepositoriesSubDelOwnerRepoInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesSubDelOwnerRepoInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesSubDelOwnerRepoInternalServerError

func NewGetRepositoriesSubDelOwnerRepoInternalServerError() *GetRepositoriesSubDelOwnerRepoInternalServerError

NewGetRepositoriesSubDelOwnerRepoInternalServerError creates a GetRepositoriesSubDelOwnerRepoInternalServerError with default headers values

func (*GetRepositoriesSubDelOwnerRepoInternalServerError) Error

type GetRepositoriesSubDelOwnerRepoOK

type GetRepositoriesSubDelOwnerRepoOK struct {
}

GetRepositoriesSubDelOwnerRepoOK handles this case with default header values.

OK

func NewGetRepositoriesSubDelOwnerRepoOK

func NewGetRepositoriesSubDelOwnerRepoOK() *GetRepositoriesSubDelOwnerRepoOK

NewGetRepositoriesSubDelOwnerRepoOK creates a GetRepositoriesSubDelOwnerRepoOK with default headers values

func (*GetRepositoriesSubDelOwnerRepoOK) Error

type GetRepositoriesSubDelOwnerRepoParams

type GetRepositoriesSubDelOwnerRepoParams struct {

	/*Owner
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Owner string
	/*Repo
	  owner of the repository, first part of github repository name such as 'erikh' in 'erikh/foo'


	*/
	Repo string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesSubDelOwnerRepoParams contains all the parameters to send to the API endpoint for the get repositories sub del owner repo operation typically these are written to a http.Request

func NewGetRepositoriesSubDelOwnerRepoParams

func NewGetRepositoriesSubDelOwnerRepoParams() *GetRepositoriesSubDelOwnerRepoParams

NewGetRepositoriesSubDelOwnerRepoParams creates a new GetRepositoriesSubDelOwnerRepoParams object with the default values initialized.

func NewGetRepositoriesSubDelOwnerRepoParamsWithContext

func NewGetRepositoriesSubDelOwnerRepoParamsWithContext(ctx context.Context) *GetRepositoriesSubDelOwnerRepoParams

NewGetRepositoriesSubDelOwnerRepoParamsWithContext creates a new GetRepositoriesSubDelOwnerRepoParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesSubDelOwnerRepoParamsWithHTTPClient

func NewGetRepositoriesSubDelOwnerRepoParamsWithHTTPClient(client *http.Client) *GetRepositoriesSubDelOwnerRepoParams

NewGetRepositoriesSubDelOwnerRepoParamsWithHTTPClient creates a new GetRepositoriesSubDelOwnerRepoParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesSubDelOwnerRepoParamsWithTimeout

func NewGetRepositoriesSubDelOwnerRepoParamsWithTimeout(timeout time.Duration) *GetRepositoriesSubDelOwnerRepoParams

NewGetRepositoriesSubDelOwnerRepoParamsWithTimeout creates a new GetRepositoriesSubDelOwnerRepoParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesSubDelOwnerRepoParams) HandleQueryParam

func (o *GetRepositoriesSubDelOwnerRepoParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesSubDelOwnerRepoParams) SetContext

SetContext adds the context to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) SetHTTPClient

func (o *GetRepositoriesSubDelOwnerRepoParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) SetOwner

func (o *GetRepositoriesSubDelOwnerRepoParams) SetOwner(owner string)

SetOwner adds the owner to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) SetRepo

SetRepo adds the repo to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) SetTimeout

func (o *GetRepositoriesSubDelOwnerRepoParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WithContext

WithContext adds the context to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WithOwner

WithOwner adds the owner to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WithRepo

WithRepo adds the repo to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WithTimeout

WithTimeout adds the timeout to the get repositories sub del owner repo params

func (*GetRepositoriesSubDelOwnerRepoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesSubDelOwnerRepoReader

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

GetRepositoriesSubDelOwnerRepoReader is a Reader for the GetRepositoriesSubDelOwnerRepo structure.

func (*GetRepositoriesSubDelOwnerRepoReader) ReadResponse

func (o *GetRepositoriesSubDelOwnerRepoReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesSubscribedInternalServerError

type GetRepositoriesSubscribedInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesSubscribedInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesSubscribedInternalServerError

func NewGetRepositoriesSubscribedInternalServerError() *GetRepositoriesSubscribedInternalServerError

NewGetRepositoriesSubscribedInternalServerError creates a GetRepositoriesSubscribedInternalServerError with default headers values

func (*GetRepositoriesSubscribedInternalServerError) Error

type GetRepositoriesSubscribedOK

type GetRepositoriesSubscribedOK struct {
	Payload models.RepositoryList
}

GetRepositoriesSubscribedOK handles this case with default header values.

OK

func NewGetRepositoriesSubscribedOK

func NewGetRepositoriesSubscribedOK() *GetRepositoriesSubscribedOK

NewGetRepositoriesSubscribedOK creates a GetRepositoriesSubscribedOK with default headers values

func (*GetRepositoriesSubscribedOK) Error

type GetRepositoriesSubscribedParams

type GetRepositoriesSubscribedParams struct {

	/*Search
	  search string by which to filter results

	*/
	Search *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesSubscribedParams contains all the parameters to send to the API endpoint for the get repositories subscribed operation typically these are written to a http.Request

func NewGetRepositoriesSubscribedParams

func NewGetRepositoriesSubscribedParams() *GetRepositoriesSubscribedParams

NewGetRepositoriesSubscribedParams creates a new GetRepositoriesSubscribedParams object with the default values initialized.

func NewGetRepositoriesSubscribedParamsWithContext

func NewGetRepositoriesSubscribedParamsWithContext(ctx context.Context) *GetRepositoriesSubscribedParams

NewGetRepositoriesSubscribedParamsWithContext creates a new GetRepositoriesSubscribedParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesSubscribedParamsWithHTTPClient

func NewGetRepositoriesSubscribedParamsWithHTTPClient(client *http.Client) *GetRepositoriesSubscribedParams

NewGetRepositoriesSubscribedParamsWithHTTPClient creates a new GetRepositoriesSubscribedParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesSubscribedParamsWithTimeout

func NewGetRepositoriesSubscribedParamsWithTimeout(timeout time.Duration) *GetRepositoriesSubscribedParams

NewGetRepositoriesSubscribedParamsWithTimeout creates a new GetRepositoriesSubscribedParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesSubscribedParams) HandleQueryParam

func (o *GetRepositoriesSubscribedParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesSubscribedParams) SetContext

func (o *GetRepositoriesSubscribedParams) SetContext(ctx context.Context)

SetContext adds the context to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) SetHTTPClient

func (o *GetRepositoriesSubscribedParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) SetSearch

func (o *GetRepositoriesSubscribedParams) SetSearch(search *string)

SetSearch adds the search to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) SetTimeout

func (o *GetRepositoriesSubscribedParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) WithContext

WithContext adds the context to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) WithSearch

WithSearch adds the search to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) WithTimeout

WithTimeout adds the timeout to the get repositories subscribed params

func (*GetRepositoriesSubscribedParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesSubscribedReader

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

GetRepositoriesSubscribedReader is a Reader for the GetRepositoriesSubscribed structure.

func (*GetRepositoriesSubscribedReader) ReadResponse

func (o *GetRepositoriesSubscribedReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRepositoriesVisibleInternalServerError

type GetRepositoriesVisibleInternalServerError struct {
	Payload *models.Error
}

GetRepositoriesVisibleInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRepositoriesVisibleInternalServerError

func NewGetRepositoriesVisibleInternalServerError() *GetRepositoriesVisibleInternalServerError

NewGetRepositoriesVisibleInternalServerError creates a GetRepositoriesVisibleInternalServerError with default headers values

func (*GetRepositoriesVisibleInternalServerError) Error

type GetRepositoriesVisibleOK

type GetRepositoriesVisibleOK struct {
	Payload models.RepositoryList
}

GetRepositoriesVisibleOK handles this case with default header values.

OK

func NewGetRepositoriesVisibleOK

func NewGetRepositoriesVisibleOK() *GetRepositoriesVisibleOK

NewGetRepositoriesVisibleOK creates a GetRepositoriesVisibleOK with default headers values

func (*GetRepositoriesVisibleOK) Error

func (o *GetRepositoriesVisibleOK) Error() string

type GetRepositoriesVisibleParams

type GetRepositoriesVisibleParams struct {

	/*Search
	  search string by which to filter results

	*/
	Search *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRepositoriesVisibleParams contains all the parameters to send to the API endpoint for the get repositories visible operation typically these are written to a http.Request

func NewGetRepositoriesVisibleParams

func NewGetRepositoriesVisibleParams() *GetRepositoriesVisibleParams

NewGetRepositoriesVisibleParams creates a new GetRepositoriesVisibleParams object with the default values initialized.

func NewGetRepositoriesVisibleParamsWithContext

func NewGetRepositoriesVisibleParamsWithContext(ctx context.Context) *GetRepositoriesVisibleParams

NewGetRepositoriesVisibleParamsWithContext creates a new GetRepositoriesVisibleParams object with the default values initialized, and the ability to set a context for a request

func NewGetRepositoriesVisibleParamsWithHTTPClient

func NewGetRepositoriesVisibleParamsWithHTTPClient(client *http.Client) *GetRepositoriesVisibleParams

NewGetRepositoriesVisibleParamsWithHTTPClient creates a new GetRepositoriesVisibleParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRepositoriesVisibleParamsWithTimeout

func NewGetRepositoriesVisibleParamsWithTimeout(timeout time.Duration) *GetRepositoriesVisibleParams

NewGetRepositoriesVisibleParamsWithTimeout creates a new GetRepositoriesVisibleParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRepositoriesVisibleParams) HandleQueryParam

func (o *GetRepositoriesVisibleParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRepositoriesVisibleParams) SetContext

func (o *GetRepositoriesVisibleParams) SetContext(ctx context.Context)

SetContext adds the context to the get repositories visible params

func (*GetRepositoriesVisibleParams) SetHTTPClient

func (o *GetRepositoriesVisibleParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get repositories visible params

func (*GetRepositoriesVisibleParams) SetSearch

func (o *GetRepositoriesVisibleParams) SetSearch(search *string)

SetSearch adds the search to the get repositories visible params

func (*GetRepositoriesVisibleParams) SetTimeout

func (o *GetRepositoriesVisibleParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get repositories visible params

func (*GetRepositoriesVisibleParams) WithContext

WithContext adds the context to the get repositories visible params

func (*GetRepositoriesVisibleParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get repositories visible params

func (*GetRepositoriesVisibleParams) WithSearch

WithSearch adds the search to the get repositories visible params

func (*GetRepositoriesVisibleParams) WithTimeout

WithTimeout adds the timeout to the get repositories visible params

func (*GetRepositoriesVisibleParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRepositoriesVisibleReader

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

GetRepositoriesVisibleReader is a Reader for the GetRepositoriesVisible structure.

func (*GetRepositoriesVisibleReader) ReadResponse

func (o *GetRepositoriesVisibleReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRunRunIDInternalServerError

type GetRunRunIDInternalServerError struct {
	Payload *models.Error
}

GetRunRunIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRunRunIDInternalServerError

func NewGetRunRunIDInternalServerError() *GetRunRunIDInternalServerError

NewGetRunRunIDInternalServerError creates a GetRunRunIDInternalServerError with default headers values

func (*GetRunRunIDInternalServerError) Error

type GetRunRunIDOK

type GetRunRunIDOK struct {
	Payload *models.Run
}

GetRunRunIDOK handles this case with default header values.

OK

func NewGetRunRunIDOK

func NewGetRunRunIDOK() *GetRunRunIDOK

NewGetRunRunIDOK creates a GetRunRunIDOK with default headers values

func (*GetRunRunIDOK) Error

func (o *GetRunRunIDOK) Error() string

type GetRunRunIDParams

type GetRunRunIDParams struct {

	/*RunID
	  The ID of the run to retrieve

	*/
	RunID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRunRunIDParams contains all the parameters to send to the API endpoint for the get run run ID operation typically these are written to a http.Request

func NewGetRunRunIDParams

func NewGetRunRunIDParams() *GetRunRunIDParams

NewGetRunRunIDParams creates a new GetRunRunIDParams object with the default values initialized.

func NewGetRunRunIDParamsWithContext

func NewGetRunRunIDParamsWithContext(ctx context.Context) *GetRunRunIDParams

NewGetRunRunIDParamsWithContext creates a new GetRunRunIDParams object with the default values initialized, and the ability to set a context for a request

func NewGetRunRunIDParamsWithHTTPClient

func NewGetRunRunIDParamsWithHTTPClient(client *http.Client) *GetRunRunIDParams

NewGetRunRunIDParamsWithHTTPClient creates a new GetRunRunIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRunRunIDParamsWithTimeout

func NewGetRunRunIDParamsWithTimeout(timeout time.Duration) *GetRunRunIDParams

NewGetRunRunIDParamsWithTimeout creates a new GetRunRunIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRunRunIDParams) HandleQueryParam

func (o *GetRunRunIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRunRunIDParams) SetContext

func (o *GetRunRunIDParams) SetContext(ctx context.Context)

SetContext adds the context to the get run run ID params

func (*GetRunRunIDParams) SetHTTPClient

func (o *GetRunRunIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get run run ID params

func (*GetRunRunIDParams) SetRunID

func (o *GetRunRunIDParams) SetRunID(runID int64)

SetRunID adds the runId to the get run run ID params

func (*GetRunRunIDParams) SetTimeout

func (o *GetRunRunIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get run run ID params

func (*GetRunRunIDParams) WithContext

func (o *GetRunRunIDParams) WithContext(ctx context.Context) *GetRunRunIDParams

WithContext adds the context to the get run run ID params

func (*GetRunRunIDParams) WithHTTPClient

func (o *GetRunRunIDParams) WithHTTPClient(client *http.Client) *GetRunRunIDParams

WithHTTPClient adds the HTTPClient to the get run run ID params

func (*GetRunRunIDParams) WithRunID

func (o *GetRunRunIDParams) WithRunID(runID int64) *GetRunRunIDParams

WithRunID adds the runID to the get run run ID params

func (*GetRunRunIDParams) WithTimeout

func (o *GetRunRunIDParams) WithTimeout(timeout time.Duration) *GetRunRunIDParams

WithTimeout adds the timeout to the get run run ID params

func (*GetRunRunIDParams) WriteToRequest

func (o *GetRunRunIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetRunRunIDReader

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

GetRunRunIDReader is a Reader for the GetRunRunID structure.

func (*GetRunRunIDReader) ReadResponse

func (o *GetRunRunIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRunsCountInternalServerError

type GetRunsCountInternalServerError struct {
	Payload *models.Error
}

GetRunsCountInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRunsCountInternalServerError

func NewGetRunsCountInternalServerError() *GetRunsCountInternalServerError

NewGetRunsCountInternalServerError creates a GetRunsCountInternalServerError with default headers values

func (*GetRunsCountInternalServerError) Error

type GetRunsCountOK

type GetRunsCountOK struct {
	Payload int64
}

GetRunsCountOK handles this case with default header values.

OK

func NewGetRunsCountOK

func NewGetRunsCountOK() *GetRunsCountOK

NewGetRunsCountOK creates a GetRunsCountOK with default headers values

func (*GetRunsCountOK) Error

func (o *GetRunsCountOK) Error() string

type GetRunsCountParams

type GetRunsCountParams struct {

	/*Repository*/
	Repository *string
	/*Sha*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRunsCountParams contains all the parameters to send to the API endpoint for the get runs count operation typically these are written to a http.Request

func NewGetRunsCountParams

func NewGetRunsCountParams() *GetRunsCountParams

NewGetRunsCountParams creates a new GetRunsCountParams object with the default values initialized.

func NewGetRunsCountParamsWithContext

func NewGetRunsCountParamsWithContext(ctx context.Context) *GetRunsCountParams

NewGetRunsCountParamsWithContext creates a new GetRunsCountParams object with the default values initialized, and the ability to set a context for a request

func NewGetRunsCountParamsWithHTTPClient

func NewGetRunsCountParamsWithHTTPClient(client *http.Client) *GetRunsCountParams

NewGetRunsCountParamsWithHTTPClient creates a new GetRunsCountParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRunsCountParamsWithTimeout

func NewGetRunsCountParamsWithTimeout(timeout time.Duration) *GetRunsCountParams

NewGetRunsCountParamsWithTimeout creates a new GetRunsCountParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRunsCountParams) HandleQueryParam

func (o *GetRunsCountParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRunsCountParams) SetContext

func (o *GetRunsCountParams) SetContext(ctx context.Context)

SetContext adds the context to the get runs count params

func (*GetRunsCountParams) SetHTTPClient

func (o *GetRunsCountParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get runs count params

func (*GetRunsCountParams) SetRepository

func (o *GetRunsCountParams) SetRepository(repository *string)

SetRepository adds the repository to the get runs count params

func (*GetRunsCountParams) SetSha

func (o *GetRunsCountParams) SetSha(sha *string)

SetSha adds the sha to the get runs count params

func (*GetRunsCountParams) SetTimeout

func (o *GetRunsCountParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get runs count params

func (*GetRunsCountParams) WithContext

WithContext adds the context to the get runs count params

func (*GetRunsCountParams) WithHTTPClient

func (o *GetRunsCountParams) WithHTTPClient(client *http.Client) *GetRunsCountParams

WithHTTPClient adds the HTTPClient to the get runs count params

func (*GetRunsCountParams) WithRepository

func (o *GetRunsCountParams) WithRepository(repository *string) *GetRunsCountParams

WithRepository adds the repository to the get runs count params

func (*GetRunsCountParams) WithSha

func (o *GetRunsCountParams) WithSha(sha *string) *GetRunsCountParams

WithSha adds the sha to the get runs count params

func (*GetRunsCountParams) WithTimeout

func (o *GetRunsCountParams) WithTimeout(timeout time.Duration) *GetRunsCountParams

WithTimeout adds the timeout to the get runs count params

func (*GetRunsCountParams) WriteToRequest

func (o *GetRunsCountParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetRunsCountReader

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

GetRunsCountReader is a Reader for the GetRunsCount structure.

func (*GetRunsCountReader) ReadResponse

func (o *GetRunsCountReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetRunsInternalServerError

type GetRunsInternalServerError struct {
	Payload *models.Error
}

GetRunsInternalServerError handles this case with default header values.

Internal Server Error

func NewGetRunsInternalServerError

func NewGetRunsInternalServerError() *GetRunsInternalServerError

NewGetRunsInternalServerError creates a GetRunsInternalServerError with default headers values

func (*GetRunsInternalServerError) Error

type GetRunsOK

type GetRunsOK struct {
	Payload models.RunList
}

GetRunsOK handles this case with default header values.

OK

func NewGetRunsOK

func NewGetRunsOK() *GetRunsOK

NewGetRunsOK creates a GetRunsOK with default headers values

func (*GetRunsOK) Error

func (o *GetRunsOK) Error() string

type GetRunsParams

type GetRunsParams struct {

	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64
	/*Repository
	  optional; the repository name to get the tasks for.

	*/
	Repository *string
	/*Sha
	  optional; the sha to get the tasks for.

	*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetRunsParams contains all the parameters to send to the API endpoint for the get runs operation typically these are written to a http.Request

func NewGetRunsParams

func NewGetRunsParams() *GetRunsParams

NewGetRunsParams creates a new GetRunsParams object with the default values initialized.

func NewGetRunsParamsWithContext

func NewGetRunsParamsWithContext(ctx context.Context) *GetRunsParams

NewGetRunsParamsWithContext creates a new GetRunsParams object with the default values initialized, and the ability to set a context for a request

func NewGetRunsParamsWithHTTPClient

func NewGetRunsParamsWithHTTPClient(client *http.Client) *GetRunsParams

NewGetRunsParamsWithHTTPClient creates a new GetRunsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetRunsParamsWithTimeout

func NewGetRunsParamsWithTimeout(timeout time.Duration) *GetRunsParams

NewGetRunsParamsWithTimeout creates a new GetRunsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetRunsParams) HandleQueryParam

func (o *GetRunsParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetRunsParams) SetContext

func (o *GetRunsParams) SetContext(ctx context.Context)

SetContext adds the context to the get runs params

func (*GetRunsParams) SetHTTPClient

func (o *GetRunsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get runs params

func (*GetRunsParams) SetPage

func (o *GetRunsParams) SetPage(page *int64)

SetPage adds the page to the get runs params

func (*GetRunsParams) SetPerPage

func (o *GetRunsParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get runs params

func (*GetRunsParams) SetRepository

func (o *GetRunsParams) SetRepository(repository *string)

SetRepository adds the repository to the get runs params

func (*GetRunsParams) SetSha

func (o *GetRunsParams) SetSha(sha *string)

SetSha adds the sha to the get runs params

func (*GetRunsParams) SetTimeout

func (o *GetRunsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get runs params

func (*GetRunsParams) WithContext

func (o *GetRunsParams) WithContext(ctx context.Context) *GetRunsParams

WithContext adds the context to the get runs params

func (*GetRunsParams) WithHTTPClient

func (o *GetRunsParams) WithHTTPClient(client *http.Client) *GetRunsParams

WithHTTPClient adds the HTTPClient to the get runs params

func (*GetRunsParams) WithPage

func (o *GetRunsParams) WithPage(page *int64) *GetRunsParams

WithPage adds the page to the get runs params

func (*GetRunsParams) WithPerPage

func (o *GetRunsParams) WithPerPage(perPage *int64) *GetRunsParams

WithPerPage adds the perPage to the get runs params

func (*GetRunsParams) WithRepository

func (o *GetRunsParams) WithRepository(repository *string) *GetRunsParams

WithRepository adds the repository to the get runs params

func (*GetRunsParams) WithSha

func (o *GetRunsParams) WithSha(sha *string) *GetRunsParams

WithSha adds the sha to the get runs params

func (*GetRunsParams) WithTimeout

func (o *GetRunsParams) WithTimeout(timeout time.Duration) *GetRunsParams

WithTimeout adds the timeout to the get runs params

func (*GetRunsParams) WriteToRequest

func (o *GetRunsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetRunsReader

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

GetRunsReader is a Reader for the GetRuns structure.

func (*GetRunsReader) ReadResponse

func (o *GetRunsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmissionIDInternalServerError

type GetSubmissionIDInternalServerError struct {
	Payload *models.Error
}

GetSubmissionIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetSubmissionIDInternalServerError

func NewGetSubmissionIDInternalServerError() *GetSubmissionIDInternalServerError

NewGetSubmissionIDInternalServerError creates a GetSubmissionIDInternalServerError with default headers values

func (*GetSubmissionIDInternalServerError) Error

type GetSubmissionIDOK

type GetSubmissionIDOK struct {
	Payload *models.ModelSubmission
}

GetSubmissionIDOK handles this case with default header values.

OK

func NewGetSubmissionIDOK

func NewGetSubmissionIDOK() *GetSubmissionIDOK

NewGetSubmissionIDOK creates a GetSubmissionIDOK with default headers values

func (*GetSubmissionIDOK) Error

func (o *GetSubmissionIDOK) Error() string

type GetSubmissionIDParams

type GetSubmissionIDParams struct {

	/*ID
	  The ID of the submission to retrieve

	*/
	ID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmissionIDParams contains all the parameters to send to the API endpoint for the get submission ID operation typically these are written to a http.Request

func NewGetSubmissionIDParams

func NewGetSubmissionIDParams() *GetSubmissionIDParams

NewGetSubmissionIDParams creates a new GetSubmissionIDParams object with the default values initialized.

func NewGetSubmissionIDParamsWithContext

func NewGetSubmissionIDParamsWithContext(ctx context.Context) *GetSubmissionIDParams

NewGetSubmissionIDParamsWithContext creates a new GetSubmissionIDParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmissionIDParamsWithHTTPClient

func NewGetSubmissionIDParamsWithHTTPClient(client *http.Client) *GetSubmissionIDParams

NewGetSubmissionIDParamsWithHTTPClient creates a new GetSubmissionIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmissionIDParamsWithTimeout

func NewGetSubmissionIDParamsWithTimeout(timeout time.Duration) *GetSubmissionIDParams

NewGetSubmissionIDParamsWithTimeout creates a new GetSubmissionIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmissionIDParams) HandleQueryParam

func (o *GetSubmissionIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmissionIDParams) SetContext

func (o *GetSubmissionIDParams) SetContext(ctx context.Context)

SetContext adds the context to the get submission ID params

func (*GetSubmissionIDParams) SetHTTPClient

func (o *GetSubmissionIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submission ID params

func (*GetSubmissionIDParams) SetID

func (o *GetSubmissionIDParams) SetID(id int64)

SetID adds the id to the get submission ID params

func (*GetSubmissionIDParams) SetTimeout

func (o *GetSubmissionIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submission ID params

func (*GetSubmissionIDParams) WithContext

WithContext adds the context to the get submission ID params

func (*GetSubmissionIDParams) WithHTTPClient

func (o *GetSubmissionIDParams) WithHTTPClient(client *http.Client) *GetSubmissionIDParams

WithHTTPClient adds the HTTPClient to the get submission ID params

func (*GetSubmissionIDParams) WithID

WithID adds the id to the get submission ID params

func (*GetSubmissionIDParams) WithTimeout

func (o *GetSubmissionIDParams) WithTimeout(timeout time.Duration) *GetSubmissionIDParams

WithTimeout adds the timeout to the get submission ID params

func (*GetSubmissionIDParams) WriteToRequest

func (o *GetSubmissionIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetSubmissionIDReader

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

GetSubmissionIDReader is a Reader for the GetSubmissionID structure.

func (*GetSubmissionIDReader) ReadResponse

func (o *GetSubmissionIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmissionIDRunsInternalServerError

type GetSubmissionIDRunsInternalServerError struct {
	Payload *models.Error
}

GetSubmissionIDRunsInternalServerError handles this case with default header values.

Internal Server Error

func NewGetSubmissionIDRunsInternalServerError

func NewGetSubmissionIDRunsInternalServerError() *GetSubmissionIDRunsInternalServerError

NewGetSubmissionIDRunsInternalServerError creates a GetSubmissionIDRunsInternalServerError with default headers values

func (*GetSubmissionIDRunsInternalServerError) Error

type GetSubmissionIDRunsOK

type GetSubmissionIDRunsOK struct {
	Payload models.RunList
}

GetSubmissionIDRunsOK handles this case with default header values.

OK

func NewGetSubmissionIDRunsOK

func NewGetSubmissionIDRunsOK() *GetSubmissionIDRunsOK

NewGetSubmissionIDRunsOK creates a GetSubmissionIDRunsOK with default headers values

func (*GetSubmissionIDRunsOK) Error

func (o *GetSubmissionIDRunsOK) Error() string

type GetSubmissionIDRunsParams

type GetSubmissionIDRunsParams struct {

	/*ID
	  The ID of the submission to retrieve

	*/
	ID int64
	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmissionIDRunsParams contains all the parameters to send to the API endpoint for the get submission ID runs operation typically these are written to a http.Request

func NewGetSubmissionIDRunsParams

func NewGetSubmissionIDRunsParams() *GetSubmissionIDRunsParams

NewGetSubmissionIDRunsParams creates a new GetSubmissionIDRunsParams object with the default values initialized.

func NewGetSubmissionIDRunsParamsWithContext

func NewGetSubmissionIDRunsParamsWithContext(ctx context.Context) *GetSubmissionIDRunsParams

NewGetSubmissionIDRunsParamsWithContext creates a new GetSubmissionIDRunsParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmissionIDRunsParamsWithHTTPClient

func NewGetSubmissionIDRunsParamsWithHTTPClient(client *http.Client) *GetSubmissionIDRunsParams

NewGetSubmissionIDRunsParamsWithHTTPClient creates a new GetSubmissionIDRunsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmissionIDRunsParamsWithTimeout

func NewGetSubmissionIDRunsParamsWithTimeout(timeout time.Duration) *GetSubmissionIDRunsParams

NewGetSubmissionIDRunsParamsWithTimeout creates a new GetSubmissionIDRunsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmissionIDRunsParams) HandleQueryParam

func (o *GetSubmissionIDRunsParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmissionIDRunsParams) SetContext

func (o *GetSubmissionIDRunsParams) SetContext(ctx context.Context)

SetContext adds the context to the get submission ID runs params

func (*GetSubmissionIDRunsParams) SetHTTPClient

func (o *GetSubmissionIDRunsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submission ID runs params

func (*GetSubmissionIDRunsParams) SetID

func (o *GetSubmissionIDRunsParams) SetID(id int64)

SetID adds the id to the get submission ID runs params

func (*GetSubmissionIDRunsParams) SetPage

func (o *GetSubmissionIDRunsParams) SetPage(page *int64)

SetPage adds the page to the get submission ID runs params

func (*GetSubmissionIDRunsParams) SetPerPage

func (o *GetSubmissionIDRunsParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get submission ID runs params

func (*GetSubmissionIDRunsParams) SetTimeout

func (o *GetSubmissionIDRunsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithContext

WithContext adds the context to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithHTTPClient

func (o *GetSubmissionIDRunsParams) WithHTTPClient(client *http.Client) *GetSubmissionIDRunsParams

WithHTTPClient adds the HTTPClient to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithID

WithID adds the id to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithPage

WithPage adds the page to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithPerPage

func (o *GetSubmissionIDRunsParams) WithPerPage(perPage *int64) *GetSubmissionIDRunsParams

WithPerPage adds the perPage to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WithTimeout

WithTimeout adds the timeout to the get submission ID runs params

func (*GetSubmissionIDRunsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetSubmissionIDRunsReader

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

GetSubmissionIDRunsReader is a Reader for the GetSubmissionIDRuns structure.

func (*GetSubmissionIDRunsReader) ReadResponse

func (o *GetSubmissionIDRunsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmissionIDTasksInternalServerError

type GetSubmissionIDTasksInternalServerError struct {
	Payload *models.Error
}

GetSubmissionIDTasksInternalServerError handles this case with default header values.

Internal Server Error

func NewGetSubmissionIDTasksInternalServerError

func NewGetSubmissionIDTasksInternalServerError() *GetSubmissionIDTasksInternalServerError

NewGetSubmissionIDTasksInternalServerError creates a GetSubmissionIDTasksInternalServerError with default headers values

func (*GetSubmissionIDTasksInternalServerError) Error

type GetSubmissionIDTasksOK

type GetSubmissionIDTasksOK struct {
	Payload models.TaskList
}

GetSubmissionIDTasksOK handles this case with default header values.

OK

func NewGetSubmissionIDTasksOK

func NewGetSubmissionIDTasksOK() *GetSubmissionIDTasksOK

NewGetSubmissionIDTasksOK creates a GetSubmissionIDTasksOK with default headers values

func (*GetSubmissionIDTasksOK) Error

func (o *GetSubmissionIDTasksOK) Error() string

type GetSubmissionIDTasksParams

type GetSubmissionIDTasksParams struct {

	/*ID
	  The ID of the submission to retrieve

	*/
	ID int64
	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmissionIDTasksParams contains all the parameters to send to the API endpoint for the get submission ID tasks operation typically these are written to a http.Request

func NewGetSubmissionIDTasksParams

func NewGetSubmissionIDTasksParams() *GetSubmissionIDTasksParams

NewGetSubmissionIDTasksParams creates a new GetSubmissionIDTasksParams object with the default values initialized.

func NewGetSubmissionIDTasksParamsWithContext

func NewGetSubmissionIDTasksParamsWithContext(ctx context.Context) *GetSubmissionIDTasksParams

NewGetSubmissionIDTasksParamsWithContext creates a new GetSubmissionIDTasksParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmissionIDTasksParamsWithHTTPClient

func NewGetSubmissionIDTasksParamsWithHTTPClient(client *http.Client) *GetSubmissionIDTasksParams

NewGetSubmissionIDTasksParamsWithHTTPClient creates a new GetSubmissionIDTasksParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmissionIDTasksParamsWithTimeout

func NewGetSubmissionIDTasksParamsWithTimeout(timeout time.Duration) *GetSubmissionIDTasksParams

NewGetSubmissionIDTasksParamsWithTimeout creates a new GetSubmissionIDTasksParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmissionIDTasksParams) HandleQueryParam

func (o *GetSubmissionIDTasksParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmissionIDTasksParams) SetContext

func (o *GetSubmissionIDTasksParams) SetContext(ctx context.Context)

SetContext adds the context to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) SetHTTPClient

func (o *GetSubmissionIDTasksParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) SetID

func (o *GetSubmissionIDTasksParams) SetID(id int64)

SetID adds the id to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) SetPage

func (o *GetSubmissionIDTasksParams) SetPage(page *int64)

SetPage adds the page to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) SetPerPage

func (o *GetSubmissionIDTasksParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) SetTimeout

func (o *GetSubmissionIDTasksParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithContext

WithContext adds the context to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithID

WithID adds the id to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithPage

WithPage adds the page to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithPerPage

WithPerPage adds the perPage to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WithTimeout

WithTimeout adds the timeout to the get submission ID tasks params

func (*GetSubmissionIDTasksParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetSubmissionIDTasksReader

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

GetSubmissionIDTasksReader is a Reader for the GetSubmissionIDTasks structure.

func (*GetSubmissionIDTasksReader) ReadResponse

func (o *GetSubmissionIDTasksReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmissionsCountInternalServerError

type GetSubmissionsCountInternalServerError struct {
	Payload *models.Error
}

GetSubmissionsCountInternalServerError handles this case with default header values.

Internal Server Error

func NewGetSubmissionsCountInternalServerError

func NewGetSubmissionsCountInternalServerError() *GetSubmissionsCountInternalServerError

NewGetSubmissionsCountInternalServerError creates a GetSubmissionsCountInternalServerError with default headers values

func (*GetSubmissionsCountInternalServerError) Error

type GetSubmissionsCountOK

type GetSubmissionsCountOK struct {
	Payload int64
}

GetSubmissionsCountOK handles this case with default header values.

OK

func NewGetSubmissionsCountOK

func NewGetSubmissionsCountOK() *GetSubmissionsCountOK

NewGetSubmissionsCountOK creates a GetSubmissionsCountOK with default headers values

func (*GetSubmissionsCountOK) Error

func (o *GetSubmissionsCountOK) Error() string

type GetSubmissionsCountParams

type GetSubmissionsCountParams struct {

	/*Repository
	  the repository owner/repo to be viewed.

	*/
	Repository *string
	/*Sha
	  the sha or branch to be viewed.

	*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmissionsCountParams contains all the parameters to send to the API endpoint for the get submissions count operation typically these are written to a http.Request

func NewGetSubmissionsCountParams

func NewGetSubmissionsCountParams() *GetSubmissionsCountParams

NewGetSubmissionsCountParams creates a new GetSubmissionsCountParams object with the default values initialized.

func NewGetSubmissionsCountParamsWithContext

func NewGetSubmissionsCountParamsWithContext(ctx context.Context) *GetSubmissionsCountParams

NewGetSubmissionsCountParamsWithContext creates a new GetSubmissionsCountParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmissionsCountParamsWithHTTPClient

func NewGetSubmissionsCountParamsWithHTTPClient(client *http.Client) *GetSubmissionsCountParams

NewGetSubmissionsCountParamsWithHTTPClient creates a new GetSubmissionsCountParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmissionsCountParamsWithTimeout

func NewGetSubmissionsCountParamsWithTimeout(timeout time.Duration) *GetSubmissionsCountParams

NewGetSubmissionsCountParamsWithTimeout creates a new GetSubmissionsCountParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmissionsCountParams) HandleQueryParam

func (o *GetSubmissionsCountParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmissionsCountParams) SetContext

func (o *GetSubmissionsCountParams) SetContext(ctx context.Context)

SetContext adds the context to the get submissions count params

func (*GetSubmissionsCountParams) SetHTTPClient

func (o *GetSubmissionsCountParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submissions count params

func (*GetSubmissionsCountParams) SetRepository

func (o *GetSubmissionsCountParams) SetRepository(repository *string)

SetRepository adds the repository to the get submissions count params

func (*GetSubmissionsCountParams) SetSha

func (o *GetSubmissionsCountParams) SetSha(sha *string)

SetSha adds the sha to the get submissions count params

func (*GetSubmissionsCountParams) SetTimeout

func (o *GetSubmissionsCountParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submissions count params

func (*GetSubmissionsCountParams) WithContext

WithContext adds the context to the get submissions count params

func (*GetSubmissionsCountParams) WithHTTPClient

func (o *GetSubmissionsCountParams) WithHTTPClient(client *http.Client) *GetSubmissionsCountParams

WithHTTPClient adds the HTTPClient to the get submissions count params

func (*GetSubmissionsCountParams) WithRepository

func (o *GetSubmissionsCountParams) WithRepository(repository *string) *GetSubmissionsCountParams

WithRepository adds the repository to the get submissions count params

func (*GetSubmissionsCountParams) WithSha

WithSha adds the sha to the get submissions count params

func (*GetSubmissionsCountParams) WithTimeout

WithTimeout adds the timeout to the get submissions count params

func (*GetSubmissionsCountParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetSubmissionsCountReader

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

GetSubmissionsCountReader is a Reader for the GetSubmissionsCount structure.

func (*GetSubmissionsCountReader) ReadResponse

func (o *GetSubmissionsCountReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmissionsInternalServerError

type GetSubmissionsInternalServerError struct {
	Payload *models.Error
}

GetSubmissionsInternalServerError handles this case with default header values.

Internal Server Error

func NewGetSubmissionsInternalServerError

func NewGetSubmissionsInternalServerError() *GetSubmissionsInternalServerError

NewGetSubmissionsInternalServerError creates a GetSubmissionsInternalServerError with default headers values

func (*GetSubmissionsInternalServerError) Error

type GetSubmissionsOK

type GetSubmissionsOK struct {
	Payload models.ModelSubmissionList
}

GetSubmissionsOK handles this case with default header values.

OK

func NewGetSubmissionsOK

func NewGetSubmissionsOK() *GetSubmissionsOK

NewGetSubmissionsOK creates a GetSubmissionsOK with default headers values

func (*GetSubmissionsOK) Error

func (o *GetSubmissionsOK) Error() string

type GetSubmissionsParams

type GetSubmissionsParams struct {

	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64
	/*Repository
	  the repository owner/repo to be viewed.

	*/
	Repository *string
	/*Sha
	  the sha or branch to be viewed.

	*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmissionsParams contains all the parameters to send to the API endpoint for the get submissions operation typically these are written to a http.Request

func NewGetSubmissionsParams

func NewGetSubmissionsParams() *GetSubmissionsParams

NewGetSubmissionsParams creates a new GetSubmissionsParams object with the default values initialized.

func NewGetSubmissionsParamsWithContext

func NewGetSubmissionsParamsWithContext(ctx context.Context) *GetSubmissionsParams

NewGetSubmissionsParamsWithContext creates a new GetSubmissionsParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmissionsParamsWithHTTPClient

func NewGetSubmissionsParamsWithHTTPClient(client *http.Client) *GetSubmissionsParams

NewGetSubmissionsParamsWithHTTPClient creates a new GetSubmissionsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmissionsParamsWithTimeout

func NewGetSubmissionsParamsWithTimeout(timeout time.Duration) *GetSubmissionsParams

NewGetSubmissionsParamsWithTimeout creates a new GetSubmissionsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmissionsParams) HandleQueryParam

func (o *GetSubmissionsParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmissionsParams) SetContext

func (o *GetSubmissionsParams) SetContext(ctx context.Context)

SetContext adds the context to the get submissions params

func (*GetSubmissionsParams) SetHTTPClient

func (o *GetSubmissionsParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submissions params

func (*GetSubmissionsParams) SetPage

func (o *GetSubmissionsParams) SetPage(page *int64)

SetPage adds the page to the get submissions params

func (*GetSubmissionsParams) SetPerPage

func (o *GetSubmissionsParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get submissions params

func (*GetSubmissionsParams) SetRepository

func (o *GetSubmissionsParams) SetRepository(repository *string)

SetRepository adds the repository to the get submissions params

func (*GetSubmissionsParams) SetSha

func (o *GetSubmissionsParams) SetSha(sha *string)

SetSha adds the sha to the get submissions params

func (*GetSubmissionsParams) SetTimeout

func (o *GetSubmissionsParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submissions params

func (*GetSubmissionsParams) WithContext

WithContext adds the context to the get submissions params

func (*GetSubmissionsParams) WithHTTPClient

func (o *GetSubmissionsParams) WithHTTPClient(client *http.Client) *GetSubmissionsParams

WithHTTPClient adds the HTTPClient to the get submissions params

func (*GetSubmissionsParams) WithPage

func (o *GetSubmissionsParams) WithPage(page *int64) *GetSubmissionsParams

WithPage adds the page to the get submissions params

func (*GetSubmissionsParams) WithPerPage

func (o *GetSubmissionsParams) WithPerPage(perPage *int64) *GetSubmissionsParams

WithPerPage adds the perPage to the get submissions params

func (*GetSubmissionsParams) WithRepository

func (o *GetSubmissionsParams) WithRepository(repository *string) *GetSubmissionsParams

WithRepository adds the repository to the get submissions params

func (*GetSubmissionsParams) WithSha

WithSha adds the sha to the get submissions params

func (*GetSubmissionsParams) WithTimeout

func (o *GetSubmissionsParams) WithTimeout(timeout time.Duration) *GetSubmissionsParams

WithTimeout adds the timeout to the get submissions params

func (*GetSubmissionsParams) WriteToRequest

func (o *GetSubmissionsParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetSubmissionsReader

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

GetSubmissionsReader is a Reader for the GetSubmissions structure.

func (*GetSubmissionsReader) ReadResponse

func (o *GetSubmissionsReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetSubmitInternalServerError

type GetSubmitInternalServerError struct {
	Payload *models.Error
}

GetSubmitInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetSubmitInternalServerError

func NewGetSubmitInternalServerError() *GetSubmitInternalServerError

NewGetSubmitInternalServerError creates a GetSubmitInternalServerError with default headers values

func (*GetSubmitInternalServerError) Error

type GetSubmitOK

type GetSubmitOK struct {
}

GetSubmitOK handles this case with default header values.

OK

func NewGetSubmitOK

func NewGetSubmitOK() *GetSubmitOK

NewGetSubmitOK creates a GetSubmitOK with default headers values

func (*GetSubmitOK) Error

func (o *GetSubmitOK) Error() string

type GetSubmitParams

type GetSubmitParams struct {

	/*All
	  Run all tests instead of relying on diff selection to pick them.

	*/
	All *bool
	/*Repository
	  the repository owner/repo to be tested.

	*/
	Repository string
	/*Sha
	  the sha or branch to be tested

	*/
	Sha string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetSubmitParams contains all the parameters to send to the API endpoint for the get submit operation typically these are written to a http.Request

func NewGetSubmitParams

func NewGetSubmitParams() *GetSubmitParams

NewGetSubmitParams creates a new GetSubmitParams object with the default values initialized.

func NewGetSubmitParamsWithContext

func NewGetSubmitParamsWithContext(ctx context.Context) *GetSubmitParams

NewGetSubmitParamsWithContext creates a new GetSubmitParams object with the default values initialized, and the ability to set a context for a request

func NewGetSubmitParamsWithHTTPClient

func NewGetSubmitParamsWithHTTPClient(client *http.Client) *GetSubmitParams

NewGetSubmitParamsWithHTTPClient creates a new GetSubmitParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetSubmitParamsWithTimeout

func NewGetSubmitParamsWithTimeout(timeout time.Duration) *GetSubmitParams

NewGetSubmitParamsWithTimeout creates a new GetSubmitParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetSubmitParams) HandleQueryParam

func (o *GetSubmitParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetSubmitParams) SetAll

func (o *GetSubmitParams) SetAll(all *bool)

SetAll adds the all to the get submit params

func (*GetSubmitParams) SetContext

func (o *GetSubmitParams) SetContext(ctx context.Context)

SetContext adds the context to the get submit params

func (*GetSubmitParams) SetHTTPClient

func (o *GetSubmitParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get submit params

func (*GetSubmitParams) SetRepository

func (o *GetSubmitParams) SetRepository(repository string)

SetRepository adds the repository to the get submit params

func (*GetSubmitParams) SetSha

func (o *GetSubmitParams) SetSha(sha string)

SetSha adds the sha to the get submit params

func (*GetSubmitParams) SetTimeout

func (o *GetSubmitParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get submit params

func (*GetSubmitParams) WithAll

func (o *GetSubmitParams) WithAll(all *bool) *GetSubmitParams

WithAll adds the all to the get submit params

func (*GetSubmitParams) WithContext

func (o *GetSubmitParams) WithContext(ctx context.Context) *GetSubmitParams

WithContext adds the context to the get submit params

func (*GetSubmitParams) WithHTTPClient

func (o *GetSubmitParams) WithHTTPClient(client *http.Client) *GetSubmitParams

WithHTTPClient adds the HTTPClient to the get submit params

func (*GetSubmitParams) WithRepository

func (o *GetSubmitParams) WithRepository(repository string) *GetSubmitParams

WithRepository adds the repository to the get submit params

func (*GetSubmitParams) WithSha

func (o *GetSubmitParams) WithSha(sha string) *GetSubmitParams

WithSha adds the sha to the get submit params

func (*GetSubmitParams) WithTimeout

func (o *GetSubmitParams) WithTimeout(timeout time.Duration) *GetSubmitParams

WithTimeout adds the timeout to the get submit params

func (*GetSubmitParams) WriteToRequest

func (o *GetSubmitParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetSubmitReader

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

GetSubmitReader is a Reader for the GetSubmit structure.

func (*GetSubmitReader) ReadResponse

func (o *GetSubmitReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTasksCountInternalServerError

type GetTasksCountInternalServerError struct {
	Payload *models.Error
}

GetTasksCountInternalServerError handles this case with default header values.

Internal Server Error

func NewGetTasksCountInternalServerError

func NewGetTasksCountInternalServerError() *GetTasksCountInternalServerError

NewGetTasksCountInternalServerError creates a GetTasksCountInternalServerError with default headers values

func (*GetTasksCountInternalServerError) Error

type GetTasksCountOK

type GetTasksCountOK struct {
	Payload int64
}

GetTasksCountOK handles this case with default header values.

OK

func NewGetTasksCountOK

func NewGetTasksCountOK() *GetTasksCountOK

NewGetTasksCountOK creates a GetTasksCountOK with default headers values

func (*GetTasksCountOK) Error

func (o *GetTasksCountOK) Error() string

type GetTasksCountParams

type GetTasksCountParams struct {

	/*Repository
	  optional; repository for filtering

	*/
	Repository *string
	/*Sha
	  optional; sha for filtering

	*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTasksCountParams contains all the parameters to send to the API endpoint for the get tasks count operation typically these are written to a http.Request

func NewGetTasksCountParams

func NewGetTasksCountParams() *GetTasksCountParams

NewGetTasksCountParams creates a new GetTasksCountParams object with the default values initialized.

func NewGetTasksCountParamsWithContext

func NewGetTasksCountParamsWithContext(ctx context.Context) *GetTasksCountParams

NewGetTasksCountParamsWithContext creates a new GetTasksCountParams object with the default values initialized, and the ability to set a context for a request

func NewGetTasksCountParamsWithHTTPClient

func NewGetTasksCountParamsWithHTTPClient(client *http.Client) *GetTasksCountParams

NewGetTasksCountParamsWithHTTPClient creates a new GetTasksCountParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTasksCountParamsWithTimeout

func NewGetTasksCountParamsWithTimeout(timeout time.Duration) *GetTasksCountParams

NewGetTasksCountParamsWithTimeout creates a new GetTasksCountParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTasksCountParams) HandleQueryParam

func (o *GetTasksCountParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTasksCountParams) SetContext

func (o *GetTasksCountParams) SetContext(ctx context.Context)

SetContext adds the context to the get tasks count params

func (*GetTasksCountParams) SetHTTPClient

func (o *GetTasksCountParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get tasks count params

func (*GetTasksCountParams) SetRepository

func (o *GetTasksCountParams) SetRepository(repository *string)

SetRepository adds the repository to the get tasks count params

func (*GetTasksCountParams) SetSha

func (o *GetTasksCountParams) SetSha(sha *string)

SetSha adds the sha to the get tasks count params

func (*GetTasksCountParams) SetTimeout

func (o *GetTasksCountParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get tasks count params

func (*GetTasksCountParams) WithContext

WithContext adds the context to the get tasks count params

func (*GetTasksCountParams) WithHTTPClient

func (o *GetTasksCountParams) WithHTTPClient(client *http.Client) *GetTasksCountParams

WithHTTPClient adds the HTTPClient to the get tasks count params

func (*GetTasksCountParams) WithRepository

func (o *GetTasksCountParams) WithRepository(repository *string) *GetTasksCountParams

WithRepository adds the repository to the get tasks count params

func (*GetTasksCountParams) WithSha

WithSha adds the sha to the get tasks count params

func (*GetTasksCountParams) WithTimeout

func (o *GetTasksCountParams) WithTimeout(timeout time.Duration) *GetTasksCountParams

WithTimeout adds the timeout to the get tasks count params

func (*GetTasksCountParams) WriteToRequest

func (o *GetTasksCountParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetTasksCountReader

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

GetTasksCountReader is a Reader for the GetTasksCount structure.

func (*GetTasksCountReader) ReadResponse

func (o *GetTasksCountReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTasksInternalServerError

type GetTasksInternalServerError struct {
	Payload *models.Error
}

GetTasksInternalServerError handles this case with default header values.

Internal Server Error

func NewGetTasksInternalServerError

func NewGetTasksInternalServerError() *GetTasksInternalServerError

NewGetTasksInternalServerError creates a GetTasksInternalServerError with default headers values

func (*GetTasksInternalServerError) Error

type GetTasksOK

type GetTasksOK struct {
	Payload models.TaskList
}

GetTasksOK handles this case with default header values.

OK

func NewGetTasksOK

func NewGetTasksOK() *GetTasksOK

NewGetTasksOK creates a GetTasksOK with default headers values

func (*GetTasksOK) Error

func (o *GetTasksOK) Error() string

type GetTasksParams

type GetTasksParams struct {

	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64
	/*Repository
	  optional; the repository name to get the tasks for.

	*/
	Repository *string
	/*Sha
	  optional; the sha to get the tasks for.

	*/
	Sha *string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTasksParams contains all the parameters to send to the API endpoint for the get tasks operation typically these are written to a http.Request

func NewGetTasksParams

func NewGetTasksParams() *GetTasksParams

NewGetTasksParams creates a new GetTasksParams object with the default values initialized.

func NewGetTasksParamsWithContext

func NewGetTasksParamsWithContext(ctx context.Context) *GetTasksParams

NewGetTasksParamsWithContext creates a new GetTasksParams object with the default values initialized, and the ability to set a context for a request

func NewGetTasksParamsWithHTTPClient

func NewGetTasksParamsWithHTTPClient(client *http.Client) *GetTasksParams

NewGetTasksParamsWithHTTPClient creates a new GetTasksParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTasksParamsWithTimeout

func NewGetTasksParamsWithTimeout(timeout time.Duration) *GetTasksParams

NewGetTasksParamsWithTimeout creates a new GetTasksParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTasksParams) HandleQueryParam

func (o *GetTasksParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTasksParams) SetContext

func (o *GetTasksParams) SetContext(ctx context.Context)

SetContext adds the context to the get tasks params

func (*GetTasksParams) SetHTTPClient

func (o *GetTasksParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get tasks params

func (*GetTasksParams) SetPage

func (o *GetTasksParams) SetPage(page *int64)

SetPage adds the page to the get tasks params

func (*GetTasksParams) SetPerPage

func (o *GetTasksParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get tasks params

func (*GetTasksParams) SetRepository

func (o *GetTasksParams) SetRepository(repository *string)

SetRepository adds the repository to the get tasks params

func (*GetTasksParams) SetSha

func (o *GetTasksParams) SetSha(sha *string)

SetSha adds the sha to the get tasks params

func (*GetTasksParams) SetTimeout

func (o *GetTasksParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get tasks params

func (*GetTasksParams) WithContext

func (o *GetTasksParams) WithContext(ctx context.Context) *GetTasksParams

WithContext adds the context to the get tasks params

func (*GetTasksParams) WithHTTPClient

func (o *GetTasksParams) WithHTTPClient(client *http.Client) *GetTasksParams

WithHTTPClient adds the HTTPClient to the get tasks params

func (*GetTasksParams) WithPage

func (o *GetTasksParams) WithPage(page *int64) *GetTasksParams

WithPage adds the page to the get tasks params

func (*GetTasksParams) WithPerPage

func (o *GetTasksParams) WithPerPage(perPage *int64) *GetTasksParams

WithPerPage adds the perPage to the get tasks params

func (*GetTasksParams) WithRepository

func (o *GetTasksParams) WithRepository(repository *string) *GetTasksParams

WithRepository adds the repository to the get tasks params

func (*GetTasksParams) WithSha

func (o *GetTasksParams) WithSha(sha *string) *GetTasksParams

WithSha adds the sha to the get tasks params

func (*GetTasksParams) WithTimeout

func (o *GetTasksParams) WithTimeout(timeout time.Duration) *GetTasksParams

WithTimeout adds the timeout to the get tasks params

func (*GetTasksParams) WriteToRequest

func (o *GetTasksParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetTasksReader

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

GetTasksReader is a Reader for the GetTasks structure.

func (*GetTasksReader) ReadResponse

func (o *GetTasksReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTasksRunsIDCountInternalServerError

type GetTasksRunsIDCountInternalServerError struct {
	Payload *models.Error
}

GetTasksRunsIDCountInternalServerError handles this case with default header values.

Internal Server Error

func NewGetTasksRunsIDCountInternalServerError

func NewGetTasksRunsIDCountInternalServerError() *GetTasksRunsIDCountInternalServerError

NewGetTasksRunsIDCountInternalServerError creates a GetTasksRunsIDCountInternalServerError with default headers values

func (*GetTasksRunsIDCountInternalServerError) Error

type GetTasksRunsIDCountOK

type GetTasksRunsIDCountOK struct {
	Payload int64
}

GetTasksRunsIDCountOK handles this case with default header values.

OK

func NewGetTasksRunsIDCountOK

func NewGetTasksRunsIDCountOK() *GetTasksRunsIDCountOK

NewGetTasksRunsIDCountOK creates a GetTasksRunsIDCountOK with default headers values

func (*GetTasksRunsIDCountOK) Error

func (o *GetTasksRunsIDCountOK) Error() string

type GetTasksRunsIDCountParams

type GetTasksRunsIDCountParams struct {

	/*ID
	  the ID of the Task.

	*/
	ID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTasksRunsIDCountParams contains all the parameters to send to the API endpoint for the get tasks runs ID count operation typically these are written to a http.Request

func NewGetTasksRunsIDCountParams

func NewGetTasksRunsIDCountParams() *GetTasksRunsIDCountParams

NewGetTasksRunsIDCountParams creates a new GetTasksRunsIDCountParams object with the default values initialized.

func NewGetTasksRunsIDCountParamsWithContext

func NewGetTasksRunsIDCountParamsWithContext(ctx context.Context) *GetTasksRunsIDCountParams

NewGetTasksRunsIDCountParamsWithContext creates a new GetTasksRunsIDCountParams object with the default values initialized, and the ability to set a context for a request

func NewGetTasksRunsIDCountParamsWithHTTPClient

func NewGetTasksRunsIDCountParamsWithHTTPClient(client *http.Client) *GetTasksRunsIDCountParams

NewGetTasksRunsIDCountParamsWithHTTPClient creates a new GetTasksRunsIDCountParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTasksRunsIDCountParamsWithTimeout

func NewGetTasksRunsIDCountParamsWithTimeout(timeout time.Duration) *GetTasksRunsIDCountParams

NewGetTasksRunsIDCountParamsWithTimeout creates a new GetTasksRunsIDCountParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTasksRunsIDCountParams) HandleQueryParam

func (o *GetTasksRunsIDCountParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTasksRunsIDCountParams) SetContext

func (o *GetTasksRunsIDCountParams) SetContext(ctx context.Context)

SetContext adds the context to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) SetHTTPClient

func (o *GetTasksRunsIDCountParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) SetID

func (o *GetTasksRunsIDCountParams) SetID(id int64)

SetID adds the id to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) SetTimeout

func (o *GetTasksRunsIDCountParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) WithContext

WithContext adds the context to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) WithHTTPClient

func (o *GetTasksRunsIDCountParams) WithHTTPClient(client *http.Client) *GetTasksRunsIDCountParams

WithHTTPClient adds the HTTPClient to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) WithID

WithID adds the id to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) WithTimeout

WithTimeout adds the timeout to the get tasks runs ID count params

func (*GetTasksRunsIDCountParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetTasksRunsIDCountReader

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

GetTasksRunsIDCountReader is a Reader for the GetTasksRunsIDCount structure.

func (*GetTasksRunsIDCountReader) ReadResponse

func (o *GetTasksRunsIDCountReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTasksRunsIDInternalServerError

type GetTasksRunsIDInternalServerError struct {
	Payload *models.Error
}

GetTasksRunsIDInternalServerError handles this case with default header values.

Internal Server Error

func NewGetTasksRunsIDInternalServerError

func NewGetTasksRunsIDInternalServerError() *GetTasksRunsIDInternalServerError

NewGetTasksRunsIDInternalServerError creates a GetTasksRunsIDInternalServerError with default headers values

func (*GetTasksRunsIDInternalServerError) Error

type GetTasksRunsIDOK

type GetTasksRunsIDOK struct {
	Payload models.RunList
}

GetTasksRunsIDOK handles this case with default header values.

OK

func NewGetTasksRunsIDOK

func NewGetTasksRunsIDOK() *GetTasksRunsIDOK

NewGetTasksRunsIDOK creates a GetTasksRunsIDOK with default headers values

func (*GetTasksRunsIDOK) Error

func (o *GetTasksRunsIDOK) Error() string

type GetTasksRunsIDParams

type GetTasksRunsIDParams struct {

	/*ID
	  the ID of the Task

	*/
	ID int64
	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTasksRunsIDParams contains all the parameters to send to the API endpoint for the get tasks runs ID operation typically these are written to a http.Request

func NewGetTasksRunsIDParams

func NewGetTasksRunsIDParams() *GetTasksRunsIDParams

NewGetTasksRunsIDParams creates a new GetTasksRunsIDParams object with the default values initialized.

func NewGetTasksRunsIDParamsWithContext

func NewGetTasksRunsIDParamsWithContext(ctx context.Context) *GetTasksRunsIDParams

NewGetTasksRunsIDParamsWithContext creates a new GetTasksRunsIDParams object with the default values initialized, and the ability to set a context for a request

func NewGetTasksRunsIDParamsWithHTTPClient

func NewGetTasksRunsIDParamsWithHTTPClient(client *http.Client) *GetTasksRunsIDParams

NewGetTasksRunsIDParamsWithHTTPClient creates a new GetTasksRunsIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTasksRunsIDParamsWithTimeout

func NewGetTasksRunsIDParamsWithTimeout(timeout time.Duration) *GetTasksRunsIDParams

NewGetTasksRunsIDParamsWithTimeout creates a new GetTasksRunsIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTasksRunsIDParams) HandleQueryParam

func (o *GetTasksRunsIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTasksRunsIDParams) SetContext

func (o *GetTasksRunsIDParams) SetContext(ctx context.Context)

SetContext adds the context to the get tasks runs ID params

func (*GetTasksRunsIDParams) SetHTTPClient

func (o *GetTasksRunsIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get tasks runs ID params

func (*GetTasksRunsIDParams) SetID

func (o *GetTasksRunsIDParams) SetID(id int64)

SetID adds the id to the get tasks runs ID params

func (*GetTasksRunsIDParams) SetPage

func (o *GetTasksRunsIDParams) SetPage(page *int64)

SetPage adds the page to the get tasks runs ID params

func (*GetTasksRunsIDParams) SetPerPage

func (o *GetTasksRunsIDParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get tasks runs ID params

func (*GetTasksRunsIDParams) SetTimeout

func (o *GetTasksRunsIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithContext

WithContext adds the context to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithHTTPClient

func (o *GetTasksRunsIDParams) WithHTTPClient(client *http.Client) *GetTasksRunsIDParams

WithHTTPClient adds the HTTPClient to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithID

WithID adds the id to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithPage

func (o *GetTasksRunsIDParams) WithPage(page *int64) *GetTasksRunsIDParams

WithPage adds the page to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithPerPage

func (o *GetTasksRunsIDParams) WithPerPage(perPage *int64) *GetTasksRunsIDParams

WithPerPage adds the perPage to the get tasks runs ID params

func (*GetTasksRunsIDParams) WithTimeout

func (o *GetTasksRunsIDParams) WithTimeout(timeout time.Duration) *GetTasksRunsIDParams

WithTimeout adds the timeout to the get tasks runs ID params

func (*GetTasksRunsIDParams) WriteToRequest

func (o *GetTasksRunsIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetTasksRunsIDReader

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

GetTasksRunsIDReader is a Reader for the GetTasksRunsID structure.

func (*GetTasksRunsIDReader) ReadResponse

func (o *GetTasksRunsIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTasksSubscribedInternalServerError

type GetTasksSubscribedInternalServerError struct {
	Payload *models.Error
}

GetTasksSubscribedInternalServerError handles this case with default header values.

Internal Server Error

func NewGetTasksSubscribedInternalServerError

func NewGetTasksSubscribedInternalServerError() *GetTasksSubscribedInternalServerError

NewGetTasksSubscribedInternalServerError creates a GetTasksSubscribedInternalServerError with default headers values

func (*GetTasksSubscribedInternalServerError) Error

type GetTasksSubscribedOK

type GetTasksSubscribedOK struct {
	Payload models.TaskList
}

GetTasksSubscribedOK handles this case with default header values.

OK

func NewGetTasksSubscribedOK

func NewGetTasksSubscribedOK() *GetTasksSubscribedOK

NewGetTasksSubscribedOK creates a GetTasksSubscribedOK with default headers values

func (*GetTasksSubscribedOK) Error

func (o *GetTasksSubscribedOK) Error() string

type GetTasksSubscribedParams

type GetTasksSubscribedParams struct {

	/*Page
	  pagination control: what page to retrieve in the query.

	*/
	Page *int64
	/*PerPage
	  pagination control: how many items counts as a page.

	*/
	PerPage *int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTasksSubscribedParams contains all the parameters to send to the API endpoint for the get tasks subscribed operation typically these are written to a http.Request

func NewGetTasksSubscribedParams

func NewGetTasksSubscribedParams() *GetTasksSubscribedParams

NewGetTasksSubscribedParams creates a new GetTasksSubscribedParams object with the default values initialized.

func NewGetTasksSubscribedParamsWithContext

func NewGetTasksSubscribedParamsWithContext(ctx context.Context) *GetTasksSubscribedParams

NewGetTasksSubscribedParamsWithContext creates a new GetTasksSubscribedParams object with the default values initialized, and the ability to set a context for a request

func NewGetTasksSubscribedParamsWithHTTPClient

func NewGetTasksSubscribedParamsWithHTTPClient(client *http.Client) *GetTasksSubscribedParams

NewGetTasksSubscribedParamsWithHTTPClient creates a new GetTasksSubscribedParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTasksSubscribedParamsWithTimeout

func NewGetTasksSubscribedParamsWithTimeout(timeout time.Duration) *GetTasksSubscribedParams

NewGetTasksSubscribedParamsWithTimeout creates a new GetTasksSubscribedParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTasksSubscribedParams) HandleQueryParam

func (o *GetTasksSubscribedParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTasksSubscribedParams) SetContext

func (o *GetTasksSubscribedParams) SetContext(ctx context.Context)

SetContext adds the context to the get tasks subscribed params

func (*GetTasksSubscribedParams) SetHTTPClient

func (o *GetTasksSubscribedParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get tasks subscribed params

func (*GetTasksSubscribedParams) SetPage

func (o *GetTasksSubscribedParams) SetPage(page *int64)

SetPage adds the page to the get tasks subscribed params

func (*GetTasksSubscribedParams) SetPerPage

func (o *GetTasksSubscribedParams) SetPerPage(perPage *int64)

SetPerPage adds the perPage to the get tasks subscribed params

func (*GetTasksSubscribedParams) SetTimeout

func (o *GetTasksSubscribedParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get tasks subscribed params

func (*GetTasksSubscribedParams) WithContext

WithContext adds the context to the get tasks subscribed params

func (*GetTasksSubscribedParams) WithHTTPClient

func (o *GetTasksSubscribedParams) WithHTTPClient(client *http.Client) *GetTasksSubscribedParams

WithHTTPClient adds the HTTPClient to the get tasks subscribed params

func (*GetTasksSubscribedParams) WithPage

WithPage adds the page to the get tasks subscribed params

func (*GetTasksSubscribedParams) WithPerPage

func (o *GetTasksSubscribedParams) WithPerPage(perPage *int64) *GetTasksSubscribedParams

WithPerPage adds the perPage to the get tasks subscribed params

func (*GetTasksSubscribedParams) WithTimeout

WithTimeout adds the timeout to the get tasks subscribed params

func (*GetTasksSubscribedParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetTasksSubscribedReader

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

GetTasksSubscribedReader is a Reader for the GetTasksSubscribed structure.

func (*GetTasksSubscribedReader) ReadResponse

func (o *GetTasksSubscribedReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetTokenInternalServerError

type GetTokenInternalServerError struct {
	Payload *models.Error
}

GetTokenInternalServerError handles this case with default header values.

An error occurred.

func NewGetTokenInternalServerError

func NewGetTokenInternalServerError() *GetTokenInternalServerError

NewGetTokenInternalServerError creates a GetTokenInternalServerError with default headers values

func (*GetTokenInternalServerError) Error

type GetTokenOK

type GetTokenOK struct {
	Payload string
}

GetTokenOK handles this case with default header values.

Returns the token which you can pass as a bearer token in headers for further requests as this user.

func NewGetTokenOK

func NewGetTokenOK() *GetTokenOK

NewGetTokenOK creates a GetTokenOK with default headers values

func (*GetTokenOK) Error

func (o *GetTokenOK) Error() string

type GetTokenParams

type GetTokenParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetTokenParams contains all the parameters to send to the API endpoint for the get token operation typically these are written to a http.Request

func NewGetTokenParams

func NewGetTokenParams() *GetTokenParams

NewGetTokenParams creates a new GetTokenParams object with the default values initialized.

func NewGetTokenParamsWithContext

func NewGetTokenParamsWithContext(ctx context.Context) *GetTokenParams

NewGetTokenParamsWithContext creates a new GetTokenParams object with the default values initialized, and the ability to set a context for a request

func NewGetTokenParamsWithHTTPClient

func NewGetTokenParamsWithHTTPClient(client *http.Client) *GetTokenParams

NewGetTokenParamsWithHTTPClient creates a new GetTokenParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetTokenParamsWithTimeout

func NewGetTokenParamsWithTimeout(timeout time.Duration) *GetTokenParams

NewGetTokenParamsWithTimeout creates a new GetTokenParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetTokenParams) HandleQueryParam

func (o *GetTokenParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetTokenParams) SetContext

func (o *GetTokenParams) SetContext(ctx context.Context)

SetContext adds the context to the get token params

func (*GetTokenParams) SetHTTPClient

func (o *GetTokenParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get token params

func (*GetTokenParams) SetTimeout

func (o *GetTokenParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get token params

func (*GetTokenParams) WithContext

func (o *GetTokenParams) WithContext(ctx context.Context) *GetTokenParams

WithContext adds the context to the get token params

func (*GetTokenParams) WithHTTPClient

func (o *GetTokenParams) WithHTTPClient(client *http.Client) *GetTokenParams

WithHTTPClient adds the HTTPClient to the get token params

func (*GetTokenParams) WithTimeout

func (o *GetTokenParams) WithTimeout(timeout time.Duration) *GetTokenParams

WithTimeout adds the timeout to the get token params

func (*GetTokenParams) WriteToRequest

func (o *GetTokenParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type GetTokenReader

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

GetTokenReader is a Reader for the GetToken structure.

func (*GetTokenReader) ReadResponse

func (o *GetTokenReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type GetUserPropertiesInternalServerError

type GetUserPropertiesInternalServerError struct {
	Payload *models.Error
}

GetUserPropertiesInternalServerError handles this case with default header values.

An error occurred. Body has error result.

func NewGetUserPropertiesInternalServerError

func NewGetUserPropertiesInternalServerError() *GetUserPropertiesInternalServerError

NewGetUserPropertiesInternalServerError creates a GetUserPropertiesInternalServerError with default headers values

func (*GetUserPropertiesInternalServerError) Error

type GetUserPropertiesOK

type GetUserPropertiesOK struct {
	Payload interface{}
}

GetUserPropertiesOK handles this case with default header values.

An object containing user properties

func NewGetUserPropertiesOK

func NewGetUserPropertiesOK() *GetUserPropertiesOK

NewGetUserPropertiesOK creates a GetUserPropertiesOK with default headers values

func (*GetUserPropertiesOK) Error

func (o *GetUserPropertiesOK) Error() string

type GetUserPropertiesParams

type GetUserPropertiesParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

GetUserPropertiesParams contains all the parameters to send to the API endpoint for the get user properties operation typically these are written to a http.Request

func NewGetUserPropertiesParams

func NewGetUserPropertiesParams() *GetUserPropertiesParams

NewGetUserPropertiesParams creates a new GetUserPropertiesParams object with the default values initialized.

func NewGetUserPropertiesParamsWithContext

func NewGetUserPropertiesParamsWithContext(ctx context.Context) *GetUserPropertiesParams

NewGetUserPropertiesParamsWithContext creates a new GetUserPropertiesParams object with the default values initialized, and the ability to set a context for a request

func NewGetUserPropertiesParamsWithHTTPClient

func NewGetUserPropertiesParamsWithHTTPClient(client *http.Client) *GetUserPropertiesParams

NewGetUserPropertiesParamsWithHTTPClient creates a new GetUserPropertiesParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetUserPropertiesParamsWithTimeout

func NewGetUserPropertiesParamsWithTimeout(timeout time.Duration) *GetUserPropertiesParams

NewGetUserPropertiesParamsWithTimeout creates a new GetUserPropertiesParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetUserPropertiesParams) HandleQueryParam

func (o *GetUserPropertiesParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*GetUserPropertiesParams) SetContext

func (o *GetUserPropertiesParams) SetContext(ctx context.Context)

SetContext adds the context to the get user properties params

func (*GetUserPropertiesParams) SetHTTPClient

func (o *GetUserPropertiesParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the get user properties params

func (*GetUserPropertiesParams) SetTimeout

func (o *GetUserPropertiesParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the get user properties params

func (*GetUserPropertiesParams) WithContext

WithContext adds the context to the get user properties params

func (*GetUserPropertiesParams) WithHTTPClient

func (o *GetUserPropertiesParams) WithHTTPClient(client *http.Client) *GetUserPropertiesParams

WithHTTPClient adds the HTTPClient to the get user properties params

func (*GetUserPropertiesParams) WithTimeout

WithTimeout adds the timeout to the get user properties params

func (*GetUserPropertiesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUserPropertiesReader

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

GetUserPropertiesReader is a Reader for the GetUserProperties structure.

func (*GetUserPropertiesReader) ReadResponse

func (o *GetUserPropertiesReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostCancelRunIDInternalServerError

type PostCancelRunIDInternalServerError struct {
	Payload *models.Error
}

PostCancelRunIDInternalServerError handles this case with default header values.

Internal Server Error

func NewPostCancelRunIDInternalServerError

func NewPostCancelRunIDInternalServerError() *PostCancelRunIDInternalServerError

NewPostCancelRunIDInternalServerError creates a PostCancelRunIDInternalServerError with default headers values

func (*PostCancelRunIDInternalServerError) Error

type PostCancelRunIDOK

type PostCancelRunIDOK struct {
}

PostCancelRunIDOK handles this case with default header values.

OK

func NewPostCancelRunIDOK

func NewPostCancelRunIDOK() *PostCancelRunIDOK

NewPostCancelRunIDOK creates a PostCancelRunIDOK with default headers values

func (*PostCancelRunIDOK) Error

func (o *PostCancelRunIDOK) Error() string

type PostCancelRunIDParams

type PostCancelRunIDParams struct {

	/*RunID
	  The ID of the run to retrieve

	*/
	RunID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostCancelRunIDParams contains all the parameters to send to the API endpoint for the post cancel run ID operation typically these are written to a http.Request

func NewPostCancelRunIDParams

func NewPostCancelRunIDParams() *PostCancelRunIDParams

NewPostCancelRunIDParams creates a new PostCancelRunIDParams object with the default values initialized.

func NewPostCancelRunIDParamsWithContext

func NewPostCancelRunIDParamsWithContext(ctx context.Context) *PostCancelRunIDParams

NewPostCancelRunIDParamsWithContext creates a new PostCancelRunIDParams object with the default values initialized, and the ability to set a context for a request

func NewPostCancelRunIDParamsWithHTTPClient

func NewPostCancelRunIDParamsWithHTTPClient(client *http.Client) *PostCancelRunIDParams

NewPostCancelRunIDParamsWithHTTPClient creates a new PostCancelRunIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostCancelRunIDParamsWithTimeout

func NewPostCancelRunIDParamsWithTimeout(timeout time.Duration) *PostCancelRunIDParams

NewPostCancelRunIDParamsWithTimeout creates a new PostCancelRunIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostCancelRunIDParams) HandleQueryParam

func (o *PostCancelRunIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*PostCancelRunIDParams) SetContext

func (o *PostCancelRunIDParams) SetContext(ctx context.Context)

SetContext adds the context to the post cancel run ID params

func (*PostCancelRunIDParams) SetHTTPClient

func (o *PostCancelRunIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post cancel run ID params

func (*PostCancelRunIDParams) SetRunID

func (o *PostCancelRunIDParams) SetRunID(runID int64)

SetRunID adds the runId to the post cancel run ID params

func (*PostCancelRunIDParams) SetTimeout

func (o *PostCancelRunIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post cancel run ID params

func (*PostCancelRunIDParams) WithContext

WithContext adds the context to the post cancel run ID params

func (*PostCancelRunIDParams) WithHTTPClient

func (o *PostCancelRunIDParams) WithHTTPClient(client *http.Client) *PostCancelRunIDParams

WithHTTPClient adds the HTTPClient to the post cancel run ID params

func (*PostCancelRunIDParams) WithRunID

func (o *PostCancelRunIDParams) WithRunID(runID int64) *PostCancelRunIDParams

WithRunID adds the runID to the post cancel run ID params

func (*PostCancelRunIDParams) WithTimeout

func (o *PostCancelRunIDParams) WithTimeout(timeout time.Duration) *PostCancelRunIDParams

WithTimeout adds the timeout to the post cancel run ID params

func (*PostCancelRunIDParams) WriteToRequest

func (o *PostCancelRunIDParams) WriteToRequest(r runtime.ClientRequest, reg strfmt.Registry) error

WriteToRequest writes these params to a swagger request

type PostCancelRunIDReader

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

PostCancelRunIDReader is a Reader for the PostCancelRunID structure.

func (*PostCancelRunIDReader) ReadResponse

func (o *PostCancelRunIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostCapabilitiesUsernameCapabilityInternalServerError

type PostCapabilitiesUsernameCapabilityInternalServerError struct {
	Payload *models.Error
}

PostCapabilitiesUsernameCapabilityInternalServerError handles this case with default header values.

An error occurred adding. Body has error result.

func NewPostCapabilitiesUsernameCapabilityInternalServerError

func NewPostCapabilitiesUsernameCapabilityInternalServerError() *PostCapabilitiesUsernameCapabilityInternalServerError

NewPostCapabilitiesUsernameCapabilityInternalServerError creates a PostCapabilitiesUsernameCapabilityInternalServerError with default headers values

func (*PostCapabilitiesUsernameCapabilityInternalServerError) Error

type PostCapabilitiesUsernameCapabilityOK

type PostCapabilitiesUsernameCapabilityOK struct {
}

PostCapabilitiesUsernameCapabilityOK handles this case with default header values.

The capability was successfully added

func NewPostCapabilitiesUsernameCapabilityOK

func NewPostCapabilitiesUsernameCapabilityOK() *PostCapabilitiesUsernameCapabilityOK

NewPostCapabilitiesUsernameCapabilityOK creates a PostCapabilitiesUsernameCapabilityOK with default headers values

func (*PostCapabilitiesUsernameCapabilityOK) Error

type PostCapabilitiesUsernameCapabilityParams

type PostCapabilitiesUsernameCapabilityParams struct {

	/*Capability
	  The name of the capability to add.


	*/
	Capability string
	/*Username
	  The user ID to add the capability to.


	*/
	Username string

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostCapabilitiesUsernameCapabilityParams contains all the parameters to send to the API endpoint for the post capabilities username capability operation typically these are written to a http.Request

func NewPostCapabilitiesUsernameCapabilityParams

func NewPostCapabilitiesUsernameCapabilityParams() *PostCapabilitiesUsernameCapabilityParams

NewPostCapabilitiesUsernameCapabilityParams creates a new PostCapabilitiesUsernameCapabilityParams object with the default values initialized.

func NewPostCapabilitiesUsernameCapabilityParamsWithContext

func NewPostCapabilitiesUsernameCapabilityParamsWithContext(ctx context.Context) *PostCapabilitiesUsernameCapabilityParams

NewPostCapabilitiesUsernameCapabilityParamsWithContext creates a new PostCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a context for a request

func NewPostCapabilitiesUsernameCapabilityParamsWithHTTPClient

func NewPostCapabilitiesUsernameCapabilityParamsWithHTTPClient(client *http.Client) *PostCapabilitiesUsernameCapabilityParams

NewPostCapabilitiesUsernameCapabilityParamsWithHTTPClient creates a new PostCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostCapabilitiesUsernameCapabilityParamsWithTimeout

func NewPostCapabilitiesUsernameCapabilityParamsWithTimeout(timeout time.Duration) *PostCapabilitiesUsernameCapabilityParams

NewPostCapabilitiesUsernameCapabilityParamsWithTimeout creates a new PostCapabilitiesUsernameCapabilityParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostCapabilitiesUsernameCapabilityParams) HandleQueryParam

func (o *PostCapabilitiesUsernameCapabilityParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*PostCapabilitiesUsernameCapabilityParams) SetCapability

func (o *PostCapabilitiesUsernameCapabilityParams) SetCapability(capability string)

SetCapability adds the capability to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) SetContext

SetContext adds the context to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) SetHTTPClient

func (o *PostCapabilitiesUsernameCapabilityParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) SetTimeout

SetTimeout adds the timeout to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) SetUsername

func (o *PostCapabilitiesUsernameCapabilityParams) SetUsername(username string)

SetUsername adds the username to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WithCapability

WithCapability adds the capability to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WithContext

WithContext adds the context to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WithTimeout

WithTimeout adds the timeout to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WithUsername

WithUsername adds the username to the post capabilities username capability params

func (*PostCapabilitiesUsernameCapabilityParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostCapabilitiesUsernameCapabilityReader

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

PostCapabilitiesUsernameCapabilityReader is a Reader for the PostCapabilitiesUsernameCapability structure.

func (*PostCapabilitiesUsernameCapabilityReader) ReadResponse

func (o *PostCapabilitiesUsernameCapabilityReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostSubmissionIDCancelInternalServerError

type PostSubmissionIDCancelInternalServerError struct {
	Payload *models.Error
}

PostSubmissionIDCancelInternalServerError handles this case with default header values.

Internal Server Error

func NewPostSubmissionIDCancelInternalServerError

func NewPostSubmissionIDCancelInternalServerError() *PostSubmissionIDCancelInternalServerError

NewPostSubmissionIDCancelInternalServerError creates a PostSubmissionIDCancelInternalServerError with default headers values

func (*PostSubmissionIDCancelInternalServerError) Error

type PostSubmissionIDCancelOK

type PostSubmissionIDCancelOK struct {
}

PostSubmissionIDCancelOK handles this case with default header values.

OK

func NewPostSubmissionIDCancelOK

func NewPostSubmissionIDCancelOK() *PostSubmissionIDCancelOK

NewPostSubmissionIDCancelOK creates a PostSubmissionIDCancelOK with default headers values

func (*PostSubmissionIDCancelOK) Error

func (o *PostSubmissionIDCancelOK) Error() string

type PostSubmissionIDCancelParams

type PostSubmissionIDCancelParams struct {

	/*ID
	  The ID of the submission to cancel

	*/
	ID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostSubmissionIDCancelParams contains all the parameters to send to the API endpoint for the post submission ID cancel operation typically these are written to a http.Request

func NewPostSubmissionIDCancelParams

func NewPostSubmissionIDCancelParams() *PostSubmissionIDCancelParams

NewPostSubmissionIDCancelParams creates a new PostSubmissionIDCancelParams object with the default values initialized.

func NewPostSubmissionIDCancelParamsWithContext

func NewPostSubmissionIDCancelParamsWithContext(ctx context.Context) *PostSubmissionIDCancelParams

NewPostSubmissionIDCancelParamsWithContext creates a new PostSubmissionIDCancelParams object with the default values initialized, and the ability to set a context for a request

func NewPostSubmissionIDCancelParamsWithHTTPClient

func NewPostSubmissionIDCancelParamsWithHTTPClient(client *http.Client) *PostSubmissionIDCancelParams

NewPostSubmissionIDCancelParamsWithHTTPClient creates a new PostSubmissionIDCancelParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostSubmissionIDCancelParamsWithTimeout

func NewPostSubmissionIDCancelParamsWithTimeout(timeout time.Duration) *PostSubmissionIDCancelParams

NewPostSubmissionIDCancelParamsWithTimeout creates a new PostSubmissionIDCancelParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostSubmissionIDCancelParams) HandleQueryParam

func (o *PostSubmissionIDCancelParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*PostSubmissionIDCancelParams) SetContext

func (o *PostSubmissionIDCancelParams) SetContext(ctx context.Context)

SetContext adds the context to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) SetHTTPClient

func (o *PostSubmissionIDCancelParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) SetID

func (o *PostSubmissionIDCancelParams) SetID(id int64)

SetID adds the id to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) SetTimeout

func (o *PostSubmissionIDCancelParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) WithContext

WithContext adds the context to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) WithID

WithID adds the id to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) WithTimeout

WithTimeout adds the timeout to the post submission ID cancel params

func (*PostSubmissionIDCancelParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostSubmissionIDCancelReader

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

PostSubmissionIDCancelReader is a Reader for the PostSubmissionIDCancel structure.

func (*PostSubmissionIDCancelReader) ReadResponse

func (o *PostSubmissionIDCancelReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

type PostTasksCancelIDInternalServerError

type PostTasksCancelIDInternalServerError struct {
	Payload *models.Error
}

PostTasksCancelIDInternalServerError handles this case with default header values.

Internal Server Error

func NewPostTasksCancelIDInternalServerError

func NewPostTasksCancelIDInternalServerError() *PostTasksCancelIDInternalServerError

NewPostTasksCancelIDInternalServerError creates a PostTasksCancelIDInternalServerError with default headers values

func (*PostTasksCancelIDInternalServerError) Error

type PostTasksCancelIDOK

type PostTasksCancelIDOK struct {
}

PostTasksCancelIDOK handles this case with default header values.

OK

func NewPostTasksCancelIDOK

func NewPostTasksCancelIDOK() *PostTasksCancelIDOK

NewPostTasksCancelIDOK creates a PostTasksCancelIDOK with default headers values

func (*PostTasksCancelIDOK) Error

func (o *PostTasksCancelIDOK) Error() string

type PostTasksCancelIDParams

type PostTasksCancelIDParams struct {

	/*ID
	  The ID of the task to retrieve

	*/
	ID int64

	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

PostTasksCancelIDParams contains all the parameters to send to the API endpoint for the post tasks cancel ID operation typically these are written to a http.Request

func NewPostTasksCancelIDParams

func NewPostTasksCancelIDParams() *PostTasksCancelIDParams

NewPostTasksCancelIDParams creates a new PostTasksCancelIDParams object with the default values initialized.

func NewPostTasksCancelIDParamsWithContext

func NewPostTasksCancelIDParamsWithContext(ctx context.Context) *PostTasksCancelIDParams

NewPostTasksCancelIDParamsWithContext creates a new PostTasksCancelIDParams object with the default values initialized, and the ability to set a context for a request

func NewPostTasksCancelIDParamsWithHTTPClient

func NewPostTasksCancelIDParamsWithHTTPClient(client *http.Client) *PostTasksCancelIDParams

NewPostTasksCancelIDParamsWithHTTPClient creates a new PostTasksCancelIDParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostTasksCancelIDParamsWithTimeout

func NewPostTasksCancelIDParamsWithTimeout(timeout time.Duration) *PostTasksCancelIDParams

NewPostTasksCancelIDParamsWithTimeout creates a new PostTasksCancelIDParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostTasksCancelIDParams) HandleQueryParam

func (o *PostTasksCancelIDParams) HandleQueryParam(r runtime.ClientRequest, reg strfmt.Registry, name string, param interface{}, formatter func(interface{}) string) error

func (*PostTasksCancelIDParams) SetContext

func (o *PostTasksCancelIDParams) SetContext(ctx context.Context)

SetContext adds the context to the post tasks cancel ID params

func (*PostTasksCancelIDParams) SetHTTPClient

func (o *PostTasksCancelIDParams) SetHTTPClient(client *http.Client)

SetHTTPClient adds the HTTPClient to the post tasks cancel ID params

func (*PostTasksCancelIDParams) SetID

func (o *PostTasksCancelIDParams) SetID(id int64)

SetID adds the id to the post tasks cancel ID params

func (*PostTasksCancelIDParams) SetTimeout

func (o *PostTasksCancelIDParams) SetTimeout(timeout time.Duration)

SetTimeout adds the timeout to the post tasks cancel ID params

func (*PostTasksCancelIDParams) WithContext

WithContext adds the context to the post tasks cancel ID params

func (*PostTasksCancelIDParams) WithHTTPClient

func (o *PostTasksCancelIDParams) WithHTTPClient(client *http.Client) *PostTasksCancelIDParams

WithHTTPClient adds the HTTPClient to the post tasks cancel ID params

func (*PostTasksCancelIDParams) WithID

WithID adds the id to the post tasks cancel ID params

func (*PostTasksCancelIDParams) WithTimeout

WithTimeout adds the timeout to the post tasks cancel ID params

func (*PostTasksCancelIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostTasksCancelIDReader

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

PostTasksCancelIDReader is a Reader for the PostTasksCancelID structure.

func (*PostTasksCancelIDReader) ReadResponse

func (o *PostTasksCancelIDReader) ReadResponse(response runtime.ClientResponse, consumer runtime.Consumer) (interface{}, error)

ReadResponse reads a server response into the received o.

Source Files

Jump to

Keyboard shortcuts

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