workflows

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Feb 27, 2024 License: MIT 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 workflows API

func (*Client) Deprovision

func (a *Client) Deprovision(params *DeprovisionParams, opts ...ClientOption) (*DeprovisionOK, error)

Deprovision deprovisions a system definition that was previously provisioned on the target c ID

func (*Client) Execute

func (a *Client) Execute(params *ExecuteParams, opts ...ClientOption) (*ExecuteOK, error)

Execute executes an on demand workflow the body is JSON used to trigger the execution the response the execution ID s

func (*Client) ExecutionAction

func (a *Client) ExecutionAction(params *ExecutionActionParams, opts ...ClientOption) (*ExecutionActionOK, error)

ExecutionAction allows a user to resume retry a failed workflow execution

func (*Client) ExecutionResults

func (a *Client) ExecutionResults(params *ExecutionResultsParams, opts ...ClientOption) (*ExecutionResultsOK, error)

ExecutionResults gets execution result of a given execution

func (*Client) Promote

func (a *Client) Promote(params *PromoteParams, opts ...ClientOption) (*PromoteOK, error)

Promote promotes a version of a system definition for a customer the customer must already have been provisioned this allows the caller to apply an updated template version to a specific cid and expects all parameters to be supplied if the template supports multi instance the customer scope definition ID must be supplied to determine which customer workflow should be updated

func (*Client) Provision

func (a *Client) Provision(params *ProvisionParams, opts ...ClientOption) (*ProvisionOK, error)

Provision provisions a system definition onto the target c ID by using the template and provided parameters

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) WorkflowDefinitionsCombined added in v0.6.0

func (a *Client) WorkflowDefinitionsCombined(params *WorkflowDefinitionsCombinedParams, opts ...ClientOption) (*WorkflowDefinitionsCombinedOK, error)

WorkflowDefinitionsCombined searches workflow definitions based on the provided filter

func (*Client) WorkflowDefinitionsCreate added in v0.6.0

func (a *Client) WorkflowDefinitionsCreate(params *WorkflowDefinitionsCreateParams, opts ...ClientOption) (*WorkflowDefinitionsCreateOK, error)

WorkflowDefinitionsCreate creates a workflow definition based on the provided model

func (*Client) WorkflowDefinitionsExport added in v0.6.0

WorkflowDefinitionsExport exports a workflow definition for the given definition ID

func (*Client) WorkflowDefinitionsImport added in v0.6.0

func (a *Client) WorkflowDefinitionsImport(params *WorkflowDefinitionsImportParams, opts ...ClientOption) (*WorkflowDefinitionsImportOK, error)

WorkflowDefinitionsImport imports a workflow definition based on the provided model

func (*Client) WorkflowDefinitionsUpdate added in v0.6.0

func (a *Client) WorkflowDefinitionsUpdate(params *WorkflowDefinitionsUpdateParams, opts ...ClientOption) (*WorkflowDefinitionsUpdateOK, error)

WorkflowDefinitionsUpdate updates a workflow definition based on the provided model

func (*Client) WorkflowExecutionsCombined added in v0.6.0

func (a *Client) WorkflowExecutionsCombined(params *WorkflowExecutionsCombinedParams, opts ...ClientOption) (*WorkflowExecutionsCombinedOK, error)

WorkflowExecutionsCombined searches workflow executions based on the provided filter

func (*Client) WorkflowGetHumanInputV1 added in v0.6.0

func (a *Client) WorkflowGetHumanInputV1(params *WorkflowGetHumanInputV1Params, opts ...ClientOption) (*WorkflowGetHumanInputV1OK, error)

WorkflowGetHumanInputV1 gets one or more specific human inputs by their i ds

func (*Client) WorkflowUpdateHumanInputV1 added in v0.6.0

func (a *Client) WorkflowUpdateHumanInputV1(params *WorkflowUpdateHumanInputV1Params, opts ...ClientOption) (*WorkflowUpdateHumanInputV1OK, error)

