status

package
v0.1.0 Latest Latest
Warning

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

Go to latest
Published: Jun 14, 2020 License: MIT 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 status API

func (*Client) DeleteAPIV1StatusWorkflowName

func (a *Client) DeleteAPIV1StatusWorkflowName(params *DeleteAPIV1StatusWorkflowNameParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteAPIV1StatusWorkflowNameOK, error)

DeleteAPIV1StatusWorkflowName deletes the specified workflow from the store

Deletes the workflow status specified by the name parameter, if the workflow is not

func (*Client) GetAPIV1StatusWorkflow

func (a *Client) GetAPIV1StatusWorkflow(params *GetAPIV1StatusWorkflowParams, authInfo runtime.ClientAuthInfoWriter) (*GetAPIV1StatusWorkflowOK, error)

GetAPIV1StatusWorkflow returns the specified workflow status object from the store

func (*Client) GetAPIV1StatusWorkflowName

func (a *Client) GetAPIV1StatusWorkflowName(params *GetAPIV1StatusWorkflowNameParams, authInfo runtime.ClientAuthInfoWriter) (*GetAPIV1StatusWorkflowNameOK, error)

GetAPIV1StatusWorkflowName returns the specified workflow object from the store with the name in params

func (*Client) PostAPIV1StatusWorkflow

func (a *Client) PostAPIV1StatusWorkflow(params *PostAPIV1StatusWorkflowParams, authInfo runtime.ClientAuthInfoWriter) (*PostAPIV1StatusWorkflowOK, error)

PostAPIV1StatusWorkflow creates a new workflow status in the store

This route creates a new workflow status for xene to operate on, if the workflow already exists

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientService

type ClientService interface {
	DeleteAPIV1StatusWorkflowName(params *DeleteAPIV1StatusWorkflowNameParams, authInfo runtime.ClientAuthInfoWriter) (*DeleteAPIV1StatusWorkflowNameOK, error)

	GetAPIV1StatusWorkflow(params *GetAPIV1StatusWorkflowParams, authInfo runtime.ClientAuthInfoWriter) (*GetAPIV1StatusWorkflowOK, error)

	GetAPIV1StatusWorkflowName(params *GetAPIV1StatusWorkflowNameParams, authInfo runtime.ClientAuthInfoWriter) (*GetAPIV1StatusWorkflowNameOK, error)

	PostAPIV1StatusWorkflow(params *PostAPIV1StatusWorkflowParams, authInfo runtime.ClientAuthInfoWriter) (*PostAPIV1StatusWorkflowOK, 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 status API client.

type DeleteAPIV1StatusWorkflowNameBadRequest

type DeleteAPIV1StatusWorkflowNameBadRequest struct {
	Payload *models.ResponseHTTPError
}

DeleteAPIV1StatusWorkflowNameBadRequest handles this case with default header values.

Bad Request

func NewDeleteAPIV1StatusWorkflowNameBadRequest

func NewDeleteAPIV1StatusWorkflowNameBadRequest() *DeleteAPIV1StatusWorkflowNameBadRequest

NewDeleteAPIV1StatusWorkflowNameBadRequest creates a DeleteAPIV1StatusWorkflowNameBadRequest with default headers values

func (*DeleteAPIV1StatusWorkflowNameBadRequest) Error

func (*DeleteAPIV1StatusWorkflowNameBadRequest) GetPayload

type DeleteAPIV1StatusWorkflowNameInternalServerError

type DeleteAPIV1StatusWorkflowNameInternalServerError struct {
	Payload *models.ResponseHTTPError
}

DeleteAPIV1StatusWorkflowNameInternalServerError handles this case with default header values.

Internal Server Error

func NewDeleteAPIV1StatusWorkflowNameInternalServerError

func NewDeleteAPIV1StatusWorkflowNameInternalServerError() *DeleteAPIV1StatusWorkflowNameInternalServerError

NewDeleteAPIV1StatusWorkflowNameInternalServerError creates a DeleteAPIV1StatusWorkflowNameInternalServerError with default headers values

func (*DeleteAPIV1StatusWorkflowNameInternalServerError) Error

func (*DeleteAPIV1StatusWorkflowNameInternalServerError) GetPayload

type DeleteAPIV1StatusWorkflowNameOK

type DeleteAPIV1StatusWorkflowNameOK struct {
	Payload *models.ResponseHTTPMessage
}

DeleteAPIV1StatusWorkflowNameOK handles this case with default header values.

OK

func NewDeleteAPIV1StatusWorkflowNameOK

func NewDeleteAPIV1StatusWorkflowNameOK() *DeleteAPIV1StatusWorkflowNameOK

NewDeleteAPIV1StatusWorkflowNameOK creates a DeleteAPIV1StatusWorkflowNameOK with default headers values

func (*DeleteAPIV1StatusWorkflowNameOK) Error

func (*DeleteAPIV1StatusWorkflowNameOK) GetPayload

type DeleteAPIV1StatusWorkflowNameParams

type DeleteAPIV1StatusWorkflowNameParams struct {

	/*Name
	  Name of the workflow status to be deleted.

	*/
	Name string

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

DeleteAPIV1StatusWorkflowNameParams contains all the parameters to send to the API endpoint for the delete API v1 status workflow name operation typically these are written to a http.Request

func NewDeleteAPIV1StatusWorkflowNameParams

func NewDeleteAPIV1StatusWorkflowNameParams() *DeleteAPIV1StatusWorkflowNameParams

NewDeleteAPIV1StatusWorkflowNameParams creates a new DeleteAPIV1StatusWorkflowNameParams object with the default values initialized.

func NewDeleteAPIV1StatusWorkflowNameParamsWithContext

func NewDeleteAPIV1StatusWorkflowNameParamsWithContext(ctx context.Context) *DeleteAPIV1StatusWorkflowNameParams

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

func NewDeleteAPIV1StatusWorkflowNameParamsWithHTTPClient

func NewDeleteAPIV1StatusWorkflowNameParamsWithHTTPClient(client *http.Client) *DeleteAPIV1StatusWorkflowNameParams

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

func NewDeleteAPIV1StatusWorkflowNameParamsWithTimeout

func NewDeleteAPIV1StatusWorkflowNameParamsWithTimeout(timeout time.Duration) *DeleteAPIV1StatusWorkflowNameParams

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

func (*DeleteAPIV1StatusWorkflowNameParams) SetContext

SetContext adds the context to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) SetName

SetName adds the name to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) SetTimeout

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

SetTimeout adds the timeout to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) WithContext

