t_v_l_p

package
v0.0.0-...-8fe3866 Latest Latest
Warning

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

Go to latest
Published: Nov 30, 2023 License: Apache-2.0 Imports: 10 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 for t v l p API

func (*Client) CreateTvlpConfiguration

func (a *Client) CreateTvlpConfiguration(params *CreateTvlpConfigurationParams, opts ...ClientOption) (*CreateTvlpConfigurationCreated, error)

CreateTvlpConfiguration creates a t v l p configuration

Create a new TVLP configuration

func (*Client) DeleteTvlpConfiguration

func (a *Client) DeleteTvlpConfiguration(params *DeleteTvlpConfigurationParams, opts ...ClientOption) (*DeleteTvlpConfigurationNoContent, error)

DeleteTvlpConfiguration deletes a t v l p configuration

Deletes an existing TVLP configuration. Idempotent.

func (*Client) DeleteTvlpResult

func (a *Client) DeleteTvlpResult(params *DeleteTvlpResultParams, opts ...ClientOption) (*DeleteTvlpResultNoContent, error)

DeleteTvlpResult deletes a t v l p result idempotent

func (*Client) GetTvlpConfiguration

func (a *Client) GetTvlpConfiguration(params *GetTvlpConfigurationParams, opts ...ClientOption) (*GetTvlpConfigurationOK, error)

GetTvlpConfiguration gets a t v l p configuration

Returns a TVLP configuration, by id.

func (*Client) GetTvlpResult

func (a *Client) GetTvlpResult(params *GetTvlpResultParams, opts ...ClientOption) (*GetTvlpResultOK, error)

GetTvlpResult gets a result from a t l v p configuration

Returns results from a TVLP configuration by result id.

func (*Client) ListTvlpConfigurations

func (a *Client) ListTvlpConfigurations(params *ListTvlpConfigurationsParams, opts ...ClientOption) (*ListTvlpConfigurationsOK, error)

ListTvlpConfigurations lists t v l p configurations

The `tvlp` endpoint returns all of the TVLP configurations.

func (*Client) ListTvlpResults

func (a *Client) ListTvlpResults(params *ListTvlpResultsParams, opts ...ClientOption) (*ListTvlpResultsOK, error)

ListTvlpResults lists t v l p results

The `tvlp-results` endpoint returns all of the results produced by running TVLP configurations.

func (*Client) SetTransport

func (a *Client) SetTransport(transport runtime.ClientTransport)

SetTransport changes the transport on the client

func (*Client) StartTvlpConfiguration

func (a *Client) StartTvlpConfiguration(params *StartTvlpConfigurationParams, opts ...ClientOption) (*StartTvlpConfigurationCreated, error)

StartTvlpConfiguration starts a t v l p configuration

Start an existing TVLP configuration.

func (*Client) StopTvlpConfiguration

func (a *Client) StopTvlpConfiguration(params *StopTvlpConfigurationParams, opts ...ClientOption) (*StopTvlpConfigurationNoContent, error)

StopTvlpConfiguration stops a t v l p configuration