WorkflowUpdateHumanInputV1 provides an input in response to a human input action depending on action configuration one or more of approve decline and or escalate are permitted

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	Deprovision(params *DeprovisionParams, opts ...ClientOption) (*DeprovisionOK, error)

	Execute(params *ExecuteParams, opts ...ClientOption) (*ExecuteOK, error)

	ExecutionAction(params *ExecutionActionParams, opts ...ClientOption) (*ExecutionActionOK, error)

	ExecutionResults(params *ExecutionResultsParams, opts ...ClientOption) (*ExecutionResultsOK, error)

	Promote(params *PromoteParams, opts ...ClientOption) (*PromoteOK, error)

	Provision(params *ProvisionParams, opts ...ClientOption) (*ProvisionOK, error)

	WorkflowDefinitionsCombined(params *WorkflowDefinitionsCombinedParams, opts ...ClientOption) (*WorkflowDefinitionsCombinedOK, error)

	WorkflowDefinitionsCreate(params *WorkflowDefinitionsCreateParams, opts ...ClientOption) (*WorkflowDefinitionsCreateOK, error)

	WorkflowDefinitionsExport(params *WorkflowDefinitionsExportParams, opts ...ClientOption) (*WorkflowDefinitionsExportOK, *WorkflowDefinitionsExportStatus299, error)

	WorkflowDefinitionsImport(params *WorkflowDefinitionsImportParams, opts ...ClientOption) (*WorkflowDefinitionsImportOK, error)

	WorkflowDefinitionsUpdate(params *WorkflowDefinitionsUpdateParams, opts ...ClientOption) (*WorkflowDefinitionsUpdateOK, error)

	WorkflowExecutionsCombined(params *WorkflowExecutionsCombinedParams, opts ...ClientOption) (*WorkflowExecutionsCombinedOK, error)

	WorkflowGetHumanInputV1(params *WorkflowGetHumanInputV1Params, opts ...ClientOption) (*WorkflowGetHumanInputV1OK, error)

	WorkflowUpdateHumanInputV1(params *WorkflowUpdateHumanInputV1Params, opts ...ClientOption) (*WorkflowUpdateHumanInputV1OK, 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 workflows API client.

type DeprovisionBadRequest

type DeprovisionBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

DeprovisionBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewDeprovisionBadRequest

func NewDeprovisionBadRequest() *DeprovisionBadRequest

NewDeprovisionBadRequest creates a DeprovisionBadRequest with default headers values

func (*DeprovisionBadRequest) Code

func (o *DeprovisionBadRequest) Code() int

Code gets the status code for the deprovision bad request response

func (*DeprovisionBadRequest) Error

func (o *DeprovisionBadRequest) Error() string

func (*DeprovisionBadRequest) GetPayload

func (*DeprovisionBadRequest) IsClientError

func (o *DeprovisionBadRequest) IsClientError() bool

IsClientError returns true when this deprovision bad request response has a 4xx status code

func (*DeprovisionBadRequest) IsCode

func (o *DeprovisionBadRequest) IsCode(code int) bool

IsCode returns true when this deprovision bad request response a status code equal to that given

func (*DeprovisionBadRequest) IsRedirect

func (o *DeprovisionBadRequest) IsRedirect() bool

IsRedirect returns true when this deprovision bad request response has a 3xx status code

func (*DeprovisionBadRequest) IsServerError

func (o *DeprovisionBadRequest) IsServerError() bool

IsServerError returns true when this deprovision bad request response has a 5xx status code

func (*DeprovisionBadRequest) IsSuccess

func (o *DeprovisionBadRequest) IsSuccess() bool

IsSuccess returns true when this deprovision bad request response has a 2xx status code

func (*DeprovisionBadRequest) String

func (o *DeprovisionBadRequest) String() string

type DeprovisionForbidden

type DeprovisionForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

DeprovisionForbidden describes a response with status code 403, with default header values.

Forbidden

func NewDeprovisionForbidden

func NewDeprovisionForbidden() *DeprovisionForbidden

NewDeprovisionForbidden creates a DeprovisionForbidden with default headers values

func (*DeprovisionForbidden) Code

func (o *DeprovisionForbidden) Code() int

Code gets the status code for the deprovision forbidden response

func (*DeprovisionForbidden) Error

func (o *DeprovisionForbidden) Error() string

func (*DeprovisionForbidden) GetPayload

func (o *DeprovisionForbidden) GetPayload() *models.MsaReplyMetaOnly

func (*DeprovisionForbidden) IsClientError

func (o *DeprovisionForbidden) IsClientError() bool

IsClientError returns true when this deprovision forbidden response has a 4xx status code

func (*DeprovisionForbidden) IsCode

func (o *DeprovisionForbidden) IsCode(code int) bool

IsCode returns true when this deprovision forbidden response a status code equal to that given

func (*DeprovisionForbidden) IsRedirect

func (o *DeprovisionForbidden) IsRedirect() bool

IsRedirect returns true when this deprovision forbidden response has a 3xx status code

func (*DeprovisionForbidden) IsServerError

func (o *DeprovisionForbidden) IsServerError() bool

IsServerError returns true when this deprovision forbidden response has a 5xx status code

func (*DeprovisionForbidden) IsSuccess

func (o *DeprovisionForbidden) IsSuccess() bool

IsSuccess returns true when this deprovision forbidden response has a 2xx status code

func (*DeprovisionForbidden) String

func (o *DeprovisionForbidden) String() string

type DeprovisionInternalServerError

type DeprovisionInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

DeprovisionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewDeprovisionInternalServerError

func NewDeprovisionInternalServerError() *DeprovisionInternalServerError

NewDeprovisionInternalServerError creates a DeprovisionInternalServerError with default headers values

func (*DeprovisionInternalServerError) Code

Code gets the status code for the deprovision internal server error response

func (*DeprovisionInternalServerError) Error

func (*DeprovisionInternalServerError) GetPayload

func (*DeprovisionInternalServerError) IsClientError

func (o *DeprovisionInternalServerError) IsClientError() bool

IsClientError returns true when this deprovision internal server error response has a 4xx status code

func (*DeprovisionInternalServerError) IsCode

func (o *DeprovisionInternalServerError) IsCode(code int) bool

IsCode returns true when this deprovision internal server error response a status code equal to that given

func (*DeprovisionInternalServerError) IsRedirect

func (o *DeprovisionInternalServerError) IsRedirect() bool

IsRedirect returns true when this deprovision internal server error response has a 3xx status code

func (*DeprovisionInternalServerError) IsServerError

func (o *DeprovisionInternalServerError) IsServerError() bool

IsServerError returns true when this deprovision internal server error response has a 5xx status code

func (*DeprovisionInternalServerError) IsSuccess

func (o *DeprovisionInternalServerError) IsSuccess() bool

IsSuccess returns true when this deprovision internal server error response has a 2xx status code

func (*DeprovisionInternalServerError) String

type DeprovisionNotFound

type DeprovisionNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

DeprovisionNotFound describes a response with status code 404, with default header values.

Not Found

func NewDeprovisionNotFound

func NewDeprovisionNotFound() *DeprovisionNotFound

NewDeprovisionNotFound creates a DeprovisionNotFound with default headers values

func (*DeprovisionNotFound) Code

func (o *DeprovisionNotFound) Code() int

Code gets the status code for the deprovision not found response

func (*DeprovisionNotFound) Error

func (o *DeprovisionNotFound) Error() string

func (*DeprovisionNotFound) GetPayload

func (*DeprovisionNotFound) IsClientError

func (o *DeprovisionNotFound) IsClientError() bool

IsClientError returns true when this deprovision not found response has a 4xx status code

func (*DeprovisionNotFound) IsCode

func (o *DeprovisionNotFound) IsCode(code int) bool

IsCode returns true when this deprovision not found response a status code equal to that given

func (*DeprovisionNotFound) IsRedirect

func (o *DeprovisionNotFound) IsRedirect() bool

IsRedirect returns true when this deprovision not found response has a 3xx status code

func (*DeprovisionNotFound) IsServerError

func (o *DeprovisionNotFound) IsServerError() bool

IsServerError returns true when this deprovision not found response has a 5xx status code

func (*DeprovisionNotFound) IsSuccess

func (o *DeprovisionNotFound) IsSuccess() bool

IsSuccess returns true when this deprovision not found response has a 2xx status code

func (*DeprovisionNotFound) String

func (o *DeprovisionNotFound) String() string

type DeprovisionOK

type DeprovisionOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

DeprovisionOK describes a response with status code 200, with default header values.

OK

func NewDeprovisionOK

func NewDeprovisionOK() *DeprovisionOK

NewDeprovisionOK creates a DeprovisionOK with default headers values

func (*DeprovisionOK) Code

func (o *DeprovisionOK) Code() int

Code gets the status code for the deprovision o k response

func (*DeprovisionOK) Error

func (o *DeprovisionOK) Error() string

func (*DeprovisionOK) GetPayload

func (*DeprovisionOK) IsClientError

func (o *DeprovisionOK) IsClientError() bool

IsClientError returns true when this deprovision o k response has a 4xx status code

func (*DeprovisionOK) IsCode

func (o *DeprovisionOK) IsCode(code int) bool

IsCode returns true when this deprovision o k response a status code equal to that given

func (*DeprovisionOK) IsRedirect

func (o *DeprovisionOK) IsRedirect() bool

IsRedirect returns true when this deprovision o k response has a 3xx status code

func (*DeprovisionOK) IsServerError

func (o *DeprovisionOK) IsServerError() bool

IsServerError returns true when this deprovision o k response has a 5xx status code

func (*DeprovisionOK) IsSuccess

func (o *DeprovisionOK) IsSuccess() bool

IsSuccess returns true when this deprovision o k response has a 2xx status code

func (*DeprovisionOK) String

func (o *DeprovisionOK) String() string

type DeprovisionParams

type DeprovisionParams struct {

	// Body.
	Body *models.ClientSystemDefinitionDeProvisionRequest

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

DeprovisionParams contains all the parameters to send to the API endpoint

for the deprovision operation.

Typically these are written to a http.Request.

func NewDeprovisionParams

func NewDeprovisionParams() *DeprovisionParams

NewDeprovisionParams creates a new DeprovisionParams 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 NewDeprovisionParamsWithContext

func NewDeprovisionParamsWithContext(ctx context.Context) *DeprovisionParams

NewDeprovisionParamsWithContext creates a new DeprovisionParams object with the ability to set a context for a request.

func NewDeprovisionParamsWithHTTPClient

func NewDeprovisionParamsWithHTTPClient(client *http.Client) *DeprovisionParams

NewDeprovisionParamsWithHTTPClient creates a new DeprovisionParams object with the ability to set a custom HTTPClient for a request.

func NewDeprovisionParamsWithTimeout

func NewDeprovisionParamsWithTimeout(timeout time.Duration) *DeprovisionParams

NewDeprovisionParamsWithTimeout creates a new DeprovisionParams object with the ability to set a timeout on a request.

func (*DeprovisionParams) SetBody

SetBody adds the body to the deprovision params

func (*DeprovisionParams) SetContext

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

SetContext adds the context to the deprovision params

func (*DeprovisionParams) SetDefaults

func (o *DeprovisionParams) SetDefaults()

SetDefaults hydrates default values in the deprovision params (not the query body).

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

func (*DeprovisionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the deprovision params

func (*DeprovisionParams) SetTimeout

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

SetTimeout adds the timeout to the deprovision params

func (*DeprovisionParams) WithBody

WithBody adds the body to the deprovision params

func (*DeprovisionParams) WithContext

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

WithContext adds the context to the deprovision params

func (*DeprovisionParams) WithDefaults

func (o *DeprovisionParams) WithDefaults() *DeprovisionParams

WithDefaults hydrates default values in the deprovision params (not the query body).

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

func (*DeprovisionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the deprovision params

func (*DeprovisionParams) WithTimeout

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

WithTimeout adds the timeout to the deprovision params

func (*DeprovisionParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeprovisionReader

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

DeprovisionReader is a Reader for the Deprovision structure.

func (*DeprovisionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeprovisionTooManyRequests

type DeprovisionTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

DeprovisionTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewDeprovisionTooManyRequests

func NewDeprovisionTooManyRequests() *DeprovisionTooManyRequests

NewDeprovisionTooManyRequests creates a DeprovisionTooManyRequests with default headers values

func (*DeprovisionTooManyRequests) Code

func (o *DeprovisionTooManyRequests) Code() int

Code gets the status code for the deprovision too many requests response

func (*DeprovisionTooManyRequests) Error

func (*DeprovisionTooManyRequests) GetPayload

func (*DeprovisionTooManyRequests) IsClientError

func (o *DeprovisionTooManyRequests) IsClientError() bool

IsClientError returns true when this deprovision too many requests response has a 4xx status code

func (*DeprovisionTooManyRequests) IsCode

func (o *DeprovisionTooManyRequests) IsCode(code int) bool

IsCode returns true when this deprovision too many requests response a status code equal to that given

func (*DeprovisionTooManyRequests) IsRedirect

func (o *DeprovisionTooManyRequests) IsRedirect() bool

IsRedirect returns true when this deprovision too many requests response has a 3xx status code

func (*DeprovisionTooManyRequests) IsServerError

func (o *DeprovisionTooManyRequests) IsServerError() bool

IsServerError returns true when this deprovision too many requests response has a 5xx status code

func (*DeprovisionTooManyRequests) IsSuccess

func (o *DeprovisionTooManyRequests) IsSuccess() bool

IsSuccess returns true when this deprovision too many requests response has a 2xx status code

func (*DeprovisionTooManyRequests) String

func (o *DeprovisionTooManyRequests) String() string

type ExecuteBadRequest

type ExecuteBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

ExecuteBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewExecuteBadRequest

func NewExecuteBadRequest() *ExecuteBadRequest

NewExecuteBadRequest creates a ExecuteBadRequest with default headers values

func (*ExecuteBadRequest) Code

func (o *ExecuteBadRequest) Code() int

Code gets the status code for the execute bad request response

func (*ExecuteBadRequest) Error

func (o *ExecuteBadRequest) Error() string

func (*ExecuteBadRequest) GetPayload

func (*ExecuteBadRequest) IsClientError

func (o *ExecuteBadRequest) IsClientError() bool

IsClientError returns true when this execute bad request response has a 4xx status code

func (*ExecuteBadRequest) IsCode

func (o *ExecuteBadRequest) IsCode(code int) bool

IsCode returns true when this execute bad request response a status code equal to that given

func (*ExecuteBadRequest) IsRedirect

func (o *ExecuteBadRequest) IsRedirect() bool

IsRedirect returns true when this execute bad request response has a 3xx status code

func (*ExecuteBadRequest) IsServerError

func (o *ExecuteBadRequest) IsServerError() bool

IsServerError returns true when this execute bad request response has a 5xx status code

func (*ExecuteBadRequest) IsSuccess

func (o *ExecuteBadRequest) IsSuccess() bool

IsSuccess returns true when this execute bad request response has a 2xx status code

func (*ExecuteBadRequest) String

func (o *ExecuteBadRequest) String() string

type ExecuteForbidden

type ExecuteForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

ExecuteForbidden describes a response with status code 403, with default header values.

Forbidden

func NewExecuteForbidden

func NewExecuteForbidden() *ExecuteForbidden

NewExecuteForbidden creates a ExecuteForbidden with default headers values

func (*ExecuteForbidden) Code

func (o *ExecuteForbidden) Code() int

Code gets the status code for the execute forbidden response

func (*ExecuteForbidden) Error

func (o *ExecuteForbidden) Error() string

func (*ExecuteForbidden) GetPayload

func (o *ExecuteForbidden) GetPayload() *models.MsaReplyMetaOnly

func (*ExecuteForbidden) IsClientError

func (o *ExecuteForbidden) IsClientError() bool

IsClientError returns true when this execute forbidden response has a 4xx status code

func (*ExecuteForbidden) IsCode

func (o *ExecuteForbidden) IsCode(code int) bool

IsCode returns true when this execute forbidden response a status code equal to that given

func (*ExecuteForbidden) IsRedirect

func (o *ExecuteForbidden) IsRedirect() bool

IsRedirect returns true when this execute forbidden response has a 3xx status code

func (*ExecuteForbidden) IsServerError

func (o *ExecuteForbidden) IsServerError() bool

IsServerError returns true when this execute forbidden response has a 5xx status code

func (*ExecuteForbidden) IsSuccess

func (o *ExecuteForbidden) IsSuccess() bool

IsSuccess returns true when this execute forbidden response has a 2xx status code

func (*ExecuteForbidden) String

func (o *ExecuteForbidden) String() string

type ExecuteInternalServerError

type ExecuteInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

ExecuteInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewExecuteInternalServerError

func NewExecuteInternalServerError() *ExecuteInternalServerError

NewExecuteInternalServerError creates a ExecuteInternalServerError with default headers values

func (*ExecuteInternalServerError) Code

func (o *ExecuteInternalServerError) Code() int

Code gets the status code for the execute internal server error response

func (*ExecuteInternalServerError) Error

func (*ExecuteInternalServerError) GetPayload

func (*ExecuteInternalServerError) IsClientError

func (o *ExecuteInternalServerError) IsClientError() bool

IsClientError returns true when this execute internal server error response has a 4xx status code

func (*ExecuteInternalServerError) IsCode

func (o *ExecuteInternalServerError) IsCode(code int) bool

IsCode returns true when this execute internal server error response a status code equal to that given

func (*ExecuteInternalServerError) IsRedirect

func (o *ExecuteInternalServerError) IsRedirect() bool

IsRedirect returns true when this execute internal server error response has a 3xx status code

func (*ExecuteInternalServerError) IsServerError

func (o *ExecuteInternalServerError) IsServerError() bool

IsServerError returns true when this execute internal server error response has a 5xx status code

func (*ExecuteInternalServerError) IsSuccess

func (o *ExecuteInternalServerError) IsSuccess() bool

IsSuccess returns true when this execute internal server error response has a 2xx status code

func (*ExecuteInternalServerError) String

func (o *ExecuteInternalServerError) String() string

type ExecuteNotFound

type ExecuteNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

ExecuteNotFound describes a response with status code 404, with default header values.

Not Found

func NewExecuteNotFound

func NewExecuteNotFound() *ExecuteNotFound

NewExecuteNotFound creates a ExecuteNotFound with default headers values

func (*ExecuteNotFound) Code

func (o *ExecuteNotFound) Code() int

Code gets the status code for the execute not found response

func (*ExecuteNotFound) Error

func (o *ExecuteNotFound) Error() string

func (*ExecuteNotFound) GetPayload

func (*ExecuteNotFound) IsClientError

func (o *ExecuteNotFound) IsClientError() bool

IsClientError returns true when this execute not found response has a 4xx status code

func (*ExecuteNotFound) IsCode

func (o *ExecuteNotFound) IsCode(code int) bool

IsCode returns true when this execute not found response a status code equal to that given

func (*ExecuteNotFound) IsRedirect

func (o *ExecuteNotFound) IsRedirect() bool

IsRedirect returns true when this execute not found response has a 3xx status code

func (*ExecuteNotFound) IsServerError

func (o *ExecuteNotFound) IsServerError() bool

IsServerError returns true when this execute not found response has a 5xx status code

func (*ExecuteNotFound) IsSuccess

func (o *ExecuteNotFound) IsSuccess() bool

IsSuccess returns true when this execute not found response has a 2xx status code

func (*ExecuteNotFound) String

func (o *ExecuteNotFound) String() string

type ExecuteOK

type ExecuteOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

ExecuteOK describes a response with status code 200, with default header values.

OK

func NewExecuteOK

func NewExecuteOK() *ExecuteOK

NewExecuteOK creates a ExecuteOK with default headers values

func (*ExecuteOK) Code

func (o *ExecuteOK) Code() int

Code gets the status code for the execute o k response

func (*ExecuteOK) Error

func (o *ExecuteOK) Error() string

func (*ExecuteOK) GetPayload

func (o *ExecuteOK) GetPayload() *models.APIResourceIDsResponse

func (*ExecuteOK) IsClientError

func (o *ExecuteOK) IsClientError() bool

IsClientError returns true when this execute o k response has a 4xx status code

func (*ExecuteOK) IsCode

func (o *ExecuteOK) IsCode(code int) bool

IsCode returns true when this execute o k response a status code equal to that given

func (*ExecuteOK) IsRedirect

func (o *ExecuteOK) IsRedirect() bool

IsRedirect returns true when this execute o k response has a 3xx status code

func (*ExecuteOK) IsServerError

func (o *ExecuteOK) IsServerError() bool

IsServerError returns true when this execute o k response has a 5xx status code

func (*ExecuteOK) IsSuccess

func (o *ExecuteOK) IsSuccess() bool

IsSuccess returns true when this execute o k response has a 2xx status code

func (*ExecuteOK) String

func (o *ExecuteOK) String() string

type ExecuteParams

type ExecuteParams struct {

	// Body.
	Body models.MapStringInterface

	/* DefinitionID.

	   Definition ID to execute, either a name or an ID can be specified.
	*/
	DefinitionID []string

	/* Depth.

	   Used to record the execution depth to help limit execution loops when a workflow triggers another. The maximum depth is 4.
	*/
	Depth *int64

	/* ExecutionCid.

	   CID(s) to execute on. This can be a child if this is a flight control enabled definition. If unset the definition CID is used.
	*/
	ExecutionCid []string

	/* Key.

	   Key used to help deduplicate executions, if unset a new UUID is used
	*/
	Key *string

	/* Name.

	   Workflow name to execute, either a name or an ID can be specified.
	*/
	Name *string

	/* SourceEventURL.

	   Used to record a URL to the source that led to triggering this workflow
	*/
	SourceEventURL *string

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

ExecuteParams contains all the parameters to send to the API endpoint

for the execute operation.

Typically these are written to a http.Request.

func NewExecuteParams

func NewExecuteParams() *ExecuteParams

NewExecuteParams creates a new ExecuteParams 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 NewExecuteParamsWithContext

func NewExecuteParamsWithContext(ctx context.Context) *ExecuteParams

NewExecuteParamsWithContext creates a new ExecuteParams object with the ability to set a context for a request.

func NewExecuteParamsWithHTTPClient

func NewExecuteParamsWithHTTPClient(client *http.Client) *ExecuteParams

NewExecuteParamsWithHTTPClient creates a new ExecuteParams object with the ability to set a custom HTTPClient for a request.

func NewExecuteParamsWithTimeout

func NewExecuteParamsWithTimeout(timeout time.Duration) *ExecuteParams

NewExecuteParamsWithTimeout creates a new ExecuteParams object with the ability to set a timeout on a request.

func (*ExecuteParams) SetBody

func (o *ExecuteParams) SetBody(body models.MapStringInterface)

SetBody adds the body to the execute params

func (*ExecuteParams) SetContext

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

SetContext adds the context to the execute params

func (*ExecuteParams) SetDefaults

func (o *ExecuteParams) SetDefaults()

SetDefaults hydrates default values in the execute params (not the query body).

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

func (*ExecuteParams) SetDefinitionID

func (o *ExecuteParams) SetDefinitionID(definitionID []string)

SetDefinitionID adds the definitionId to the execute params

func (*ExecuteParams) SetDepth

func (o *ExecuteParams) SetDepth(depth *int64)

SetDepth adds the depth to the execute params

func (*ExecuteParams) SetExecutionCid added in v0.6.0

func (o *ExecuteParams) SetExecutionCid(executionCid []string)

SetExecutionCid adds the executionCid to the execute params

func (*ExecuteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the execute params

func (*ExecuteParams) SetKey

func (o *ExecuteParams) SetKey(key *string)

SetKey adds the key to the execute params

func (*ExecuteParams) SetName

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

SetName adds the name to the execute params

func (*ExecuteParams) SetSourceEventURL

func (o *ExecuteParams) SetSourceEventURL(sourceEventURL *string)

SetSourceEventURL adds the sourceEventUrl to the execute params

func (*ExecuteParams) SetTimeout

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

SetTimeout adds the timeout to the execute params

func (*ExecuteParams) WithBody

WithBody adds the body to the execute params

func (*ExecuteParams) WithContext

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

WithContext adds the context to the execute params

func (*ExecuteParams) WithDefaults

func (o *ExecuteParams) WithDefaults() *ExecuteParams

WithDefaults hydrates default values in the execute params (not the query body).

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

func (*ExecuteParams) WithDefinitionID

func (o *ExecuteParams) WithDefinitionID(definitionID []string) *ExecuteParams

WithDefinitionID adds the definitionID to the execute params

func (*ExecuteParams) WithDepth

func (o *ExecuteParams) WithDepth(depth *int64) *ExecuteParams

WithDepth adds the depth to the execute params

func (*ExecuteParams) WithExecutionCid added in v0.6.0

func (o *ExecuteParams) WithExecutionCid(executionCid []string) *ExecuteParams

WithExecutionCid adds the executionCid to the execute params

func (*ExecuteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the execute params

func (*ExecuteParams) WithKey

func (o *ExecuteParams) WithKey(key *string) *ExecuteParams

WithKey adds the key to the execute params

func (*ExecuteParams) WithName

func (o *ExecuteParams) WithName(name *string) *ExecuteParams

WithName adds the name to the execute params

func (*ExecuteParams) WithSourceEventURL

func (o *ExecuteParams) WithSourceEventURL(sourceEventURL *string) *ExecuteParams

WithSourceEventURL adds the sourceEventURL to the execute params

func (*ExecuteParams) WithTimeout

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

WithTimeout adds the timeout to the execute params

func (*ExecuteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ExecuteReader

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

ExecuteReader is a Reader for the Execute structure.

func (*ExecuteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ExecuteTooManyRequests

type ExecuteTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

ExecuteTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewExecuteTooManyRequests

func NewExecuteTooManyRequests() *ExecuteTooManyRequests

NewExecuteTooManyRequests creates a ExecuteTooManyRequests with default headers values

func (*ExecuteTooManyRequests) Code

func (o *ExecuteTooManyRequests) Code() int

Code gets the status code for the execute too many requests response

func (*ExecuteTooManyRequests) Error

func (o *ExecuteTooManyRequests) Error() string

func (*ExecuteTooManyRequests) GetPayload

func (*ExecuteTooManyRequests) IsClientError

func (o *ExecuteTooManyRequests) IsClientError() bool

IsClientError returns true when this execute too many requests response has a 4xx status code

func (*ExecuteTooManyRequests) IsCode

func (o *ExecuteTooManyRequests) IsCode(code int) bool

IsCode returns true when this execute too many requests response a status code equal to that given

func (*ExecuteTooManyRequests) IsRedirect

func (o *ExecuteTooManyRequests) IsRedirect() bool

IsRedirect returns true when this execute too many requests response has a 3xx status code

func (*ExecuteTooManyRequests) IsServerError

func (o *ExecuteTooManyRequests) IsServerError() bool

IsServerError returns true when this execute too many requests response has a 5xx status code

func (*ExecuteTooManyRequests) IsSuccess

func (o *ExecuteTooManyRequests) IsSuccess() bool

IsSuccess returns true when this execute too many requests response has a 2xx status code

func (*ExecuteTooManyRequests) String

func (o *ExecuteTooManyRequests) String() string

type ExecutionActionBadRequest

type ExecutionActionBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionEntitiesResponse
}

ExecutionActionBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewExecutionActionBadRequest

func NewExecutionActionBadRequest() *ExecutionActionBadRequest

NewExecutionActionBadRequest creates a ExecutionActionBadRequest with default headers values

func (*ExecutionActionBadRequest) Code

func (o *ExecutionActionBadRequest) Code() int

Code gets the status code for the execution action bad request response

func (*ExecutionActionBadRequest) Error

func (o *ExecutionActionBadRequest) Error() string

func (*ExecutionActionBadRequest) GetPayload

func (*ExecutionActionBadRequest) IsClientError

func (o *ExecutionActionBadRequest) IsClientError() bool

IsClientError returns true when this execution action bad request response has a 4xx status code

func (*ExecutionActionBadRequest) IsCode

func (o *ExecutionActionBadRequest) IsCode(code int) bool

IsCode returns true when this execution action bad request response a status code equal to that given

func (*ExecutionActionBadRequest) IsRedirect

func (o *ExecutionActionBadRequest) IsRedirect() bool

IsRedirect returns true when this execution action bad request response has a 3xx status code

func (*ExecutionActionBadRequest) IsServerError

func (o *ExecutionActionBadRequest) IsServerError() bool

IsServerError returns true when this execution action bad request response has a 5xx status code

func (*ExecutionActionBadRequest) IsSuccess

func (o *ExecutionActionBadRequest) IsSuccess() bool

IsSuccess returns true when this execution action bad request response has a 2xx status code

func (*ExecutionActionBadRequest) String

func (o *ExecutionActionBadRequest) String() string

type ExecutionActionForbidden

type ExecutionActionForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

ExecutionActionForbidden describes a response with status code 403, with default header values.

Forbidden

func NewExecutionActionForbidden

func NewExecutionActionForbidden() *ExecutionActionForbidden

NewExecutionActionForbidden creates a ExecutionActionForbidden with default headers values

func (*ExecutionActionForbidden) Code

func (o *ExecutionActionForbidden) Code() int

Code gets the status code for the execution action forbidden response

func (*ExecutionActionForbidden) Error

func (o *ExecutionActionForbidden) Error() string

func (*ExecutionActionForbidden) GetPayload

func (*ExecutionActionForbidden) IsClientError

func (o *ExecutionActionForbidden) IsClientError() bool

IsClientError returns true when this execution action forbidden response has a 4xx status code

func (*ExecutionActionForbidden) IsCode

func (o *ExecutionActionForbidden) IsCode(code int) bool

IsCode returns true when this execution action forbidden response a status code equal to that given

func (*ExecutionActionForbidden) IsRedirect

func (o *ExecutionActionForbidden) IsRedirect() bool

IsRedirect returns true when this execution action forbidden response has a 3xx status code

func (*ExecutionActionForbidden) IsServerError

func (o *ExecutionActionForbidden) IsServerError() bool

IsServerError returns true when this execution action forbidden response has a 5xx status code

func (*ExecutionActionForbidden) IsSuccess

func (o *ExecutionActionForbidden) IsSuccess() bool

IsSuccess returns true when this execution action forbidden response has a 2xx status code

func (*ExecutionActionForbidden) String

func (o *ExecutionActionForbidden) String() string

type ExecutionActionInternalServerError

type ExecutionActionInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionEntitiesResponse
}

ExecutionActionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewExecutionActionInternalServerError

func NewExecutionActionInternalServerError() *ExecutionActionInternalServerError

NewExecutionActionInternalServerError creates a ExecutionActionInternalServerError with default headers values

func (*ExecutionActionInternalServerError) Code

Code gets the status code for the execution action internal server error response

func (*ExecutionActionInternalServerError) Error

func (*ExecutionActionInternalServerError) GetPayload

func (*ExecutionActionInternalServerError) IsClientError

func (o *ExecutionActionInternalServerError) IsClientError() bool

IsClientError returns true when this execution action internal server error response has a 4xx status code

func (*ExecutionActionInternalServerError) IsCode

IsCode returns true when this execution action internal server error response a status code equal to that given

func (*ExecutionActionInternalServerError) IsRedirect

func (o *ExecutionActionInternalServerError) IsRedirect() bool

IsRedirect returns true when this execution action internal server error response has a 3xx status code

func (*ExecutionActionInternalServerError) IsServerError

func (o *ExecutionActionInternalServerError) IsServerError() bool

IsServerError returns true when this execution action internal server error response has a 5xx status code

func (*ExecutionActionInternalServerError) IsSuccess

IsSuccess returns true when this execution action internal server error response has a 2xx status code

func (*ExecutionActionInternalServerError) String

type ExecutionActionNotFound

type ExecutionActionNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionEntitiesResponse
}

ExecutionActionNotFound describes a response with status code 404, with default header values.

Not Found

func NewExecutionActionNotFound

func NewExecutionActionNotFound() *ExecutionActionNotFound

NewExecutionActionNotFound creates a ExecutionActionNotFound with default headers values

func (*ExecutionActionNotFound) Code

func (o *ExecutionActionNotFound) Code() int

Code gets the status code for the execution action not found response

func (*ExecutionActionNotFound) Error

func (o *ExecutionActionNotFound) Error() string

func (*ExecutionActionNotFound) GetPayload

func (*ExecutionActionNotFound) IsClientError

func (o *ExecutionActionNotFound) IsClientError() bool

IsClientError returns true when this execution action not found response has a 4xx status code

func (*ExecutionActionNotFound) IsCode

func (o *ExecutionActionNotFound) IsCode(code int) bool

IsCode returns true when this execution action not found response a status code equal to that given

func (*ExecutionActionNotFound) IsRedirect

func (o *ExecutionActionNotFound) IsRedirect() bool

IsRedirect returns true when this execution action not found response has a 3xx status code

func (*ExecutionActionNotFound) IsServerError

func (o *ExecutionActionNotFound) IsServerError() bool

IsServerError returns true when this execution action not found response has a 5xx status code

func (*ExecutionActionNotFound) IsSuccess

func (o *ExecutionActionNotFound) IsSuccess() bool

IsSuccess returns true when this execution action not found response has a 2xx status code

func (*ExecutionActionNotFound) String

func (o *ExecutionActionNotFound) String() string

type ExecutionActionOK

type ExecutionActionOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionEntitiesResponse
}

ExecutionActionOK describes a response with status code 200, with default header values.

OK

func NewExecutionActionOK

func NewExecutionActionOK() *ExecutionActionOK

NewExecutionActionOK creates a ExecutionActionOK with default headers values

func (*ExecutionActionOK) Code

func (o *ExecutionActionOK) Code() int

Code gets the status code for the execution action o k response

func (*ExecutionActionOK) Error

func (o *ExecutionActionOK) Error() string

func (*ExecutionActionOK) GetPayload

func (*ExecutionActionOK) IsClientError

func (o *ExecutionActionOK) IsClientError() bool

IsClientError returns true when this execution action o k response has a 4xx status code

func (*ExecutionActionOK) IsCode

func (o *ExecutionActionOK) IsCode(code int) bool

IsCode returns true when this execution action o k response a status code equal to that given

func (*ExecutionActionOK) IsRedirect

func (o *ExecutionActionOK) IsRedirect() bool

IsRedirect returns true when this execution action o k response has a 3xx status code

func (*ExecutionActionOK) IsServerError

func (o *ExecutionActionOK) IsServerError() bool

IsServerError returns true when this execution action o k response has a 5xx status code

func (*ExecutionActionOK) IsSuccess

func (o *ExecutionActionOK) IsSuccess() bool

IsSuccess returns true when this execution action o k response has a 2xx status code

func (*ExecutionActionOK) String

func (o *ExecutionActionOK) String() string

type ExecutionActionParams

type ExecutionActionParams struct {

	/* ActionName.

	     Specify one of these actions:

	- `resume`: resume/retry the workflow execution(s) specified in ids
	*/
	ActionName string

	// Body.
	Body *models.ClientActionRequest

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

ExecutionActionParams contains all the parameters to send to the API endpoint

for the execution action operation.

Typically these are written to a http.Request.

func NewExecutionActionParams

func NewExecutionActionParams() *ExecutionActionParams

NewExecutionActionParams creates a new ExecutionActionParams 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 NewExecutionActionParamsWithContext

func NewExecutionActionParamsWithContext(ctx context.Context) *ExecutionActionParams

NewExecutionActionParamsWithContext creates a new ExecutionActionParams object with the ability to set a context for a request.

func NewExecutionActionParamsWithHTTPClient

func NewExecutionActionParamsWithHTTPClient(client *http.Client) *ExecutionActionParams

NewExecutionActionParamsWithHTTPClient creates a new ExecutionActionParams object with the ability to set a custom HTTPClient for a request.

func NewExecutionActionParamsWithTimeout

func NewExecutionActionParamsWithTimeout(timeout time.Duration) *ExecutionActionParams

NewExecutionActionParamsWithTimeout creates a new ExecutionActionParams object with the ability to set a timeout on a request.

func (*ExecutionActionParams) SetActionName

func (o *ExecutionActionParams) SetActionName(actionName string)

SetActionName adds the actionName to the execution action params

func (*ExecutionActionParams) SetBody

SetBody adds the body to the execution action params

func (*ExecutionActionParams) SetContext

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

SetContext adds the context to the execution action params

func (*ExecutionActionParams) SetDefaults

func (o *ExecutionActionParams) SetDefaults()

SetDefaults hydrates default values in the execution action params (not the query body).

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

func (*ExecutionActionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the execution action params

func (*ExecutionActionParams) SetTimeout

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

SetTimeout adds the timeout to the execution action params

func (*ExecutionActionParams) WithActionName

func (o *ExecutionActionParams) WithActionName(actionName string) *ExecutionActionParams

WithActionName adds the actionName to the execution action params

func (*ExecutionActionParams) WithBody

WithBody adds the body to the execution action params

func (*ExecutionActionParams) WithContext

WithContext adds the context to the execution action params

func (*ExecutionActionParams) WithDefaults

func (o *ExecutionActionParams) WithDefaults() *ExecutionActionParams

WithDefaults hydrates default values in the execution action params (not the query body).

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

func (*ExecutionActionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the execution action params

func (*ExecutionActionParams) WithTimeout

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

WithTimeout adds the timeout to the execution action params

func (*ExecutionActionParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ExecutionActionReader

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

ExecutionActionReader is a Reader for the ExecutionAction structure.

func (*ExecutionActionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ExecutionActionTooManyRequests

type ExecutionActionTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

ExecutionActionTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewExecutionActionTooManyRequests

func NewExecutionActionTooManyRequests() *ExecutionActionTooManyRequests

NewExecutionActionTooManyRequests creates a ExecutionActionTooManyRequests with default headers values

func (*ExecutionActionTooManyRequests) Code

Code gets the status code for the execution action too many requests response

func (*ExecutionActionTooManyRequests) Error

func (*ExecutionActionTooManyRequests) GetPayload

func (*ExecutionActionTooManyRequests) IsClientError

func (o *ExecutionActionTooManyRequests) IsClientError() bool

IsClientError returns true when this execution action too many requests response has a 4xx status code

func (*ExecutionActionTooManyRequests) IsCode

func (o *ExecutionActionTooManyRequests) IsCode(code int) bool

IsCode returns true when this execution action too many requests response a status code equal to that given

func (*ExecutionActionTooManyRequests) IsRedirect

func (o *ExecutionActionTooManyRequests) IsRedirect() bool

IsRedirect returns true when this execution action too many requests response has a 3xx status code

func (*ExecutionActionTooManyRequests) IsServerError

func (o *ExecutionActionTooManyRequests) IsServerError() bool

IsServerError returns true when this execution action too many requests response has a 5xx status code

func (*ExecutionActionTooManyRequests) IsSuccess

func (o *ExecutionActionTooManyRequests) IsSuccess() bool

IsSuccess returns true when this execution action too many requests response has a 2xx status code

func (*ExecutionActionTooManyRequests) String

type ExecutionResultsBadRequest

type ExecutionResultsBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

ExecutionResultsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewExecutionResultsBadRequest

func NewExecutionResultsBadRequest() *ExecutionResultsBadRequest

NewExecutionResultsBadRequest creates a ExecutionResultsBadRequest with default headers values

func (*ExecutionResultsBadRequest) Code

func (o *ExecutionResultsBadRequest) Code() int

Code gets the status code for the execution results bad request response

func (*ExecutionResultsBadRequest) Error

func (*ExecutionResultsBadRequest) GetPayload

func (*ExecutionResultsBadRequest) IsClientError

func (o *ExecutionResultsBadRequest) IsClientError() bool

IsClientError returns true when this execution results bad request response has a 4xx status code

func (*ExecutionResultsBadRequest) IsCode

func (o *ExecutionResultsBadRequest) IsCode(code int) bool

IsCode returns true when this execution results bad request response a status code equal to that given

func (*ExecutionResultsBadRequest) IsRedirect

func (o *ExecutionResultsBadRequest) IsRedirect() bool

IsRedirect returns true when this execution results bad request response has a 3xx status code

func (*ExecutionResultsBadRequest) IsServerError

func (o *ExecutionResultsBadRequest) IsServerError() bool

IsServerError returns true when this execution results bad request response has a 5xx status code

func (*ExecutionResultsBadRequest) IsSuccess

func (o *ExecutionResultsBadRequest) IsSuccess() bool

IsSuccess returns true when this execution results bad request response has a 2xx status code

func (*ExecutionResultsBadRequest) String

func (o *ExecutionResultsBadRequest) String() string

type ExecutionResultsForbidden

type ExecutionResultsForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

ExecutionResultsForbidden describes a response with status code 403, with default header values.

Forbidden

func NewExecutionResultsForbidden

func NewExecutionResultsForbidden() *ExecutionResultsForbidden

NewExecutionResultsForbidden creates a ExecutionResultsForbidden with default headers values

func (*ExecutionResultsForbidden) Code

func (o *ExecutionResultsForbidden) Code() int

Code gets the status code for the execution results forbidden response

func (*ExecutionResultsForbidden) Error

func (o *ExecutionResultsForbidden) Error() string

func (*ExecutionResultsForbidden) GetPayload

func (*ExecutionResultsForbidden) IsClientError

func (o *ExecutionResultsForbidden) IsClientError() bool

IsClientError returns true when this execution results forbidden response has a 4xx status code

func (*ExecutionResultsForbidden) IsCode

func (o *ExecutionResultsForbidden) IsCode(code int) bool

IsCode returns true when this execution results forbidden response a status code equal to that given

func (*ExecutionResultsForbidden) IsRedirect

func (o *ExecutionResultsForbidden) IsRedirect() bool

IsRedirect returns true when this execution results forbidden response has a 3xx status code

func (*ExecutionResultsForbidden) IsServerError

func (o *ExecutionResultsForbidden) IsServerError() bool

IsServerError returns true when this execution results forbidden response has a 5xx status code

func (*ExecutionResultsForbidden) IsSuccess

func (o *ExecutionResultsForbidden) IsSuccess() bool

IsSuccess returns true when this execution results forbidden response has a 2xx status code

func (*ExecutionResultsForbidden) String

func (o *ExecutionResultsForbidden) String() string

type ExecutionResultsInternalServerError

type ExecutionResultsInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

ExecutionResultsInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewExecutionResultsInternalServerError

func NewExecutionResultsInternalServerError() *ExecutionResultsInternalServerError

NewExecutionResultsInternalServerError creates a ExecutionResultsInternalServerError with default headers values

func (*ExecutionResultsInternalServerError) Code

Code gets the status code for the execution results internal server error response

func (*ExecutionResultsInternalServerError) Error

func (*ExecutionResultsInternalServerError) GetPayload

func (*ExecutionResultsInternalServerError) IsClientError

func (o *ExecutionResultsInternalServerError) IsClientError() bool

IsClientError returns true when this execution results internal server error response has a 4xx status code

func (*ExecutionResultsInternalServerError) IsCode

IsCode returns true when this execution results internal server error response a status code equal to that given

func (*ExecutionResultsInternalServerError) IsRedirect

func (o *ExecutionResultsInternalServerError) IsRedirect() bool

IsRedirect returns true when this execution results internal server error response has a 3xx status code

func (*ExecutionResultsInternalServerError) IsServerError

func (o *ExecutionResultsInternalServerError) IsServerError() bool

IsServerError returns true when this execution results internal server error response has a 5xx status code

func (*ExecutionResultsInternalServerError) IsSuccess

IsSuccess returns true when this execution results internal server error response has a 2xx status code

func (*ExecutionResultsInternalServerError) String

type ExecutionResultsNotFound

type ExecutionResultsNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

ExecutionResultsNotFound describes a response with status code 404, with default header values.

Not Found

func NewExecutionResultsNotFound

func NewExecutionResultsNotFound() *ExecutionResultsNotFound

NewExecutionResultsNotFound creates a ExecutionResultsNotFound with default headers values

func (*ExecutionResultsNotFound) Code

func (o *ExecutionResultsNotFound) Code() int

Code gets the status code for the execution results not found response

func (*ExecutionResultsNotFound) Error

func (o *ExecutionResultsNotFound) Error() string

func (*ExecutionResultsNotFound) GetPayload

func (*ExecutionResultsNotFound) IsClientError

func (o *ExecutionResultsNotFound) IsClientError() bool

IsClientError returns true when this execution results not found response has a 4xx status code

func (*ExecutionResultsNotFound) IsCode

func (o *ExecutionResultsNotFound) IsCode(code int) bool

IsCode returns true when this execution results not found response a status code equal to that given

func (*ExecutionResultsNotFound) IsRedirect

func (o *ExecutionResultsNotFound) IsRedirect() bool

IsRedirect returns true when this execution results not found response has a 3xx status code

func (*ExecutionResultsNotFound) IsServerError

func (o *ExecutionResultsNotFound) IsServerError() bool

IsServerError returns true when this execution results not found response has a 5xx status code

func (*ExecutionResultsNotFound) IsSuccess

func (o *ExecutionResultsNotFound) IsSuccess() bool

IsSuccess returns true when this execution results not found response has a 2xx status code

func (*ExecutionResultsNotFound) String

func (o *ExecutionResultsNotFound) String() string

type ExecutionResultsOK

type ExecutionResultsOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

ExecutionResultsOK describes a response with status code 200, with default header values.

OK

func NewExecutionResultsOK

func NewExecutionResultsOK() *ExecutionResultsOK

NewExecutionResultsOK creates a ExecutionResultsOK with default headers values

func (*ExecutionResultsOK) Code

func (o *ExecutionResultsOK) Code() int

Code gets the status code for the execution results o k response

func (*ExecutionResultsOK) Error

func (o *ExecutionResultsOK) Error() string

func (*ExecutionResultsOK) GetPayload

func (*ExecutionResultsOK) IsClientError

func (o *ExecutionResultsOK) IsClientError() bool

IsClientError returns true when this execution results o k response has a 4xx status code

func (*ExecutionResultsOK) IsCode

func (o *ExecutionResultsOK) IsCode(code int) bool

IsCode returns true when this execution results o k response a status code equal to that given

func (*ExecutionResultsOK) IsRedirect

func (o *ExecutionResultsOK) IsRedirect() bool

IsRedirect returns true when this execution results o k response has a 3xx status code

func (*ExecutionResultsOK) IsServerError

func (o *ExecutionResultsOK) IsServerError() bool

IsServerError returns true when this execution results o k response has a 5xx status code

func (*ExecutionResultsOK) IsSuccess

func (o *ExecutionResultsOK) IsSuccess() bool

IsSuccess returns true when this execution results o k response has a 2xx status code

func (*ExecutionResultsOK) String

func (o *ExecutionResultsOK) String() string

type ExecutionResultsParams

type ExecutionResultsParams struct {

	/* Ids.

	   workflow execution id to return results for.
	*/
	Ids []string

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

ExecutionResultsParams contains all the parameters to send to the API endpoint

for the execution results operation.

Typically these are written to a http.Request.

func NewExecutionResultsParams

func NewExecutionResultsParams() *ExecutionResultsParams

NewExecutionResultsParams creates a new ExecutionResultsParams 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 NewExecutionResultsParamsWithContext

func NewExecutionResultsParamsWithContext(ctx context.Context) *ExecutionResultsParams

NewExecutionResultsParamsWithContext creates a new ExecutionResultsParams object with the ability to set a context for a request.

func NewExecutionResultsParamsWithHTTPClient

func NewExecutionResultsParamsWithHTTPClient(client *http.Client) *ExecutionResultsParams

NewExecutionResultsParamsWithHTTPClient creates a new ExecutionResultsParams object with the ability to set a custom HTTPClient for a request.

func NewExecutionResultsParamsWithTimeout

func NewExecutionResultsParamsWithTimeout(timeout time.Duration) *ExecutionResultsParams

NewExecutionResultsParamsWithTimeout creates a new ExecutionResultsParams object with the ability to set a timeout on a request.

func (*ExecutionResultsParams) SetContext

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

SetContext adds the context to the execution results params

func (*ExecutionResultsParams) SetDefaults

func (o *ExecutionResultsParams) SetDefaults()

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

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

func (*ExecutionResultsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the execution results params

func (*ExecutionResultsParams) SetIds

func (o *ExecutionResultsParams) SetIds(ids []string)

SetIds adds the ids to the execution results params

func (*ExecutionResultsParams) SetTimeout

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

SetTimeout adds the timeout to the execution results params

func (*ExecutionResultsParams) WithContext

WithContext adds the context to the execution results params

func (*ExecutionResultsParams) WithDefaults

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

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

func (*ExecutionResultsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the execution results params

func (*ExecutionResultsParams) WithIds

WithIds adds the ids to the execution results params

func (*ExecutionResultsParams) WithTimeout

WithTimeout adds the timeout to the execution results params

func (*ExecutionResultsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ExecutionResultsReader

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

ExecutionResultsReader is a Reader for the ExecutionResults structure.

func (*ExecutionResultsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ExecutionResultsTooManyRequests

type ExecutionResultsTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

ExecutionResultsTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewExecutionResultsTooManyRequests

func NewExecutionResultsTooManyRequests() *ExecutionResultsTooManyRequests

NewExecutionResultsTooManyRequests creates a ExecutionResultsTooManyRequests with default headers values

func (*ExecutionResultsTooManyRequests) Code

Code gets the status code for the execution results too many requests response

func (*ExecutionResultsTooManyRequests) Error

func (*ExecutionResultsTooManyRequests) GetPayload

func (*ExecutionResultsTooManyRequests) IsClientError

func (o *ExecutionResultsTooManyRequests) IsClientError() bool

IsClientError returns true when this execution results too many requests response has a 4xx status code

func (*ExecutionResultsTooManyRequests) IsCode

func (o *ExecutionResultsTooManyRequests) IsCode(code int) bool

IsCode returns true when this execution results too many requests response a status code equal to that given

func (*ExecutionResultsTooManyRequests) IsRedirect

func (o *ExecutionResultsTooManyRequests) IsRedirect() bool

IsRedirect returns true when this execution results too many requests response has a 3xx status code

func (*ExecutionResultsTooManyRequests) IsServerError

func (o *ExecutionResultsTooManyRequests) IsServerError() bool

IsServerError returns true when this execution results too many requests response has a 5xx status code

func (*ExecutionResultsTooManyRequests) IsSuccess

func (o *ExecutionResultsTooManyRequests) IsSuccess() bool

IsSuccess returns true when this execution results too many requests response has a 2xx status code

func (*ExecutionResultsTooManyRequests) String

type PromoteBadRequest

type PromoteBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

PromoteBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewPromoteBadRequest

func NewPromoteBadRequest() *PromoteBadRequest

NewPromoteBadRequest creates a PromoteBadRequest with default headers values

func (*PromoteBadRequest) Code

func (o *PromoteBadRequest) Code() int

Code gets the status code for the promote bad request response

func (*PromoteBadRequest) Error

func (o *PromoteBadRequest) Error() string

func (*PromoteBadRequest) GetPayload

func (*PromoteBadRequest) IsClientError

func (o *PromoteBadRequest) IsClientError() bool

IsClientError returns true when this promote bad request response has a 4xx status code

func (*PromoteBadRequest) IsCode

func (o *PromoteBadRequest) IsCode(code int) bool

IsCode returns true when this promote bad request response a status code equal to that given

func (*PromoteBadRequest) IsRedirect

func (o *PromoteBadRequest) IsRedirect() bool

IsRedirect returns true when this promote bad request response has a 3xx status code

func (*PromoteBadRequest) IsServerError

func (o *PromoteBadRequest) IsServerError() bool

IsServerError returns true when this promote bad request response has a 5xx status code

func (*PromoteBadRequest) IsSuccess

func (o *PromoteBadRequest) IsSuccess() bool

IsSuccess returns true when this promote bad request response has a 2xx status code

func (*PromoteBadRequest) String

func (o *PromoteBadRequest) String() string

type PromoteForbidden

type PromoteForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

PromoteForbidden describes a response with status code 403, with default header values.

Forbidden

func NewPromoteForbidden

func NewPromoteForbidden() *PromoteForbidden

NewPromoteForbidden creates a PromoteForbidden with default headers values

func (*PromoteForbidden) Code

func (o *PromoteForbidden) Code() int

Code gets the status code for the promote forbidden response

func (*PromoteForbidden) Error

func (o *PromoteForbidden) Error() string

func (*PromoteForbidden) GetPayload

func (o *PromoteForbidden) GetPayload() *models.MsaReplyMetaOnly

func (*PromoteForbidden) IsClientError

func (o *PromoteForbidden) IsClientError() bool

IsClientError returns true when this promote forbidden response has a 4xx status code

func (*PromoteForbidden) IsCode

func (o *PromoteForbidden) IsCode(code int) bool

IsCode returns true when this promote forbidden response a status code equal to that given

func (*PromoteForbidden) IsRedirect

func (o *PromoteForbidden) IsRedirect() bool

IsRedirect returns true when this promote forbidden response has a 3xx status code

func (*PromoteForbidden) IsServerError

func (o *PromoteForbidden) IsServerError() bool

IsServerError returns true when this promote forbidden response has a 5xx status code

func (*PromoteForbidden) IsSuccess

func (o *PromoteForbidden) IsSuccess() bool

IsSuccess returns true when this promote forbidden response has a 2xx status code

func (*PromoteForbidden) String

func (o *PromoteForbidden) String() string

type PromoteInternalServerError

type PromoteInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

PromoteInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewPromoteInternalServerError

func NewPromoteInternalServerError() *PromoteInternalServerError

NewPromoteInternalServerError creates a PromoteInternalServerError with default headers values

func (*PromoteInternalServerError) Code

func (o *PromoteInternalServerError) Code() int

Code gets the status code for the promote internal server error response

func (*PromoteInternalServerError) Error

func (*PromoteInternalServerError) GetPayload

func (*PromoteInternalServerError) IsClientError

func (o *PromoteInternalServerError) IsClientError() bool

IsClientError returns true when this promote internal server error response has a 4xx status code

func (*PromoteInternalServerError) IsCode

func (o *PromoteInternalServerError) IsCode(code int) bool

IsCode returns true when this promote internal server error response a status code equal to that given

func (*PromoteInternalServerError) IsRedirect

func (o *PromoteInternalServerError) IsRedirect() bool

IsRedirect returns true when this promote internal server error response has a 3xx status code

func (*PromoteInternalServerError) IsServerError

func (o *PromoteInternalServerError) IsServerError() bool

IsServerError returns true when this promote internal server error response has a 5xx status code

func (*PromoteInternalServerError) IsSuccess

func (o *PromoteInternalServerError) IsSuccess() bool

IsSuccess returns true when this promote internal server error response has a 2xx status code

func (*PromoteInternalServerError) String

func (o *PromoteInternalServerError) String() string

type PromoteNotFound

type PromoteNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

PromoteNotFound describes a response with status code 404, with default header values.

Not Found

func NewPromoteNotFound

func NewPromoteNotFound() *PromoteNotFound

NewPromoteNotFound creates a PromoteNotFound with default headers values

func (*PromoteNotFound) Code

func (o *PromoteNotFound) Code() int

Code gets the status code for the promote not found response

func (*PromoteNotFound) Error

func (o *PromoteNotFound) Error() string

func (*PromoteNotFound) GetPayload

func (*PromoteNotFound) IsClientError

func (o *PromoteNotFound) IsClientError() bool

IsClientError returns true when this promote not found response has a 4xx status code

func (*PromoteNotFound) IsCode

func (o *PromoteNotFound) IsCode(code int) bool

IsCode returns true when this promote not found response a status code equal to that given

func (*PromoteNotFound) IsRedirect

func (o *PromoteNotFound) IsRedirect() bool

IsRedirect returns true when this promote not found response has a 3xx status code

func (*PromoteNotFound) IsServerError

func (o *PromoteNotFound) IsServerError() bool

IsServerError returns true when this promote not found response has a 5xx status code

func (*PromoteNotFound) IsSuccess

func (o *PromoteNotFound) IsSuccess() bool

IsSuccess returns true when this promote not found response has a 2xx status code

func (*PromoteNotFound) String

func (o *PromoteNotFound) String() string

type PromoteOK

type PromoteOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

PromoteOK describes a response with status code 200, with default header values.

OK

func NewPromoteOK

func NewPromoteOK() *PromoteOK

NewPromoteOK creates a PromoteOK with default headers values

func (*PromoteOK) Code

func (o *PromoteOK) Code() int

Code gets the status code for the promote o k response

func (*PromoteOK) Error

func (o *PromoteOK) Error() string

func (*PromoteOK) GetPayload

func (*PromoteOK) IsClientError

func (o *PromoteOK) IsClientError() bool

IsClientError returns true when this promote o k response has a 4xx status code

func (*PromoteOK) IsCode

func (o *PromoteOK) IsCode(code int) bool

IsCode returns true when this promote o k response a status code equal to that given

func (*PromoteOK) IsRedirect

func (o *PromoteOK) IsRedirect() bool

IsRedirect returns true when this promote o k response has a 3xx status code

func (*PromoteOK) IsServerError

func (o *PromoteOK) IsServerError() bool

IsServerError returns true when this promote o k response has a 5xx status code

func (*PromoteOK) IsSuccess

func (o *PromoteOK) IsSuccess() bool

IsSuccess returns true when this promote o k response has a 2xx status code

func (*PromoteOK) String

func (o *PromoteOK) String() string

type PromoteParams

type PromoteParams struct {

	// Body.
	Body *models.ClientSystemDefinitionPromoteRequest

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

PromoteParams contains all the parameters to send to the API endpoint

for the promote operation.

Typically these are written to a http.Request.

func NewPromoteParams

func NewPromoteParams() *PromoteParams

NewPromoteParams creates a new PromoteParams 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 NewPromoteParamsWithContext

func NewPromoteParamsWithContext(ctx context.Context) *PromoteParams

NewPromoteParamsWithContext creates a new PromoteParams object with the ability to set a context for a request.

func NewPromoteParamsWithHTTPClient

func NewPromoteParamsWithHTTPClient(client *http.Client) *PromoteParams

NewPromoteParamsWithHTTPClient creates a new PromoteParams object with the ability to set a custom HTTPClient for a request.

func NewPromoteParamsWithTimeout

func NewPromoteParamsWithTimeout(timeout time.Duration) *PromoteParams

NewPromoteParamsWithTimeout creates a new PromoteParams object with the ability to set a timeout on a request.

func (*PromoteParams) SetBody

SetBody adds the body to the promote params

func (*PromoteParams) SetContext

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

SetContext adds the context to the promote params

func (*PromoteParams) SetDefaults

func (o *PromoteParams) SetDefaults()

SetDefaults hydrates default values in the promote params (not the query body).

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

func (*PromoteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the promote params

func (*PromoteParams) SetTimeout

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

SetTimeout adds the timeout to the promote params

func (*PromoteParams) WithBody

WithBody adds the body to the promote params

func (*PromoteParams) WithContext

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

WithContext adds the context to the promote params

func (*PromoteParams) WithDefaults

func (o *PromoteParams) WithDefaults() *PromoteParams

WithDefaults hydrates default values in the promote params (not the query body).

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

func (*PromoteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the promote params

func (*PromoteParams) WithTimeout

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

WithTimeout adds the timeout to the promote params

func (*PromoteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PromoteReader

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

PromoteReader is a Reader for the Promote structure.

func (*PromoteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PromoteTooManyRequests

type PromoteTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

PromoteTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewPromoteTooManyRequests

func NewPromoteTooManyRequests() *PromoteTooManyRequests

NewPromoteTooManyRequests creates a PromoteTooManyRequests with default headers values

func (*PromoteTooManyRequests) Code

func (o *PromoteTooManyRequests) Code() int

Code gets the status code for the promote too many requests response

func (*PromoteTooManyRequests) Error

func (o *PromoteTooManyRequests) Error() string

func (*PromoteTooManyRequests) GetPayload

func (*PromoteTooManyRequests) IsClientError

func (o *PromoteTooManyRequests) IsClientError() bool

IsClientError returns true when this promote too many requests response has a 4xx status code

func (*PromoteTooManyRequests) IsCode

func (o *PromoteTooManyRequests) IsCode(code int) bool

IsCode returns true when this promote too many requests response a status code equal to that given

func (*PromoteTooManyRequests) IsRedirect

func (o *PromoteTooManyRequests) IsRedirect() bool

IsRedirect returns true when this promote too many requests response has a 3xx status code

func (*PromoteTooManyRequests) IsServerError

func (o *PromoteTooManyRequests) IsServerError() bool

IsServerError returns true when this promote too many requests response has a 5xx status code

func (*PromoteTooManyRequests) IsSuccess

func (o *PromoteTooManyRequests) IsSuccess() bool

IsSuccess returns true when this promote too many requests response has a 2xx status code

func (*PromoteTooManyRequests) String

func (o *PromoteTooManyRequests) String() string

type ProvisionBadRequest

type ProvisionBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

ProvisionBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewProvisionBadRequest

func NewProvisionBadRequest() *ProvisionBadRequest

NewProvisionBadRequest creates a ProvisionBadRequest with default headers values

func (*ProvisionBadRequest) Code

func (o *ProvisionBadRequest) Code() int

Code gets the status code for the provision bad request response

func (*ProvisionBadRequest) Error

func (o *ProvisionBadRequest) Error() string

func (*ProvisionBadRequest) GetPayload

func (*ProvisionBadRequest) IsClientError

func (o *ProvisionBadRequest) IsClientError() bool

IsClientError returns true when this provision bad request response has a 4xx status code

func (*ProvisionBadRequest) IsCode

func (o *ProvisionBadRequest) IsCode(code int) bool

IsCode returns true when this provision bad request response a status code equal to that given

func (*ProvisionBadRequest) IsRedirect

func (o *ProvisionBadRequest) IsRedirect() bool

IsRedirect returns true when this provision bad request response has a 3xx status code

func (*ProvisionBadRequest) IsServerError

func (o *ProvisionBadRequest) IsServerError() bool

IsServerError returns true when this provision bad request response has a 5xx status code

func (*ProvisionBadRequest) IsSuccess

func (o *ProvisionBadRequest) IsSuccess() bool

IsSuccess returns true when this provision bad request response has a 2xx status code

func (*ProvisionBadRequest) String

func (o *ProvisionBadRequest) String() string

type ProvisionForbidden

type ProvisionForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

ProvisionForbidden describes a response with status code 403, with default header values.

Forbidden

func NewProvisionForbidden

func NewProvisionForbidden() *ProvisionForbidden

NewProvisionForbidden creates a ProvisionForbidden with default headers values

func (*ProvisionForbidden) Code

func (o *ProvisionForbidden) Code() int

Code gets the status code for the provision forbidden response

func (*ProvisionForbidden) Error

func (o *ProvisionForbidden) Error() string

func (*ProvisionForbidden) GetPayload

func (o *ProvisionForbidden) GetPayload() *models.MsaReplyMetaOnly

func (*ProvisionForbidden) IsClientError

func (o *ProvisionForbidden) IsClientError() bool

IsClientError returns true when this provision forbidden response has a 4xx status code

func (*ProvisionForbidden) IsCode

func (o *ProvisionForbidden) IsCode(code int) bool

IsCode returns true when this provision forbidden response a status code equal to that given

func (*ProvisionForbidden) IsRedirect

func (o *ProvisionForbidden) IsRedirect() bool

IsRedirect returns true when this provision forbidden response has a 3xx status code

func (*ProvisionForbidden) IsServerError

func (o *ProvisionForbidden) IsServerError() bool

IsServerError returns true when this provision forbidden response has a 5xx status code

func (*ProvisionForbidden) IsSuccess

func (o *ProvisionForbidden) IsSuccess() bool

IsSuccess returns true when this provision forbidden response has a 2xx status code

func (*ProvisionForbidden) String

func (o *ProvisionForbidden) String() string

type ProvisionInternalServerError

type ProvisionInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

ProvisionInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewProvisionInternalServerError

func NewProvisionInternalServerError() *ProvisionInternalServerError

NewProvisionInternalServerError creates a ProvisionInternalServerError with default headers values

func (*ProvisionInternalServerError) Code

Code gets the status code for the provision internal server error response

func (*ProvisionInternalServerError) Error

func (*ProvisionInternalServerError) GetPayload

func (*ProvisionInternalServerError) IsClientError

func (o *ProvisionInternalServerError) IsClientError() bool

IsClientError returns true when this provision internal server error response has a 4xx status code

func (*ProvisionInternalServerError) IsCode

func (o *ProvisionInternalServerError) IsCode(code int) bool

IsCode returns true when this provision internal server error response a status code equal to that given

func (*ProvisionInternalServerError) IsRedirect

func (o *ProvisionInternalServerError) IsRedirect() bool

IsRedirect returns true when this provision internal server error response has a 3xx status code

func (*ProvisionInternalServerError) IsServerError

func (o *ProvisionInternalServerError) IsServerError() bool

IsServerError returns true when this provision internal server error response has a 5xx status code

func (*ProvisionInternalServerError) IsSuccess

func (o *ProvisionInternalServerError) IsSuccess() bool

IsSuccess returns true when this provision internal server error response has a 2xx status code

func (*ProvisionInternalServerError) String

type ProvisionNotFound

type ProvisionNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

ProvisionNotFound describes a response with status code 404, with default header values.

Not Found

func NewProvisionNotFound

func NewProvisionNotFound() *ProvisionNotFound

NewProvisionNotFound creates a ProvisionNotFound with default headers values

func (*ProvisionNotFound) Code

func (o *ProvisionNotFound) Code() int

Code gets the status code for the provision not found response

func (*ProvisionNotFound) Error

func (o *ProvisionNotFound) Error() string

func (*ProvisionNotFound) GetPayload

func (*ProvisionNotFound) IsClientError

func (o *ProvisionNotFound) IsClientError() bool

IsClientError returns true when this provision not found response has a 4xx status code

func (*ProvisionNotFound) IsCode

func (o *ProvisionNotFound) IsCode(code int) bool

IsCode returns true when this provision not found response a status code equal to that given

func (*ProvisionNotFound) IsRedirect

func (o *ProvisionNotFound) IsRedirect() bool

IsRedirect returns true when this provision not found response has a 3xx status code

func (*ProvisionNotFound) IsServerError

func (o *ProvisionNotFound) IsServerError() bool

IsServerError returns true when this provision not found response has a 5xx status code

func (*ProvisionNotFound) IsSuccess

func (o *ProvisionNotFound) IsSuccess() bool

IsSuccess returns true when this provision not found response has a 2xx status code

func (*ProvisionNotFound) String

func (o *ProvisionNotFound) String() string

type ProvisionOK

type ProvisionOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ClientSystemDefinitionCreateResponse
}

ProvisionOK describes a response with status code 200, with default header values.

OK

func NewProvisionOK

func NewProvisionOK() *ProvisionOK

NewProvisionOK creates a ProvisionOK with default headers values

func (*ProvisionOK) Code

func (o *ProvisionOK) Code() int

Code gets the status code for the provision o k response

func (*ProvisionOK) Error

func (o *ProvisionOK) Error() string

func (*ProvisionOK) GetPayload

func (*ProvisionOK) IsClientError

func (o *ProvisionOK) IsClientError() bool

IsClientError returns true when this provision o k response has a 4xx status code

func (*ProvisionOK) IsCode

func (o *ProvisionOK) IsCode(code int) bool

IsCode returns true when this provision o k response a status code equal to that given

func (*ProvisionOK) IsRedirect

func (o *ProvisionOK) IsRedirect() bool

IsRedirect returns true when this provision o k response has a 3xx status code

func (*ProvisionOK) IsServerError

func (o *ProvisionOK) IsServerError() bool

IsServerError returns true when this provision o k response has a 5xx status code

func (*ProvisionOK) IsSuccess

func (o *ProvisionOK) IsSuccess() bool

IsSuccess returns true when this provision o k response has a 2xx status code

func (*ProvisionOK) String

func (o *ProvisionOK) String() string

type ProvisionParams

type ProvisionParams struct {

	// Body.
	Body *models.ClientSystemDefinitionProvisionRequest

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

ProvisionParams contains all the parameters to send to the API endpoint

for the provision operation.

Typically these are written to a http.Request.

func NewProvisionParams

func NewProvisionParams() *ProvisionParams

NewProvisionParams creates a new ProvisionParams 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 NewProvisionParamsWithContext

func NewProvisionParamsWithContext(ctx context.Context) *ProvisionParams

NewProvisionParamsWithContext creates a new ProvisionParams object with the ability to set a context for a request.

func NewProvisionParamsWithHTTPClient

func NewProvisionParamsWithHTTPClient(client *http.Client) *ProvisionParams

NewProvisionParamsWithHTTPClient creates a new ProvisionParams object with the ability to set a custom HTTPClient for a request.

func NewProvisionParamsWithTimeout

func NewProvisionParamsWithTimeout(timeout time.Duration) *ProvisionParams

NewProvisionParamsWithTimeout creates a new ProvisionParams object with the ability to set a timeout on a request.

func (*ProvisionParams) SetBody

SetBody adds the body to the provision params

func (*ProvisionParams) SetContext

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

SetContext adds the context to the provision params

func (*ProvisionParams) SetDefaults

func (o *ProvisionParams) SetDefaults()

SetDefaults hydrates default values in the provision params (not the query body).

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

func (*ProvisionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the provision params

func (*ProvisionParams) SetTimeout

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

SetTimeout adds the timeout to the provision params

func (*ProvisionParams) WithBody

WithBody adds the body to the provision params

func (*ProvisionParams) WithContext

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

WithContext adds the context to the provision params

func (*ProvisionParams) WithDefaults

func (o *ProvisionParams) WithDefaults() *ProvisionParams

WithDefaults hydrates default values in the provision params (not the query body).

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

func (*ProvisionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the provision params

func (*ProvisionParams) WithTimeout

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

WithTimeout adds the timeout to the provision params

func (*ProvisionParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ProvisionReader

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

ProvisionReader is a Reader for the Provision structure.

func (*ProvisionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ProvisionTooManyRequests

type ProvisionTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

ProvisionTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewProvisionTooManyRequests

func NewProvisionTooManyRequests() *ProvisionTooManyRequests

NewProvisionTooManyRequests creates a ProvisionTooManyRequests with default headers values

func (*ProvisionTooManyRequests) Code

func (o *ProvisionTooManyRequests) Code() int

Code gets the status code for the provision too many requests response

func (*ProvisionTooManyRequests) Error

func (o *ProvisionTooManyRequests) Error() string

func (*ProvisionTooManyRequests) GetPayload

func (*ProvisionTooManyRequests) IsClientError

func (o *ProvisionTooManyRequests) IsClientError() bool

IsClientError returns true when this provision too many requests response has a 4xx status code

func (*ProvisionTooManyRequests) IsCode

func (o *ProvisionTooManyRequests) IsCode(code int) bool

IsCode returns true when this provision too many requests response a status code equal to that given

func (*ProvisionTooManyRequests) IsRedirect

func (o *ProvisionTooManyRequests) IsRedirect() bool

IsRedirect returns true when this provision too many requests response has a 3xx status code

func (*ProvisionTooManyRequests) IsServerError

func (o *ProvisionTooManyRequests) IsServerError() bool

IsServerError returns true when this provision too many requests response has a 5xx status code

func (*ProvisionTooManyRequests) IsSuccess

func (o *ProvisionTooManyRequests) IsSuccess() bool

IsSuccess returns true when this provision too many requests response has a 2xx status code

func (*ProvisionTooManyRequests) String

func (o *ProvisionTooManyRequests) String() string

type WorkflowDefinitionsCombinedBadRequest added in v0.6.0

type WorkflowDefinitionsCombinedBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionExternalResponse
}

WorkflowDefinitionsCombinedBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowDefinitionsCombinedBadRequest added in v0.6.0

func NewWorkflowDefinitionsCombinedBadRequest() *WorkflowDefinitionsCombinedBadRequest

NewWorkflowDefinitionsCombinedBadRequest creates a WorkflowDefinitionsCombinedBadRequest with default headers values

func (*WorkflowDefinitionsCombinedBadRequest) Code added in v0.6.0

Code gets the status code for the workflow definitions combined bad request response

func (*WorkflowDefinitionsCombinedBadRequest) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedBadRequest) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedBadRequest) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCombinedBadRequest) IsClientError() bool

IsClientError returns true when this workflow definitions combined bad request response has a 4xx status code

func (*WorkflowDefinitionsCombinedBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow definitions combined bad request response a status code equal to that given

func (*WorkflowDefinitionsCombinedBadRequest) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions combined bad request response has a 3xx status code

func (*WorkflowDefinitionsCombinedBadRequest) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCombinedBadRequest) IsServerError() bool

IsServerError returns true when this workflow definitions combined bad request response has a 5xx status code

func (*WorkflowDefinitionsCombinedBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions combined bad request response has a 2xx status code

func (*WorkflowDefinitionsCombinedBadRequest) String added in v0.6.0

type WorkflowDefinitionsCombinedForbidden added in v0.6.0

type WorkflowDefinitionsCombinedForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsCombinedForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowDefinitionsCombinedForbidden added in v0.6.0

func NewWorkflowDefinitionsCombinedForbidden() *WorkflowDefinitionsCombinedForbidden

NewWorkflowDefinitionsCombinedForbidden creates a WorkflowDefinitionsCombinedForbidden with default headers values

func (*WorkflowDefinitionsCombinedForbidden) Code added in v0.6.0

Code gets the status code for the workflow definitions combined forbidden response

func (*WorkflowDefinitionsCombinedForbidden) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedForbidden) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedForbidden) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCombinedForbidden) IsClientError() bool

IsClientError returns true when this workflow definitions combined forbidden response has a 4xx status code

func (*WorkflowDefinitionsCombinedForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow definitions combined forbidden response a status code equal to that given

func (*WorkflowDefinitionsCombinedForbidden) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions combined forbidden response has a 3xx status code

func (*WorkflowDefinitionsCombinedForbidden) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCombinedForbidden) IsServerError() bool

IsServerError returns true when this workflow definitions combined forbidden response has a 5xx status code

func (*WorkflowDefinitionsCombinedForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions combined forbidden response has a 2xx status code

func (*WorkflowDefinitionsCombinedForbidden) String added in v0.6.0

type WorkflowDefinitionsCombinedInternalServerError added in v0.6.0

type WorkflowDefinitionsCombinedInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionExternalResponse
}

WorkflowDefinitionsCombinedInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowDefinitionsCombinedInternalServerError added in v0.6.0

func NewWorkflowDefinitionsCombinedInternalServerError() *WorkflowDefinitionsCombinedInternalServerError

NewWorkflowDefinitionsCombinedInternalServerError creates a WorkflowDefinitionsCombinedInternalServerError with default headers values

func (*WorkflowDefinitionsCombinedInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow definitions combined internal server error response

func (*WorkflowDefinitionsCombinedInternalServerError) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedInternalServerError) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions combined internal server error response has a 4xx status code

func (*WorkflowDefinitionsCombinedInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow definitions combined internal server error response a status code equal to that given

func (*WorkflowDefinitionsCombinedInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions combined internal server error response has a 3xx status code

func (*WorkflowDefinitionsCombinedInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions combined internal server error response has a 5xx status code

func (*WorkflowDefinitionsCombinedInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions combined internal server error response has a 2xx status code

func (*WorkflowDefinitionsCombinedInternalServerError) String added in v0.6.0

type WorkflowDefinitionsCombinedNotFound added in v0.6.0

type WorkflowDefinitionsCombinedNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionExternalResponse
}

WorkflowDefinitionsCombinedNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowDefinitionsCombinedNotFound added in v0.6.0

func NewWorkflowDefinitionsCombinedNotFound() *WorkflowDefinitionsCombinedNotFound

NewWorkflowDefinitionsCombinedNotFound creates a WorkflowDefinitionsCombinedNotFound with default headers values

func (*WorkflowDefinitionsCombinedNotFound) Code added in v0.6.0

Code gets the status code for the workflow definitions combined not found response

func (*WorkflowDefinitionsCombinedNotFound) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedNotFound) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedNotFound) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCombinedNotFound) IsClientError() bool

IsClientError returns true when this workflow definitions combined not found response has a 4xx status code

func (*WorkflowDefinitionsCombinedNotFound) IsCode added in v0.6.0

IsCode returns true when this workflow definitions combined not found response a status code equal to that given

func (*WorkflowDefinitionsCombinedNotFound) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCombinedNotFound) IsRedirect() bool

IsRedirect returns true when this workflow definitions combined not found response has a 3xx status code

func (*WorkflowDefinitionsCombinedNotFound) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCombinedNotFound) IsServerError() bool

IsServerError returns true when this workflow definitions combined not found response has a 5xx status code

func (*WorkflowDefinitionsCombinedNotFound) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions combined not found response has a 2xx status code

func (*WorkflowDefinitionsCombinedNotFound) String added in v0.6.0

type WorkflowDefinitionsCombinedOK added in v0.6.0

type WorkflowDefinitionsCombinedOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionExternalResponse
}

WorkflowDefinitionsCombinedOK describes a response with status code 200, with default header values.

OK

func NewWorkflowDefinitionsCombinedOK added in v0.6.0

func NewWorkflowDefinitionsCombinedOK() *WorkflowDefinitionsCombinedOK

NewWorkflowDefinitionsCombinedOK creates a WorkflowDefinitionsCombinedOK with default headers values

func (*WorkflowDefinitionsCombinedOK) Code added in v0.6.0

Code gets the status code for the workflow definitions combined o k response

func (*WorkflowDefinitionsCombinedOK) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedOK) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedOK) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCombinedOK) IsClientError() bool

IsClientError returns true when this workflow definitions combined o k response has a 4xx status code

func (*WorkflowDefinitionsCombinedOK) IsCode added in v0.6.0

func (o *WorkflowDefinitionsCombinedOK) IsCode(code int) bool

IsCode returns true when this workflow definitions combined o k response a status code equal to that given

func (*WorkflowDefinitionsCombinedOK) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCombinedOK) IsRedirect() bool

IsRedirect returns true when this workflow definitions combined o k response has a 3xx status code

func (*WorkflowDefinitionsCombinedOK) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCombinedOK) IsServerError() bool

IsServerError returns true when this workflow definitions combined o k response has a 5xx status code

func (*WorkflowDefinitionsCombinedOK) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsCombinedOK) IsSuccess() bool

IsSuccess returns true when this workflow definitions combined o k response has a 2xx status code

func (*WorkflowDefinitionsCombinedOK) String added in v0.6.0

type WorkflowDefinitionsCombinedParams added in v0.6.0

type WorkflowDefinitionsCombinedParams struct {

	/* Filter.

	   FQL query specifying filter parameters.
	*/
	Filter string

	/* Limit.

	   Maximum number of records to return.
	*/
	Limit *int64

	/* Offset.

	   Starting pagination offset of records to return.
	*/
	Offset *string

	/* Sort.

	   Sort items by providing a comma separated list of property and direction (eg name.desc,time.asc). If direction is omitted, defaults to descending.
	*/
	Sort *string

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

WorkflowDefinitionsCombinedParams contains all the parameters to send to the API endpoint

for the workflow definitions combined operation.

Typically these are written to a http.Request.

func NewWorkflowDefinitionsCombinedParams added in v0.6.0

func NewWorkflowDefinitionsCombinedParams() *WorkflowDefinitionsCombinedParams

NewWorkflowDefinitionsCombinedParams creates a new WorkflowDefinitionsCombinedParams 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 NewWorkflowDefinitionsCombinedParamsWithContext added in v0.6.0

func NewWorkflowDefinitionsCombinedParamsWithContext(ctx context.Context) *WorkflowDefinitionsCombinedParams

NewWorkflowDefinitionsCombinedParamsWithContext creates a new WorkflowDefinitionsCombinedParams object with the ability to set a context for a request.

func NewWorkflowDefinitionsCombinedParamsWithHTTPClient added in v0.6.0

func NewWorkflowDefinitionsCombinedParamsWithHTTPClient(client *http.Client) *WorkflowDefinitionsCombinedParams

NewWorkflowDefinitionsCombinedParamsWithHTTPClient creates a new WorkflowDefinitionsCombinedParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowDefinitionsCombinedParamsWithTimeout added in v0.6.0

func NewWorkflowDefinitionsCombinedParamsWithTimeout(timeout time.Duration) *WorkflowDefinitionsCombinedParams

NewWorkflowDefinitionsCombinedParamsWithTimeout creates a new WorkflowDefinitionsCombinedParams object with the ability to set a timeout on a request.

func (*WorkflowDefinitionsCombinedParams) SetContext added in v0.6.0

SetContext adds the context to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetDefaults added in v0.6.0

func (o *WorkflowDefinitionsCombinedParams) SetDefaults()

SetDefaults hydrates default values in the workflow definitions combined params (not the query body).

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

func (*WorkflowDefinitionsCombinedParams) SetFilter added in v0.6.0

func (o *WorkflowDefinitionsCombinedParams) SetFilter(filter string)

SetFilter adds the filter to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetLimit added in v0.6.0

func (o *WorkflowDefinitionsCombinedParams) SetLimit(limit *int64)

SetLimit adds the limit to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetOffset added in v0.6.0

func (o *WorkflowDefinitionsCombinedParams) SetOffset(offset *string)

SetOffset adds the offset to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetSort added in v0.6.0

func (o *WorkflowDefinitionsCombinedParams) SetSort(sort *string)

SetSort adds the sort to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithContext added in v0.6.0

WithContext adds the context to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow definitions combined params (not the query body).

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

func (*WorkflowDefinitionsCombinedParams) WithFilter added in v0.6.0

WithFilter adds the filter to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithLimit added in v0.6.0

WithLimit adds the limit to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithOffset added in v0.6.0

WithOffset adds the offset to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithSort added in v0.6.0

WithSort adds the sort to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow definitions combined params

func (*WorkflowDefinitionsCombinedParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowDefinitionsCombinedReader added in v0.6.0

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

WorkflowDefinitionsCombinedReader is a Reader for the WorkflowDefinitionsCombined structure.

func (*WorkflowDefinitionsCombinedReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowDefinitionsCombinedTooManyRequests added in v0.6.0

type WorkflowDefinitionsCombinedTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsCombinedTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowDefinitionsCombinedTooManyRequests added in v0.6.0

func NewWorkflowDefinitionsCombinedTooManyRequests() *WorkflowDefinitionsCombinedTooManyRequests

NewWorkflowDefinitionsCombinedTooManyRequests creates a WorkflowDefinitionsCombinedTooManyRequests with default headers values

func (*WorkflowDefinitionsCombinedTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow definitions combined too many requests response

func (*WorkflowDefinitionsCombinedTooManyRequests) Error added in v0.6.0

func (*WorkflowDefinitionsCombinedTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCombinedTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions combined too many requests response has a 4xx status code

func (*WorkflowDefinitionsCombinedTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow definitions combined too many requests response a status code equal to that given

func (*WorkflowDefinitionsCombinedTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions combined too many requests response has a 3xx status code

func (*WorkflowDefinitionsCombinedTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions combined too many requests response has a 5xx status code

func (*WorkflowDefinitionsCombinedTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions combined too many requests response has a 2xx status code

func (*WorkflowDefinitionsCombinedTooManyRequests) String added in v0.6.0

type WorkflowDefinitionsCreateBadRequest added in v0.6.0

type WorkflowDefinitionsCreateBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsCreateBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowDefinitionsCreateBadRequest added in v0.6.0

func NewWorkflowDefinitionsCreateBadRequest() *WorkflowDefinitionsCreateBadRequest

NewWorkflowDefinitionsCreateBadRequest creates a WorkflowDefinitionsCreateBadRequest with default headers values

func (*WorkflowDefinitionsCreateBadRequest) Code added in v0.6.0

Code gets the status code for the workflow definitions create bad request response

func (*WorkflowDefinitionsCreateBadRequest) Error added in v0.6.0

func (*WorkflowDefinitionsCreateBadRequest) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateBadRequest) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCreateBadRequest) IsClientError() bool

IsClientError returns true when this workflow definitions create bad request response has a 4xx status code

func (*WorkflowDefinitionsCreateBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow definitions create bad request response a status code equal to that given

func (*WorkflowDefinitionsCreateBadRequest) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCreateBadRequest) IsRedirect() bool

IsRedirect returns true when this workflow definitions create bad request response has a 3xx status code

func (*WorkflowDefinitionsCreateBadRequest) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCreateBadRequest) IsServerError() bool

IsServerError returns true when this workflow definitions create bad request response has a 5xx status code

func (*WorkflowDefinitionsCreateBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions create bad request response has a 2xx status code

func (*WorkflowDefinitionsCreateBadRequest) String added in v0.6.0

type WorkflowDefinitionsCreateForbidden added in v0.6.0

type WorkflowDefinitionsCreateForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsCreateForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowDefinitionsCreateForbidden added in v0.6.0

func NewWorkflowDefinitionsCreateForbidden() *WorkflowDefinitionsCreateForbidden

NewWorkflowDefinitionsCreateForbidden creates a WorkflowDefinitionsCreateForbidden with default headers values

func (*WorkflowDefinitionsCreateForbidden) Code added in v0.6.0

Code gets the status code for the workflow definitions create forbidden response

func (*WorkflowDefinitionsCreateForbidden) Error added in v0.6.0

func (*WorkflowDefinitionsCreateForbidden) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateForbidden) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCreateForbidden) IsClientError() bool

IsClientError returns true when this workflow definitions create forbidden response has a 4xx status code

func (*WorkflowDefinitionsCreateForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow definitions create forbidden response a status code equal to that given

func (*WorkflowDefinitionsCreateForbidden) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCreateForbidden) IsRedirect() bool

IsRedirect returns true when this workflow definitions create forbidden response has a 3xx status code

func (*WorkflowDefinitionsCreateForbidden) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCreateForbidden) IsServerError() bool

IsServerError returns true when this workflow definitions create forbidden response has a 5xx status code

func (*WorkflowDefinitionsCreateForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions create forbidden response has a 2xx status code

func (*WorkflowDefinitionsCreateForbidden) String added in v0.6.0

type WorkflowDefinitionsCreateInternalServerError added in v0.6.0

type WorkflowDefinitionsCreateInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsCreateInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowDefinitionsCreateInternalServerError added in v0.6.0

func NewWorkflowDefinitionsCreateInternalServerError() *WorkflowDefinitionsCreateInternalServerError

NewWorkflowDefinitionsCreateInternalServerError creates a WorkflowDefinitionsCreateInternalServerError with default headers values

func (*WorkflowDefinitionsCreateInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow definitions create internal server error response

func (*WorkflowDefinitionsCreateInternalServerError) Error added in v0.6.0

func (*WorkflowDefinitionsCreateInternalServerError) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions create internal server error response has a 4xx status code

func (*WorkflowDefinitionsCreateInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow definitions create internal server error response a status code equal to that given

func (*WorkflowDefinitionsCreateInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions create internal server error response has a 3xx status code

func (*WorkflowDefinitionsCreateInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions create internal server error response has a 5xx status code

func (*WorkflowDefinitionsCreateInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions create internal server error response has a 2xx status code

func (*WorkflowDefinitionsCreateInternalServerError) String added in v0.6.0

type WorkflowDefinitionsCreateNotFound added in v0.6.0

type WorkflowDefinitionsCreateNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsCreateNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowDefinitionsCreateNotFound added in v0.6.0

func NewWorkflowDefinitionsCreateNotFound() *WorkflowDefinitionsCreateNotFound

NewWorkflowDefinitionsCreateNotFound creates a WorkflowDefinitionsCreateNotFound with default headers values

func (*WorkflowDefinitionsCreateNotFound) Code added in v0.6.0

Code gets the status code for the workflow definitions create not found response

func (*WorkflowDefinitionsCreateNotFound) Error added in v0.6.0

func (*WorkflowDefinitionsCreateNotFound) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateNotFound) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCreateNotFound) IsClientError() bool

IsClientError returns true when this workflow definitions create not found response has a 4xx status code

func (*WorkflowDefinitionsCreateNotFound) IsCode added in v0.6.0

func (o *WorkflowDefinitionsCreateNotFound) IsCode(code int) bool

IsCode returns true when this workflow definitions create not found response a status code equal to that given

func (*WorkflowDefinitionsCreateNotFound) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCreateNotFound) IsRedirect() bool

IsRedirect returns true when this workflow definitions create not found response has a 3xx status code

func (*WorkflowDefinitionsCreateNotFound) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCreateNotFound) IsServerError() bool

IsServerError returns true when this workflow definitions create not found response has a 5xx status code

func (*WorkflowDefinitionsCreateNotFound) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsCreateNotFound) IsSuccess() bool

IsSuccess returns true when this workflow definitions create not found response has a 2xx status code

func (*WorkflowDefinitionsCreateNotFound) String added in v0.6.0

type WorkflowDefinitionsCreateOK added in v0.6.0

type WorkflowDefinitionsCreateOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsCreateOK describes a response with status code 200, with default header values.

OK

func NewWorkflowDefinitionsCreateOK added in v0.6.0

func NewWorkflowDefinitionsCreateOK() *WorkflowDefinitionsCreateOK

NewWorkflowDefinitionsCreateOK creates a WorkflowDefinitionsCreateOK with default headers values

func (*WorkflowDefinitionsCreateOK) Code added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) Code() int

Code gets the status code for the workflow definitions create o k response

func (*WorkflowDefinitionsCreateOK) Error added in v0.6.0

func (*WorkflowDefinitionsCreateOK) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateOK) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) IsClientError() bool

IsClientError returns true when this workflow definitions create o k response has a 4xx status code

func (*WorkflowDefinitionsCreateOK) IsCode added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) IsCode(code int) bool

IsCode returns true when this workflow definitions create o k response a status code equal to that given

func (*WorkflowDefinitionsCreateOK) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) IsRedirect() bool

IsRedirect returns true when this workflow definitions create o k response has a 3xx status code

func (*WorkflowDefinitionsCreateOK) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) IsServerError() bool

IsServerError returns true when this workflow definitions create o k response has a 5xx status code

func (*WorkflowDefinitionsCreateOK) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) IsSuccess() bool

IsSuccess returns true when this workflow definitions create o k response has a 2xx status code

func (*WorkflowDefinitionsCreateOK) String added in v0.6.0

func (o *WorkflowDefinitionsCreateOK) String() string

type WorkflowDefinitionsCreateParams added in v0.6.0

type WorkflowDefinitionsCreateParams struct {

	// Body.
	Body *models.ModelsDefinitionCreateRequestV2

	/* ValidateOnly.

	   When enabled, prevents saving workflow after validating
	*/
	ValidateOnly *bool

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

WorkflowDefinitionsCreateParams contains all the parameters to send to the API endpoint

for the workflow definitions create operation.

Typically these are written to a http.Request.

func NewWorkflowDefinitionsCreateParams added in v0.6.0

func NewWorkflowDefinitionsCreateParams() *WorkflowDefinitionsCreateParams

NewWorkflowDefinitionsCreateParams creates a new WorkflowDefinitionsCreateParams 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 NewWorkflowDefinitionsCreateParamsWithContext added in v0.6.0

func NewWorkflowDefinitionsCreateParamsWithContext(ctx context.Context) *WorkflowDefinitionsCreateParams

NewWorkflowDefinitionsCreateParamsWithContext creates a new WorkflowDefinitionsCreateParams object with the ability to set a context for a request.

func NewWorkflowDefinitionsCreateParamsWithHTTPClient added in v0.6.0

func NewWorkflowDefinitionsCreateParamsWithHTTPClient(client *http.Client) *WorkflowDefinitionsCreateParams

NewWorkflowDefinitionsCreateParamsWithHTTPClient creates a new WorkflowDefinitionsCreateParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowDefinitionsCreateParamsWithTimeout added in v0.6.0

func NewWorkflowDefinitionsCreateParamsWithTimeout(timeout time.Duration) *WorkflowDefinitionsCreateParams

NewWorkflowDefinitionsCreateParamsWithTimeout creates a new WorkflowDefinitionsCreateParams object with the ability to set a timeout on a request.

func (*WorkflowDefinitionsCreateParams) SetBody added in v0.6.0

SetBody adds the body to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) SetContext added in v0.6.0

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

SetContext adds the context to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) SetDefaults added in v0.6.0

func (o *WorkflowDefinitionsCreateParams) SetDefaults()

SetDefaults hydrates default values in the workflow definitions create params (not the query body).

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

func (*WorkflowDefinitionsCreateParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) SetValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsCreateParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WithBody added in v0.6.0

WithBody adds the body to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WithContext added in v0.6.0

WithContext adds the context to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow definitions create params (not the query body).

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

func (*WorkflowDefinitionsCreateParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WithValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsCreateParams) WithValidateOnly(validateOnly *bool) *WorkflowDefinitionsCreateParams

WithValidateOnly adds the validateOnly to the workflow definitions create params

func (*WorkflowDefinitionsCreateParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowDefinitionsCreateReader added in v0.6.0

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

WorkflowDefinitionsCreateReader is a Reader for the WorkflowDefinitionsCreate structure.

func (*WorkflowDefinitionsCreateReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowDefinitionsCreateTooManyRequests added in v0.6.0

type WorkflowDefinitionsCreateTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsCreateTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowDefinitionsCreateTooManyRequests added in v0.6.0

func NewWorkflowDefinitionsCreateTooManyRequests() *WorkflowDefinitionsCreateTooManyRequests

NewWorkflowDefinitionsCreateTooManyRequests creates a WorkflowDefinitionsCreateTooManyRequests with default headers values

func (*WorkflowDefinitionsCreateTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow definitions create too many requests response

func (*WorkflowDefinitionsCreateTooManyRequests) Error added in v0.6.0

func (*WorkflowDefinitionsCreateTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowDefinitionsCreateTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions create too many requests response has a 4xx status code

func (*WorkflowDefinitionsCreateTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow definitions create too many requests response a status code equal to that given

func (*WorkflowDefinitionsCreateTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions create too many requests response has a 3xx status code

func (*WorkflowDefinitionsCreateTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions create too many requests response has a 5xx status code

func (*WorkflowDefinitionsCreateTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions create too many requests response has a 2xx status code

func (*WorkflowDefinitionsCreateTooManyRequests) String added in v0.6.0

type WorkflowDefinitionsExportBadRequest added in v0.6.0

type WorkflowDefinitionsExportBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload []int64
}

WorkflowDefinitionsExportBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowDefinitionsExportBadRequest added in v0.6.0

func NewWorkflowDefinitionsExportBadRequest() *WorkflowDefinitionsExportBadRequest

NewWorkflowDefinitionsExportBadRequest creates a WorkflowDefinitionsExportBadRequest with default headers values

func (*WorkflowDefinitionsExportBadRequest) Code added in v0.6.0

Code gets the status code for the workflow definitions export bad request response

func (*WorkflowDefinitionsExportBadRequest) Error added in v0.6.0

func (*WorkflowDefinitionsExportBadRequest) GetPayload added in v0.6.0

func (o *WorkflowDefinitionsExportBadRequest) GetPayload() []int64

func (*WorkflowDefinitionsExportBadRequest) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsExportBadRequest) IsClientError() bool

IsClientError returns true when this workflow definitions export bad request response has a 4xx status code

func (*WorkflowDefinitionsExportBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow definitions export bad request response a status code equal to that given

func (*WorkflowDefinitionsExportBadRequest) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsExportBadRequest) IsRedirect() bool

IsRedirect returns true when this workflow definitions export bad request response has a 3xx status code

func (*WorkflowDefinitionsExportBadRequest) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsExportBadRequest) IsServerError() bool

IsServerError returns true when this workflow definitions export bad request response has a 5xx status code

func (*WorkflowDefinitionsExportBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions export bad request response has a 2xx status code

func (*WorkflowDefinitionsExportBadRequest) String added in v0.6.0

type WorkflowDefinitionsExportForbidden added in v0.6.0

type WorkflowDefinitionsExportForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsExportForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowDefinitionsExportForbidden added in v0.6.0

func NewWorkflowDefinitionsExportForbidden() *WorkflowDefinitionsExportForbidden

NewWorkflowDefinitionsExportForbidden creates a WorkflowDefinitionsExportForbidden with default headers values

func (*WorkflowDefinitionsExportForbidden) Code added in v0.6.0

Code gets the status code for the workflow definitions export forbidden response

func (*WorkflowDefinitionsExportForbidden) Error added in v0.6.0

func (*WorkflowDefinitionsExportForbidden) GetPayload added in v0.6.0

func (*WorkflowDefinitionsExportForbidden) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsExportForbidden) IsClientError() bool

IsClientError returns true when this workflow definitions export forbidden response has a 4xx status code

func (*WorkflowDefinitionsExportForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow definitions export forbidden response a status code equal to that given

func (*WorkflowDefinitionsExportForbidden) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsExportForbidden) IsRedirect() bool

IsRedirect returns true when this workflow definitions export forbidden response has a 3xx status code

func (*WorkflowDefinitionsExportForbidden) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsExportForbidden) IsServerError() bool

IsServerError returns true when this workflow definitions export forbidden response has a 5xx status code

func (*WorkflowDefinitionsExportForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions export forbidden response has a 2xx status code

func (*WorkflowDefinitionsExportForbidden) String added in v0.6.0

type WorkflowDefinitionsExportInternalServerError added in v0.6.0

type WorkflowDefinitionsExportInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload []int64
}

WorkflowDefinitionsExportInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowDefinitionsExportInternalServerError added in v0.6.0

func NewWorkflowDefinitionsExportInternalServerError() *WorkflowDefinitionsExportInternalServerError

NewWorkflowDefinitionsExportInternalServerError creates a WorkflowDefinitionsExportInternalServerError with default headers values

func (*WorkflowDefinitionsExportInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow definitions export internal server error response

func (*WorkflowDefinitionsExportInternalServerError) Error added in v0.6.0

func (*WorkflowDefinitionsExportInternalServerError) GetPayload added in v0.6.0

func (*WorkflowDefinitionsExportInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions export internal server error response has a 4xx status code

func (*WorkflowDefinitionsExportInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow definitions export internal server error response a status code equal to that given

func (*WorkflowDefinitionsExportInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions export internal server error response has a 3xx status code

func (*WorkflowDefinitionsExportInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions export internal server error response has a 5xx status code

func (*WorkflowDefinitionsExportInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions export internal server error response has a 2xx status code

func (*WorkflowDefinitionsExportInternalServerError) String added in v0.6.0

type WorkflowDefinitionsExportNotFound added in v0.6.0

type WorkflowDefinitionsExportNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload []int64
}

WorkflowDefinitionsExportNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowDefinitionsExportNotFound added in v0.6.0

func NewWorkflowDefinitionsExportNotFound() *WorkflowDefinitionsExportNotFound

NewWorkflowDefinitionsExportNotFound creates a WorkflowDefinitionsExportNotFound with default headers values

func (*WorkflowDefinitionsExportNotFound) Code added in v0.6.0

Code gets the status code for the workflow definitions export not found response

func (*WorkflowDefinitionsExportNotFound) Error added in v0.6.0

func (*WorkflowDefinitionsExportNotFound) GetPayload added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) GetPayload() []int64

func (*WorkflowDefinitionsExportNotFound) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) IsClientError() bool

IsClientError returns true when this workflow definitions export not found response has a 4xx status code

func (*WorkflowDefinitionsExportNotFound) IsCode added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) IsCode(code int) bool

IsCode returns true when this workflow definitions export not found response a status code equal to that given

func (*WorkflowDefinitionsExportNotFound) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) IsRedirect() bool

IsRedirect returns true when this workflow definitions export not found response has a 3xx status code

func (*WorkflowDefinitionsExportNotFound) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) IsServerError() bool

IsServerError returns true when this workflow definitions export not found response has a 5xx status code

func (*WorkflowDefinitionsExportNotFound) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsExportNotFound) IsSuccess() bool

IsSuccess returns true when this workflow definitions export not found response has a 2xx status code

func (*WorkflowDefinitionsExportNotFound) String added in v0.6.0

type WorkflowDefinitionsExportOK added in v0.6.0

type WorkflowDefinitionsExportOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload []int64
}

WorkflowDefinitionsExportOK describes a response with status code 200, with default header values.

OK

func NewWorkflowDefinitionsExportOK added in v0.6.0

func NewWorkflowDefinitionsExportOK() *WorkflowDefinitionsExportOK

NewWorkflowDefinitionsExportOK creates a WorkflowDefinitionsExportOK with default headers values

func (*WorkflowDefinitionsExportOK) Code added in v0.6.0

func (o *WorkflowDefinitionsExportOK) Code() int

Code gets the status code for the workflow definitions export o k response

func (*WorkflowDefinitionsExportOK) Error added in v0.6.0

func (*WorkflowDefinitionsExportOK) GetPayload added in v0.6.0

func (o *WorkflowDefinitionsExportOK) GetPayload() []int64

func (*WorkflowDefinitionsExportOK) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsExportOK) IsClientError() bool

IsClientError returns true when this workflow definitions export o k response has a 4xx status code

func (*WorkflowDefinitionsExportOK) IsCode added in v0.6.0

func (o *WorkflowDefinitionsExportOK) IsCode(code int) bool

IsCode returns true when this workflow definitions export o k response a status code equal to that given

func (*WorkflowDefinitionsExportOK) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsExportOK) IsRedirect() bool

IsRedirect returns true when this workflow definitions export o k response has a 3xx status code

func (*WorkflowDefinitionsExportOK) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsExportOK) IsServerError() bool

IsServerError returns true when this workflow definitions export o k response has a 5xx status code

func (*WorkflowDefinitionsExportOK) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsExportOK) IsSuccess() bool

IsSuccess returns true when this workflow definitions export o k response has a 2xx status code

func (*WorkflowDefinitionsExportOK) String added in v0.6.0

func (o *WorkflowDefinitionsExportOK) String() string

type WorkflowDefinitionsExportParams added in v0.6.0

type WorkflowDefinitionsExportParams struct {

	/* ID.

	   ID of workflow definitions to return details for
	*/
	ID string

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

WorkflowDefinitionsExportParams contains all the parameters to send to the API endpoint

for the workflow definitions export operation.

Typically these are written to a http.Request.

func NewWorkflowDefinitionsExportParams added in v0.6.0

func NewWorkflowDefinitionsExportParams() *WorkflowDefinitionsExportParams

NewWorkflowDefinitionsExportParams creates a new WorkflowDefinitionsExportParams 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 NewWorkflowDefinitionsExportParamsWithContext added in v0.6.0

func NewWorkflowDefinitionsExportParamsWithContext(ctx context.Context) *WorkflowDefinitionsExportParams

NewWorkflowDefinitionsExportParamsWithContext creates a new WorkflowDefinitionsExportParams object with the ability to set a context for a request.

func NewWorkflowDefinitionsExportParamsWithHTTPClient added in v0.6.0

func NewWorkflowDefinitionsExportParamsWithHTTPClient(client *http.Client) *WorkflowDefinitionsExportParams

NewWorkflowDefinitionsExportParamsWithHTTPClient creates a new WorkflowDefinitionsExportParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowDefinitionsExportParamsWithTimeout added in v0.6.0

func NewWorkflowDefinitionsExportParamsWithTimeout(timeout time.Duration) *WorkflowDefinitionsExportParams

NewWorkflowDefinitionsExportParamsWithTimeout creates a new WorkflowDefinitionsExportParams object with the ability to set a timeout on a request.

func (*WorkflowDefinitionsExportParams) SetContext added in v0.6.0

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

SetContext adds the context to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) SetDefaults added in v0.6.0

func (o *WorkflowDefinitionsExportParams) SetDefaults()

SetDefaults hydrates default values in the workflow definitions export params (not the query body).

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

func (*WorkflowDefinitionsExportParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) SetID added in v0.6.0

SetID adds the id to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) WithContext added in v0.6.0

WithContext adds the context to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow definitions export params (not the query body).

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

func (*WorkflowDefinitionsExportParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) WithID added in v0.6.0

WithID adds the id to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow definitions export params

func (*WorkflowDefinitionsExportParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowDefinitionsExportReader added in v0.6.0

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

WorkflowDefinitionsExportReader is a Reader for the WorkflowDefinitionsExport structure.

func (*WorkflowDefinitionsExportReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowDefinitionsExportStatus299 added in v0.6.0

type WorkflowDefinitionsExportStatus299 struct {

	/* Warning message from workflow export

	   Format: string
	*/
	XAPIWarning string

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload []int64
}

WorkflowDefinitionsExportStatus299 describes a response with status code 299, with default header values.

Miscellaneous Persistent Warning

func NewWorkflowDefinitionsExportStatus299 added in v0.6.0

func NewWorkflowDefinitionsExportStatus299() *WorkflowDefinitionsExportStatus299

NewWorkflowDefinitionsExportStatus299 creates a WorkflowDefinitionsExportStatus299 with default headers values

func (*WorkflowDefinitionsExportStatus299) Code added in v0.6.0

Code gets the status code for the workflow definitions export status299 response

func (*WorkflowDefinitionsExportStatus299) Error added in v0.6.0

func (*WorkflowDefinitionsExportStatus299) GetPayload added in v0.6.0

func (o *WorkflowDefinitionsExportStatus299) GetPayload() []int64

func (*WorkflowDefinitionsExportStatus299) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsExportStatus299) IsClientError() bool

IsClientError returns true when this workflow definitions export status299 response has a 4xx status code

func (*WorkflowDefinitionsExportStatus299) IsCode added in v0.6.0

IsCode returns true when this workflow definitions export status299 response a status code equal to that given

func (*WorkflowDefinitionsExportStatus299) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsExportStatus299) IsRedirect() bool

IsRedirect returns true when this workflow definitions export status299 response has a 3xx status code

func (*WorkflowDefinitionsExportStatus299) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsExportStatus299) IsServerError() bool

IsServerError returns true when this workflow definitions export status299 response has a 5xx status code

func (*WorkflowDefinitionsExportStatus299) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions export status299 response has a 2xx status code

func (*WorkflowDefinitionsExportStatus299) String added in v0.6.0

type WorkflowDefinitionsExportTooManyRequests added in v0.6.0

type WorkflowDefinitionsExportTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsExportTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowDefinitionsExportTooManyRequests added in v0.6.0

func NewWorkflowDefinitionsExportTooManyRequests() *WorkflowDefinitionsExportTooManyRequests

NewWorkflowDefinitionsExportTooManyRequests creates a WorkflowDefinitionsExportTooManyRequests with default headers values

func (*WorkflowDefinitionsExportTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow definitions export too many requests response

func (*WorkflowDefinitionsExportTooManyRequests) Error added in v0.6.0

func (*WorkflowDefinitionsExportTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowDefinitionsExportTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions export too many requests response has a 4xx status code

func (*WorkflowDefinitionsExportTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow definitions export too many requests response a status code equal to that given

func (*WorkflowDefinitionsExportTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions export too many requests response has a 3xx status code

func (*WorkflowDefinitionsExportTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions export too many requests response has a 5xx status code

func (*WorkflowDefinitionsExportTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions export too many requests response has a 2xx status code

func (*WorkflowDefinitionsExportTooManyRequests) String added in v0.6.0

type WorkflowDefinitionsImportBadRequest added in v0.6.0

type WorkflowDefinitionsImportBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionImportResponse
}

WorkflowDefinitionsImportBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowDefinitionsImportBadRequest added in v0.6.0

func NewWorkflowDefinitionsImportBadRequest() *WorkflowDefinitionsImportBadRequest

NewWorkflowDefinitionsImportBadRequest creates a WorkflowDefinitionsImportBadRequest with default headers values

func (*WorkflowDefinitionsImportBadRequest) Code added in v0.6.0

Code gets the status code for the workflow definitions import bad request response

func (*WorkflowDefinitionsImportBadRequest) Error added in v0.6.0

func (*WorkflowDefinitionsImportBadRequest) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportBadRequest) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsImportBadRequest) IsClientError() bool

IsClientError returns true when this workflow definitions import bad request response has a 4xx status code

func (*WorkflowDefinitionsImportBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow definitions import bad request response a status code equal to that given

func (*WorkflowDefinitionsImportBadRequest) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsImportBadRequest) IsRedirect() bool

IsRedirect returns true when this workflow definitions import bad request response has a 3xx status code

func (*WorkflowDefinitionsImportBadRequest) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsImportBadRequest) IsServerError() bool

IsServerError returns true when this workflow definitions import bad request response has a 5xx status code

func (*WorkflowDefinitionsImportBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions import bad request response has a 2xx status code

func (*WorkflowDefinitionsImportBadRequest) String added in v0.6.0

type WorkflowDefinitionsImportForbidden added in v0.6.0

type WorkflowDefinitionsImportForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsImportForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowDefinitionsImportForbidden added in v0.6.0

func NewWorkflowDefinitionsImportForbidden() *WorkflowDefinitionsImportForbidden

NewWorkflowDefinitionsImportForbidden creates a WorkflowDefinitionsImportForbidden with default headers values

func (*WorkflowDefinitionsImportForbidden) Code added in v0.6.0

Code gets the status code for the workflow definitions import forbidden response

func (*WorkflowDefinitionsImportForbidden) Error added in v0.6.0

func (*WorkflowDefinitionsImportForbidden) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportForbidden) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsImportForbidden) IsClientError() bool

IsClientError returns true when this workflow definitions import forbidden response has a 4xx status code

func (*WorkflowDefinitionsImportForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow definitions import forbidden response a status code equal to that given

func (*WorkflowDefinitionsImportForbidden) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsImportForbidden) IsRedirect() bool

IsRedirect returns true when this workflow definitions import forbidden response has a 3xx status code

func (*WorkflowDefinitionsImportForbidden) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsImportForbidden) IsServerError() bool

IsServerError returns true when this workflow definitions import forbidden response has a 5xx status code

func (*WorkflowDefinitionsImportForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions import forbidden response has a 2xx status code

func (*WorkflowDefinitionsImportForbidden) String added in v0.6.0

type WorkflowDefinitionsImportInternalServerError added in v0.6.0

type WorkflowDefinitionsImportInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionImportResponse
}

WorkflowDefinitionsImportInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowDefinitionsImportInternalServerError added in v0.6.0

func NewWorkflowDefinitionsImportInternalServerError() *WorkflowDefinitionsImportInternalServerError

NewWorkflowDefinitionsImportInternalServerError creates a WorkflowDefinitionsImportInternalServerError with default headers values

func (*WorkflowDefinitionsImportInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow definitions import internal server error response

func (*WorkflowDefinitionsImportInternalServerError) Error added in v0.6.0

func (*WorkflowDefinitionsImportInternalServerError) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions import internal server error response has a 4xx status code

func (*WorkflowDefinitionsImportInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow definitions import internal server error response a status code equal to that given

func (*WorkflowDefinitionsImportInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions import internal server error response has a 3xx status code

func (*WorkflowDefinitionsImportInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions import internal server error response has a 5xx status code

func (*WorkflowDefinitionsImportInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions import internal server error response has a 2xx status code

func (*WorkflowDefinitionsImportInternalServerError) String added in v0.6.0

type WorkflowDefinitionsImportNotFound added in v0.6.0

type WorkflowDefinitionsImportNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionImportResponse
}

WorkflowDefinitionsImportNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowDefinitionsImportNotFound added in v0.6.0

func NewWorkflowDefinitionsImportNotFound() *WorkflowDefinitionsImportNotFound

NewWorkflowDefinitionsImportNotFound creates a WorkflowDefinitionsImportNotFound with default headers values

func (*WorkflowDefinitionsImportNotFound) Code added in v0.6.0

Code gets the status code for the workflow definitions import not found response

func (*WorkflowDefinitionsImportNotFound) Error added in v0.6.0

func (*WorkflowDefinitionsImportNotFound) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportNotFound) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsImportNotFound) IsClientError() bool

IsClientError returns true when this workflow definitions import not found response has a 4xx status code

func (*WorkflowDefinitionsImportNotFound) IsCode added in v0.6.0

func (o *WorkflowDefinitionsImportNotFound) IsCode(code int) bool

IsCode returns true when this workflow definitions import not found response a status code equal to that given

func (*WorkflowDefinitionsImportNotFound) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsImportNotFound) IsRedirect() bool

IsRedirect returns true when this workflow definitions import not found response has a 3xx status code

func (*WorkflowDefinitionsImportNotFound) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsImportNotFound) IsServerError() bool

IsServerError returns true when this workflow definitions import not found response has a 5xx status code

func (*WorkflowDefinitionsImportNotFound) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsImportNotFound) IsSuccess() bool

IsSuccess returns true when this workflow definitions import not found response has a 2xx status code

func (*WorkflowDefinitionsImportNotFound) String added in v0.6.0

type WorkflowDefinitionsImportOK added in v0.6.0

type WorkflowDefinitionsImportOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.DefinitionsDefinitionImportResponse
}

WorkflowDefinitionsImportOK describes a response with status code 200, with default header values.

OK

func NewWorkflowDefinitionsImportOK added in v0.6.0

func NewWorkflowDefinitionsImportOK() *WorkflowDefinitionsImportOK

NewWorkflowDefinitionsImportOK creates a WorkflowDefinitionsImportOK with default headers values

func (*WorkflowDefinitionsImportOK) Code added in v0.6.0

func (o *WorkflowDefinitionsImportOK) Code() int

Code gets the status code for the workflow definitions import o k response

func (*WorkflowDefinitionsImportOK) Error added in v0.6.0

func (*WorkflowDefinitionsImportOK) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportOK) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsImportOK) IsClientError() bool