WithContext adds the context to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) WithName

WithName adds the name to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) WithTimeout

WithTimeout adds the timeout to the delete API v1 status workflow name params

func (*DeleteAPIV1StatusWorkflowNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteAPIV1StatusWorkflowNameReader

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

DeleteAPIV1StatusWorkflowNameReader is a Reader for the DeleteAPIV1StatusWorkflowName structure.

func (*DeleteAPIV1StatusWorkflowNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV1StatusWorkflowInternalServerError

type GetAPIV1StatusWorkflowInternalServerError struct {
	Payload *models.ResponseHTTPError
}

GetAPIV1StatusWorkflowInternalServerError handles this case with default header values.

Internal Server Error

func NewGetAPIV1StatusWorkflowInternalServerError

func NewGetAPIV1StatusWorkflowInternalServerError() *GetAPIV1StatusWorkflowInternalServerError

NewGetAPIV1StatusWorkflowInternalServerError creates a GetAPIV1StatusWorkflowInternalServerError with default headers values

func (*GetAPIV1StatusWorkflowInternalServerError) Error

func (*GetAPIV1StatusWorkflowInternalServerError) GetPayload

type GetAPIV1StatusWorkflowNameInternalServerError

type GetAPIV1StatusWorkflowNameInternalServerError struct {
	Payload *models.ResponseHTTPError
}

GetAPIV1StatusWorkflowNameInternalServerError handles this case with default header values.

Internal Server Error

func NewGetAPIV1StatusWorkflowNameInternalServerError

func NewGetAPIV1StatusWorkflowNameInternalServerError() *GetAPIV1StatusWorkflowNameInternalServerError

NewGetAPIV1StatusWorkflowNameInternalServerError creates a GetAPIV1StatusWorkflowNameInternalServerError with default headers values

func (*GetAPIV1StatusWorkflowNameInternalServerError) Error

func (*GetAPIV1StatusWorkflowNameInternalServerError) GetPayload

type GetAPIV1StatusWorkflowNameOK

type GetAPIV1StatusWorkflowNameOK struct {
	Payload *models.ResponseRegistryItem
}

GetAPIV1StatusWorkflowNameOK handles this case with default header values.

OK

func NewGetAPIV1StatusWorkflowNameOK

func NewGetAPIV1StatusWorkflowNameOK() *GetAPIV1StatusWorkflowNameOK

NewGetAPIV1StatusWorkflowNameOK creates a GetAPIV1StatusWorkflowNameOK with default headers values

func (*GetAPIV1StatusWorkflowNameOK) Error

func (*GetAPIV1StatusWorkflowNameOK) GetPayload

type GetAPIV1StatusWorkflowNameParams

type GetAPIV1StatusWorkflowNameParams struct {

	/*Name
	  name of the workflow to get status document for.

	*/
	Name string

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

GetAPIV1StatusWorkflowNameParams contains all the parameters to send to the API endpoint for the get API v1 status workflow name operation typically these are written to a http.Request

func NewGetAPIV1StatusWorkflowNameParams

func NewGetAPIV1StatusWorkflowNameParams() *GetAPIV1StatusWorkflowNameParams

NewGetAPIV1StatusWorkflowNameParams creates a new GetAPIV1StatusWorkflowNameParams object with the default values initialized.

func NewGetAPIV1StatusWorkflowNameParamsWithContext

func NewGetAPIV1StatusWorkflowNameParamsWithContext(ctx context.Context) *GetAPIV1StatusWorkflowNameParams

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

func NewGetAPIV1StatusWorkflowNameParamsWithHTTPClient

func NewGetAPIV1StatusWorkflowNameParamsWithHTTPClient(client *http.Client) *GetAPIV1StatusWorkflowNameParams

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

func NewGetAPIV1StatusWorkflowNameParamsWithTimeout

func NewGetAPIV1StatusWorkflowNameParamsWithTimeout(timeout time.Duration) *GetAPIV1StatusWorkflowNameParams

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

func (*GetAPIV1StatusWorkflowNameParams) SetContext

SetContext adds the context to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) SetName

func (o *GetAPIV1StatusWorkflowNameParams) SetName(name string)

SetName adds the name to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) SetTimeout

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

SetTimeout adds the timeout to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) WithContext