Stop a running TVLP configuration. Idempotent.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateTvlpConfiguration(params *CreateTvlpConfigurationParams, opts ...ClientOption) (*CreateTvlpConfigurationCreated, error)

	DeleteTvlpConfiguration(params *DeleteTvlpConfigurationParams, opts ...ClientOption) (*DeleteTvlpConfigurationNoContent, error)

	DeleteTvlpResult(params *DeleteTvlpResultParams, opts ...ClientOption) (*DeleteTvlpResultNoContent, error)

	GetTvlpConfiguration(params *GetTvlpConfigurationParams, opts ...ClientOption) (*GetTvlpConfigurationOK, error)

	GetTvlpResult(params *GetTvlpResultParams, opts ...ClientOption) (*GetTvlpResultOK, error)

	ListTvlpConfigurations(params *ListTvlpConfigurationsParams, opts ...ClientOption) (*ListTvlpConfigurationsOK, error)

	ListTvlpResults(params *ListTvlpResultsParams, opts ...ClientOption) (*ListTvlpResultsOK, error)

	StartTvlpConfiguration(params *StartTvlpConfigurationParams, opts ...ClientOption) (*StartTvlpConfigurationCreated, error)

	StopTvlpConfiguration(params *StopTvlpConfigurationParams, opts ...ClientOption) (*StopTvlpConfigurationNoContent, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new t v l p API client.

type CreateTvlpConfigurationCreated

type CreateTvlpConfigurationCreated struct {

	/* URI of created TVLP configuration
	 */
	Location string

	Payload *models.TvlpConfiguration
}
CreateTvlpConfigurationCreated describes a response with status code 201, with default header values.

Created

func NewCreateTvlpConfigurationCreated

func NewCreateTvlpConfigurationCreated() *CreateTvlpConfigurationCreated

NewCreateTvlpConfigurationCreated creates a CreateTvlpConfigurationCreated with default headers values

func (*CreateTvlpConfigurationCreated) Error

func (*CreateTvlpConfigurationCreated) GetPayload

type CreateTvlpConfigurationParams

type CreateTvlpConfigurationParams struct {

	/* Configuration.

	   New TVLP configuration
	*/
	Configuration *models.TvlpConfiguration

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

CreateTvlpConfigurationParams contains all the parameters to send to the API endpoint

for the create tvlp configuration operation.

Typically these are written to a http.Request.

func NewCreateTvlpConfigurationParams

func NewCreateTvlpConfigurationParams() *CreateTvlpConfigurationParams

NewCreateTvlpConfigurationParams creates a new CreateTvlpConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateTvlpConfigurationParamsWithContext

func NewCreateTvlpConfigurationParamsWithContext(ctx context.Context) *CreateTvlpConfigurationParams

NewCreateTvlpConfigurationParamsWithContext creates a new CreateTvlpConfigurationParams object with the ability to set a context for a request.

func NewCreateTvlpConfigurationParamsWithHTTPClient

func NewCreateTvlpConfigurationParamsWithHTTPClient(client *http.Client) *CreateTvlpConfigurationParams

NewCreateTvlpConfigurationParamsWithHTTPClient creates a new CreateTvlpConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewCreateTvlpConfigurationParamsWithTimeout

func NewCreateTvlpConfigurationParamsWithTimeout(timeout time.Duration) *CreateTvlpConfigurationParams

NewCreateTvlpConfigurationParamsWithTimeout creates a new CreateTvlpConfigurationParams object with the ability to set a timeout on a request.

func (*CreateTvlpConfigurationParams) SetConfiguration

func (o *CreateTvlpConfigurationParams) SetConfiguration(configuration *models.TvlpConfiguration)

SetConfiguration adds the configuration to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) SetContext

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

SetContext adds the context to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) SetDefaults

func (o *CreateTvlpConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the create tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*CreateTvlpConfigurationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) SetTimeout

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

SetTimeout adds the timeout to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) WithConfiguration

WithConfiguration adds the configuration to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) WithContext

WithContext adds the context to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) WithDefaults

WithDefaults hydrates default values in the create tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*CreateTvlpConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) WithTimeout

WithTimeout adds the timeout to the create tvlp configuration params