IsClientError returns true when this workflow definitions import o k response has a 4xx status code

func (*WorkflowDefinitionsImportOK) IsCode added in v0.6.0

func (o *WorkflowDefinitionsImportOK) IsCode(code int) bool

IsCode returns true when this workflow definitions import o k response a status code equal to that given

func (*WorkflowDefinitionsImportOK) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsImportOK) IsRedirect() bool

IsRedirect returns true when this workflow definitions import o k response has a 3xx status code

func (*WorkflowDefinitionsImportOK) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsImportOK) IsServerError() bool

IsServerError returns true when this workflow definitions import o k response has a 5xx status code

func (*WorkflowDefinitionsImportOK) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsImportOK) IsSuccess() bool

IsSuccess returns true when this workflow definitions import o k response has a 2xx status code

func (*WorkflowDefinitionsImportOK) String added in v0.6.0

func (o *WorkflowDefinitionsImportOK) String() string

type WorkflowDefinitionsImportParams added in v0.6.0

type WorkflowDefinitionsImportParams struct {

	/* DataFile.

	   A workflow definition in YAML format to import
	*/
	DataFile runtime.NamedReadCloser

	/* Name.

	   Workflow name to override
	*/
	Name *string

	/* ValidateOnly.

	   When enabled, prevents saving workflow after validating
	*/
	ValidateOnly *bool

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

WorkflowDefinitionsImportParams contains all the parameters to send to the API endpoint

for the workflow definitions import operation.

Typically these are written to a http.Request.

func NewWorkflowDefinitionsImportParams added in v0.6.0

func NewWorkflowDefinitionsImportParams() *WorkflowDefinitionsImportParams

NewWorkflowDefinitionsImportParams creates a new WorkflowDefinitionsImportParams 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 NewWorkflowDefinitionsImportParamsWithContext added in v0.6.0

func NewWorkflowDefinitionsImportParamsWithContext(ctx context.Context) *WorkflowDefinitionsImportParams

NewWorkflowDefinitionsImportParamsWithContext creates a new WorkflowDefinitionsImportParams object with the ability to set a context for a request.

func NewWorkflowDefinitionsImportParamsWithHTTPClient added in v0.6.0

func NewWorkflowDefinitionsImportParamsWithHTTPClient(client *http.Client) *WorkflowDefinitionsImportParams

NewWorkflowDefinitionsImportParamsWithHTTPClient creates a new WorkflowDefinitionsImportParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowDefinitionsImportParamsWithTimeout added in v0.6.0

func NewWorkflowDefinitionsImportParamsWithTimeout(timeout time.Duration) *WorkflowDefinitionsImportParams

NewWorkflowDefinitionsImportParamsWithTimeout creates a new WorkflowDefinitionsImportParams object with the ability to set a timeout on a request.

func (*WorkflowDefinitionsImportParams) SetContext added in v0.6.0

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

SetContext adds the context to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) SetDataFile added in v0.6.0