WithContext adds the context to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) WithName

WithName adds the name to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) WithTimeout

WithTimeout adds the timeout to the get API v1 status workflow name params

func (*GetAPIV1StatusWorkflowNameParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV1StatusWorkflowNameReader

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

GetAPIV1StatusWorkflowNameReader is a Reader for the GetAPIV1StatusWorkflowName structure.

func (*GetAPIV1StatusWorkflowNameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV1StatusWorkflowOK

type GetAPIV1StatusWorkflowOK struct {
	Payload *models.ResponseRegistryItem
}

GetAPIV1StatusWorkflowOK handles this case with default header values.

OK

func NewGetAPIV1StatusWorkflowOK

func NewGetAPIV1StatusWorkflowOK() *GetAPIV1StatusWorkflowOK

NewGetAPIV1StatusWorkflowOK creates a GetAPIV1StatusWorkflowOK with default headers values

func (*GetAPIV1StatusWorkflowOK) Error

func (o *GetAPIV1StatusWorkflowOK) Error() string

func (*GetAPIV1StatusWorkflowOK) GetPayload

type GetAPIV1StatusWorkflowParams

type GetAPIV1StatusWorkflowParams struct {

	/*Name
	  name of the workflow to get status object for.

	*/
	Name *string
	/*Prefix
	  Prefix based get for workflow status documents.

	*/
	Prefix *string

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

GetAPIV1StatusWorkflowParams contains all the parameters to send to the API endpoint for the get API v1 status workflow operation typically these are written to a http.Request

func NewGetAPIV1StatusWorkflowParams

func NewGetAPIV1StatusWorkflowParams() *GetAPIV1StatusWorkflowParams

NewGetAPIV1StatusWorkflowParams creates a new GetAPIV1StatusWorkflowParams object with the default values initialized.

func NewGetAPIV1StatusWorkflowParamsWithContext

func NewGetAPIV1StatusWorkflowParamsWithContext(ctx context.Context) *GetAPIV1StatusWorkflowParams

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

func NewGetAPIV1StatusWorkflowParamsWithHTTPClient

func NewGetAPIV1StatusWorkflowParamsWithHTTPClient(client *http.Client) *GetAPIV1StatusWorkflowParams

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

func NewGetAPIV1StatusWorkflowParamsWithTimeout

func NewGetAPIV1StatusWorkflowParamsWithTimeout(timeout time.Duration) *GetAPIV1StatusWorkflowParams

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

func (*GetAPIV1StatusWorkflowParams) SetContext

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

SetContext adds the context to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) SetName

func (o *GetAPIV1StatusWorkflowParams) SetName(name *string)

SetName adds the name to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) SetPrefix

func (o *GetAPIV1StatusWorkflowParams) SetPrefix(prefix *string)

SetPrefix adds the prefix to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) SetTimeout

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

SetTimeout adds the timeout to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WithContext

WithContext adds the context to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WithName

WithName adds the name to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WithPrefix

