onboarding_plan_execution

package
v0.6.0 Latest Latest
Warning

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

Go to latest
Published: Nov 17, 2022 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for onboarding plan execution API

func (*Client) DeletePlanExecutionByID

func (a *Client) DeletePlanExecutionByID(params *DeletePlanExecutionByIDParams, opts ...ClientOption) (*DeletePlanExecutionByIDOK, error)

DeletePlanExecutionByID deletes the selected onboarding plan execution

func (*Client) ExecutePlan

func (a *Client) ExecutePlan(params *ExecutePlanParams, opts ...ClientOption) (*ExecutePlanOK, error)

ExecutePlan executes the given onboarding plan

func (*Client) GetPlanExecutionByID

func (a *Client) GetPlanExecutionByID(params *GetPlanExecutionByIDParams, opts ...ClientOption) (*GetPlanExecutionByIDOK, error)

GetPlanExecutionByID gets the selected onboarding plan execution

func (*Client) QueryPlanExecutions

func (a *Client) QueryPlanExecutions(params *QueryPlanExecutionsParams, opts ...ClientOption) (*QueryPlanExecutionsOK, error)

QueryPlanExecutions queries for onboarding plan executions

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	DeletePlanExecutionByID(params *DeletePlanExecutionByIDParams, opts ...ClientOption) (*DeletePlanExecutionByIDOK, error)

	ExecutePlan(params *ExecutePlanParams, opts ...ClientOption) (*ExecutePlanOK, error)

	GetPlanExecutionByID(params *GetPlanExecutionByIDParams, opts ...ClientOption) (*GetPlanExecutionByIDOK, error)

	QueryPlanExecutions(params *QueryPlanExecutionsParams, opts ...ClientOption) (*QueryPlanExecutionsOK, 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 onboarding plan execution API client.

type DeletePlanExecutionByIDOK

type DeletePlanExecutionByIDOK struct {
}

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

Success

func NewDeletePlanExecutionByIDOK

func NewDeletePlanExecutionByIDOK() *DeletePlanExecutionByIDOK

NewDeletePlanExecutionByIDOK creates a DeletePlanExecutionByIDOK with default headers values

func (*DeletePlanExecutionByIDOK) Error

func (o *DeletePlanExecutionByIDOK) Error() string

func (*DeletePlanExecutionByIDOK) IsClientError

func (o *DeletePlanExecutionByIDOK) IsClientError() bool

IsClientError returns true when this delete plan execution by Id o k response has a 4xx status code

func (*DeletePlanExecutionByIDOK) IsCode

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

IsCode returns true when this delete plan execution by Id o k response a status code equal to that given

func (*DeletePlanExecutionByIDOK) IsRedirect

func (o *DeletePlanExecutionByIDOK) IsRedirect() bool

IsRedirect returns true when this delete plan execution by Id o k response has a 3xx status code

func (*DeletePlanExecutionByIDOK) IsServerError

func (o *DeletePlanExecutionByIDOK) IsServerError() bool

IsServerError returns true when this delete plan execution by Id o k response has a 5xx status code

func (*DeletePlanExecutionByIDOK) IsSuccess

func (o *DeletePlanExecutionByIDOK) IsSuccess() bool

IsSuccess returns true when this delete plan execution by Id o k response has a 2xx status code

func (*DeletePlanExecutionByIDOK) String

func (o *DeletePlanExecutionByIDOK) String() string

type DeletePlanExecutionByIDParams

type DeletePlanExecutionByIDParams struct {

	// ID.
	ID string

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

DeletePlanExecutionByIDParams contains all the parameters to send to the API endpoint

for the delete plan execution by Id operation.

Typically these are written to a http.Request.

func NewDeletePlanExecutionByIDParams

func NewDeletePlanExecutionByIDParams() *DeletePlanExecutionByIDParams

NewDeletePlanExecutionByIDParams creates a new DeletePlanExecutionByIDParams 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 NewDeletePlanExecutionByIDParamsWithContext

func NewDeletePlanExecutionByIDParamsWithContext(ctx context.Context) *DeletePlanExecutionByIDParams

NewDeletePlanExecutionByIDParamsWithContext creates a new DeletePlanExecutionByIDParams object with the ability to set a context for a request.

func NewDeletePlanExecutionByIDParamsWithHTTPClient

func NewDeletePlanExecutionByIDParamsWithHTTPClient(client *http.Client) *DeletePlanExecutionByIDParams

NewDeletePlanExecutionByIDParamsWithHTTPClient creates a new DeletePlanExecutionByIDParams object with the ability to set a custom HTTPClient for a request.

func NewDeletePlanExecutionByIDParamsWithTimeout

func NewDeletePlanExecutionByIDParamsWithTimeout(timeout time.Duration) *DeletePlanExecutionByIDParams

NewDeletePlanExecutionByIDParamsWithTimeout creates a new DeletePlanExecutionByIDParams object with the ability to set a timeout on a request.

func (*DeletePlanExecutionByIDParams) SetContext

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

SetContext adds the context to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) SetDefaults

func (o *DeletePlanExecutionByIDParams) SetDefaults()

SetDefaults hydrates default values in the delete plan execution by Id params (not the query body).

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

func (*DeletePlanExecutionByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) SetID

SetID adds the id to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) SetTimeout

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