func (o *WorkflowDefinitionsImportParams) SetDataFile(dataFile runtime.NamedReadCloser)

SetDataFile adds the dataFile to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) SetDefaults added in v0.6.0

func (o *WorkflowDefinitionsImportParams) SetDefaults()

SetDefaults hydrates default values in the workflow definitions import params (not the query body).

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

func (*WorkflowDefinitionsImportParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) SetName added in v0.6.0

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

SetName adds the name to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) SetValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsImportParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithContext added in v0.6.0

WithContext adds the context to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithDataFile added in v0.6.0

WithDataFile adds the dataFile to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow definitions import params (not the query body).

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

func (*WorkflowDefinitionsImportParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithName added in v0.6.0

WithName adds the name to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WithValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsImportParams) WithValidateOnly(validateOnly *bool) *WorkflowDefinitionsImportParams

WithValidateOnly adds the validateOnly to the workflow definitions import params

func (*WorkflowDefinitionsImportParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowDefinitionsImportReader added in v0.6.0

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

WorkflowDefinitionsImportReader is a Reader for the WorkflowDefinitionsImport structure.

func (*WorkflowDefinitionsImportReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowDefinitionsImportTooManyRequests added in v0.6.0

type WorkflowDefinitionsImportTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsImportTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowDefinitionsImportTooManyRequests added in v0.6.0

func NewWorkflowDefinitionsImportTooManyRequests() *WorkflowDefinitionsImportTooManyRequests

NewWorkflowDefinitionsImportTooManyRequests creates a WorkflowDefinitionsImportTooManyRequests with default headers values

func (*WorkflowDefinitionsImportTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow definitions import too many requests response

func (*WorkflowDefinitionsImportTooManyRequests) Error added in v0.6.0

func (*WorkflowDefinitionsImportTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowDefinitionsImportTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions import too many requests response has a 4xx status code

func (*WorkflowDefinitionsImportTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow definitions import too many requests response a status code equal to that given

func (*WorkflowDefinitionsImportTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions import too many requests response has a 3xx status code

func (*WorkflowDefinitionsImportTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions import too many requests response has a 5xx status code

func (*WorkflowDefinitionsImportTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions import too many requests response has a 2xx status code

func (*WorkflowDefinitionsImportTooManyRequests) String added in v0.6.0

type WorkflowDefinitionsUpdateBadRequest added in v0.6.0

type WorkflowDefinitionsUpdateBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsUpdateBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowDefinitionsUpdateBadRequest added in v0.6.0

func NewWorkflowDefinitionsUpdateBadRequest() *WorkflowDefinitionsUpdateBadRequest

NewWorkflowDefinitionsUpdateBadRequest creates a WorkflowDefinitionsUpdateBadRequest with default headers values

func (*WorkflowDefinitionsUpdateBadRequest) Code added in v0.6.0

Code gets the status code for the workflow definitions update bad request response

func (*WorkflowDefinitionsUpdateBadRequest) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateBadRequest) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateBadRequest) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsUpdateBadRequest) IsClientError() bool

IsClientError returns true when this workflow definitions update bad request response has a 4xx status code

func (*WorkflowDefinitionsUpdateBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow definitions update bad request response a status code equal to that given

func (*WorkflowDefinitionsUpdateBadRequest) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsUpdateBadRequest) IsRedirect() bool

IsRedirect returns true when this workflow definitions update bad request response has a 3xx status code

func (*WorkflowDefinitionsUpdateBadRequest) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsUpdateBadRequest) IsServerError() bool

IsServerError returns true when this workflow definitions update bad request response has a 5xx status code

func (*WorkflowDefinitionsUpdateBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions update bad request response has a 2xx status code

func (*WorkflowDefinitionsUpdateBadRequest) String added in v0.6.0

type WorkflowDefinitionsUpdateForbidden added in v0.6.0

type WorkflowDefinitionsUpdateForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsUpdateForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowDefinitionsUpdateForbidden added in v0.6.0

func NewWorkflowDefinitionsUpdateForbidden() *WorkflowDefinitionsUpdateForbidden

NewWorkflowDefinitionsUpdateForbidden creates a WorkflowDefinitionsUpdateForbidden with default headers values

func (*WorkflowDefinitionsUpdateForbidden) Code added in v0.6.0

Code gets the status code for the workflow definitions update forbidden response

func (*WorkflowDefinitionsUpdateForbidden) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateForbidden) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateForbidden) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsUpdateForbidden) IsClientError() bool

IsClientError returns true when this workflow definitions update forbidden response has a 4xx status code

func (*WorkflowDefinitionsUpdateForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow definitions update forbidden response a status code equal to that given

func (*WorkflowDefinitionsUpdateForbidden) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsUpdateForbidden) IsRedirect() bool

IsRedirect returns true when this workflow definitions update forbidden response has a 3xx status code

func (*WorkflowDefinitionsUpdateForbidden) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsUpdateForbidden) IsServerError() bool

IsServerError returns true when this workflow definitions update forbidden response has a 5xx status code

func (*WorkflowDefinitionsUpdateForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions update forbidden response has a 2xx status code

func (*WorkflowDefinitionsUpdateForbidden) String added in v0.6.0

type WorkflowDefinitionsUpdateInternalServerError added in v0.6.0

type WorkflowDefinitionsUpdateInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsUpdateInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowDefinitionsUpdateInternalServerError added in v0.6.0

func NewWorkflowDefinitionsUpdateInternalServerError() *WorkflowDefinitionsUpdateInternalServerError

NewWorkflowDefinitionsUpdateInternalServerError creates a WorkflowDefinitionsUpdateInternalServerError with default headers values

func (*WorkflowDefinitionsUpdateInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow definitions update internal server error response

func (*WorkflowDefinitionsUpdateInternalServerError) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateInternalServerError) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions update internal server error response has a 4xx status code

func (*WorkflowDefinitionsUpdateInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow definitions update internal server error response a status code equal to that given

func (*WorkflowDefinitionsUpdateInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions update internal server error response has a 3xx status code

func (*WorkflowDefinitionsUpdateInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions update internal server error response has a 5xx status code

func (*WorkflowDefinitionsUpdateInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions update internal server error response has a 2xx status code

func (*WorkflowDefinitionsUpdateInternalServerError) String added in v0.6.0

type WorkflowDefinitionsUpdateNotFound added in v0.6.0

type WorkflowDefinitionsUpdateNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsUpdateNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowDefinitionsUpdateNotFound added in v0.6.0

func NewWorkflowDefinitionsUpdateNotFound() *WorkflowDefinitionsUpdateNotFound

NewWorkflowDefinitionsUpdateNotFound creates a WorkflowDefinitionsUpdateNotFound with default headers values

func (*WorkflowDefinitionsUpdateNotFound) Code added in v0.6.0

Code gets the status code for the workflow definitions update not found response

func (*WorkflowDefinitionsUpdateNotFound) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateNotFound) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateNotFound) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsUpdateNotFound) IsClientError() bool

IsClientError returns true when this workflow definitions update not found response has a 4xx status code

func (*WorkflowDefinitionsUpdateNotFound) IsCode added in v0.6.0

func (o *WorkflowDefinitionsUpdateNotFound) IsCode(code int) bool

IsCode returns true when this workflow definitions update not found response a status code equal to that given

func (*WorkflowDefinitionsUpdateNotFound) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsUpdateNotFound) IsRedirect() bool

IsRedirect returns true when this workflow definitions update not found response has a 3xx status code

func (*WorkflowDefinitionsUpdateNotFound) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsUpdateNotFound) IsServerError() bool

IsServerError returns true when this workflow definitions update not found response has a 5xx status code

func (*WorkflowDefinitionsUpdateNotFound) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsUpdateNotFound) IsSuccess() bool