WithPrefix adds the prefix to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WithTimeout

WithTimeout adds the timeout to the get API v1 status workflow params

func (*GetAPIV1StatusWorkflowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV1StatusWorkflowReader

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

GetAPIV1StatusWorkflowReader is a Reader for the GetAPIV1StatusWorkflow structure.

func (*GetAPIV1StatusWorkflowReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostAPIV1StatusWorkflowBadRequest

type PostAPIV1StatusWorkflowBadRequest struct {
	Payload *models.ResponseHTTPError
}

PostAPIV1StatusWorkflowBadRequest handles this case with default header values.

Bad Request

func NewPostAPIV1StatusWorkflowBadRequest

func NewPostAPIV1StatusWorkflowBadRequest() *PostAPIV1StatusWorkflowBadRequest

NewPostAPIV1StatusWorkflowBadRequest creates a PostAPIV1StatusWorkflowBadRequest with default headers values

func (*PostAPIV1StatusWorkflowBadRequest) Error

func (*PostAPIV1StatusWorkflowBadRequest) GetPayload

type PostAPIV1StatusWorkflowInternalServerError

type PostAPIV1StatusWorkflowInternalServerError struct {
	Payload *models.ResponseHTTPError
}

PostAPIV1StatusWorkflowInternalServerError handles this case with default header values.

Internal Server Error

func NewPostAPIV1StatusWorkflowInternalServerError

func NewPostAPIV1StatusWorkflowInternalServerError() *PostAPIV1StatusWorkflowInternalServerError

NewPostAPIV1StatusWorkflowInternalServerError creates a PostAPIV1StatusWorkflowInternalServerError with default headers values

func (*PostAPIV1StatusWorkflowInternalServerError) Error

func (*PostAPIV1StatusWorkflowInternalServerError) GetPayload

type PostAPIV1StatusWorkflowOK

type PostAPIV1StatusWorkflowOK struct {
	Payload *models.ResponseHTTPMessage
}

PostAPIV1StatusWorkflowOK handles this case with default header values.

OK

func NewPostAPIV1StatusWorkflowOK

func NewPostAPIV1StatusWorkflowOK() *PostAPIV1StatusWorkflowOK

NewPostAPIV1StatusWorkflowOK creates a PostAPIV1StatusWorkflowOK with default headers values

func (*PostAPIV1StatusWorkflowOK) Error

func (o *PostAPIV1StatusWorkflowOK) Error() string

func (*PostAPIV1StatusWorkflowOK) GetPayload

type PostAPIV1StatusWorkflowParams

type PostAPIV1StatusWorkflowParams struct {

	/*Workflow
	  WorkflowStatus manifest to be created.

	*/
	Workflow string

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

PostAPIV1StatusWorkflowParams contains all the parameters to send to the API endpoint for the post API v1 status workflow operation typically these are written to a http.Request

func NewPostAPIV1StatusWorkflowParams

func NewPostAPIV1StatusWorkflowParams() *PostAPIV1StatusWorkflowParams

NewPostAPIV1StatusWorkflowParams creates a new PostAPIV1StatusWorkflowParams object with the default values initialized.

func NewPostAPIV1StatusWorkflowParamsWithContext

func NewPostAPIV1StatusWorkflowParamsWithContext(ctx context.Context) *PostAPIV1StatusWorkflowParams

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

func NewPostAPIV1StatusWorkflowParamsWithHTTPClient

func NewPostAPIV1StatusWorkflowParamsWithHTTPClient(client *http.Client) *PostAPIV1StatusWorkflowParams

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

func NewPostAPIV1StatusWorkflowParamsWithTimeout

func NewPostAPIV1StatusWorkflowParamsWithTimeout(timeout time.Duration) *PostAPIV1StatusWorkflowParams

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

func (*PostAPIV1StatusWorkflowParams) SetContext

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

SetContext adds the context to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) SetTimeout

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

SetTimeout adds the timeout to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) SetWorkflow

func (o *PostAPIV1StatusWorkflowParams) SetWorkflow(workflow string)

SetWorkflow adds the workflow to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) WithContext

WithContext adds the context to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) WithTimeout

WithTimeout adds the timeout to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) WithWorkflow

WithWorkflow adds the workflow to the post API v1 status workflow params

func (*PostAPIV1StatusWorkflowParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAPIV1StatusWorkflowReader

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

PostAPIV1StatusWorkflowReader is a Reader for the PostAPIV1StatusWorkflow structure.

func (*PostAPIV1StatusWorkflowReader) ReadResponse

func (o *PostAPIV1StatusWorkflowReader) 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