func (*CreateTvlpConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateTvlpConfigurationReader

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

CreateTvlpConfigurationReader is a Reader for the CreateTvlpConfiguration structure.

func (*CreateTvlpConfigurationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteTvlpConfigurationNoContent

type DeleteTvlpConfigurationNoContent struct {
}
DeleteTvlpConfigurationNoContent describes a response with status code 204, with default header values.

No Content

func NewDeleteTvlpConfigurationNoContent

func NewDeleteTvlpConfigurationNoContent() *DeleteTvlpConfigurationNoContent

NewDeleteTvlpConfigurationNoContent creates a DeleteTvlpConfigurationNoContent with default headers values

func (*DeleteTvlpConfigurationNoContent) Error

type DeleteTvlpConfigurationParams

type DeleteTvlpConfigurationParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

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

DeleteTvlpConfigurationParams contains all the parameters to send to the API endpoint

for the delete tvlp configuration operation.

Typically these are written to a http.Request.

func NewDeleteTvlpConfigurationParams

func NewDeleteTvlpConfigurationParams() *DeleteTvlpConfigurationParams

NewDeleteTvlpConfigurationParams creates a new DeleteTvlpConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteTvlpConfigurationParamsWithContext

func NewDeleteTvlpConfigurationParamsWithContext(ctx context.Context) *DeleteTvlpConfigurationParams

NewDeleteTvlpConfigurationParamsWithContext creates a new DeleteTvlpConfigurationParams object with the ability to set a context for a request.

func NewDeleteTvlpConfigurationParamsWithHTTPClient

func NewDeleteTvlpConfigurationParamsWithHTTPClient(client *http.Client) *DeleteTvlpConfigurationParams

NewDeleteTvlpConfigurationParamsWithHTTPClient creates a new DeleteTvlpConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteTvlpConfigurationParamsWithTimeout

func NewDeleteTvlpConfigurationParamsWithTimeout(timeout time.Duration) *DeleteTvlpConfigurationParams

NewDeleteTvlpConfigurationParamsWithTimeout creates a new DeleteTvlpConfigurationParams object with the ability to set a timeout on a request.

func (*DeleteTvlpConfigurationParams) SetContext

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

SetContext adds the context to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) SetDefaults

func (o *DeleteTvlpConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the delete tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteTvlpConfigurationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) SetID

SetID adds the id to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) SetTimeout

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

SetTimeout adds the timeout to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) WithContext

WithContext adds the context to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) WithDefaults

WithDefaults hydrates default values in the delete tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteTvlpConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) WithID

WithID adds the id to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) WithTimeout

WithTimeout adds the timeout to the delete tvlp configuration params

