test_suite_executions

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2020 License: GPL-3.0 Imports: 11 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 test suite executions API

func (*Client) GetTestSuiteByIDUsingGET

func (a *Client) GetTestSuiteByIDUsingGET(params *GetTestSuiteByIDUsingGETParams) (*GetTestSuiteByIDUsingGETOK, error)

GetTestSuiteByIDUsingGET retrieves test suite executions by id

func (*Client) GetTestSuiteExecutionsUsingGET

func (a *Client) GetTestSuiteExecutionsUsingGET(params *GetTestSuiteExecutionsUsingGETParams) (*GetTestSuiteExecutionsUsingGETOK, error)

GetTestSuiteExecutionsUsingGET retrieves all test suite executions

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	GetTestSuiteByIDUsingGET(params *GetTestSuiteByIDUsingGETParams) (*GetTestSuiteByIDUsingGETOK, error)

	GetTestSuiteExecutionsUsingGET(params *GetTestSuiteExecutionsUsingGETParams) (*GetTestSuiteExecutionsUsingGETOK, 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 test suite executions API client.

type GetTestSuiteByIDUsingGETForbidden

type GetTestSuiteByIDUsingGETForbidden struct {
}

GetTestSuiteByIDUsingGETForbidden handles this case with default header values.

Forbidden

func NewGetTestSuiteByIDUsingGETForbidden

func NewGetTestSuiteByIDUsingGETForbidden() *GetTestSuiteByIDUsingGETForbidden

NewGetTestSuiteByIDUsingGETForbidden creates a GetTestSuiteByIDUsingGETForbidden with default headers values

func (*GetTestSuiteByIDUsingGETForbidden) Error

type GetTestSuiteByIDUsingGETNotFound

type GetTestSuiteByIDUsingGETNotFound struct {
}

GetTestSuiteByIDUsingGETNotFound handles this case with default header values.

Not Found

func NewGetTestSuiteByIDUsingGETNotFound

func NewGetTestSuiteByIDUsingGETNotFound() *GetTestSuiteByIDUsingGETNotFound

NewGetTestSuiteByIDUsingGETNotFound creates a GetTestSuiteByIDUsingGETNotFound with default headers values

func (*GetTestSuiteByIDUsingGETNotFound) Error

type GetTestSuiteByIDUsingGETOK

type GetTestSuiteByIDUsingGETOK struct {
	Payload *models.TestSuitesExecutionDto
}

GetTestSuiteByIDUsingGETOK handles this case with default header values.

OK

func NewGetTestSuiteByIDUsingGETOK

func NewGetTestSuiteByIDUsingGETOK() *GetTestSuiteByIDUsingGETOK

NewGetTestSuiteByIDUsingGETOK creates a GetTestSuiteByIDUsingGETOK with default headers values

func (*GetTestSuiteByIDUsingGETOK) Error

func (*GetTestSuiteByIDUsingGETOK) GetPayload

type GetTestSuiteByIDUsingGETParams

type GetTestSuiteByIDUsingGETParams struct {

	/*ApplicationID
	  applicationId

	*/
	ApplicationID int64
	/*ApplicationVersionID
	  applicationVersionId

	*/
	ApplicationVersionID int64
	/*TestSuiteExecutionsHexID
	  testSuiteExecutionId

	*/
	TestSuiteExecutionsHexID string

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

GetTestSuiteByIDUsingGETParams contains all the parameters to send to the API endpoint for the get test suite by Id using g e t operation typically these are written to a http.Request

func NewGetTestSuiteByIDUsingGETParams

func NewGetTestSuiteByIDUsingGETParams() *GetTestSuiteByIDUsingGETParams

NewGetTestSuiteByIDUsingGETParams creates a new GetTestSuiteByIDUsingGETParams object with the default values initialized.

func NewGetTestSuiteByIDUsingGETParamsWithContext

func NewGetTestSuiteByIDUsingGETParamsWithContext(ctx context.Context) *GetTestSuiteByIDUsingGETParams

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

func NewGetTestSuiteByIDUsingGETParamsWithHTTPClient

func NewGetTestSuiteByIDUsingGETParamsWithHTTPClient(client *http.Client) *GetTestSuiteByIDUsingGETParams

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

func NewGetTestSuiteByIDUsingGETParamsWithTimeout

func NewGetTestSuiteByIDUsingGETParamsWithTimeout(timeout time.Duration) *GetTestSuiteByIDUsingGETParams

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

func (*GetTestSuiteByIDUsingGETParams) SetApplicationID

func (o *GetTestSuiteByIDUsingGETParams) SetApplicationID(applicationID int64)

SetApplicationID adds the applicationId to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) SetApplicationVersionID

func (o *GetTestSuiteByIDUsingGETParams) SetApplicationVersionID(applicationVersionID int64)

SetApplicationVersionID adds the applicationVersionId to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) SetContext

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