IsSuccess returns true when this workflow definitions update not found response has a 2xx status code

func (*WorkflowDefinitionsUpdateNotFound) String added in v0.6.0

type WorkflowDefinitionsUpdateOK added in v0.6.0

type WorkflowDefinitionsUpdateOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowDefinitionsUpdateOK describes a response with status code 200, with default header values.

OK

func NewWorkflowDefinitionsUpdateOK added in v0.6.0

func NewWorkflowDefinitionsUpdateOK() *WorkflowDefinitionsUpdateOK

NewWorkflowDefinitionsUpdateOK creates a WorkflowDefinitionsUpdateOK with default headers values

func (*WorkflowDefinitionsUpdateOK) Code added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) Code() int

Code gets the status code for the workflow definitions update o k response

func (*WorkflowDefinitionsUpdateOK) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateOK) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateOK) IsClientError added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) IsClientError() bool

IsClientError returns true when this workflow definitions update o k response has a 4xx status code

func (*WorkflowDefinitionsUpdateOK) IsCode added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) IsCode(code int) bool

IsCode returns true when this workflow definitions update o k response a status code equal to that given

func (*WorkflowDefinitionsUpdateOK) IsRedirect added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) IsRedirect() bool

IsRedirect returns true when this workflow definitions update o k response has a 3xx status code