SetTimeout adds the timeout to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) WithContext

WithContext adds the context to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) WithDefaults

WithDefaults hydrates default values in the delete plan execution by Id params (not the query body).

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

func (*DeletePlanExecutionByIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) WithID

WithID adds the id to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) WithTimeout

WithTimeout adds the timeout to the delete plan execution by Id params

func (*DeletePlanExecutionByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeletePlanExecutionByIDReader

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

DeletePlanExecutionByIDReader is a Reader for the DeletePlanExecutionByID structure.

func (*DeletePlanExecutionByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeletePlanExecutionByIDUnauthorized

type DeletePlanExecutionByIDUnauthorized struct {
}

DeletePlanExecutionByIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewDeletePlanExecutionByIDUnauthorized

func NewDeletePlanExecutionByIDUnauthorized() *DeletePlanExecutionByIDUnauthorized

NewDeletePlanExecutionByIDUnauthorized creates a DeletePlanExecutionByIDUnauthorized with default headers values

func (*DeletePlanExecutionByIDUnauthorized) Error

func (*DeletePlanExecutionByIDUnauthorized) IsClientError

func (o *DeletePlanExecutionByIDUnauthorized) IsClientError() bool

IsClientError returns true when this delete plan execution by Id unauthorized response has a 4xx status code

func (*DeletePlanExecutionByIDUnauthorized) IsCode

IsCode returns true when this delete plan execution by Id unauthorized response a status code equal to that given

func (*DeletePlanExecutionByIDUnauthorized) IsRedirect

func (o *DeletePlanExecutionByIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete plan execution by Id unauthorized response has a 3xx status code

func (*DeletePlanExecutionByIDUnauthorized) IsServerError

func (o *DeletePlanExecutionByIDUnauthorized) IsServerError() bool

IsServerError returns true when this delete plan execution by Id unauthorized response has a 5xx status code

func (*DeletePlanExecutionByIDUnauthorized) IsSuccess

IsSuccess returns true when this delete plan execution by Id unauthorized response has a 2xx status code

func (*DeletePlanExecutionByIDUnauthorized) String

type ExecutePlanOK

type ExecutePlanOK struct {
	Payload *models.PlanExecutionResponse
}

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

Success

func NewExecutePlanOK

func NewExecutePlanOK() *ExecutePlanOK

NewExecutePlanOK creates a ExecutePlanOK with default headers values

func (*ExecutePlanOK) Error

func (o *ExecutePlanOK) Error() string

func (*ExecutePlanOK) GetPayload

func (o *ExecutePlanOK) GetPayload() *models.PlanExecutionResponse

func (*ExecutePlanOK) IsClientError

func (o *ExecutePlanOK) IsClientError() bool

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

func (*ExecutePlanOK) IsCode

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

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

func (*ExecutePlanOK) IsRedirect

func (o *ExecutePlanOK) IsRedirect() bool

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

func (*ExecutePlanOK) IsServerError

func (o *ExecutePlanOK) IsServerError() bool

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

func (*ExecutePlanOK) IsSuccess

func (o *ExecutePlanOK) IsSuccess() bool

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

func (*ExecutePlanOK) String

func (o *ExecutePlanOK) String() string

type ExecutePlanParams

type ExecutePlanParams struct {

	// Body.
	Body *models.PlanExecutionRequest

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

ExecutePlanParams contains all the parameters to send to the API endpoint

for the execute plan operation.

Typically these are written to a http.Request.

func NewExecutePlanParams

func NewExecutePlanParams() *ExecutePlanParams

NewExecutePlanParams creates a new ExecutePlanParams 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 NewExecutePlanParamsWithContext

func NewExecutePlanParamsWithContext(ctx context.Context) *ExecutePlanParams

NewExecutePlanParamsWithContext creates a new ExecutePlanParams object with the ability to set a context for a request.

func NewExecutePlanParamsWithHTTPClient

func NewExecutePlanParamsWithHTTPClient(client *http.Client) *ExecutePlanParams

NewExecutePlanParamsWithHTTPClient creates a new ExecutePlanParams object with the ability to set a custom HTTPClient for a request.

func NewExecutePlanParamsWithTimeout

func NewExecutePlanParamsWithTimeout(timeout time.Duration) *ExecutePlanParams

NewExecutePlanParamsWithTimeout creates a new ExecutePlanParams object with the ability to set a timeout on a request.

func (*ExecutePlanParams) SetBody

func (o *ExecutePlanParams) SetBody(body *models.PlanExecutionRequest)

SetBody adds the body to the execute plan params

func (*ExecutePlanParams) SetContext

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

SetContext adds the context to the execute plan params

func (*ExecutePlanParams) SetDefaults

func (o *ExecutePlanParams) SetDefaults()

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

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

func (*ExecutePlanParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the execute plan params

func (*ExecutePlanParams) SetTimeout

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

SetTimeout adds the timeout to the execute plan params

func (*ExecutePlanParams) WithBody

WithBody adds the body to the execute plan params

func (*ExecutePlanParams) WithContext

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

WithContext adds the context to the execute plan params

func (*ExecutePlanParams) WithDefaults

func (o *ExecutePlanParams) WithDefaults() *ExecutePlanParams

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

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

func (*ExecutePlanParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the execute plan params

func (*ExecutePlanParams) WithTimeout

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

WithTimeout adds the timeout to the execute plan params

func (*ExecutePlanParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ExecutePlanReader

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

ExecutePlanReader is a Reader for the ExecutePlan structure.

func (*ExecutePlanReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ExecutePlanUnauthorized

type ExecutePlanUnauthorized struct {
}

ExecutePlanUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewExecutePlanUnauthorized

func NewExecutePlanUnauthorized() *ExecutePlanUnauthorized

NewExecutePlanUnauthorized creates a ExecutePlanUnauthorized with default headers values

func (*ExecutePlanUnauthorized) Error

func (o *ExecutePlanUnauthorized) Error() string

func (*ExecutePlanUnauthorized) IsClientError

func (o *ExecutePlanUnauthorized) IsClientError() bool

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

func (*ExecutePlanUnauthorized) IsCode

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

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

func (*ExecutePlanUnauthorized) IsRedirect

func (o *ExecutePlanUnauthorized) IsRedirect() bool

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

func (*ExecutePlanUnauthorized) IsServerError

func (o *ExecutePlanUnauthorized) IsServerError() bool

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

func (*ExecutePlanUnauthorized) IsSuccess

func (o *ExecutePlanUnauthorized) IsSuccess() bool

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

func (*ExecutePlanUnauthorized) String

func (o *ExecutePlanUnauthorized) String() string

type GetPlanExecutionByIDOK

type GetPlanExecutionByIDOK struct {
	Payload *models.PlanExecutionResponse
}

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

Success

func NewGetPlanExecutionByIDOK

func NewGetPlanExecutionByIDOK() *GetPlanExecutionByIDOK

NewGetPlanExecutionByIDOK creates a GetPlanExecutionByIDOK with default headers values

func (*GetPlanExecutionByIDOK) Error

func (o *GetPlanExecutionByIDOK) Error() string

func (*GetPlanExecutionByIDOK) GetPayload

func (*GetPlanExecutionByIDOK) IsClientError

func (o *GetPlanExecutionByIDOK) IsClientError() bool

IsClientError returns true when this get plan execution by Id o k response has a 4xx status code

func (*GetPlanExecutionByIDOK) IsCode

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

IsCode returns true when this get plan execution by Id o k response a status code equal to that given

func (*GetPlanExecutionByIDOK) IsRedirect

func (o *GetPlanExecutionByIDOK) IsRedirect() bool

IsRedirect returns true when this get plan execution by Id o k response has a 3xx status code

func (*GetPlanExecutionByIDOK) IsServerError

func (o *GetPlanExecutionByIDOK) IsServerError() bool

IsServerError returns true when this get plan execution by Id o k response has a 5xx status code

func (*GetPlanExecutionByIDOK) IsSuccess

func (o *GetPlanExecutionByIDOK) IsSuccess() bool

IsSuccess returns true when this get plan execution by Id o k response has a 2xx status code

func (*GetPlanExecutionByIDOK) String

func (o *GetPlanExecutionByIDOK) String() string

type GetPlanExecutionByIDParams

type GetPlanExecutionByIDParams struct {

	// ID.
	ID string

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

GetPlanExecutionByIDParams contains all the parameters to send to the API endpoint

for the get plan execution by Id operation.

Typically these are written to a http.Request.

func NewGetPlanExecutionByIDParams

func NewGetPlanExecutionByIDParams() *GetPlanExecutionByIDParams

NewGetPlanExecutionByIDParams creates a new GetPlanExecutionByIDParams 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 NewGetPlanExecutionByIDParamsWithContext

func NewGetPlanExecutionByIDParamsWithContext(ctx context.Context) *GetPlanExecutionByIDParams

NewGetPlanExecutionByIDParamsWithContext creates a new GetPlanExecutionByIDParams object with the ability to set a context for a request.

func NewGetPlanExecutionByIDParamsWithHTTPClient

func NewGetPlanExecutionByIDParamsWithHTTPClient(client *http.Client) *GetPlanExecutionByIDParams

NewGetPlanExecutionByIDParamsWithHTTPClient creates a new GetPlanExecutionByIDParams object with the ability to set a custom HTTPClient for a request.

func NewGetPlanExecutionByIDParamsWithTimeout

func NewGetPlanExecutionByIDParamsWithTimeout(timeout time.Duration) *GetPlanExecutionByIDParams

NewGetPlanExecutionByIDParamsWithTimeout creates a new GetPlanExecutionByIDParams object with the ability to set a timeout on a request.

func (*GetPlanExecutionByIDParams) SetContext

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

SetContext adds the context to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) SetDefaults

func (o *GetPlanExecutionByIDParams) SetDefaults()

SetDefaults hydrates default values in the get plan execution by Id params (not the query body).

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

func (*GetPlanExecutionByIDParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) SetID

func (o *GetPlanExecutionByIDParams) SetID(id string)

SetID adds the id to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) SetTimeout

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

SetTimeout adds the timeout to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) WithContext

WithContext adds the context to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) WithDefaults

WithDefaults hydrates default values in the get plan execution by Id params (not the query body).

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

func (*GetPlanExecutionByIDParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) WithID

WithID adds the id to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) WithTimeout

WithTimeout adds the timeout to the get plan execution by Id params

func (*GetPlanExecutionByIDParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetPlanExecutionByIDReader

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

GetPlanExecutionByIDReader is a Reader for the GetPlanExecutionByID structure.

func (*GetPlanExecutionByIDReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetPlanExecutionByIDUnauthorized

type GetPlanExecutionByIDUnauthorized struct {
}

GetPlanExecutionByIDUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewGetPlanExecutionByIDUnauthorized

func NewGetPlanExecutionByIDUnauthorized() *GetPlanExecutionByIDUnauthorized

NewGetPlanExecutionByIDUnauthorized creates a GetPlanExecutionByIDUnauthorized with default headers values

func (*GetPlanExecutionByIDUnauthorized) Error

func (*GetPlanExecutionByIDUnauthorized) IsClientError

func (o *GetPlanExecutionByIDUnauthorized) IsClientError() bool

IsClientError returns true when this get plan execution by Id unauthorized response has a 4xx status code

func (*GetPlanExecutionByIDUnauthorized) IsCode

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

IsCode returns true when this get plan execution by Id unauthorized response a status code equal to that given

func (*GetPlanExecutionByIDUnauthorized) IsRedirect

func (o *GetPlanExecutionByIDUnauthorized) IsRedirect() bool

IsRedirect returns true when this get plan execution by Id unauthorized response has a 3xx status code

func (*GetPlanExecutionByIDUnauthorized) IsServerError

func (o *GetPlanExecutionByIDUnauthorized) IsServerError() bool

IsServerError returns true when this get plan execution by Id unauthorized response has a 5xx status code

func (*GetPlanExecutionByIDUnauthorized) IsSuccess

func (o *GetPlanExecutionByIDUnauthorized) IsSuccess() bool

IsSuccess returns true when this get plan execution by Id unauthorized response has a 2xx status code

func (*GetPlanExecutionByIDUnauthorized) String

type QueryPlanExecutionsOK

type QueryPlanExecutionsOK struct {
	Payload *models.ServiceDocumentQueryResult
}

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

Success

func NewQueryPlanExecutionsOK

func NewQueryPlanExecutionsOK() *QueryPlanExecutionsOK

NewQueryPlanExecutionsOK creates a QueryPlanExecutionsOK with default headers values

func (*QueryPlanExecutionsOK) Error

func (o *QueryPlanExecutionsOK) Error() string

func (*QueryPlanExecutionsOK) GetPayload

func (*QueryPlanExecutionsOK) IsClientError

func (o *QueryPlanExecutionsOK) IsClientError() bool

IsClientError returns true when this query plan executions o k response has a 4xx status code

func (*QueryPlanExecutionsOK) IsCode

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

IsCode returns true when this query plan executions o k response a status code equal to that given

func (*QueryPlanExecutionsOK) IsRedirect

func (o *QueryPlanExecutionsOK) IsRedirect() bool

IsRedirect returns true when this query plan executions o k response has a 3xx status code

func (*QueryPlanExecutionsOK) IsServerError

func (o *QueryPlanExecutionsOK) IsServerError() bool

IsServerError returns true when this query plan executions o k response has a 5xx status code

func (*QueryPlanExecutionsOK) IsSuccess

func (o *QueryPlanExecutionsOK) IsSuccess() bool

IsSuccess returns true when this query plan executions o k response has a 2xx status code

func (*QueryPlanExecutionsOK) String

func (o *QueryPlanExecutionsOK) String() string

type QueryPlanExecutionsParams

type QueryPlanExecutionsParams struct {

	/* DollarExpand.

	   Expand document contents
	*/
	DollarExpand *bool

	/* DollarFilter.

	   OData filter expression
	*/
	DollarFilter *string

	/* DollarLimit.

	   Set maximum number of documents to return in this query
	*/
	DollarLimit *int64

	/* DollarSelect.

	   Comma-separated list of fields to populate in query result
	*/
	DollarSelect *string

	/* DollarTenantLinks.

	   Comma-separated list
	*/
	DollarTenantLinks *string

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

QueryPlanExecutionsParams contains all the parameters to send to the API endpoint

for the query plan executions operation.

Typically these are written to a http.Request.

func NewQueryPlanExecutionsParams

func NewQueryPlanExecutionsParams() *QueryPlanExecutionsParams

NewQueryPlanExecutionsParams creates a new QueryPlanExecutionsParams 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 NewQueryPlanExecutionsParamsWithContext

func NewQueryPlanExecutionsParamsWithContext(ctx context.Context) *QueryPlanExecutionsParams

NewQueryPlanExecutionsParamsWithContext creates a new QueryPlanExecutionsParams object with the ability to set a context for a request.

func NewQueryPlanExecutionsParamsWithHTTPClient

func NewQueryPlanExecutionsParamsWithHTTPClient(client *http.Client) *QueryPlanExecutionsParams

NewQueryPlanExecutionsParamsWithHTTPClient creates a new QueryPlanExecutionsParams object with the ability to set a custom HTTPClient for a request.

func NewQueryPlanExecutionsParamsWithTimeout

func NewQueryPlanExecutionsParamsWithTimeout(timeout time.Duration) *QueryPlanExecutionsParams

NewQueryPlanExecutionsParamsWithTimeout creates a new QueryPlanExecutionsParams object with the ability to set a timeout on a request.

func (*QueryPlanExecutionsParams) SetContext

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

SetContext adds the context to the query plan executions params

func (*QueryPlanExecutionsParams) SetDefaults

func (o *QueryPlanExecutionsParams) SetDefaults()

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

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

func (*QueryPlanExecutionsParams) SetDollarExpand

func (o *QueryPlanExecutionsParams) SetDollarExpand(dollarExpand *bool)

SetDollarExpand adds the dollarExpand to the query plan executions params

func (*QueryPlanExecutionsParams) SetDollarFilter

func (o *QueryPlanExecutionsParams) SetDollarFilter(dollarFilter *string)

SetDollarFilter adds the dollarFilter to the query plan executions params

func (*QueryPlanExecutionsParams) SetDollarLimit

func (o *QueryPlanExecutionsParams) SetDollarLimit(dollarLimit *int64)

SetDollarLimit adds the dollarLimit to the query plan executions params

func (*QueryPlanExecutionsParams) SetDollarSelect

func (o *QueryPlanExecutionsParams) SetDollarSelect(dollarSelect *string)

SetDollarSelect adds the dollarSelect to the query plan executions params

func (o *QueryPlanExecutionsParams) SetDollarTenantLinks(dollarTenantLinks *string)

SetDollarTenantLinks adds the dollarTenantLinks to the query plan executions params

func (*QueryPlanExecutionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the query plan executions params

func (*QueryPlanExecutionsParams) SetTimeout

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

SetTimeout adds the timeout to the query plan executions params

func (*QueryPlanExecutionsParams) WithContext

WithContext adds the context to the query plan executions params

func (*QueryPlanExecutionsParams) WithDefaults

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

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

func (*QueryPlanExecutionsParams) WithDollarExpand

func (o *QueryPlanExecutionsParams) WithDollarExpand(dollarExpand *bool) *QueryPlanExecutionsParams

WithDollarExpand adds the dollarExpand to the query plan executions params

func (*QueryPlanExecutionsParams) WithDollarFilter

func (o *QueryPlanExecutionsParams) WithDollarFilter(dollarFilter *string) *QueryPlanExecutionsParams

WithDollarFilter adds the dollarFilter to the query plan executions params

func (*QueryPlanExecutionsParams) WithDollarLimit

func (o *QueryPlanExecutionsParams) WithDollarLimit(dollarLimit *int64) *QueryPlanExecutionsParams

WithDollarLimit adds the dollarLimit to the query plan executions params

func (*QueryPlanExecutionsParams) WithDollarSelect

func (o *QueryPlanExecutionsParams) WithDollarSelect(dollarSelect *string) *QueryPlanExecutionsParams

WithDollarSelect adds the dollarSelect to the query plan executions params

func (o *QueryPlanExecutionsParams) WithDollarTenantLinks(dollarTenantLinks *string) *QueryPlanExecutionsParams

WithDollarTenantLinks adds the dollarTenantLinks to the query plan executions params

func (*QueryPlanExecutionsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the query plan executions params

func (*QueryPlanExecutionsParams) WithTimeout

WithTimeout adds the timeout to the query plan executions params

func (*QueryPlanExecutionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type QueryPlanExecutionsReader

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

QueryPlanExecutionsReader is a Reader for the QueryPlanExecutions structure.

func (*QueryPlanExecutionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type QueryPlanExecutionsUnauthorized

type QueryPlanExecutionsUnauthorized struct {
}

QueryPlanExecutionsUnauthorized describes a response with status code 401, with default header values.

Unauthorized

func NewQueryPlanExecutionsUnauthorized

func NewQueryPlanExecutionsUnauthorized() *QueryPlanExecutionsUnauthorized

NewQueryPlanExecutionsUnauthorized creates a QueryPlanExecutionsUnauthorized with default headers values

func (*QueryPlanExecutionsUnauthorized) Error

func (*QueryPlanExecutionsUnauthorized) IsClientError

func (o *QueryPlanExecutionsUnauthorized) IsClientError() bool

IsClientError returns true when this query plan executions unauthorized response has a 4xx status code

func (*QueryPlanExecutionsUnauthorized) IsCode

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

IsCode returns true when this query plan executions unauthorized response a status code equal to that given

func (*QueryPlanExecutionsUnauthorized) IsRedirect

func (o *QueryPlanExecutionsUnauthorized) IsRedirect() bool

IsRedirect returns true when this query plan executions unauthorized response has a 3xx status code

func (*QueryPlanExecutionsUnauthorized) IsServerError

func (o *QueryPlanExecutionsUnauthorized) IsServerError() bool

IsServerError returns true when this query plan executions unauthorized response has a 5xx status code

func (*QueryPlanExecutionsUnauthorized) IsSuccess

func (o *QueryPlanExecutionsUnauthorized) IsSuccess() bool

IsSuccess returns true when this query plan executions unauthorized response has a 2xx status code

func (*QueryPlanExecutionsUnauthorized) String

Jump to

Keyboard shortcuts

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