SetContext adds the context to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) SetTestSuiteExecutionsHexID

func (o *GetTestSuiteByIDUsingGETParams) SetTestSuiteExecutionsHexID(testSuiteExecutionsHexID string)

SetTestSuiteExecutionsHexID adds the testSuiteExecutionsHexId to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithApplicationID

func (o *GetTestSuiteByIDUsingGETParams) WithApplicationID(applicationID int64) *GetTestSuiteByIDUsingGETParams

WithApplicationID adds the applicationID to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithApplicationVersionID

func (o *GetTestSuiteByIDUsingGETParams) WithApplicationVersionID(applicationVersionID int64) *GetTestSuiteByIDUsingGETParams

WithApplicationVersionID adds the applicationVersionID to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithContext

WithContext adds the context to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithTestSuiteExecutionsHexID

func (o *GetTestSuiteByIDUsingGETParams) WithTestSuiteExecutionsHexID(testSuiteExecutionsHexID string) *GetTestSuiteByIDUsingGETParams

WithTestSuiteExecutionsHexID adds the testSuiteExecutionsHexID to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get test suite by Id using g e t params

func (*GetTestSuiteByIDUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetTestSuiteByIDUsingGETReader

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

GetTestSuiteByIDUsingGETReader is a Reader for the GetTestSuiteByIDUsingGET structure.

func (*GetTestSuiteByIDUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetTestSuiteByIDUsingGETUnauthorized

type GetTestSuiteByIDUsingGETUnauthorized struct {
}

GetTestSuiteByIDUsingGETUnauthorized handles this case with default header values.

Unauthorized

func NewGetTestSuiteByIDUsingGETUnauthorized

func NewGetTestSuiteByIDUsingGETUnauthorized() *GetTestSuiteByIDUsingGETUnauthorized

NewGetTestSuiteByIDUsingGETUnauthorized creates a GetTestSuiteByIDUsingGETUnauthorized with default headers values

func (*GetTestSuiteByIDUsingGETUnauthorized) Error

type GetTestSuiteExecutionsUsingGETForbidden

type GetTestSuiteExecutionsUsingGETForbidden struct {
}

GetTestSuiteExecutionsUsingGETForbidden handles this case with default header values.

Forbidden

func NewGetTestSuiteExecutionsUsingGETForbidden

func NewGetTestSuiteExecutionsUsingGETForbidden() *GetTestSuiteExecutionsUsingGETForbidden

NewGetTestSuiteExecutionsUsingGETForbidden creates a GetTestSuiteExecutionsUsingGETForbidden with default headers values

func (*GetTestSuiteExecutionsUsingGETForbidden) Error

type GetTestSuiteExecutionsUsingGETNotFound

type GetTestSuiteExecutionsUsingGETNotFound struct {
}

GetTestSuiteExecutionsUsingGETNotFound handles this case with default header values.

Not Found

func NewGetTestSuiteExecutionsUsingGETNotFound

func NewGetTestSuiteExecutionsUsingGETNotFound() *GetTestSuiteExecutionsUsingGETNotFound

NewGetTestSuiteExecutionsUsingGETNotFound creates a GetTestSuiteExecutionsUsingGETNotFound with default headers values

func (*GetTestSuiteExecutionsUsingGETNotFound) Error

type GetTestSuiteExecutionsUsingGETOK

type GetTestSuiteExecutionsUsingGETOK struct {
	Payload *models.TestSuitesExecutionPagedDto
}

GetTestSuiteExecutionsUsingGETOK handles this case with default header values.

OK

func NewGetTestSuiteExecutionsUsingGETOK

func NewGetTestSuiteExecutionsUsingGETOK() *GetTestSuiteExecutionsUsingGETOK

NewGetTestSuiteExecutionsUsingGETOK creates a GetTestSuiteExecutionsUsingGETOK with default headers values

func (*GetTestSuiteExecutionsUsingGETOK) Error

func (*GetTestSuiteExecutionsUsingGETOK) GetPayload

type GetTestSuiteExecutionsUsingGETParams

type GetTestSuiteExecutionsUsingGETParams struct {

	/*ApplicationID
	  applicationId

	*/
	ApplicationID int64
	/*ApplicationVersionID
	  applicationVersionId

	*/
	ApplicationVersionID int64
	/*Embed
	  embed

	*/
	Embed []string
	/*EndpointID
	  endpointId

	*/
	EndpointID *int64
	/*Environment
	  environmentId

	*/
	Environment *int64
	/*Filter
	  filter

	*/
	Filter *string
	/*PageNumber
	  pageNumber

	*/
	PageNumber *int32
	/*PageSize
	  pageSize

	*/
	PageSize *int32
	/*Phase
	  phaseIds

	*/
	Phase []int64
	/*Release
	  releaseId

	*/
	Release *int64
	/*SortDirection
	  sortDirection

	*/
	SortDirection *string
	/*SortField
	  sortField

	*/
	SortField *string
	/*Tag
	  tags

	*/
	Tag *string
	/*TestSource
	  testSourceId

	*/
	TestSource *int64
	/*TestSuiteExecutionStatus
	  testSuiteExecutionStatuses

	*/
	TestSuiteExecutionStatus []string

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

GetTestSuiteExecutionsUsingGETParams contains all the parameters to send to the API endpoint for the get test suite executions using g e t operation typically these are written to a http.Request

func NewGetTestSuiteExecutionsUsingGETParams

func NewGetTestSuiteExecutionsUsingGETParams() *GetTestSuiteExecutionsUsingGETParams

NewGetTestSuiteExecutionsUsingGETParams creates a new GetTestSuiteExecutionsUsingGETParams object with the default values initialized.

func NewGetTestSuiteExecutionsUsingGETParamsWithContext

func NewGetTestSuiteExecutionsUsingGETParamsWithContext(ctx context.Context) *GetTestSuiteExecutionsUsingGETParams

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

func NewGetTestSuiteExecutionsUsingGETParamsWithHTTPClient

func NewGetTestSuiteExecutionsUsingGETParamsWithHTTPClient(client *http.Client) *GetTestSuiteExecutionsUsingGETParams

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

func NewGetTestSuiteExecutionsUsingGETParamsWithTimeout

func NewGetTestSuiteExecutionsUsingGETParamsWithTimeout(timeout time.Duration) *GetTestSuiteExecutionsUsingGETParams

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

func (*GetTestSuiteExecutionsUsingGETParams) SetApplicationID

func (o *GetTestSuiteExecutionsUsingGETParams) SetApplicationID(applicationID int64)

SetApplicationID adds the applicationId to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetApplicationVersionID

func (o *GetTestSuiteExecutionsUsingGETParams) SetApplicationVersionID(applicationVersionID int64)

SetApplicationVersionID adds the applicationVersionId to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetContext

SetContext adds the context to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetEmbed

func (o *GetTestSuiteExecutionsUsingGETParams) SetEmbed(embed []string)

SetEmbed adds the embed to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetEndpointID

func (o *GetTestSuiteExecutionsUsingGETParams) SetEndpointID(endpointID *int64)

SetEndpointID adds the endpointId to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetEnvironment

func (o *GetTestSuiteExecutionsUsingGETParams) SetEnvironment(environment *int64)

SetEnvironment adds the environment to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetFilter

func (o *GetTestSuiteExecutionsUsingGETParams) SetFilter(filter *string)

SetFilter adds the filter to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetPageNumber

func (o *GetTestSuiteExecutionsUsingGETParams) SetPageNumber(pageNumber *int32)

SetPageNumber adds the pageNumber to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetPageSize

func (o *GetTestSuiteExecutionsUsingGETParams) SetPageSize(pageSize *int32)

SetPageSize adds the pageSize to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetPhase

func (o *GetTestSuiteExecutionsUsingGETParams) SetPhase(phase []int64)

SetPhase adds the phase to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetRelease

func (o *GetTestSuiteExecutionsUsingGETParams) SetRelease(release *int64)

SetRelease adds the release to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetSortDirection

func (o *GetTestSuiteExecutionsUsingGETParams) SetSortDirection(sortDirection *string)

SetSortDirection adds the sortDirection to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetSortField

func (o *GetTestSuiteExecutionsUsingGETParams) SetSortField(sortField *string)

SetSortField adds the sortField to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetTag

SetTag adds the tag to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetTestSource

func (o *GetTestSuiteExecutionsUsingGETParams) SetTestSource(testSource *int64)

SetTestSource adds the testSource to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetTestSuiteExecutionStatus

func (o *GetTestSuiteExecutionsUsingGETParams) SetTestSuiteExecutionStatus(testSuiteExecutionStatus []string)

SetTestSuiteExecutionStatus adds the testSuiteExecutionStatus to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) SetTimeout

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

SetTimeout adds the timeout to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithApplicationID

WithApplicationID adds the applicationID to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithApplicationVersionID

func (o *GetTestSuiteExecutionsUsingGETParams) WithApplicationVersionID(applicationVersionID int64) *GetTestSuiteExecutionsUsingGETParams

WithApplicationVersionID adds the applicationVersionID to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithContext

WithContext adds the context to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithEmbed

WithEmbed adds the embed to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithEndpointID

WithEndpointID adds the endpointID to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithEnvironment

WithEnvironment adds the environment to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithFilter

WithFilter adds the filter to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithPageNumber

WithPageNumber adds the pageNumber to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithPageSize

WithPageSize adds the pageSize to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithPhase

WithPhase adds the phase to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithRelease

WithRelease adds the release to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithSortDirection

WithSortDirection adds the sortDirection to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithSortField

WithSortField adds the sortField to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithTag

WithTag adds the tag to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithTestSource

WithTestSource adds the testSource to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithTestSuiteExecutionStatus

func (o *GetTestSuiteExecutionsUsingGETParams) WithTestSuiteExecutionStatus(testSuiteExecutionStatus []string) *GetTestSuiteExecutionsUsingGETParams

WithTestSuiteExecutionStatus adds the testSuiteExecutionStatus to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WithTimeout

WithTimeout adds the timeout to the get test suite executions using g e t params

func (*GetTestSuiteExecutionsUsingGETParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetTestSuiteExecutionsUsingGETReader

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

GetTestSuiteExecutionsUsingGETReader is a Reader for the GetTestSuiteExecutionsUsingGET structure.

func (*GetTestSuiteExecutionsUsingGETReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetTestSuiteExecutionsUsingGETUnauthorized

type GetTestSuiteExecutionsUsingGETUnauthorized struct {
}

GetTestSuiteExecutionsUsingGETUnauthorized handles this case with default header values.

Unauthorized

func NewGetTestSuiteExecutionsUsingGETUnauthorized

func NewGetTestSuiteExecutionsUsingGETUnauthorized() *GetTestSuiteExecutionsUsingGETUnauthorized

NewGetTestSuiteExecutionsUsingGETUnauthorized creates a GetTestSuiteExecutionsUsingGETUnauthorized with default headers values

func (*GetTestSuiteExecutionsUsingGETUnauthorized) Error

Jump to

Keyboard shortcuts

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