func (*WorkflowDefinitionsUpdateOK) IsServerError added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) IsServerError() bool

IsServerError returns true when this workflow definitions update o k response has a 5xx status code

func (*WorkflowDefinitionsUpdateOK) IsSuccess added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) IsSuccess() bool

IsSuccess returns true when this workflow definitions update o k response has a 2xx status code

func (*WorkflowDefinitionsUpdateOK) String added in v0.6.0

func (o *WorkflowDefinitionsUpdateOK) String() string

type WorkflowDefinitionsUpdateParams added in v0.6.0

type WorkflowDefinitionsUpdateParams struct {

	// Body.
	Body *models.ModelsDefinitionUpdateRequestV2

	/* ValidateOnly.

	   When enabled, prevents saving workflow after validating
	*/
	ValidateOnly *bool

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

WorkflowDefinitionsUpdateParams contains all the parameters to send to the API endpoint

for the workflow definitions update operation.

Typically these are written to a http.Request.

func NewWorkflowDefinitionsUpdateParams added in v0.6.0

func NewWorkflowDefinitionsUpdateParams() *WorkflowDefinitionsUpdateParams

NewWorkflowDefinitionsUpdateParams creates a new WorkflowDefinitionsUpdateParams 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 NewWorkflowDefinitionsUpdateParamsWithContext added in v0.6.0

func NewWorkflowDefinitionsUpdateParamsWithContext(ctx context.Context) *WorkflowDefinitionsUpdateParams

NewWorkflowDefinitionsUpdateParamsWithContext creates a new WorkflowDefinitionsUpdateParams object with the ability to set a context for a request.

func NewWorkflowDefinitionsUpdateParamsWithHTTPClient added in v0.6.0

func NewWorkflowDefinitionsUpdateParamsWithHTTPClient(client *http.Client) *WorkflowDefinitionsUpdateParams

NewWorkflowDefinitionsUpdateParamsWithHTTPClient creates a new WorkflowDefinitionsUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowDefinitionsUpdateParamsWithTimeout added in v0.6.0

func NewWorkflowDefinitionsUpdateParamsWithTimeout(timeout time.Duration) *WorkflowDefinitionsUpdateParams

NewWorkflowDefinitionsUpdateParamsWithTimeout creates a new WorkflowDefinitionsUpdateParams object with the ability to set a timeout on a request.

func (*WorkflowDefinitionsUpdateParams) SetBody added in v0.6.0

SetBody adds the body to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) SetContext added in v0.6.0

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