func (*DeleteTvlpConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteTvlpConfigurationReader

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

DeleteTvlpConfigurationReader is a Reader for the DeleteTvlpConfiguration structure.

func (*DeleteTvlpConfigurationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteTvlpResultNoContent

type DeleteTvlpResultNoContent struct {
}
DeleteTvlpResultNoContent describes a response with status code 204, with default header values.

No Content

func NewDeleteTvlpResultNoContent

func NewDeleteTvlpResultNoContent() *DeleteTvlpResultNoContent

NewDeleteTvlpResultNoContent creates a DeleteTvlpResultNoContent with default headers values

func (*DeleteTvlpResultNoContent) Error

func (o *DeleteTvlpResultNoContent) Error() string

type DeleteTvlpResultParams

type DeleteTvlpResultParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

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

DeleteTvlpResultParams contains all the parameters to send to the API endpoint

for the delete tvlp result operation.

Typically these are written to a http.Request.

func NewDeleteTvlpResultParams

func NewDeleteTvlpResultParams() *DeleteTvlpResultParams

NewDeleteTvlpResultParams creates a new DeleteTvlpResultParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteTvlpResultParamsWithContext

func NewDeleteTvlpResultParamsWithContext(ctx context.Context) *DeleteTvlpResultParams

NewDeleteTvlpResultParamsWithContext creates a new DeleteTvlpResultParams object with the ability to set a context for a request.

func NewDeleteTvlpResultParamsWithHTTPClient

func NewDeleteTvlpResultParamsWithHTTPClient(client *http.Client) *DeleteTvlpResultParams

NewDeleteTvlpResultParamsWithHTTPClient creates a new DeleteTvlpResultParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteTvlpResultParamsWithTimeout

func NewDeleteTvlpResultParamsWithTimeout(timeout time.Duration) *DeleteTvlpResultParams

NewDeleteTvlpResultParamsWithTimeout creates a new DeleteTvlpResultParams object with the ability to set a timeout on a request.

func (*DeleteTvlpResultParams) SetContext

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

SetContext adds the context to the delete tvlp result params

func (*DeleteTvlpResultParams) SetDefaults

func (o *DeleteTvlpResultParams) SetDefaults()

SetDefaults hydrates default values in the delete tvlp result params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteTvlpResultParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete tvlp result params

func (*DeleteTvlpResultParams) SetID

func (o *DeleteTvlpResultParams) SetID(id string)

SetID adds the id to the delete tvlp result params

func (*DeleteTvlpResultParams) SetTimeout

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

SetTimeout adds the timeout to the delete tvlp result params

func (*DeleteTvlpResultParams) WithContext

WithContext adds the context to the delete tvlp result params

func (*DeleteTvlpResultParams) WithDefaults

WithDefaults hydrates default values in the delete tvlp result params (not the query body).

All values with no default are reset to their zero value.

func (*DeleteTvlpResultParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete tvlp result params

func (*DeleteTvlpResultParams) WithID

WithID adds the id to the delete tvlp result params

func (*DeleteTvlpResultParams) WithTimeout

WithTimeout adds the timeout to the delete tvlp result params

func (*DeleteTvlpResultParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteTvlpResultReader

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

DeleteTvlpResultReader is a Reader for the DeleteTvlpResult structure.

func (*DeleteTvlpResultReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetTvlpConfigurationOK

type GetTvlpConfigurationOK struct {
	Payload *models.TvlpConfiguration
}
GetTvlpConfigurationOK describes a response with status code 200, with default header values.

Success

func NewGetTvlpConfigurationOK

func NewGetTvlpConfigurationOK() *GetTvlpConfigurationOK

NewGetTvlpConfigurationOK creates a GetTvlpConfigurationOK with default headers values

func (*GetTvlpConfigurationOK) Error

func (o *GetTvlpConfigurationOK) Error() string

func (*GetTvlpConfigurationOK) GetPayload

type GetTvlpConfigurationParams

type GetTvlpConfigurationParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

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

GetTvlpConfigurationParams contains all the parameters to send to the API endpoint

for the get tvlp configuration operation.

Typically these are written to a http.Request.

func NewGetTvlpConfigurationParams

func NewGetTvlpConfigurationParams() *GetTvlpConfigurationParams

NewGetTvlpConfigurationParams creates a new GetTvlpConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetTvlpConfigurationParamsWithContext

func NewGetTvlpConfigurationParamsWithContext(ctx context.Context) *GetTvlpConfigurationParams

NewGetTvlpConfigurationParamsWithContext creates a new GetTvlpConfigurationParams object with the ability to set a context for a request.

func NewGetTvlpConfigurationParamsWithHTTPClient

func NewGetTvlpConfigurationParamsWithHTTPClient(client *http.Client) *GetTvlpConfigurationParams

NewGetTvlpConfigurationParamsWithHTTPClient creates a new GetTvlpConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewGetTvlpConfigurationParamsWithTimeout

func NewGetTvlpConfigurationParamsWithTimeout(timeout time.Duration) *GetTvlpConfigurationParams

NewGetTvlpConfigurationParamsWithTimeout creates a new GetTvlpConfigurationParams object with the ability to set a timeout on a request.

func (*GetTvlpConfigurationParams) SetContext

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

SetContext adds the context to the get tvlp configuration params

func (*GetTvlpConfigurationParams) SetDefaults

func (o *GetTvlpConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the get tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*GetTvlpConfigurationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get tvlp configuration params

func (*GetTvlpConfigurationParams) SetID

func (o *GetTvlpConfigurationParams) SetID(id string)

SetID adds the id to the get tvlp configuration params

func (*GetTvlpConfigurationParams) SetTimeout

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

SetTimeout adds the timeout to the get tvlp configuration params

func (*GetTvlpConfigurationParams) WithContext

WithContext adds the context to the get tvlp configuration params

func (*GetTvlpConfigurationParams) WithDefaults

WithDefaults hydrates default values in the get tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*GetTvlpConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get tvlp configuration params

func (*GetTvlpConfigurationParams) WithID

WithID adds the id to the get tvlp configuration params

func (*GetTvlpConfigurationParams) WithTimeout

WithTimeout adds the timeout to the get tvlp configuration params

func (*GetTvlpConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetTvlpConfigurationReader

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

GetTvlpConfigurationReader is a Reader for the GetTvlpConfiguration structure.

func (*GetTvlpConfigurationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetTvlpResultOK

type GetTvlpResultOK struct {
	Payload *models.TvlpResult
}
GetTvlpResultOK describes a response with status code 200, with default header values.

Success

func NewGetTvlpResultOK

func NewGetTvlpResultOK() *GetTvlpResultOK

NewGetTvlpResultOK creates a GetTvlpResultOK with default headers values

func (*GetTvlpResultOK) Error

func (o *GetTvlpResultOK) Error() string

func (*GetTvlpResultOK) GetPayload

func (o *GetTvlpResultOK) GetPayload() *models.TvlpResult

type GetTvlpResultParams

type GetTvlpResultParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

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

GetTvlpResultParams contains all the parameters to send to the API endpoint

for the get tvlp result operation.

Typically these are written to a http.Request.

func NewGetTvlpResultParams

func NewGetTvlpResultParams() *GetTvlpResultParams

NewGetTvlpResultParams creates a new GetTvlpResultParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetTvlpResultParamsWithContext

func NewGetTvlpResultParamsWithContext(ctx context.Context) *GetTvlpResultParams

NewGetTvlpResultParamsWithContext creates a new GetTvlpResultParams object with the ability to set a context for a request.

func NewGetTvlpResultParamsWithHTTPClient

func NewGetTvlpResultParamsWithHTTPClient(client *http.Client) *GetTvlpResultParams

NewGetTvlpResultParamsWithHTTPClient creates a new GetTvlpResultParams object with the ability to set a custom HTTPClient for a request.

func NewGetTvlpResultParamsWithTimeout

func NewGetTvlpResultParamsWithTimeout(timeout time.Duration) *GetTvlpResultParams

NewGetTvlpResultParamsWithTimeout creates a new GetTvlpResultParams object with the ability to set a timeout on a request.

func (*GetTvlpResultParams) SetContext

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

SetContext adds the context to the get tvlp result params

func (*GetTvlpResultParams) SetDefaults

func (o *GetTvlpResultParams) SetDefaults()

SetDefaults hydrates default values in the get tvlp result params (not the query body).

All values with no default are reset to their zero value.

func (*GetTvlpResultParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get tvlp result params

func (*GetTvlpResultParams) SetID

func (o *GetTvlpResultParams) SetID(id string)

SetID adds the id to the get tvlp result params

func (*GetTvlpResultParams) SetTimeout

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

SetTimeout adds the timeout to the get tvlp result params

func (*GetTvlpResultParams) WithContext

WithContext adds the context to the get tvlp result params

func (*GetTvlpResultParams) WithDefaults

func (o *GetTvlpResultParams) WithDefaults() *GetTvlpResultParams

WithDefaults hydrates default values in the get tvlp result params (not the query body).

All values with no default are reset to their zero value.

func (*GetTvlpResultParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get tvlp result params

func (*GetTvlpResultParams) WithID

WithID adds the id to the get tvlp result params

func (*GetTvlpResultParams) WithTimeout

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

WithTimeout adds the timeout to the get tvlp result params

func (*GetTvlpResultParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetTvlpResultReader

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

GetTvlpResultReader is a Reader for the GetTvlpResult structure.

func (*GetTvlpResultReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListTvlpConfigurationsOK

type ListTvlpConfigurationsOK struct {
	Payload []*models.TvlpConfiguration
}
ListTvlpConfigurationsOK describes a response with status code 200, with default header values.

Success

func NewListTvlpConfigurationsOK

func NewListTvlpConfigurationsOK() *ListTvlpConfigurationsOK

NewListTvlpConfigurationsOK creates a ListTvlpConfigurationsOK with default headers values

func (*ListTvlpConfigurationsOK) Error

func (o *ListTvlpConfigurationsOK) Error() string

func (*ListTvlpConfigurationsOK) GetPayload

type ListTvlpConfigurationsParams

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

ListTvlpConfigurationsParams contains all the parameters to send to the API endpoint

for the list tvlp configurations operation.

Typically these are written to a http.Request.

func NewListTvlpConfigurationsParams

func NewListTvlpConfigurationsParams() *ListTvlpConfigurationsParams

NewListTvlpConfigurationsParams creates a new ListTvlpConfigurationsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListTvlpConfigurationsParamsWithContext

func NewListTvlpConfigurationsParamsWithContext(ctx context.Context) *ListTvlpConfigurationsParams

NewListTvlpConfigurationsParamsWithContext creates a new ListTvlpConfigurationsParams object with the ability to set a context for a request.

func NewListTvlpConfigurationsParamsWithHTTPClient

func NewListTvlpConfigurationsParamsWithHTTPClient(client *http.Client) *ListTvlpConfigurationsParams

NewListTvlpConfigurationsParamsWithHTTPClient creates a new ListTvlpConfigurationsParams object with the ability to set a custom HTTPClient for a request.

func NewListTvlpConfigurationsParamsWithTimeout

func NewListTvlpConfigurationsParamsWithTimeout(timeout time.Duration) *ListTvlpConfigurationsParams

NewListTvlpConfigurationsParamsWithTimeout creates a new ListTvlpConfigurationsParams object with the ability to set a timeout on a request.

func (*ListTvlpConfigurationsParams) SetContext

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

SetContext adds the context to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) SetDefaults

func (o *ListTvlpConfigurationsParams) SetDefaults()

SetDefaults hydrates default values in the list tvlp configurations params (not the query body).

All values with no default are reset to their zero value.

func (*ListTvlpConfigurationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) SetTimeout

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

SetTimeout adds the timeout to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) WithContext

WithContext adds the context to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) WithDefaults

WithDefaults hydrates default values in the list tvlp configurations params (not the query body).

All values with no default are reset to their zero value.

func (*ListTvlpConfigurationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) WithTimeout

WithTimeout adds the timeout to the list tvlp configurations params

func (*ListTvlpConfigurationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListTvlpConfigurationsReader

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

ListTvlpConfigurationsReader is a Reader for the ListTvlpConfigurations structure.

func (*ListTvlpConfigurationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListTvlpResultsOK

type ListTvlpResultsOK struct {
	Payload []*models.TvlpResult
}
ListTvlpResultsOK describes a response with status code 200, with default header values.

Success

func NewListTvlpResultsOK

func NewListTvlpResultsOK() *ListTvlpResultsOK

NewListTvlpResultsOK creates a ListTvlpResultsOK with default headers values

func (*ListTvlpResultsOK) Error

func (o *ListTvlpResultsOK) Error() string

func (*ListTvlpResultsOK) GetPayload

func (o *ListTvlpResultsOK) GetPayload() []*models.TvlpResult

type ListTvlpResultsParams

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

ListTvlpResultsParams contains all the parameters to send to the API endpoint

for the list tvlp results operation.

Typically these are written to a http.Request.

func NewListTvlpResultsParams

func NewListTvlpResultsParams() *ListTvlpResultsParams

NewListTvlpResultsParams creates a new ListTvlpResultsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListTvlpResultsParamsWithContext

func NewListTvlpResultsParamsWithContext(ctx context.Context) *ListTvlpResultsParams

NewListTvlpResultsParamsWithContext creates a new ListTvlpResultsParams object with the ability to set a context for a request.

func NewListTvlpResultsParamsWithHTTPClient

func NewListTvlpResultsParamsWithHTTPClient(client *http.Client) *ListTvlpResultsParams

NewListTvlpResultsParamsWithHTTPClient creates a new ListTvlpResultsParams object with the ability to set a custom HTTPClient for a request.

func NewListTvlpResultsParamsWithTimeout

func NewListTvlpResultsParamsWithTimeout(timeout time.Duration) *ListTvlpResultsParams

NewListTvlpResultsParamsWithTimeout creates a new ListTvlpResultsParams object with the ability to set a timeout on a request.

func (*ListTvlpResultsParams) SetContext

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

SetContext adds the context to the list tvlp results params

func (*ListTvlpResultsParams) SetDefaults

func (o *ListTvlpResultsParams) SetDefaults()

SetDefaults hydrates default values in the list tvlp results params (not the query body).

All values with no default are reset to their zero value.

func (*ListTvlpResultsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list tvlp results params

func (*ListTvlpResultsParams) SetTimeout

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

SetTimeout adds the timeout to the list tvlp results params

func (*ListTvlpResultsParams) WithContext

WithContext adds the context to the list tvlp results params

func (*ListTvlpResultsParams) WithDefaults

func (o *ListTvlpResultsParams) WithDefaults() *ListTvlpResultsParams

WithDefaults hydrates default values in the list tvlp results params (not the query body).

All values with no default are reset to their zero value.

func (*ListTvlpResultsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list tvlp results params

func (*ListTvlpResultsParams) WithTimeout

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

WithTimeout adds the timeout to the list tvlp results params

func (*ListTvlpResultsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListTvlpResultsReader

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

ListTvlpResultsReader is a Reader for the ListTvlpResults structure.

func (*ListTvlpResultsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StartTvlpConfigurationCreated

type StartTvlpConfigurationCreated struct {

	/* URI of created TVLP result
	 */
	Location string

	Payload *models.TvlpResult
}
StartTvlpConfigurationCreated describes a response with status code 201, with default header values.

Created

func NewStartTvlpConfigurationCreated

func NewStartTvlpConfigurationCreated() *StartTvlpConfigurationCreated

NewStartTvlpConfigurationCreated creates a StartTvlpConfigurationCreated with default headers values

func (*StartTvlpConfigurationCreated) Error

func (*StartTvlpConfigurationCreated) GetPayload

type StartTvlpConfigurationParams

type StartTvlpConfigurationParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

	/* Start.

	   TVLP Start parameters
	*/
	Start *models.TvlpStartConfiguration

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

StartTvlpConfigurationParams contains all the parameters to send to the API endpoint

for the start tvlp configuration operation.

Typically these are written to a http.Request.

func NewStartTvlpConfigurationParams

func NewStartTvlpConfigurationParams() *StartTvlpConfigurationParams

NewStartTvlpConfigurationParams creates a new StartTvlpConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewStartTvlpConfigurationParamsWithContext

func NewStartTvlpConfigurationParamsWithContext(ctx context.Context) *StartTvlpConfigurationParams

NewStartTvlpConfigurationParamsWithContext creates a new StartTvlpConfigurationParams object with the ability to set a context for a request.

func NewStartTvlpConfigurationParamsWithHTTPClient

func NewStartTvlpConfigurationParamsWithHTTPClient(client *http.Client) *StartTvlpConfigurationParams

NewStartTvlpConfigurationParamsWithHTTPClient creates a new StartTvlpConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewStartTvlpConfigurationParamsWithTimeout

func NewStartTvlpConfigurationParamsWithTimeout(timeout time.Duration) *StartTvlpConfigurationParams

NewStartTvlpConfigurationParamsWithTimeout creates a new StartTvlpConfigurationParams object with the ability to set a timeout on a request.

func (*StartTvlpConfigurationParams) SetContext

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

SetContext adds the context to the start tvlp configuration params

func (*StartTvlpConfigurationParams) SetDefaults

func (o *StartTvlpConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the start tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*StartTvlpConfigurationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the start tvlp configuration params

func (*StartTvlpConfigurationParams) SetID

func (o *StartTvlpConfigurationParams) SetID(id string)

SetID adds the id to the start tvlp configuration params

func (*StartTvlpConfigurationParams) SetStart

SetStart adds the start to the start tvlp configuration params

func (*StartTvlpConfigurationParams) SetTimeout

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

SetTimeout adds the timeout to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WithContext

WithContext adds the context to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WithDefaults

WithDefaults hydrates default values in the start tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*StartTvlpConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WithID

WithID adds the id to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WithStart

WithStart adds the start to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WithTimeout

WithTimeout adds the timeout to the start tvlp configuration params

func (*StartTvlpConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StartTvlpConfigurationReader

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

StartTvlpConfigurationReader is a Reader for the StartTvlpConfiguration structure.

func (*StartTvlpConfigurationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopTvlpConfigurationNoContent

type StopTvlpConfigurationNoContent struct {
}
StopTvlpConfigurationNoContent describes a response with status code 204, with default header values.

No Content

func NewStopTvlpConfigurationNoContent

func NewStopTvlpConfigurationNoContent() *StopTvlpConfigurationNoContent

NewStopTvlpConfigurationNoContent creates a StopTvlpConfigurationNoContent with default headers values

func (*StopTvlpConfigurationNoContent) Error

type StopTvlpConfigurationParams

type StopTvlpConfigurationParams struct {

	/* ID.

	   Unique resource identifier

	   Format: string
	*/
	ID string

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

StopTvlpConfigurationParams contains all the parameters to send to the API endpoint

for the stop tvlp configuration operation.

Typically these are written to a http.Request.

func NewStopTvlpConfigurationParams

func NewStopTvlpConfigurationParams() *StopTvlpConfigurationParams

NewStopTvlpConfigurationParams creates a new StopTvlpConfigurationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewStopTvlpConfigurationParamsWithContext

func NewStopTvlpConfigurationParamsWithContext(ctx context.Context) *StopTvlpConfigurationParams

NewStopTvlpConfigurationParamsWithContext creates a new StopTvlpConfigurationParams object with the ability to set a context for a request.

func NewStopTvlpConfigurationParamsWithHTTPClient

func NewStopTvlpConfigurationParamsWithHTTPClient(client *http.Client) *StopTvlpConfigurationParams

NewStopTvlpConfigurationParamsWithHTTPClient creates a new StopTvlpConfigurationParams object with the ability to set a custom HTTPClient for a request.

func NewStopTvlpConfigurationParamsWithTimeout

func NewStopTvlpConfigurationParamsWithTimeout(timeout time.Duration) *StopTvlpConfigurationParams

NewStopTvlpConfigurationParamsWithTimeout creates a new StopTvlpConfigurationParams object with the ability to set a timeout on a request.

func (*StopTvlpConfigurationParams) SetContext

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

SetContext adds the context to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) SetDefaults

func (o *StopTvlpConfigurationParams) SetDefaults()

SetDefaults hydrates default values in the stop tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*StopTvlpConfigurationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) SetID

func (o *StopTvlpConfigurationParams) SetID(id string)

SetID adds the id to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) SetTimeout

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

SetTimeout adds the timeout to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) WithContext

WithContext adds the context to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) WithDefaults

WithDefaults hydrates default values in the stop tvlp configuration params (not the query body).

All values with no default are reset to their zero value.

func (*StopTvlpConfigurationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) WithID

WithID adds the id to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) WithTimeout

WithTimeout adds the timeout to the stop tvlp configuration params

func (*StopTvlpConfigurationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopTvlpConfigurationReader

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

StopTvlpConfigurationReader is a Reader for the StopTvlpConfiguration structure.

func (*StopTvlpConfigurationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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