SetContext adds the context to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) SetDefaults added in v0.6.0

func (o *WorkflowDefinitionsUpdateParams) SetDefaults()

SetDefaults hydrates default values in the workflow definitions update params (not the query body).

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

func (*WorkflowDefinitionsUpdateParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) SetValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsUpdateParams) SetValidateOnly(validateOnly *bool)

SetValidateOnly adds the validateOnly to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WithBody added in v0.6.0

WithBody adds the body to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WithContext added in v0.6.0

WithContext adds the context to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow definitions update params (not the query body).

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

func (*WorkflowDefinitionsUpdateParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WithValidateOnly added in v0.6.0

func (o *WorkflowDefinitionsUpdateParams) WithValidateOnly(validateOnly *bool) *WorkflowDefinitionsUpdateParams

WithValidateOnly adds the validateOnly to the workflow definitions update params

func (*WorkflowDefinitionsUpdateParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowDefinitionsUpdateReader added in v0.6.0

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

WorkflowDefinitionsUpdateReader is a Reader for the WorkflowDefinitionsUpdate structure.

func (*WorkflowDefinitionsUpdateReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowDefinitionsUpdateTooManyRequests added in v0.6.0

type WorkflowDefinitionsUpdateTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowDefinitionsUpdateTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowDefinitionsUpdateTooManyRequests added in v0.6.0

func NewWorkflowDefinitionsUpdateTooManyRequests() *WorkflowDefinitionsUpdateTooManyRequests

NewWorkflowDefinitionsUpdateTooManyRequests creates a WorkflowDefinitionsUpdateTooManyRequests with default headers values

func (*WorkflowDefinitionsUpdateTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow definitions update too many requests response

func (*WorkflowDefinitionsUpdateTooManyRequests) Error added in v0.6.0

func (*WorkflowDefinitionsUpdateTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowDefinitionsUpdateTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow definitions update too many requests response has a 4xx status code

func (*WorkflowDefinitionsUpdateTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow definitions update too many requests response a status code equal to that given

func (*WorkflowDefinitionsUpdateTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow definitions update too many requests response has a 3xx status code

func (*WorkflowDefinitionsUpdateTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow definitions update too many requests response has a 5xx status code

func (*WorkflowDefinitionsUpdateTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow definitions update too many requests response has a 2xx status code

func (*WorkflowDefinitionsUpdateTooManyRequests) String added in v0.6.0

type WorkflowExecutionsCombinedBadRequest added in v0.6.0

type WorkflowExecutionsCombinedBadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

WorkflowExecutionsCombinedBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowExecutionsCombinedBadRequest added in v0.6.0

func NewWorkflowExecutionsCombinedBadRequest() *WorkflowExecutionsCombinedBadRequest

NewWorkflowExecutionsCombinedBadRequest creates a WorkflowExecutionsCombinedBadRequest with default headers values

func (*WorkflowExecutionsCombinedBadRequest) Code added in v0.6.0

Code gets the status code for the workflow executions combined bad request response

func (*WorkflowExecutionsCombinedBadRequest) Error added in v0.6.0

func (*WorkflowExecutionsCombinedBadRequest) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedBadRequest) IsClientError added in v0.6.0

func (o *WorkflowExecutionsCombinedBadRequest) IsClientError() bool

IsClientError returns true when this workflow executions combined bad request response has a 4xx status code

func (*WorkflowExecutionsCombinedBadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow executions combined bad request response a status code equal to that given

func (*WorkflowExecutionsCombinedBadRequest) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow executions combined bad request response has a 3xx status code

func (*WorkflowExecutionsCombinedBadRequest) IsServerError added in v0.6.0

func (o *WorkflowExecutionsCombinedBadRequest) IsServerError() bool

IsServerError returns true when this workflow executions combined bad request response has a 5xx status code

func (*WorkflowExecutionsCombinedBadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow executions combined bad request response has a 2xx status code

func (*WorkflowExecutionsCombinedBadRequest) String added in v0.6.0

type WorkflowExecutionsCombinedForbidden added in v0.6.0

type WorkflowExecutionsCombinedForbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowExecutionsCombinedForbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowExecutionsCombinedForbidden added in v0.6.0

func NewWorkflowExecutionsCombinedForbidden() *WorkflowExecutionsCombinedForbidden

NewWorkflowExecutionsCombinedForbidden creates a WorkflowExecutionsCombinedForbidden with default headers values

func (*WorkflowExecutionsCombinedForbidden) Code added in v0.6.0

Code gets the status code for the workflow executions combined forbidden response

func (*WorkflowExecutionsCombinedForbidden) Error added in v0.6.0

func (*WorkflowExecutionsCombinedForbidden) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedForbidden) IsClientError added in v0.6.0

func (o *WorkflowExecutionsCombinedForbidden) IsClientError() bool

IsClientError returns true when this workflow executions combined forbidden response has a 4xx status code

func (*WorkflowExecutionsCombinedForbidden) IsCode added in v0.6.0

IsCode returns true when this workflow executions combined forbidden response a status code equal to that given

func (*WorkflowExecutionsCombinedForbidden) IsRedirect added in v0.6.0

func (o *WorkflowExecutionsCombinedForbidden) IsRedirect() bool

IsRedirect returns true when this workflow executions combined forbidden response has a 3xx status code

func (*WorkflowExecutionsCombinedForbidden) IsServerError added in v0.6.0

func (o *WorkflowExecutionsCombinedForbidden) IsServerError() bool

IsServerError returns true when this workflow executions combined forbidden response has a 5xx status code

func (*WorkflowExecutionsCombinedForbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow executions combined forbidden response has a 2xx status code

func (*WorkflowExecutionsCombinedForbidden) String added in v0.6.0

type WorkflowExecutionsCombinedInternalServerError added in v0.6.0

type WorkflowExecutionsCombinedInternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

WorkflowExecutionsCombinedInternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowExecutionsCombinedInternalServerError added in v0.6.0

func NewWorkflowExecutionsCombinedInternalServerError() *WorkflowExecutionsCombinedInternalServerError

NewWorkflowExecutionsCombinedInternalServerError creates a WorkflowExecutionsCombinedInternalServerError with default headers values

func (*WorkflowExecutionsCombinedInternalServerError) Code added in v0.6.0

Code gets the status code for the workflow executions combined internal server error response

func (*WorkflowExecutionsCombinedInternalServerError) Error added in v0.6.0

func (*WorkflowExecutionsCombinedInternalServerError) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedInternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow executions combined internal server error response has a 4xx status code

func (*WorkflowExecutionsCombinedInternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow executions combined internal server error response a status code equal to that given

func (*WorkflowExecutionsCombinedInternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow executions combined internal server error response has a 3xx status code

func (*WorkflowExecutionsCombinedInternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow executions combined internal server error response has a 5xx status code

func (*WorkflowExecutionsCombinedInternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow executions combined internal server error response has a 2xx status code

func (*WorkflowExecutionsCombinedInternalServerError) String added in v0.6.0

type WorkflowExecutionsCombinedNotFound added in v0.6.0

type WorkflowExecutionsCombinedNotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

WorkflowExecutionsCombinedNotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowExecutionsCombinedNotFound added in v0.6.0

func NewWorkflowExecutionsCombinedNotFound() *WorkflowExecutionsCombinedNotFound

NewWorkflowExecutionsCombinedNotFound creates a WorkflowExecutionsCombinedNotFound with default headers values

func (*WorkflowExecutionsCombinedNotFound) Code added in v0.6.0

Code gets the status code for the workflow executions combined not found response

func (*WorkflowExecutionsCombinedNotFound) Error added in v0.6.0

func (*WorkflowExecutionsCombinedNotFound) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedNotFound) IsClientError added in v0.6.0

func (o *WorkflowExecutionsCombinedNotFound) IsClientError() bool

IsClientError returns true when this workflow executions combined not found response has a 4xx status code

func (*WorkflowExecutionsCombinedNotFound) IsCode added in v0.6.0

IsCode returns true when this workflow executions combined not found response a status code equal to that given

func (*WorkflowExecutionsCombinedNotFound) IsRedirect added in v0.6.0

func (o *WorkflowExecutionsCombinedNotFound) IsRedirect() bool

IsRedirect returns true when this workflow executions combined not found response has a 3xx status code

func (*WorkflowExecutionsCombinedNotFound) IsServerError added in v0.6.0

func (o *WorkflowExecutionsCombinedNotFound) IsServerError() bool

IsServerError returns true when this workflow executions combined not found response has a 5xx status code

func (*WorkflowExecutionsCombinedNotFound) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow executions combined not found response has a 2xx status code

func (*WorkflowExecutionsCombinedNotFound) String added in v0.6.0

type WorkflowExecutionsCombinedOK added in v0.6.0

type WorkflowExecutionsCombinedOK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIExecutionResultsResponse
}

WorkflowExecutionsCombinedOK describes a response with status code 200, with default header values.

OK

func NewWorkflowExecutionsCombinedOK added in v0.6.0

func NewWorkflowExecutionsCombinedOK() *WorkflowExecutionsCombinedOK

NewWorkflowExecutionsCombinedOK creates a WorkflowExecutionsCombinedOK with default headers values

func (*WorkflowExecutionsCombinedOK) Code added in v0.6.0

Code gets the status code for the workflow executions combined o k response

func (*WorkflowExecutionsCombinedOK) Error added in v0.6.0

func (*WorkflowExecutionsCombinedOK) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedOK) IsClientError added in v0.6.0

func (o *WorkflowExecutionsCombinedOK) IsClientError() bool

IsClientError returns true when this workflow executions combined o k response has a 4xx status code

func (*WorkflowExecutionsCombinedOK) IsCode added in v0.6.0

func (o *WorkflowExecutionsCombinedOK) IsCode(code int) bool

IsCode returns true when this workflow executions combined o k response a status code equal to that given

func (*WorkflowExecutionsCombinedOK) IsRedirect added in v0.6.0

func (o *WorkflowExecutionsCombinedOK) IsRedirect() bool

IsRedirect returns true when this workflow executions combined o k response has a 3xx status code

func (*WorkflowExecutionsCombinedOK) IsServerError added in v0.6.0

func (o *WorkflowExecutionsCombinedOK) IsServerError() bool

IsServerError returns true when this workflow executions combined o k response has a 5xx status code

func (*WorkflowExecutionsCombinedOK) IsSuccess added in v0.6.0

func (o *WorkflowExecutionsCombinedOK) IsSuccess() bool

IsSuccess returns true when this workflow executions combined o k response has a 2xx status code

func (*WorkflowExecutionsCombinedOK) String added in v0.6.0

type WorkflowExecutionsCombinedParams added in v0.6.0

type WorkflowExecutionsCombinedParams struct {

	/* Filter.

	   FQL query specifying filter parameters.
	*/
	Filter string

	/* Limit.

	   Maximum number of records to return.
	*/
	Limit *int64

	/* Offset.

	   Starting pagination offset of records to return.
	*/
	Offset *string

	/* Sort.

	   Sort items by providing a comma separated list of property and direction (eg name.desc,time.asc). If direction is omitted, defaults to descending.
	*/
	Sort *string

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

WorkflowExecutionsCombinedParams contains all the parameters to send to the API endpoint

for the workflow executions combined operation.

Typically these are written to a http.Request.

func NewWorkflowExecutionsCombinedParams added in v0.6.0

func NewWorkflowExecutionsCombinedParams() *WorkflowExecutionsCombinedParams

NewWorkflowExecutionsCombinedParams creates a new WorkflowExecutionsCombinedParams 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 NewWorkflowExecutionsCombinedParamsWithContext added in v0.6.0

func NewWorkflowExecutionsCombinedParamsWithContext(ctx context.Context) *WorkflowExecutionsCombinedParams

NewWorkflowExecutionsCombinedParamsWithContext creates a new WorkflowExecutionsCombinedParams object with the ability to set a context for a request.

func NewWorkflowExecutionsCombinedParamsWithHTTPClient added in v0.6.0

func NewWorkflowExecutionsCombinedParamsWithHTTPClient(client *http.Client) *WorkflowExecutionsCombinedParams

NewWorkflowExecutionsCombinedParamsWithHTTPClient creates a new WorkflowExecutionsCombinedParams object with the ability to set a custom HTTPClient for a request.

func NewWorkflowExecutionsCombinedParamsWithTimeout added in v0.6.0

func NewWorkflowExecutionsCombinedParamsWithTimeout(timeout time.Duration) *WorkflowExecutionsCombinedParams

NewWorkflowExecutionsCombinedParamsWithTimeout creates a new WorkflowExecutionsCombinedParams object with the ability to set a timeout on a request.

func (*WorkflowExecutionsCombinedParams) SetContext added in v0.6.0

SetContext adds the context to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetDefaults added in v0.6.0

func (o *WorkflowExecutionsCombinedParams) SetDefaults()

SetDefaults hydrates default values in the workflow executions combined params (not the query body).

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

func (*WorkflowExecutionsCombinedParams) SetFilter added in v0.6.0

func (o *WorkflowExecutionsCombinedParams) SetFilter(filter string)

SetFilter adds the filter to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetLimit added in v0.6.0

func (o *WorkflowExecutionsCombinedParams) SetLimit(limit *int64)

SetLimit adds the limit to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetOffset added in v0.6.0

func (o *WorkflowExecutionsCombinedParams) SetOffset(offset *string)

SetOffset adds the offset to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetSort added in v0.6.0

func (o *WorkflowExecutionsCombinedParams) SetSort(sort *string)

SetSort adds the sort to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithContext added in v0.6.0

WithContext adds the context to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow executions combined params (not the query body).

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

func (*WorkflowExecutionsCombinedParams) WithFilter added in v0.6.0

WithFilter adds the filter to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithLimit added in v0.6.0

WithLimit adds the limit to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithOffset added in v0.6.0

WithOffset adds the offset to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithSort added in v0.6.0

WithSort adds the sort to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow executions combined params

func (*WorkflowExecutionsCombinedParams) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowExecutionsCombinedReader added in v0.6.0

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

WorkflowExecutionsCombinedReader is a Reader for the WorkflowExecutionsCombined structure.

func (*WorkflowExecutionsCombinedReader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowExecutionsCombinedTooManyRequests added in v0.6.0

type WorkflowExecutionsCombinedTooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowExecutionsCombinedTooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowExecutionsCombinedTooManyRequests added in v0.6.0

func NewWorkflowExecutionsCombinedTooManyRequests() *WorkflowExecutionsCombinedTooManyRequests

NewWorkflowExecutionsCombinedTooManyRequests creates a WorkflowExecutionsCombinedTooManyRequests with default headers values

func (*WorkflowExecutionsCombinedTooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow executions combined too many requests response

func (*WorkflowExecutionsCombinedTooManyRequests) Error added in v0.6.0

func (*WorkflowExecutionsCombinedTooManyRequests) GetPayload added in v0.6.0

func (*WorkflowExecutionsCombinedTooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow executions combined too many requests response has a 4xx status code

func (*WorkflowExecutionsCombinedTooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow executions combined too many requests response a status code equal to that given

func (*WorkflowExecutionsCombinedTooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow executions combined too many requests response has a 3xx status code

func (*WorkflowExecutionsCombinedTooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow executions combined too many requests response has a 5xx status code

func (*WorkflowExecutionsCombinedTooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow executions combined too many requests response has a 2xx status code

func (*WorkflowExecutionsCombinedTooManyRequests) String added in v0.6.0

type WorkflowGetHumanInputV1BadRequest added in v0.6.0

type WorkflowGetHumanInputV1BadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ModelUserInputReadResponse
}

WorkflowGetHumanInputV1BadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowGetHumanInputV1BadRequest added in v0.6.0

func NewWorkflowGetHumanInputV1BadRequest() *WorkflowGetHumanInputV1BadRequest

NewWorkflowGetHumanInputV1BadRequest creates a WorkflowGetHumanInputV1BadRequest with default headers values

func (*WorkflowGetHumanInputV1BadRequest) Code added in v0.6.0

Code gets the status code for the workflow get human input v1 bad request response

func (*WorkflowGetHumanInputV1BadRequest) Error added in v0.6.0

func (*WorkflowGetHumanInputV1BadRequest) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1BadRequest) IsClientError added in v0.6.0

func (o *WorkflowGetHumanInputV1BadRequest) IsClientError() bool

IsClientError returns true when this workflow get human input v1 bad request response has a 4xx status code

func (*WorkflowGetHumanInputV1BadRequest) IsCode added in v0.6.0

func (o *WorkflowGetHumanInputV1BadRequest) IsCode(code int) bool

IsCode returns true when this workflow get human input v1 bad request response a status code equal to that given

func (*WorkflowGetHumanInputV1BadRequest) IsRedirect added in v0.6.0

func (o *WorkflowGetHumanInputV1BadRequest) IsRedirect() bool

IsRedirect returns true when this workflow get human input v1 bad request response has a 3xx status code

func (*WorkflowGetHumanInputV1BadRequest) IsServerError added in v0.6.0

func (o *WorkflowGetHumanInputV1BadRequest) IsServerError() bool

IsServerError returns true when this workflow get human input v1 bad request response has a 5xx status code

func (*WorkflowGetHumanInputV1BadRequest) IsSuccess added in v0.6.0

func (o *WorkflowGetHumanInputV1BadRequest) IsSuccess() bool

IsSuccess returns true when this workflow get human input v1 bad request response has a 2xx status code

func (*WorkflowGetHumanInputV1BadRequest) String added in v0.6.0

type WorkflowGetHumanInputV1Forbidden added in v0.6.0

type WorkflowGetHumanInputV1Forbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowGetHumanInputV1Forbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowGetHumanInputV1Forbidden added in v0.6.0

func NewWorkflowGetHumanInputV1Forbidden() *WorkflowGetHumanInputV1Forbidden

NewWorkflowGetHumanInputV1Forbidden creates a WorkflowGetHumanInputV1Forbidden with default headers values

func (*WorkflowGetHumanInputV1Forbidden) Code added in v0.6.0

Code gets the status code for the workflow get human input v1 forbidden response

func (*WorkflowGetHumanInputV1Forbidden) Error added in v0.6.0

func (*WorkflowGetHumanInputV1Forbidden) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1Forbidden) IsClientError added in v0.6.0

func (o *WorkflowGetHumanInputV1Forbidden) IsClientError() bool

IsClientError returns true when this workflow get human input v1 forbidden response has a 4xx status code

func (*WorkflowGetHumanInputV1Forbidden) IsCode added in v0.6.0

func (o *WorkflowGetHumanInputV1Forbidden) IsCode(code int) bool

IsCode returns true when this workflow get human input v1 forbidden response a status code equal to that given

func (*WorkflowGetHumanInputV1Forbidden) IsRedirect added in v0.6.0

func (o *WorkflowGetHumanInputV1Forbidden) IsRedirect() bool

IsRedirect returns true when this workflow get human input v1 forbidden response has a 3xx status code

func (*WorkflowGetHumanInputV1Forbidden) IsServerError added in v0.6.0

func (o *WorkflowGetHumanInputV1Forbidden) IsServerError() bool

IsServerError returns true when this workflow get human input v1 forbidden response has a 5xx status code

func (*WorkflowGetHumanInputV1Forbidden) IsSuccess added in v0.6.0

func (o *WorkflowGetHumanInputV1Forbidden) IsSuccess() bool

IsSuccess returns true when this workflow get human input v1 forbidden response has a 2xx status code

func (*WorkflowGetHumanInputV1Forbidden) String added in v0.6.0

type WorkflowGetHumanInputV1InternalServerError added in v0.6.0

type WorkflowGetHumanInputV1InternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ModelUserInputReadResponse
}

WorkflowGetHumanInputV1InternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowGetHumanInputV1InternalServerError added in v0.6.0

func NewWorkflowGetHumanInputV1InternalServerError() *WorkflowGetHumanInputV1InternalServerError

NewWorkflowGetHumanInputV1InternalServerError creates a WorkflowGetHumanInputV1InternalServerError with default headers values

func (*WorkflowGetHumanInputV1InternalServerError) Code added in v0.6.0

Code gets the status code for the workflow get human input v1 internal server error response

func (*WorkflowGetHumanInputV1InternalServerError) Error added in v0.6.0

func (*WorkflowGetHumanInputV1InternalServerError) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1InternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow get human input v1 internal server error response has a 4xx status code

func (*WorkflowGetHumanInputV1InternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow get human input v1 internal server error response a status code equal to that given

func (*WorkflowGetHumanInputV1InternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow get human input v1 internal server error response has a 3xx status code

func (*WorkflowGetHumanInputV1InternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow get human input v1 internal server error response has a 5xx status code

func (*WorkflowGetHumanInputV1InternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow get human input v1 internal server error response has a 2xx status code

func (*WorkflowGetHumanInputV1InternalServerError) String added in v0.6.0

type WorkflowGetHumanInputV1NotFound added in v0.6.0

type WorkflowGetHumanInputV1NotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ModelUserInputReadResponse
}

WorkflowGetHumanInputV1NotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowGetHumanInputV1NotFound added in v0.6.0

func NewWorkflowGetHumanInputV1NotFound() *WorkflowGetHumanInputV1NotFound

NewWorkflowGetHumanInputV1NotFound creates a WorkflowGetHumanInputV1NotFound with default headers values

func (*WorkflowGetHumanInputV1NotFound) Code added in v0.6.0

Code gets the status code for the workflow get human input v1 not found response

func (*WorkflowGetHumanInputV1NotFound) Error added in v0.6.0

func (*WorkflowGetHumanInputV1NotFound) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1NotFound) IsClientError added in v0.6.0

func (o *WorkflowGetHumanInputV1NotFound) IsClientError() bool

IsClientError returns true when this workflow get human input v1 not found response has a 4xx status code

func (*WorkflowGetHumanInputV1NotFound) IsCode added in v0.6.0

func (o *WorkflowGetHumanInputV1NotFound) IsCode(code int) bool

IsCode returns true when this workflow get human input v1 not found response a status code equal to that given

func (*WorkflowGetHumanInputV1NotFound) IsRedirect added in v0.6.0

func (o *WorkflowGetHumanInputV1NotFound) IsRedirect() bool

IsRedirect returns true when this workflow get human input v1 not found response has a 3xx status code

func (*WorkflowGetHumanInputV1NotFound) IsServerError added in v0.6.0

func (o *WorkflowGetHumanInputV1NotFound) IsServerError() bool

IsServerError returns true when this workflow get human input v1 not found response has a 5xx status code

func (*WorkflowGetHumanInputV1NotFound) IsSuccess added in v0.6.0

func (o *WorkflowGetHumanInputV1NotFound) IsSuccess() bool

IsSuccess returns true when this workflow get human input v1 not found response has a 2xx status code

func (*WorkflowGetHumanInputV1NotFound) String added in v0.6.0

type WorkflowGetHumanInputV1OK added in v0.6.0

type WorkflowGetHumanInputV1OK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.ModelUserInputReadResponse
}

WorkflowGetHumanInputV1OK describes a response with status code 200, with default header values.

OK

func NewWorkflowGetHumanInputV1OK added in v0.6.0

func NewWorkflowGetHumanInputV1OK() *WorkflowGetHumanInputV1OK

NewWorkflowGetHumanInputV1OK creates a WorkflowGetHumanInputV1OK with default headers values

func (*WorkflowGetHumanInputV1OK) Code added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) Code() int

Code gets the status code for the workflow get human input v1 o k response

func (*WorkflowGetHumanInputV1OK) Error added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) Error() string

func (*WorkflowGetHumanInputV1OK) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1OK) IsClientError added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) IsClientError() bool

IsClientError returns true when this workflow get human input v1 o k response has a 4xx status code

func (*WorkflowGetHumanInputV1OK) IsCode added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) IsCode(code int) bool

IsCode returns true when this workflow get human input v1 o k response a status code equal to that given

func (*WorkflowGetHumanInputV1OK) IsRedirect added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) IsRedirect() bool

IsRedirect returns true when this workflow get human input v1 o k response has a 3xx status code

func (*WorkflowGetHumanInputV1OK) IsServerError added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) IsServerError() bool

IsServerError returns true when this workflow get human input v1 o k response has a 5xx status code

func (*WorkflowGetHumanInputV1OK) IsSuccess added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) IsSuccess() bool

IsSuccess returns true when this workflow get human input v1 o k response has a 2xx status code

func (*WorkflowGetHumanInputV1OK) String added in v0.6.0

func (o *WorkflowGetHumanInputV1OK) String() string

type WorkflowGetHumanInputV1Params added in v0.6.0

type WorkflowGetHumanInputV1Params struct {

	/* Ids.

	   IDs of human inputs to read
	*/
	Ids []string

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

WorkflowGetHumanInputV1Params contains all the parameters to send to the API endpoint

for the workflow get human input v1 operation.

Typically these are written to a http.Request.

func NewWorkflowGetHumanInputV1Params added in v0.6.0

func NewWorkflowGetHumanInputV1Params() *WorkflowGetHumanInputV1Params

NewWorkflowGetHumanInputV1Params creates a new WorkflowGetHumanInputV1Params 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 NewWorkflowGetHumanInputV1ParamsWithContext added in v0.6.0

func NewWorkflowGetHumanInputV1ParamsWithContext(ctx context.Context) *WorkflowGetHumanInputV1Params

NewWorkflowGetHumanInputV1ParamsWithContext creates a new WorkflowGetHumanInputV1Params object with the ability to set a context for a request.

func NewWorkflowGetHumanInputV1ParamsWithHTTPClient added in v0.6.0

func NewWorkflowGetHumanInputV1ParamsWithHTTPClient(client *http.Client) *WorkflowGetHumanInputV1Params

NewWorkflowGetHumanInputV1ParamsWithHTTPClient creates a new WorkflowGetHumanInputV1Params object with the ability to set a custom HTTPClient for a request.

func NewWorkflowGetHumanInputV1ParamsWithTimeout added in v0.6.0

func NewWorkflowGetHumanInputV1ParamsWithTimeout(timeout time.Duration) *WorkflowGetHumanInputV1Params

NewWorkflowGetHumanInputV1ParamsWithTimeout creates a new WorkflowGetHumanInputV1Params object with the ability to set a timeout on a request.

func (*WorkflowGetHumanInputV1Params) SetContext added in v0.6.0

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

SetContext adds the context to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) SetDefaults added in v0.6.0

func (o *WorkflowGetHumanInputV1Params) SetDefaults()

SetDefaults hydrates default values in the workflow get human input v1 params (not the query body).

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

func (*WorkflowGetHumanInputV1Params) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) SetIds added in v0.6.0

func (o *WorkflowGetHumanInputV1Params) SetIds(ids []string)

SetIds adds the ids to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) WithContext added in v0.6.0

WithContext adds the context to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow get human input v1 params (not the query body).

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

func (*WorkflowGetHumanInputV1Params) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) WithIds added in v0.6.0

WithIds adds the ids to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow get human input v1 params

func (*WorkflowGetHumanInputV1Params) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowGetHumanInputV1Reader added in v0.6.0

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

WorkflowGetHumanInputV1Reader is a Reader for the WorkflowGetHumanInputV1 structure.

func (*WorkflowGetHumanInputV1Reader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowGetHumanInputV1TooManyRequests added in v0.6.0

type WorkflowGetHumanInputV1TooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowGetHumanInputV1TooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowGetHumanInputV1TooManyRequests added in v0.6.0

func NewWorkflowGetHumanInputV1TooManyRequests() *WorkflowGetHumanInputV1TooManyRequests

NewWorkflowGetHumanInputV1TooManyRequests creates a WorkflowGetHumanInputV1TooManyRequests with default headers values

func (*WorkflowGetHumanInputV1TooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow get human input v1 too many requests response

func (*WorkflowGetHumanInputV1TooManyRequests) Error added in v0.6.0

func (*WorkflowGetHumanInputV1TooManyRequests) GetPayload added in v0.6.0

func (*WorkflowGetHumanInputV1TooManyRequests) IsClientError added in v0.6.0

func (o *WorkflowGetHumanInputV1TooManyRequests) IsClientError() bool

IsClientError returns true when this workflow get human input v1 too many requests response has a 4xx status code

func (*WorkflowGetHumanInputV1TooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow get human input v1 too many requests response a status code equal to that given

func (*WorkflowGetHumanInputV1TooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow get human input v1 too many requests response has a 3xx status code

func (*WorkflowGetHumanInputV1TooManyRequests) IsServerError added in v0.6.0

func (o *WorkflowGetHumanInputV1TooManyRequests) IsServerError() bool

IsServerError returns true when this workflow get human input v1 too many requests response has a 5xx status code

func (*WorkflowGetHumanInputV1TooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow get human input v1 too many requests response has a 2xx status code

func (*WorkflowGetHumanInputV1TooManyRequests) String added in v0.6.0

type WorkflowUpdateHumanInputV1BadRequest added in v0.6.0

type WorkflowUpdateHumanInputV1BadRequest struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowUpdateHumanInputV1BadRequest describes a response with status code 400, with default header values.

Bad Request

func NewWorkflowUpdateHumanInputV1BadRequest added in v0.6.0

func NewWorkflowUpdateHumanInputV1BadRequest() *WorkflowUpdateHumanInputV1BadRequest

NewWorkflowUpdateHumanInputV1BadRequest creates a WorkflowUpdateHumanInputV1BadRequest with default headers values

func (*WorkflowUpdateHumanInputV1BadRequest) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 bad request response

func (*WorkflowUpdateHumanInputV1BadRequest) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1BadRequest) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1BadRequest) IsClientError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1BadRequest) IsClientError() bool

IsClientError returns true when this workflow update human input v1 bad request response has a 4xx status code

func (*WorkflowUpdateHumanInputV1BadRequest) IsCode added in v0.6.0

IsCode returns true when this workflow update human input v1 bad request response a status code equal to that given

func (*WorkflowUpdateHumanInputV1BadRequest) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow update human input v1 bad request response has a 3xx status code

func (*WorkflowUpdateHumanInputV1BadRequest) IsServerError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1BadRequest) IsServerError() bool

IsServerError returns true when this workflow update human input v1 bad request response has a 5xx status code

func (*WorkflowUpdateHumanInputV1BadRequest) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow update human input v1 bad request response has a 2xx status code

func (*WorkflowUpdateHumanInputV1BadRequest) String added in v0.6.0

type WorkflowUpdateHumanInputV1Forbidden added in v0.6.0

type WorkflowUpdateHumanInputV1Forbidden struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowUpdateHumanInputV1Forbidden describes a response with status code 403, with default header values.

Forbidden

func NewWorkflowUpdateHumanInputV1Forbidden added in v0.6.0

func NewWorkflowUpdateHumanInputV1Forbidden() *WorkflowUpdateHumanInputV1Forbidden

NewWorkflowUpdateHumanInputV1Forbidden creates a WorkflowUpdateHumanInputV1Forbidden with default headers values

func (*WorkflowUpdateHumanInputV1Forbidden) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 forbidden response

func (*WorkflowUpdateHumanInputV1Forbidden) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1Forbidden) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1Forbidden) IsClientError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1Forbidden) IsClientError() bool

IsClientError returns true when this workflow update human input v1 forbidden response has a 4xx status code

func (*WorkflowUpdateHumanInputV1Forbidden) IsCode added in v0.6.0

IsCode returns true when this workflow update human input v1 forbidden response a status code equal to that given

func (*WorkflowUpdateHumanInputV1Forbidden) IsRedirect added in v0.6.0

func (o *WorkflowUpdateHumanInputV1Forbidden) IsRedirect() bool

IsRedirect returns true when this workflow update human input v1 forbidden response has a 3xx status code

func (*WorkflowUpdateHumanInputV1Forbidden) IsServerError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1Forbidden) IsServerError() bool

IsServerError returns true when this workflow update human input v1 forbidden response has a 5xx status code

func (*WorkflowUpdateHumanInputV1Forbidden) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow update human input v1 forbidden response has a 2xx status code

func (*WorkflowUpdateHumanInputV1Forbidden) String added in v0.6.0

type WorkflowUpdateHumanInputV1InternalServerError added in v0.6.0

type WorkflowUpdateHumanInputV1InternalServerError struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowUpdateHumanInputV1InternalServerError describes a response with status code 500, with default header values.

Internal Server Error

func NewWorkflowUpdateHumanInputV1InternalServerError added in v0.6.0

func NewWorkflowUpdateHumanInputV1InternalServerError() *WorkflowUpdateHumanInputV1InternalServerError

NewWorkflowUpdateHumanInputV1InternalServerError creates a WorkflowUpdateHumanInputV1InternalServerError with default headers values

func (*WorkflowUpdateHumanInputV1InternalServerError) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 internal server error response

func (*WorkflowUpdateHumanInputV1InternalServerError) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1InternalServerError) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1InternalServerError) IsClientError added in v0.6.0

IsClientError returns true when this workflow update human input v1 internal server error response has a 4xx status code

func (*WorkflowUpdateHumanInputV1InternalServerError) IsCode added in v0.6.0

IsCode returns true when this workflow update human input v1 internal server error response a status code equal to that given

func (*WorkflowUpdateHumanInputV1InternalServerError) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow update human input v1 internal server error response has a 3xx status code

func (*WorkflowUpdateHumanInputV1InternalServerError) IsServerError added in v0.6.0

IsServerError returns true when this workflow update human input v1 internal server error response has a 5xx status code

func (*WorkflowUpdateHumanInputV1InternalServerError) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow update human input v1 internal server error response has a 2xx status code

func (*WorkflowUpdateHumanInputV1InternalServerError) String added in v0.6.0

type WorkflowUpdateHumanInputV1NotFound added in v0.6.0

type WorkflowUpdateHumanInputV1NotFound struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowUpdateHumanInputV1NotFound describes a response with status code 404, with default header values.

Not Found

func NewWorkflowUpdateHumanInputV1NotFound added in v0.6.0

func NewWorkflowUpdateHumanInputV1NotFound() *WorkflowUpdateHumanInputV1NotFound

NewWorkflowUpdateHumanInputV1NotFound creates a WorkflowUpdateHumanInputV1NotFound with default headers values

func (*WorkflowUpdateHumanInputV1NotFound) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 not found response

func (*WorkflowUpdateHumanInputV1NotFound) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1NotFound) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1NotFound) IsClientError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1NotFound) IsClientError() bool

IsClientError returns true when this workflow update human input v1 not found response has a 4xx status code

func (*WorkflowUpdateHumanInputV1NotFound) IsCode added in v0.6.0

IsCode returns true when this workflow update human input v1 not found response a status code equal to that given

func (*WorkflowUpdateHumanInputV1NotFound) IsRedirect added in v0.6.0

func (o *WorkflowUpdateHumanInputV1NotFound) IsRedirect() bool

IsRedirect returns true when this workflow update human input v1 not found response has a 3xx status code

func (*WorkflowUpdateHumanInputV1NotFound) IsServerError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1NotFound) IsServerError() bool

IsServerError returns true when this workflow update human input v1 not found response has a 5xx status code

func (*WorkflowUpdateHumanInputV1NotFound) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow update human input v1 not found response has a 2xx status code

func (*WorkflowUpdateHumanInputV1NotFound) String added in v0.6.0

type WorkflowUpdateHumanInputV1OK added in v0.6.0

type WorkflowUpdateHumanInputV1OK struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	Payload *models.APIResourceIDsResponse
}

WorkflowUpdateHumanInputV1OK describes a response with status code 200, with default header values.

OK

func NewWorkflowUpdateHumanInputV1OK added in v0.6.0

func NewWorkflowUpdateHumanInputV1OK() *WorkflowUpdateHumanInputV1OK

NewWorkflowUpdateHumanInputV1OK creates a WorkflowUpdateHumanInputV1OK with default headers values

func (*WorkflowUpdateHumanInputV1OK) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 o k response

func (*WorkflowUpdateHumanInputV1OK) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1OK) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1OK) IsClientError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1OK) IsClientError() bool

IsClientError returns true when this workflow update human input v1 o k response has a 4xx status code

func (*WorkflowUpdateHumanInputV1OK) IsCode added in v0.6.0

func (o *WorkflowUpdateHumanInputV1OK) IsCode(code int) bool

IsCode returns true when this workflow update human input v1 o k response a status code equal to that given

func (*WorkflowUpdateHumanInputV1OK) IsRedirect added in v0.6.0

func (o *WorkflowUpdateHumanInputV1OK) IsRedirect() bool

IsRedirect returns true when this workflow update human input v1 o k response has a 3xx status code

func (*WorkflowUpdateHumanInputV1OK) IsServerError added in v0.6.0

func (o *WorkflowUpdateHumanInputV1OK) IsServerError() bool

IsServerError returns true when this workflow update human input v1 o k response has a 5xx status code

func (*WorkflowUpdateHumanInputV1OK) IsSuccess added in v0.6.0

func (o *WorkflowUpdateHumanInputV1OK) IsSuccess() bool

IsSuccess returns true when this workflow update human input v1 o k response has a 2xx status code

func (*WorkflowUpdateHumanInputV1OK) String added in v0.6.0

type WorkflowUpdateHumanInputV1Params added in v0.6.0

type WorkflowUpdateHumanInputV1Params struct {

	// Body.
	Body *models.ModelUserInputUpdateRequest

	/* ID.

	   ID of human input to provide an input to
	*/
	ID string

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

WorkflowUpdateHumanInputV1Params contains all the parameters to send to the API endpoint

for the workflow update human input v1 operation.

Typically these are written to a http.Request.

func NewWorkflowUpdateHumanInputV1Params added in v0.6.0

func NewWorkflowUpdateHumanInputV1Params() *WorkflowUpdateHumanInputV1Params

NewWorkflowUpdateHumanInputV1Params creates a new WorkflowUpdateHumanInputV1Params 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 NewWorkflowUpdateHumanInputV1ParamsWithContext added in v0.6.0

func NewWorkflowUpdateHumanInputV1ParamsWithContext(ctx context.Context) *WorkflowUpdateHumanInputV1Params

NewWorkflowUpdateHumanInputV1ParamsWithContext creates a new WorkflowUpdateHumanInputV1Params object with the ability to set a context for a request.

func NewWorkflowUpdateHumanInputV1ParamsWithHTTPClient added in v0.6.0

func NewWorkflowUpdateHumanInputV1ParamsWithHTTPClient(client *http.Client) *WorkflowUpdateHumanInputV1Params

NewWorkflowUpdateHumanInputV1ParamsWithHTTPClient creates a new WorkflowUpdateHumanInputV1Params object with the ability to set a custom HTTPClient for a request.

func NewWorkflowUpdateHumanInputV1ParamsWithTimeout added in v0.6.0

func NewWorkflowUpdateHumanInputV1ParamsWithTimeout(timeout time.Duration) *WorkflowUpdateHumanInputV1Params

NewWorkflowUpdateHumanInputV1ParamsWithTimeout creates a new WorkflowUpdateHumanInputV1Params object with the ability to set a timeout on a request.

func (*WorkflowUpdateHumanInputV1Params) SetBody added in v0.6.0

SetBody adds the body to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) SetContext added in v0.6.0

SetContext adds the context to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) SetDefaults added in v0.6.0

func (o *WorkflowUpdateHumanInputV1Params) SetDefaults()

SetDefaults hydrates default values in the workflow update human input v1 params (not the query body).

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

func (*WorkflowUpdateHumanInputV1Params) SetHTTPClient added in v0.6.0

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

SetHTTPClient adds the HTTPClient to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) SetID added in v0.6.0

SetID adds the id to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) SetTimeout added in v0.6.0

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

SetTimeout adds the timeout to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WithBody added in v0.6.0

WithBody adds the body to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WithContext added in v0.6.0

WithContext adds the context to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WithDefaults added in v0.6.0

WithDefaults hydrates default values in the workflow update human input v1 params (not the query body).

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

func (*WorkflowUpdateHumanInputV1Params) WithHTTPClient added in v0.6.0

WithHTTPClient adds the HTTPClient to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WithID added in v0.6.0

WithID adds the id to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WithTimeout added in v0.6.0

WithTimeout adds the timeout to the workflow update human input v1 params

func (*WorkflowUpdateHumanInputV1Params) WriteToRequest added in v0.6.0

WriteToRequest writes these params to a swagger request

type WorkflowUpdateHumanInputV1Reader added in v0.6.0

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

WorkflowUpdateHumanInputV1Reader is a Reader for the WorkflowUpdateHumanInputV1 structure.

func (*WorkflowUpdateHumanInputV1Reader) ReadResponse added in v0.6.0

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

ReadResponse reads a server response into the received o.

type WorkflowUpdateHumanInputV1TooManyRequests added in v0.6.0

type WorkflowUpdateHumanInputV1TooManyRequests struct {

	/* Trace-ID: submit to support if resolving an issue
	 */
	XCSTRACEID string

	/* Request limit per minute.
	 */
	XRateLimitLimit int64

	/* The number of requests remaining for the sliding one minute window.
	 */
	XRateLimitRemaining int64

	/* Too many requests, retry after this time (as milliseconds since epoch)
	 */
	XRateLimitRetryAfter int64

	Payload *models.MsaReplyMetaOnly
}

WorkflowUpdateHumanInputV1TooManyRequests describes a response with status code 429, with default header values.

Too Many Requests

func NewWorkflowUpdateHumanInputV1TooManyRequests added in v0.6.0

func NewWorkflowUpdateHumanInputV1TooManyRequests() *WorkflowUpdateHumanInputV1TooManyRequests

NewWorkflowUpdateHumanInputV1TooManyRequests creates a WorkflowUpdateHumanInputV1TooManyRequests with default headers values

func (*WorkflowUpdateHumanInputV1TooManyRequests) Code added in v0.6.0

Code gets the status code for the workflow update human input v1 too many requests response

func (*WorkflowUpdateHumanInputV1TooManyRequests) Error added in v0.6.0

func (*WorkflowUpdateHumanInputV1TooManyRequests) GetPayload added in v0.6.0

func (*WorkflowUpdateHumanInputV1TooManyRequests) IsClientError added in v0.6.0

IsClientError returns true when this workflow update human input v1 too many requests response has a 4xx status code

func (*WorkflowUpdateHumanInputV1TooManyRequests) IsCode added in v0.6.0

IsCode returns true when this workflow update human input v1 too many requests response a status code equal to that given

func (*WorkflowUpdateHumanInputV1TooManyRequests) IsRedirect added in v0.6.0

IsRedirect returns true when this workflow update human input v1 too many requests response has a 3xx status code

func (*WorkflowUpdateHumanInputV1TooManyRequests) IsServerError added in v0.6.0

IsServerError returns true when this workflow update human input v1 too many requests response has a 5xx status code

func (*WorkflowUpdateHumanInputV1TooManyRequests) IsSuccess added in v0.6.0

IsSuccess returns true when this workflow update human input v1 too many requests response has a 2xx status code

func (*WorkflowUpdateHumanInputV1TooManyRequests) String added in v0.6.0

Jump to

Keyboard shortcuts

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