parameter_contexts

package
v1.19.1 Latest Latest
Warning

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

Go to latest
Published: Jan 10, 2023 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 parameter contexts API

func (*Client) CreateParameterContext

func (a *Client) CreateParameterContext(params *CreateParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateParameterContextCreated, error)

CreateParameterContext creates a parameter context

func (*Client) DeleteParameterContext

func (a *Client) DeleteParameterContext(params *DeleteParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteParameterContextOK, error)

DeleteParameterContext deletes the parameter context with the given ID

Deletes the Parameter Context with the given ID.

func (*Client) DeleteValidationRequest added in v1.19.1

func (a *Client) DeleteValidationRequest(params *DeleteValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteValidationRequestOK, error)

DeleteValidationRequest deletes the validation request with the given ID

Deletes the Validation Request with the given ID. After a request is created via a POST to /nifi-api/validation-contexts, it is expected that the client will properly clean up the request by DELETE'ing it, once the validation process has completed. If the request is deleted before the request completes, then the Validation request will finish the step that it is currently performing and then will cancel any subsequent steps.

func (*Client) GetParameterContext

func (a *Client) GetParameterContext(params *GetParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetParameterContextOK, error)

GetParameterContext returns the parameter context with the given ID

Returns the Parameter Context with the given ID.

func (*Client) GetParameterContextUpdate

func (a *Client) GetParameterContextUpdate(params *GetParameterContextUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetParameterContextUpdateOK, error)

GetParameterContextUpdate returns the update request with the given ID

Returns the Update Request with the given ID. Once an Update Request has been created by performing a POST to /nifi-api/parameter-contexts, that request can subsequently be retrieved via this endpoint, and the request that is fetched will contain the updated state, such as percent complete, the current state of the request, and any failures.

func (*Client) GetValidationRequest

func (a *Client) GetValidationRequest(params *GetValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetValidationRequestOK, error)

GetValidationRequest returns the validation request with the given ID

Returns the Validation Request with the given ID. Once a Validation Request has been created by performing a POST to /nifi-api/validation-contexts, that request can subsequently be retrieved via this endpoint, and the request that is fetched will contain the updated state, such as percent complete, the current state of the request, and any failures.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) SubmitParameterContextUpdate

func (a *Client) SubmitParameterContextUpdate(params *SubmitParameterContextUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SubmitParameterContextUpdateOK, error)

SubmitParameterContextUpdate initiates the update request of a parameter context

This will initiate the process of updating a Parameter Context. Changing the value of a Parameter may require that one or more components be stopped and restarted, so this action may take significantly more time than many other REST API actions. As a result, this endpoint will immediately return a ParameterContextUpdateRequestEntity, and the process of updating the necessary components will occur asynchronously in the background. The client may then periodically poll the status of the request by issuing a GET request to /parameter-contexts/update-requests/{requestId}. Once the request is completed, the client is expected to issue a DELETE request to /parameter-contexts/update-requests/{requestId}.

func (*Client) SubmitValidationRequest

func (a *Client) SubmitValidationRequest(params *SubmitValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SubmitValidationRequestOK, error)

SubmitValidationRequest initiates a validation request to determine how the validity of components will change if a parameter context were to be updated

This will initiate the process of validating all components whose Process Group is bound to the specified Parameter Context. Performing validation against an arbitrary number of components may be expect and take significantly more time than many other REST API actions. As a result, this endpoint will immediately return a ParameterContextValidationRequestEntity, and the process of validating the necessary components will occur asynchronously in the background. The client may then periodically poll the status of the request by issuing a GET request to /parameter-contexts/validation-requests/{requestId}. Once the request is completed, the client is expected to issue a DELETE request to /parameter-contexts/validation-requests/{requestId}.

func (*Client) UpdateParameterContext

func (a *Client) UpdateParameterContext(params *UpdateParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateParameterContextOK, error)

UpdateParameterContext modifies a parameter context

This endpoint will update a Parameter Context to match the provided entity. However, this request will fail if any component is running and is referencing a Parameter in the Parameter Context. Generally, this endpoint is not called directly. Instead, an update request should be submitted by making a POST to the /parameter-contexts/update-requests endpoint. That endpoint will, in turn, call this endpoint.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateParameterContext(params *CreateParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateParameterContextCreated, error)

	DeleteParameterContext(params *DeleteParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteParameterContextOK, error)

	DeleteValidationRequest(params *DeleteValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteValidationRequestOK, error)

	GetParameterContext(params *GetParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetParameterContextOK, error)

	GetParameterContextUpdate(params *GetParameterContextUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetParameterContextUpdateOK, error)

	GetValidationRequest(params *GetValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetValidationRequestOK, error)

	SubmitParameterContextUpdate(params *SubmitParameterContextUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SubmitParameterContextUpdateOK, error)

	SubmitValidationRequest(params *SubmitValidationRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SubmitValidationRequestOK, error)

	UpdateParameterContext(params *UpdateParameterContextParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateParameterContextOK, 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 parameter contexts API client.

type CreateParameterContextBadRequest

type CreateParameterContextBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewCreateParameterContextBadRequest

func NewCreateParameterContextBadRequest() *CreateParameterContextBadRequest

NewCreateParameterContextBadRequest creates a CreateParameterContextBadRequest with default headers values

func (*CreateParameterContextBadRequest) Error

func (*CreateParameterContextBadRequest) IsClientError added in v1.19.1

func (o *CreateParameterContextBadRequest) IsClientError() bool

IsClientError returns true when this create parameter context bad request response has a 4xx status code

func (*CreateParameterContextBadRequest) IsCode added in v1.19.1

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

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

func (*CreateParameterContextBadRequest) IsRedirect added in v1.19.1

func (o *CreateParameterContextBadRequest) IsRedirect() bool

IsRedirect returns true when this create parameter context bad request response has a 3xx status code

func (*CreateParameterContextBadRequest) IsServerError added in v1.19.1

func (o *CreateParameterContextBadRequest) IsServerError() bool

IsServerError returns true when this create parameter context bad request response has a 5xx status code

func (*CreateParameterContextBadRequest) IsSuccess added in v1.19.1

func (o *CreateParameterContextBadRequest) IsSuccess() bool

IsSuccess returns true when this create parameter context bad request response has a 2xx status code

func (*CreateParameterContextBadRequest) String added in v1.19.1

type CreateParameterContextConflict

type CreateParameterContextConflict struct {
}

CreateParameterContextConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewCreateParameterContextConflict

func NewCreateParameterContextConflict() *CreateParameterContextConflict

NewCreateParameterContextConflict creates a CreateParameterContextConflict with default headers values

func (*CreateParameterContextConflict) Error

func (*CreateParameterContextConflict) IsClientError added in v1.19.1

func (o *CreateParameterContextConflict) IsClientError() bool

IsClientError returns true when this create parameter context conflict response has a 4xx status code

func (*CreateParameterContextConflict) IsCode added in v1.19.1

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

IsCode returns true when this create parameter context conflict response a status code equal to that given

func (*CreateParameterContextConflict) IsRedirect added in v1.19.1

func (o *CreateParameterContextConflict) IsRedirect() bool

IsRedirect returns true when this create parameter context conflict response has a 3xx status code

func (*CreateParameterContextConflict) IsServerError added in v1.19.1

func (o *CreateParameterContextConflict) IsServerError() bool

IsServerError returns true when this create parameter context conflict response has a 5xx status code

func (*CreateParameterContextConflict) IsSuccess added in v1.19.1

func (o *CreateParameterContextConflict) IsSuccess() bool

IsSuccess returns true when this create parameter context conflict response has a 2xx status code

func (*CreateParameterContextConflict) String added in v1.19.1

type CreateParameterContextCreated added in v1.19.1

type CreateParameterContextCreated struct {
	Payload *models.ParameterContextEntity
}

CreateParameterContextCreated describes a response with status code 201, with default header values.

successful operation

func NewCreateParameterContextCreated added in v1.19.1

func NewCreateParameterContextCreated() *CreateParameterContextCreated

NewCreateParameterContextCreated creates a CreateParameterContextCreated with default headers values

func (*CreateParameterContextCreated) Error added in v1.19.1

func (*CreateParameterContextCreated) GetPayload added in v1.19.1

func (*CreateParameterContextCreated) IsClientError added in v1.19.1

func (o *CreateParameterContextCreated) IsClientError() bool

IsClientError returns true when this create parameter context created response has a 4xx status code

func (*CreateParameterContextCreated) IsCode added in v1.19.1

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

IsCode returns true when this create parameter context created response a status code equal to that given

func (*CreateParameterContextCreated) IsRedirect added in v1.19.1

func (o *CreateParameterContextCreated) IsRedirect() bool

IsRedirect returns true when this create parameter context created response has a 3xx status code

func (*CreateParameterContextCreated) IsServerError added in v1.19.1

func (o *CreateParameterContextCreated) IsServerError() bool

IsServerError returns true when this create parameter context created response has a 5xx status code

func (*CreateParameterContextCreated) IsSuccess added in v1.19.1

func (o *CreateParameterContextCreated) IsSuccess() bool

IsSuccess returns true when this create parameter context created response has a 2xx status code

func (*CreateParameterContextCreated) String added in v1.19.1

type CreateParameterContextForbidden

type CreateParameterContextForbidden struct {
}

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

Client is not authorized to make this request.

func NewCreateParameterContextForbidden

func NewCreateParameterContextForbidden() *CreateParameterContextForbidden

NewCreateParameterContextForbidden creates a CreateParameterContextForbidden with default headers values

func (*CreateParameterContextForbidden) Error

func (*CreateParameterContextForbidden) IsClientError added in v1.19.1

func (o *CreateParameterContextForbidden) IsClientError() bool

IsClientError returns true when this create parameter context forbidden response has a 4xx status code

func (*CreateParameterContextForbidden) IsCode added in v1.19.1

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

IsCode returns true when this create parameter context forbidden response a status code equal to that given

func (*CreateParameterContextForbidden) IsRedirect added in v1.19.1

func (o *CreateParameterContextForbidden) IsRedirect() bool

IsRedirect returns true when this create parameter context forbidden response has a 3xx status code

func (*CreateParameterContextForbidden) IsServerError added in v1.19.1

func (o *CreateParameterContextForbidden) IsServerError() bool

IsServerError returns true when this create parameter context forbidden response has a 5xx status code

func (*CreateParameterContextForbidden) IsSuccess added in v1.19.1

func (o *CreateParameterContextForbidden) IsSuccess() bool

IsSuccess returns true when this create parameter context forbidden response has a 2xx status code

func (*CreateParameterContextForbidden) String added in v1.19.1

type CreateParameterContextNotFound

type CreateParameterContextNotFound struct {
}

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

The specified resource could not be found.

func NewCreateParameterContextNotFound

func NewCreateParameterContextNotFound() *CreateParameterContextNotFound

NewCreateParameterContextNotFound creates a CreateParameterContextNotFound with default headers values

func (*CreateParameterContextNotFound) Error

func (*CreateParameterContextNotFound) IsClientError added in v1.19.1

func (o *CreateParameterContextNotFound) IsClientError() bool

IsClientError returns true when this create parameter context not found response has a 4xx status code

func (*CreateParameterContextNotFound) IsCode added in v1.19.1

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

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

func (*CreateParameterContextNotFound) IsRedirect added in v1.19.1

func (o *CreateParameterContextNotFound) IsRedirect() bool

IsRedirect returns true when this create parameter context not found response has a 3xx status code

func (*CreateParameterContextNotFound) IsServerError added in v1.19.1

func (o *CreateParameterContextNotFound) IsServerError() bool

IsServerError returns true when this create parameter context not found response has a 5xx status code

func (*CreateParameterContextNotFound) IsSuccess added in v1.19.1

func (o *CreateParameterContextNotFound) IsSuccess() bool

IsSuccess returns true when this create parameter context not found response has a 2xx status code

func (*CreateParameterContextNotFound) String added in v1.19.1

type CreateParameterContextParams

type CreateParameterContextParams struct {

	/* Body.

	   The Parameter Context.
	*/
	Body *models.ParameterContextEntity

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

CreateParameterContextParams contains all the parameters to send to the API endpoint

for the create parameter context operation.

Typically these are written to a http.Request.

func NewCreateParameterContextParams

func NewCreateParameterContextParams() *CreateParameterContextParams

NewCreateParameterContextParams creates a new CreateParameterContextParams 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 NewCreateParameterContextParamsWithContext

func NewCreateParameterContextParamsWithContext(ctx context.Context) *CreateParameterContextParams

NewCreateParameterContextParamsWithContext creates a new CreateParameterContextParams object with the ability to set a context for a request.

func NewCreateParameterContextParamsWithHTTPClient

func NewCreateParameterContextParamsWithHTTPClient(client *http.Client) *CreateParameterContextParams

NewCreateParameterContextParamsWithHTTPClient creates a new CreateParameterContextParams object with the ability to set a custom HTTPClient for a request.

func NewCreateParameterContextParamsWithTimeout

func NewCreateParameterContextParamsWithTimeout(timeout time.Duration) *CreateParameterContextParams

NewCreateParameterContextParamsWithTimeout creates a new CreateParameterContextParams object with the ability to set a timeout on a request.

func (*CreateParameterContextParams) SetBody

SetBody adds the body to the create parameter context params

func (*CreateParameterContextParams) SetContext

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

SetContext adds the context to the create parameter context params

func (*CreateParameterContextParams) SetDefaults

func (o *CreateParameterContextParams) SetDefaults()

SetDefaults hydrates default values in the create parameter context params (not the query body).

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

func (*CreateParameterContextParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create parameter context params

func (*CreateParameterContextParams) SetTimeout

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

SetTimeout adds the timeout to the create parameter context params

func (*CreateParameterContextParams) WithBody

WithBody adds the body to the create parameter context params

func (*CreateParameterContextParams) WithContext

WithContext adds the context to the create parameter context params

func (*CreateParameterContextParams) WithDefaults

WithDefaults hydrates default values in the create parameter context params (not the query body).

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

func (*CreateParameterContextParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create parameter context params

func (*CreateParameterContextParams) WithTimeout

WithTimeout adds the timeout to the create parameter context params

func (*CreateParameterContextParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateParameterContextReader

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

CreateParameterContextReader is a Reader for the CreateParameterContext structure.

func (*CreateParameterContextReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateParameterContextUnauthorized

type CreateParameterContextUnauthorized struct {
}

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

Client could not be authenticated.

func NewCreateParameterContextUnauthorized

func NewCreateParameterContextUnauthorized() *CreateParameterContextUnauthorized

NewCreateParameterContextUnauthorized creates a CreateParameterContextUnauthorized with default headers values

func (*CreateParameterContextUnauthorized) Error

func (*CreateParameterContextUnauthorized) IsClientError added in v1.19.1

func (o *CreateParameterContextUnauthorized) IsClientError() bool

IsClientError returns true when this create parameter context unauthorized response has a 4xx status code

func (*CreateParameterContextUnauthorized) IsCode added in v1.19.1

IsCode returns true when this create parameter context unauthorized response a status code equal to that given

func (*CreateParameterContextUnauthorized) IsRedirect added in v1.19.1

func (o *CreateParameterContextUnauthorized) IsRedirect() bool

IsRedirect returns true when this create parameter context unauthorized response has a 3xx status code

func (*CreateParameterContextUnauthorized) IsServerError added in v1.19.1

func (o *CreateParameterContextUnauthorized) IsServerError() bool

IsServerError returns true when this create parameter context unauthorized response has a 5xx status code

func (*CreateParameterContextUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this create parameter context unauthorized response has a 2xx status code

func (*CreateParameterContextUnauthorized) String added in v1.19.1

type DeleteParameterContextBadRequest

type DeleteParameterContextBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewDeleteParameterContextBadRequest

func NewDeleteParameterContextBadRequest() *DeleteParameterContextBadRequest

NewDeleteParameterContextBadRequest creates a DeleteParameterContextBadRequest with default headers values

func (*DeleteParameterContextBadRequest) Error

func (*DeleteParameterContextBadRequest) IsClientError added in v1.19.1

func (o *DeleteParameterContextBadRequest) IsClientError() bool

IsClientError returns true when this delete parameter context bad request response has a 4xx status code

func (*DeleteParameterContextBadRequest) IsCode added in v1.19.1

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

IsCode returns true when this delete parameter context bad request response a status code equal to that given

func (*DeleteParameterContextBadRequest) IsRedirect added in v1.19.1

func (o *DeleteParameterContextBadRequest) IsRedirect() bool

IsRedirect returns true when this delete parameter context bad request response has a 3xx status code

func (*DeleteParameterContextBadRequest) IsServerError added in v1.19.1

func (o *DeleteParameterContextBadRequest) IsServerError() bool

IsServerError returns true when this delete parameter context bad request response has a 5xx status code

func (*DeleteParameterContextBadRequest) IsSuccess added in v1.19.1

func (o *DeleteParameterContextBadRequest) IsSuccess() bool

IsSuccess returns true when this delete parameter context bad request response has a 2xx status code

func (*DeleteParameterContextBadRequest) String added in v1.19.1

type DeleteParameterContextConflict

type DeleteParameterContextConflict struct {
}

DeleteParameterContextConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewDeleteParameterContextConflict

func NewDeleteParameterContextConflict() *DeleteParameterContextConflict

NewDeleteParameterContextConflict creates a DeleteParameterContextConflict with default headers values

func (*DeleteParameterContextConflict) Error

func (*DeleteParameterContextConflict) IsClientError added in v1.19.1

func (o *DeleteParameterContextConflict) IsClientError() bool

IsClientError returns true when this delete parameter context conflict response has a 4xx status code

func (*DeleteParameterContextConflict) IsCode added in v1.19.1

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

IsCode returns true when this delete parameter context conflict response a status code equal to that given

func (*DeleteParameterContextConflict) IsRedirect added in v1.19.1

func (o *DeleteParameterContextConflict) IsRedirect() bool

IsRedirect returns true when this delete parameter context conflict response has a 3xx status code

func (*DeleteParameterContextConflict) IsServerError added in v1.19.1

func (o *DeleteParameterContextConflict) IsServerError() bool

IsServerError returns true when this delete parameter context conflict response has a 5xx status code

func (*DeleteParameterContextConflict) IsSuccess added in v1.19.1

func (o *DeleteParameterContextConflict) IsSuccess() bool

IsSuccess returns true when this delete parameter context conflict response has a 2xx status code

func (*DeleteParameterContextConflict) String added in v1.19.1

type DeleteParameterContextForbidden

type DeleteParameterContextForbidden struct {
}

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

Client is not authorized to make this request.

func NewDeleteParameterContextForbidden

func NewDeleteParameterContextForbidden() *DeleteParameterContextForbidden

NewDeleteParameterContextForbidden creates a DeleteParameterContextForbidden with default headers values

func (*DeleteParameterContextForbidden) Error

func (*DeleteParameterContextForbidden) IsClientError added in v1.19.1

func (o *DeleteParameterContextForbidden) IsClientError() bool

IsClientError returns true when this delete parameter context forbidden response has a 4xx status code

func (*DeleteParameterContextForbidden) IsCode added in v1.19.1

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

IsCode returns true when this delete parameter context forbidden response a status code equal to that given

func (*DeleteParameterContextForbidden) IsRedirect added in v1.19.1

func (o *DeleteParameterContextForbidden) IsRedirect() bool

IsRedirect returns true when this delete parameter context forbidden response has a 3xx status code

func (*DeleteParameterContextForbidden) IsServerError added in v1.19.1

func (o *DeleteParameterContextForbidden) IsServerError() bool

IsServerError returns true when this delete parameter context forbidden response has a 5xx status code

func (*DeleteParameterContextForbidden) IsSuccess added in v1.19.1

func (o *DeleteParameterContextForbidden) IsSuccess() bool

IsSuccess returns true when this delete parameter context forbidden response has a 2xx status code

func (*DeleteParameterContextForbidden) String added in v1.19.1

type DeleteParameterContextNotFound

type DeleteParameterContextNotFound struct {
}

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

The specified resource could not be found.

func NewDeleteParameterContextNotFound

func NewDeleteParameterContextNotFound() *DeleteParameterContextNotFound

NewDeleteParameterContextNotFound creates a DeleteParameterContextNotFound with default headers values

func (*DeleteParameterContextNotFound) Error

func (*DeleteParameterContextNotFound) IsClientError added in v1.19.1

func (o *DeleteParameterContextNotFound) IsClientError() bool

IsClientError returns true when this delete parameter context not found response has a 4xx status code

func (*DeleteParameterContextNotFound) IsCode added in v1.19.1

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

IsCode returns true when this delete parameter context not found response a status code equal to that given

func (*DeleteParameterContextNotFound) IsRedirect added in v1.19.1

func (o *DeleteParameterContextNotFound) IsRedirect() bool

IsRedirect returns true when this delete parameter context not found response has a 3xx status code

func (*DeleteParameterContextNotFound) IsServerError added in v1.19.1

func (o *DeleteParameterContextNotFound) IsServerError() bool

IsServerError returns true when this delete parameter context not found response has a 5xx status code

func (*DeleteParameterContextNotFound) IsSuccess added in v1.19.1

func (o *DeleteParameterContextNotFound) IsSuccess() bool

IsSuccess returns true when this delete parameter context not found response has a 2xx status code

func (*DeleteParameterContextNotFound) String added in v1.19.1

type DeleteParameterContextOK

type DeleteParameterContextOK struct {
	Payload *models.ParameterContextEntity
}

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

successful operation

func NewDeleteParameterContextOK

func NewDeleteParameterContextOK() *DeleteParameterContextOK

NewDeleteParameterContextOK creates a DeleteParameterContextOK with default headers values

func (*DeleteParameterContextOK) Error

func (o *DeleteParameterContextOK) Error() string

func (*DeleteParameterContextOK) GetPayload

func (*DeleteParameterContextOK) IsClientError added in v1.19.1

func (o *DeleteParameterContextOK) IsClientError() bool

IsClientError returns true when this delete parameter context o k response has a 4xx status code

func (*DeleteParameterContextOK) IsCode added in v1.19.1

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

IsCode returns true when this delete parameter context o k response a status code equal to that given

func (*DeleteParameterContextOK) IsRedirect added in v1.19.1

func (o *DeleteParameterContextOK) IsRedirect() bool

IsRedirect returns true when this delete parameter context o k response has a 3xx status code

func (*DeleteParameterContextOK) IsServerError added in v1.19.1

func (o *DeleteParameterContextOK) IsServerError() bool

IsServerError returns true when this delete parameter context o k response has a 5xx status code

func (*DeleteParameterContextOK) IsSuccess added in v1.19.1

func (o *DeleteParameterContextOK) IsSuccess() bool

IsSuccess returns true when this delete parameter context o k response has a 2xx status code

func (*DeleteParameterContextOK) String added in v1.19.1

func (o *DeleteParameterContextOK) String() string

type DeleteParameterContextParams

type DeleteParameterContextParams struct {

	/* ClientID.

	   If the client id is not specified, a new one will be generated. This value (whether specified or generated) is included in the response.
	*/
	ClientID *string

	/* DisconnectedNodeAcknowledged.

	   Acknowledges that this node is disconnected to allow for mutable requests to proceed.
	*/
	DisconnectedNodeAcknowledged *bool

	/* ID.

	   The Parameter Context ID.
	*/
	ID string

	/* Version.

	   The version is used to verify the client is working with the latest version of the flow.
	*/
	Version *string

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

DeleteParameterContextParams contains all the parameters to send to the API endpoint

for the delete parameter context operation.

Typically these are written to a http.Request.

func NewDeleteParameterContextParams

func NewDeleteParameterContextParams() *DeleteParameterContextParams

NewDeleteParameterContextParams creates a new DeleteParameterContextParams 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 NewDeleteParameterContextParamsWithContext

func NewDeleteParameterContextParamsWithContext(ctx context.Context) *DeleteParameterContextParams

NewDeleteParameterContextParamsWithContext creates a new DeleteParameterContextParams object with the ability to set a context for a request.

func NewDeleteParameterContextParamsWithHTTPClient

func NewDeleteParameterContextParamsWithHTTPClient(client *http.Client) *DeleteParameterContextParams

NewDeleteParameterContextParamsWithHTTPClient creates a new DeleteParameterContextParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteParameterContextParamsWithTimeout

func NewDeleteParameterContextParamsWithTimeout(timeout time.Duration) *DeleteParameterContextParams

NewDeleteParameterContextParamsWithTimeout creates a new DeleteParameterContextParams object with the ability to set a timeout on a request.

func (*DeleteParameterContextParams) SetClientID

func (o *DeleteParameterContextParams) SetClientID(clientID *string)

SetClientID adds the clientId to the delete parameter context params

func (*DeleteParameterContextParams) SetContext

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

SetContext adds the context to the delete parameter context params

func (*DeleteParameterContextParams) SetDefaults

func (o *DeleteParameterContextParams) SetDefaults()

SetDefaults hydrates default values in the delete parameter context params (not the query body).

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

func (*DeleteParameterContextParams) SetDisconnectedNodeAcknowledged

func (o *DeleteParameterContextParams) SetDisconnectedNodeAcknowledged(disconnectedNodeAcknowledged *bool)

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete parameter context params

func (*DeleteParameterContextParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete parameter context params

func (*DeleteParameterContextParams) SetID

func (o *DeleteParameterContextParams) SetID(id string)

SetID adds the id to the delete parameter context params

func (*DeleteParameterContextParams) SetTimeout

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

SetTimeout adds the timeout to the delete parameter context params

func (*DeleteParameterContextParams) SetVersion

func (o *DeleteParameterContextParams) SetVersion(version *string)

SetVersion adds the version to the delete parameter context params

func (*DeleteParameterContextParams) WithClientID

WithClientID adds the clientID to the delete parameter context params

func (*DeleteParameterContextParams) WithContext

WithContext adds the context to the delete parameter context params

func (*DeleteParameterContextParams) WithDefaults

WithDefaults hydrates default values in the delete parameter context params (not the query body).

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

func (*DeleteParameterContextParams) WithDisconnectedNodeAcknowledged

func (o *DeleteParameterContextParams) WithDisconnectedNodeAcknowledged(disconnectedNodeAcknowledged *bool) *DeleteParameterContextParams

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete parameter context params

func (*DeleteParameterContextParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete parameter context params

func (*DeleteParameterContextParams) WithID

WithID adds the id to the delete parameter context params

func (*DeleteParameterContextParams) WithTimeout

WithTimeout adds the timeout to the delete parameter context params

func (*DeleteParameterContextParams) WithVersion

WithVersion adds the version to the delete parameter context params

func (*DeleteParameterContextParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteParameterContextReader

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

DeleteParameterContextReader is a Reader for the DeleteParameterContext structure.

func (*DeleteParameterContextReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteParameterContextUnauthorized

type DeleteParameterContextUnauthorized struct {
}

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

Client could not be authenticated.

func NewDeleteParameterContextUnauthorized

func NewDeleteParameterContextUnauthorized() *DeleteParameterContextUnauthorized

NewDeleteParameterContextUnauthorized creates a DeleteParameterContextUnauthorized with default headers values

func (*DeleteParameterContextUnauthorized) Error

func (*DeleteParameterContextUnauthorized) IsClientError added in v1.19.1

func (o *DeleteParameterContextUnauthorized) IsClientError() bool

IsClientError returns true when this delete parameter context unauthorized response has a 4xx status code

func (*DeleteParameterContextUnauthorized) IsCode added in v1.19.1

IsCode returns true when this delete parameter context unauthorized response a status code equal to that given

func (*DeleteParameterContextUnauthorized) IsRedirect added in v1.19.1

func (o *DeleteParameterContextUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete parameter context unauthorized response has a 3xx status code

func (*DeleteParameterContextUnauthorized) IsServerError added in v1.19.1

func (o *DeleteParameterContextUnauthorized) IsServerError() bool

IsServerError returns true when this delete parameter context unauthorized response has a 5xx status code

func (*DeleteParameterContextUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this delete parameter context unauthorized response has a 2xx status code

func (*DeleteParameterContextUnauthorized) String added in v1.19.1

type DeleteValidationRequestBadRequest added in v1.19.1

type DeleteValidationRequestBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewDeleteValidationRequestBadRequest added in v1.19.1

func NewDeleteValidationRequestBadRequest() *DeleteValidationRequestBadRequest

NewDeleteValidationRequestBadRequest creates a DeleteValidationRequestBadRequest with default headers values

func (*DeleteValidationRequestBadRequest) Error added in v1.19.1

func (*DeleteValidationRequestBadRequest) IsClientError added in v1.19.1

func (o *DeleteValidationRequestBadRequest) IsClientError() bool

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

func (*DeleteValidationRequestBadRequest) IsCode added in v1.19.1

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

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

func (*DeleteValidationRequestBadRequest) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestBadRequest) IsRedirect() bool

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

func (*DeleteValidationRequestBadRequest) IsServerError added in v1.19.1

func (o *DeleteValidationRequestBadRequest) IsServerError() bool

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

func (*DeleteValidationRequestBadRequest) IsSuccess added in v1.19.1

func (o *DeleteValidationRequestBadRequest) IsSuccess() bool

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

func (*DeleteValidationRequestBadRequest) String added in v1.19.1

type DeleteValidationRequestConflict added in v1.19.1

type DeleteValidationRequestConflict struct {
}

DeleteValidationRequestConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewDeleteValidationRequestConflict added in v1.19.1

func NewDeleteValidationRequestConflict() *DeleteValidationRequestConflict

NewDeleteValidationRequestConflict creates a DeleteValidationRequestConflict with default headers values

func (*DeleteValidationRequestConflict) Error added in v1.19.1

func (*DeleteValidationRequestConflict) IsClientError added in v1.19.1

func (o *DeleteValidationRequestConflict) IsClientError() bool

IsClientError returns true when this delete validation request conflict response has a 4xx status code

func (*DeleteValidationRequestConflict) IsCode added in v1.19.1

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

IsCode returns true when this delete validation request conflict response a status code equal to that given

func (*DeleteValidationRequestConflict) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestConflict) IsRedirect() bool

IsRedirect returns true when this delete validation request conflict response has a 3xx status code

func (*DeleteValidationRequestConflict) IsServerError added in v1.19.1

func (o *DeleteValidationRequestConflict) IsServerError() bool

IsServerError returns true when this delete validation request conflict response has a 5xx status code

func (*DeleteValidationRequestConflict) IsSuccess added in v1.19.1

func (o *DeleteValidationRequestConflict) IsSuccess() bool

IsSuccess returns true when this delete validation request conflict response has a 2xx status code

func (*DeleteValidationRequestConflict) String added in v1.19.1

type DeleteValidationRequestForbidden added in v1.19.1

type DeleteValidationRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewDeleteValidationRequestForbidden added in v1.19.1

func NewDeleteValidationRequestForbidden() *DeleteValidationRequestForbidden

NewDeleteValidationRequestForbidden creates a DeleteValidationRequestForbidden with default headers values

func (*DeleteValidationRequestForbidden) Error added in v1.19.1

func (*DeleteValidationRequestForbidden) IsClientError added in v1.19.1

func (o *DeleteValidationRequestForbidden) IsClientError() bool

IsClientError returns true when this delete validation request forbidden response has a 4xx status code

func (*DeleteValidationRequestForbidden) IsCode added in v1.19.1

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

IsCode returns true when this delete validation request forbidden response a status code equal to that given

func (*DeleteValidationRequestForbidden) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestForbidden) IsRedirect() bool

IsRedirect returns true when this delete validation request forbidden response has a 3xx status code

func (*DeleteValidationRequestForbidden) IsServerError added in v1.19.1

func (o *DeleteValidationRequestForbidden) IsServerError() bool

IsServerError returns true when this delete validation request forbidden response has a 5xx status code

func (*DeleteValidationRequestForbidden) IsSuccess added in v1.19.1

func (o *DeleteValidationRequestForbidden) IsSuccess() bool

IsSuccess returns true when this delete validation request forbidden response has a 2xx status code

func (*DeleteValidationRequestForbidden) String added in v1.19.1

type DeleteValidationRequestNotFound added in v1.19.1

type DeleteValidationRequestNotFound struct {
}

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

The specified resource could not be found.

func NewDeleteValidationRequestNotFound added in v1.19.1

func NewDeleteValidationRequestNotFound() *DeleteValidationRequestNotFound

NewDeleteValidationRequestNotFound creates a DeleteValidationRequestNotFound with default headers values

func (*DeleteValidationRequestNotFound) Error added in v1.19.1

func (*DeleteValidationRequestNotFound) IsClientError added in v1.19.1

func (o *DeleteValidationRequestNotFound) IsClientError() bool

IsClientError returns true when this delete validation request not found response has a 4xx status code

func (*DeleteValidationRequestNotFound) IsCode added in v1.19.1

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

IsCode returns true when this delete validation request not found response a status code equal to that given

func (*DeleteValidationRequestNotFound) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestNotFound) IsRedirect() bool

IsRedirect returns true when this delete validation request not found response has a 3xx status code

func (*DeleteValidationRequestNotFound) IsServerError added in v1.19.1

func (o *DeleteValidationRequestNotFound) IsServerError() bool

IsServerError returns true when this delete validation request not found response has a 5xx status code

func (*DeleteValidationRequestNotFound) IsSuccess added in v1.19.1

func (o *DeleteValidationRequestNotFound) IsSuccess() bool

IsSuccess returns true when this delete validation request not found response has a 2xx status code

func (*DeleteValidationRequestNotFound) String added in v1.19.1

type DeleteValidationRequestOK added in v1.19.1

type DeleteValidationRequestOK struct {
	Payload *models.ParameterContextValidationRequestEntity
}

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

successful operation

func NewDeleteValidationRequestOK added in v1.19.1

func NewDeleteValidationRequestOK() *DeleteValidationRequestOK

NewDeleteValidationRequestOK creates a DeleteValidationRequestOK with default headers values

func (*DeleteValidationRequestOK) Error added in v1.19.1

func (o *DeleteValidationRequestOK) Error() string

func (*DeleteValidationRequestOK) GetPayload added in v1.19.1

func (*DeleteValidationRequestOK) IsClientError added in v1.19.1

func (o *DeleteValidationRequestOK) IsClientError() bool

IsClientError returns true when this delete validation request o k response has a 4xx status code

func (*DeleteValidationRequestOK) IsCode added in v1.19.1

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

IsCode returns true when this delete validation request o k response a status code equal to that given

func (*DeleteValidationRequestOK) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestOK) IsRedirect() bool

IsRedirect returns true when this delete validation request o k response has a 3xx status code

func (*DeleteValidationRequestOK) IsServerError added in v1.19.1

func (o *DeleteValidationRequestOK) IsServerError() bool

IsServerError returns true when this delete validation request o k response has a 5xx status code

func (*DeleteValidationRequestOK) IsSuccess added in v1.19.1

func (o *DeleteValidationRequestOK) IsSuccess() bool

IsSuccess returns true when this delete validation request o k response has a 2xx status code

func (*DeleteValidationRequestOK) String added in v1.19.1

func (o *DeleteValidationRequestOK) String() string

type DeleteValidationRequestParams added in v1.19.1

type DeleteValidationRequestParams struct {

	/* ContextID.

	   The ID of the Parameter Context
	*/
	ContextID string

	/* DisconnectedNodeAcknowledged.

	   Acknowledges that this node is disconnected to allow for mutable requests to proceed.
	*/
	DisconnectedNodeAcknowledged *bool

	/* ID.

	   The ID of the Update Request
	*/
	ID string

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

DeleteValidationRequestParams contains all the parameters to send to the API endpoint

for the delete validation request operation.

Typically these are written to a http.Request.

func NewDeleteValidationRequestParams added in v1.19.1

func NewDeleteValidationRequestParams() *DeleteValidationRequestParams

NewDeleteValidationRequestParams creates a new DeleteValidationRequestParams 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 NewDeleteValidationRequestParamsWithContext added in v1.19.1

func NewDeleteValidationRequestParamsWithContext(ctx context.Context) *DeleteValidationRequestParams

NewDeleteValidationRequestParamsWithContext creates a new DeleteValidationRequestParams object with the ability to set a context for a request.

func NewDeleteValidationRequestParamsWithHTTPClient added in v1.19.1

func NewDeleteValidationRequestParamsWithHTTPClient(client *http.Client) *DeleteValidationRequestParams

NewDeleteValidationRequestParamsWithHTTPClient creates a new DeleteValidationRequestParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteValidationRequestParamsWithTimeout added in v1.19.1

func NewDeleteValidationRequestParamsWithTimeout(timeout time.Duration) *DeleteValidationRequestParams

NewDeleteValidationRequestParamsWithTimeout creates a new DeleteValidationRequestParams object with the ability to set a timeout on a request.

func (*DeleteValidationRequestParams) SetContext added in v1.19.1

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

SetContext adds the context to the delete validation request params

func (*DeleteValidationRequestParams) SetContextID added in v1.19.1

func (o *DeleteValidationRequestParams) SetContextID(contextID string)

SetContextID adds the contextId to the delete validation request params

func (*DeleteValidationRequestParams) SetDefaults added in v1.19.1

func (o *DeleteValidationRequestParams) SetDefaults()

SetDefaults hydrates default values in the delete validation request params (not the query body).

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

func (*DeleteValidationRequestParams) SetDisconnectedNodeAcknowledged added in v1.19.1

func (o *DeleteValidationRequestParams) SetDisconnectedNodeAcknowledged(disconnectedNodeAcknowledged *bool)

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete validation request params

func (*DeleteValidationRequestParams) SetHTTPClient added in v1.19.1

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

SetHTTPClient adds the HTTPClient to the delete validation request params

func (*DeleteValidationRequestParams) SetID added in v1.19.1

SetID adds the id to the delete validation request params

func (*DeleteValidationRequestParams) SetTimeout added in v1.19.1

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

SetTimeout adds the timeout to the delete validation request params

func (*DeleteValidationRequestParams) WithContext added in v1.19.1

WithContext adds the context to the delete validation request params

func (*DeleteValidationRequestParams) WithContextID added in v1.19.1

WithContextID adds the contextID to the delete validation request params

func (*DeleteValidationRequestParams) WithDefaults added in v1.19.1

WithDefaults hydrates default values in the delete validation request params (not the query body).

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

func (*DeleteValidationRequestParams) WithDisconnectedNodeAcknowledged added in v1.19.1

func (o *DeleteValidationRequestParams) WithDisconnectedNodeAcknowledged(disconnectedNodeAcknowledged *bool) *DeleteValidationRequestParams

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete validation request params

func (*DeleteValidationRequestParams) WithHTTPClient added in v1.19.1

WithHTTPClient adds the HTTPClient to the delete validation request params

func (*DeleteValidationRequestParams) WithID added in v1.19.1

WithID adds the id to the delete validation request params

func (*DeleteValidationRequestParams) WithTimeout added in v1.19.1

WithTimeout adds the timeout to the delete validation request params

func (*DeleteValidationRequestParams) WriteToRequest added in v1.19.1

WriteToRequest writes these params to a swagger request

type DeleteValidationRequestReader added in v1.19.1

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

DeleteValidationRequestReader is a Reader for the DeleteValidationRequest structure.

func (*DeleteValidationRequestReader) ReadResponse added in v1.19.1

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

ReadResponse reads a server response into the received o.

type DeleteValidationRequestUnauthorized added in v1.19.1

type DeleteValidationRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewDeleteValidationRequestUnauthorized added in v1.19.1

func NewDeleteValidationRequestUnauthorized() *DeleteValidationRequestUnauthorized

NewDeleteValidationRequestUnauthorized creates a DeleteValidationRequestUnauthorized with default headers values

func (*DeleteValidationRequestUnauthorized) Error added in v1.19.1

func (*DeleteValidationRequestUnauthorized) IsClientError added in v1.19.1

func (o *DeleteValidationRequestUnauthorized) IsClientError() bool

IsClientError returns true when this delete validation request unauthorized response has a 4xx status code

func (*DeleteValidationRequestUnauthorized) IsCode added in v1.19.1

IsCode returns true when this delete validation request unauthorized response a status code equal to that given

func (*DeleteValidationRequestUnauthorized) IsRedirect added in v1.19.1

func (o *DeleteValidationRequestUnauthorized) IsRedirect() bool

IsRedirect returns true when this delete validation request unauthorized response has a 3xx status code

func (*DeleteValidationRequestUnauthorized) IsServerError added in v1.19.1

func (o *DeleteValidationRequestUnauthorized) IsServerError() bool

IsServerError returns true when this delete validation request unauthorized response has a 5xx status code

func (*DeleteValidationRequestUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this delete validation request unauthorized response has a 2xx status code

func (*DeleteValidationRequestUnauthorized) String added in v1.19.1

type GetParameterContextBadRequest

type GetParameterContextBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetParameterContextBadRequest

func NewGetParameterContextBadRequest() *GetParameterContextBadRequest

NewGetParameterContextBadRequest creates a GetParameterContextBadRequest with default headers values

func (*GetParameterContextBadRequest) Error

func (*GetParameterContextBadRequest) IsClientError added in v1.19.1

func (o *GetParameterContextBadRequest) IsClientError() bool

IsClientError returns true when this get parameter context bad request response has a 4xx status code

func (*GetParameterContextBadRequest) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context bad request response a status code equal to that given

func (*GetParameterContextBadRequest) IsRedirect added in v1.19.1

func (o *GetParameterContextBadRequest) IsRedirect() bool

IsRedirect returns true when this get parameter context bad request response has a 3xx status code

func (*GetParameterContextBadRequest) IsServerError added in v1.19.1

func (o *GetParameterContextBadRequest) IsServerError() bool

IsServerError returns true when this get parameter context bad request response has a 5xx status code

func (*GetParameterContextBadRequest) IsSuccess added in v1.19.1

func (o *GetParameterContextBadRequest) IsSuccess() bool

IsSuccess returns true when this get parameter context bad request response has a 2xx status code

func (*GetParameterContextBadRequest) String added in v1.19.1

type GetParameterContextConflict

type GetParameterContextConflict struct {
}

GetParameterContextConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewGetParameterContextConflict

func NewGetParameterContextConflict() *GetParameterContextConflict

NewGetParameterContextConflict creates a GetParameterContextConflict with default headers values

func (*GetParameterContextConflict) Error

func (*GetParameterContextConflict) IsClientError added in v1.19.1

func (o *GetParameterContextConflict) IsClientError() bool

IsClientError returns true when this get parameter context conflict response has a 4xx status code

func (*GetParameterContextConflict) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context conflict response a status code equal to that given

func (*GetParameterContextConflict) IsRedirect added in v1.19.1

func (o *GetParameterContextConflict) IsRedirect() bool

IsRedirect returns true when this get parameter context conflict response has a 3xx status code

func (*GetParameterContextConflict) IsServerError added in v1.19.1

func (o *GetParameterContextConflict) IsServerError() bool

IsServerError returns true when this get parameter context conflict response has a 5xx status code

func (*GetParameterContextConflict) IsSuccess added in v1.19.1

func (o *GetParameterContextConflict) IsSuccess() bool

IsSuccess returns true when this get parameter context conflict response has a 2xx status code

func (*GetParameterContextConflict) String added in v1.19.1

func (o *GetParameterContextConflict) String() string

type GetParameterContextForbidden

type GetParameterContextForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetParameterContextForbidden

func NewGetParameterContextForbidden() *GetParameterContextForbidden

NewGetParameterContextForbidden creates a GetParameterContextForbidden with default headers values

func (*GetParameterContextForbidden) Error

func (*GetParameterContextForbidden) IsClientError added in v1.19.1

func (o *GetParameterContextForbidden) IsClientError() bool

IsClientError returns true when this get parameter context forbidden response has a 4xx status code

func (*GetParameterContextForbidden) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context forbidden response a status code equal to that given

func (*GetParameterContextForbidden) IsRedirect added in v1.19.1

func (o *GetParameterContextForbidden) IsRedirect() bool

IsRedirect returns true when this get parameter context forbidden response has a 3xx status code

func (*GetParameterContextForbidden) IsServerError added in v1.19.1

func (o *GetParameterContextForbidden) IsServerError() bool

IsServerError returns true when this get parameter context forbidden response has a 5xx status code

func (*GetParameterContextForbidden) IsSuccess added in v1.19.1

func (o *GetParameterContextForbidden) IsSuccess() bool

IsSuccess returns true when this get parameter context forbidden response has a 2xx status code

func (*GetParameterContextForbidden) String added in v1.19.1

type GetParameterContextNotFound

type GetParameterContextNotFound struct {
}

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

The specified resource could not be found.

func NewGetParameterContextNotFound

func NewGetParameterContextNotFound() *GetParameterContextNotFound

NewGetParameterContextNotFound creates a GetParameterContextNotFound with default headers values

func (*GetParameterContextNotFound) Error

func (*GetParameterContextNotFound) IsClientError added in v1.19.1

func (o *GetParameterContextNotFound) IsClientError() bool

IsClientError returns true when this get parameter context not found response has a 4xx status code

func (*GetParameterContextNotFound) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context not found response a status code equal to that given

func (*GetParameterContextNotFound) IsRedirect added in v1.19.1

func (o *GetParameterContextNotFound) IsRedirect() bool

IsRedirect returns true when this get parameter context not found response has a 3xx status code

func (*GetParameterContextNotFound) IsServerError added in v1.19.1

func (o *GetParameterContextNotFound) IsServerError() bool

IsServerError returns true when this get parameter context not found response has a 5xx status code

func (*GetParameterContextNotFound) IsSuccess added in v1.19.1

func (o *GetParameterContextNotFound) IsSuccess() bool

IsSuccess returns true when this get parameter context not found response has a 2xx status code

func (*GetParameterContextNotFound) String added in v1.19.1

func (o *GetParameterContextNotFound) String() string

type GetParameterContextOK

type GetParameterContextOK struct {
	Payload *models.ParameterContextEntity
}

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

successful operation

func NewGetParameterContextOK

func NewGetParameterContextOK() *GetParameterContextOK

NewGetParameterContextOK creates a GetParameterContextOK with default headers values

func (*GetParameterContextOK) Error

func (o *GetParameterContextOK) Error() string

func (*GetParameterContextOK) GetPayload

func (*GetParameterContextOK) IsClientError added in v1.19.1

func (o *GetParameterContextOK) IsClientError() bool

IsClientError returns true when this get parameter context o k response has a 4xx status code

func (*GetParameterContextOK) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context o k response a status code equal to that given

func (*GetParameterContextOK) IsRedirect added in v1.19.1

func (o *GetParameterContextOK) IsRedirect() bool

IsRedirect returns true when this get parameter context o k response has a 3xx status code

func (*GetParameterContextOK) IsServerError added in v1.19.1

func (o *GetParameterContextOK) IsServerError() bool

IsServerError returns true when this get parameter context o k response has a 5xx status code

func (*GetParameterContextOK) IsSuccess added in v1.19.1

func (o *GetParameterContextOK) IsSuccess() bool

IsSuccess returns true when this get parameter context o k response has a 2xx status code

func (*GetParameterContextOK) String added in v1.19.1

func (o *GetParameterContextOK) String() string

type GetParameterContextParams

type GetParameterContextParams struct {

	/* ID.

	   The ID of the Parameter Context
	*/
	ID string

	/* IncludeInheritedParameters.

	   Whether or not to include inherited parameters from other parameter contexts, and therefore also overridden values.  If true, the result will be the 'effective' parameter context.
	*/
	IncludeInheritedParameters *bool

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

GetParameterContextParams contains all the parameters to send to the API endpoint

for the get parameter context operation.

Typically these are written to a http.Request.

func NewGetParameterContextParams

func NewGetParameterContextParams() *GetParameterContextParams

NewGetParameterContextParams creates a new GetParameterContextParams 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 NewGetParameterContextParamsWithContext

func NewGetParameterContextParamsWithContext(ctx context.Context) *GetParameterContextParams

NewGetParameterContextParamsWithContext creates a new GetParameterContextParams object with the ability to set a context for a request.

func NewGetParameterContextParamsWithHTTPClient

func NewGetParameterContextParamsWithHTTPClient(client *http.Client) *GetParameterContextParams

NewGetParameterContextParamsWithHTTPClient creates a new GetParameterContextParams object with the ability to set a custom HTTPClient for a request.

func NewGetParameterContextParamsWithTimeout

func NewGetParameterContextParamsWithTimeout(timeout time.Duration) *GetParameterContextParams

NewGetParameterContextParamsWithTimeout creates a new GetParameterContextParams object with the ability to set a timeout on a request.

func (*GetParameterContextParams) SetContext

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

SetContext adds the context to the get parameter context params

func (*GetParameterContextParams) SetDefaults

func (o *GetParameterContextParams) SetDefaults()

SetDefaults hydrates default values in the get parameter context params (not the query body).

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

func (*GetParameterContextParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get parameter context params

func (*GetParameterContextParams) SetID

func (o *GetParameterContextParams) SetID(id string)

SetID adds the id to the get parameter context params

func (*GetParameterContextParams) SetIncludeInheritedParameters

func (o *GetParameterContextParams) SetIncludeInheritedParameters(includeInheritedParameters *bool)

SetIncludeInheritedParameters adds the includeInheritedParameters to the get parameter context params

func (*GetParameterContextParams) SetTimeout

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

SetTimeout adds the timeout to the get parameter context params

func (*GetParameterContextParams) WithContext

WithContext adds the context to the get parameter context params

func (*GetParameterContextParams) WithDefaults

WithDefaults hydrates default values in the get parameter context params (not the query body).

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

func (*GetParameterContextParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get parameter context params

func (*GetParameterContextParams) WithID

WithID adds the id to the get parameter context params

func (*GetParameterContextParams) WithIncludeInheritedParameters

func (o *GetParameterContextParams) WithIncludeInheritedParameters(includeInheritedParameters *bool) *GetParameterContextParams

WithIncludeInheritedParameters adds the includeInheritedParameters to the get parameter context params

func (*GetParameterContextParams) WithTimeout

WithTimeout adds the timeout to the get parameter context params

func (*GetParameterContextParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetParameterContextReader

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

GetParameterContextReader is a Reader for the GetParameterContext structure.

func (*GetParameterContextReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetParameterContextUnauthorized

type GetParameterContextUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetParameterContextUnauthorized

func NewGetParameterContextUnauthorized() *GetParameterContextUnauthorized

NewGetParameterContextUnauthorized creates a GetParameterContextUnauthorized with default headers values

func (*GetParameterContextUnauthorized) Error

func (*GetParameterContextUnauthorized) IsClientError added in v1.19.1

func (o *GetParameterContextUnauthorized) IsClientError() bool

IsClientError returns true when this get parameter context unauthorized response has a 4xx status code

func (*GetParameterContextUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context unauthorized response a status code equal to that given

func (*GetParameterContextUnauthorized) IsRedirect added in v1.19.1

func (o *GetParameterContextUnauthorized) IsRedirect() bool

IsRedirect returns true when this get parameter context unauthorized response has a 3xx status code

func (*GetParameterContextUnauthorized) IsServerError added in v1.19.1

func (o *GetParameterContextUnauthorized) IsServerError() bool

IsServerError returns true when this get parameter context unauthorized response has a 5xx status code

func (*GetParameterContextUnauthorized) IsSuccess added in v1.19.1

func (o *GetParameterContextUnauthorized) IsSuccess() bool

IsSuccess returns true when this get parameter context unauthorized response has a 2xx status code

func (*GetParameterContextUnauthorized) String added in v1.19.1

type GetParameterContextUpdateBadRequest

type GetParameterContextUpdateBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetParameterContextUpdateBadRequest

func NewGetParameterContextUpdateBadRequest() *GetParameterContextUpdateBadRequest

NewGetParameterContextUpdateBadRequest creates a GetParameterContextUpdateBadRequest with default headers values

func (*GetParameterContextUpdateBadRequest) Error

func (*GetParameterContextUpdateBadRequest) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateBadRequest) IsClientError() bool

IsClientError returns true when this get parameter context update bad request response has a 4xx status code

func (*GetParameterContextUpdateBadRequest) IsCode added in v1.19.1

IsCode returns true when this get parameter context update bad request response a status code equal to that given

func (*GetParameterContextUpdateBadRequest) IsRedirect added in v1.19.1

func (o *GetParameterContextUpdateBadRequest) IsRedirect() bool

IsRedirect returns true when this get parameter context update bad request response has a 3xx status code

func (*GetParameterContextUpdateBadRequest) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateBadRequest) IsServerError() bool

IsServerError returns true when this get parameter context update bad request response has a 5xx status code

func (*GetParameterContextUpdateBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this get parameter context update bad request response has a 2xx status code

func (*GetParameterContextUpdateBadRequest) String added in v1.19.1

type GetParameterContextUpdateConflict

type GetParameterContextUpdateConflict struct {
}

GetParameterContextUpdateConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewGetParameterContextUpdateConflict

func NewGetParameterContextUpdateConflict() *GetParameterContextUpdateConflict

NewGetParameterContextUpdateConflict creates a GetParameterContextUpdateConflict with default headers values

func (*GetParameterContextUpdateConflict) Error

func (*GetParameterContextUpdateConflict) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateConflict) IsClientError() bool

IsClientError returns true when this get parameter context update conflict response has a 4xx status code

func (*GetParameterContextUpdateConflict) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context update conflict response a status code equal to that given

func (*GetParameterContextUpdateConflict) IsRedirect added in v1.19.1

func (o *GetParameterContextUpdateConflict) IsRedirect() bool

IsRedirect returns true when this get parameter context update conflict response has a 3xx status code

func (*GetParameterContextUpdateConflict) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateConflict) IsServerError() bool

IsServerError returns true when this get parameter context update conflict response has a 5xx status code

func (*GetParameterContextUpdateConflict) IsSuccess added in v1.19.1

func (o *GetParameterContextUpdateConflict) IsSuccess() bool

IsSuccess returns true when this get parameter context update conflict response has a 2xx status code

func (*GetParameterContextUpdateConflict) String added in v1.19.1

type GetParameterContextUpdateForbidden

type GetParameterContextUpdateForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetParameterContextUpdateForbidden

func NewGetParameterContextUpdateForbidden() *GetParameterContextUpdateForbidden

NewGetParameterContextUpdateForbidden creates a GetParameterContextUpdateForbidden with default headers values

func (*GetParameterContextUpdateForbidden) Error

func (*GetParameterContextUpdateForbidden) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateForbidden) IsClientError() bool

IsClientError returns true when this get parameter context update forbidden response has a 4xx status code

func (*GetParameterContextUpdateForbidden) IsCode added in v1.19.1

IsCode returns true when this get parameter context update forbidden response a status code equal to that given

func (*GetParameterContextUpdateForbidden) IsRedirect added in v1.19.1

func (o *GetParameterContextUpdateForbidden) IsRedirect() bool

IsRedirect returns true when this get parameter context update forbidden response has a 3xx status code

func (*GetParameterContextUpdateForbidden) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateForbidden) IsServerError() bool

IsServerError returns true when this get parameter context update forbidden response has a 5xx status code

func (*GetParameterContextUpdateForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this get parameter context update forbidden response has a 2xx status code

func (*GetParameterContextUpdateForbidden) String added in v1.19.1

type GetParameterContextUpdateNotFound

type GetParameterContextUpdateNotFound struct {
}

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

The specified resource could not be found.

func NewGetParameterContextUpdateNotFound

func NewGetParameterContextUpdateNotFound() *GetParameterContextUpdateNotFound

NewGetParameterContextUpdateNotFound creates a GetParameterContextUpdateNotFound with default headers values

func (*GetParameterContextUpdateNotFound) Error

func (*GetParameterContextUpdateNotFound) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateNotFound) IsClientError() bool

IsClientError returns true when this get parameter context update not found response has a 4xx status code

func (*GetParameterContextUpdateNotFound) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context update not found response a status code equal to that given

func (*GetParameterContextUpdateNotFound) IsRedirect added in v1.19.1

func (o *GetParameterContextUpdateNotFound) IsRedirect() bool

IsRedirect returns true when this get parameter context update not found response has a 3xx status code

func (*GetParameterContextUpdateNotFound) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateNotFound) IsServerError() bool

IsServerError returns true when this get parameter context update not found response has a 5xx status code

func (*GetParameterContextUpdateNotFound) IsSuccess added in v1.19.1

func (o *GetParameterContextUpdateNotFound) IsSuccess() bool

IsSuccess returns true when this get parameter context update not found response has a 2xx status code

func (*GetParameterContextUpdateNotFound) String added in v1.19.1

type GetParameterContextUpdateOK

type GetParameterContextUpdateOK struct {
	Payload *models.ParameterContextUpdateRequestEntity
}

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

successful operation

func NewGetParameterContextUpdateOK

func NewGetParameterContextUpdateOK() *GetParameterContextUpdateOK

NewGetParameterContextUpdateOK creates a GetParameterContextUpdateOK with default headers values

func (*GetParameterContextUpdateOK) Error

func (*GetParameterContextUpdateOK) GetPayload

func (*GetParameterContextUpdateOK) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateOK) IsClientError() bool

IsClientError returns true when this get parameter context update o k response has a 4xx status code

func (*GetParameterContextUpdateOK) IsCode added in v1.19.1

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

IsCode returns true when this get parameter context update o k response a status code equal to that given

func (*GetParameterContextUpdateOK) IsRedirect added in v1.19.1

func (o *GetParameterContextUpdateOK) IsRedirect() bool

IsRedirect returns true when this get parameter context update o k response has a 3xx status code

func (*GetParameterContextUpdateOK) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateOK) IsServerError() bool

IsServerError returns true when this get parameter context update o k response has a 5xx status code

func (*GetParameterContextUpdateOK) IsSuccess added in v1.19.1

func (o *GetParameterContextUpdateOK) IsSuccess() bool

IsSuccess returns true when this get parameter context update o k response has a 2xx status code

func (*GetParameterContextUpdateOK) String added in v1.19.1

func (o *GetParameterContextUpdateOK) String() string

type GetParameterContextUpdateParams

type GetParameterContextUpdateParams struct {

	/* ContextID.

	   The ID of the Parameter Context
	*/
	ContextID string

	/* RequestID.

	   The ID of the Update Request
	*/
	RequestID string

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

GetParameterContextUpdateParams contains all the parameters to send to the API endpoint

for the get parameter context update operation.

Typically these are written to a http.Request.

func NewGetParameterContextUpdateParams

func NewGetParameterContextUpdateParams() *GetParameterContextUpdateParams

NewGetParameterContextUpdateParams creates a new GetParameterContextUpdateParams 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 NewGetParameterContextUpdateParamsWithContext

func NewGetParameterContextUpdateParamsWithContext(ctx context.Context) *GetParameterContextUpdateParams

NewGetParameterContextUpdateParamsWithContext creates a new GetParameterContextUpdateParams object with the ability to set a context for a request.

func NewGetParameterContextUpdateParamsWithHTTPClient

func NewGetParameterContextUpdateParamsWithHTTPClient(client *http.Client) *GetParameterContextUpdateParams

NewGetParameterContextUpdateParamsWithHTTPClient creates a new GetParameterContextUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewGetParameterContextUpdateParamsWithTimeout

func NewGetParameterContextUpdateParamsWithTimeout(timeout time.Duration) *GetParameterContextUpdateParams

NewGetParameterContextUpdateParamsWithTimeout creates a new GetParameterContextUpdateParams object with the ability to set a timeout on a request.

func (*GetParameterContextUpdateParams) SetContext

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

SetContext adds the context to the get parameter context update params

func (*GetParameterContextUpdateParams) SetContextID

func (o *GetParameterContextUpdateParams) SetContextID(contextID string)

SetContextID adds the contextId to the get parameter context update params

func (*GetParameterContextUpdateParams) SetDefaults

func (o *GetParameterContextUpdateParams) SetDefaults()

SetDefaults hydrates default values in the get parameter context update params (not the query body).

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

func (*GetParameterContextUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get parameter context update params

func (*GetParameterContextUpdateParams) SetRequestID

func (o *GetParameterContextUpdateParams) SetRequestID(requestID string)

SetRequestID adds the requestId to the get parameter context update params

func (*GetParameterContextUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the get parameter context update params

func (*GetParameterContextUpdateParams) WithContext

WithContext adds the context to the get parameter context update params

func (*GetParameterContextUpdateParams) WithContextID

WithContextID adds the contextID to the get parameter context update params

func (*GetParameterContextUpdateParams) WithDefaults

WithDefaults hydrates default values in the get parameter context update params (not the query body).

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

func (*GetParameterContextUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get parameter context update params

func (*GetParameterContextUpdateParams) WithRequestID

WithRequestID adds the requestID to the get parameter context update params

func (*GetParameterContextUpdateParams) WithTimeout

WithTimeout adds the timeout to the get parameter context update params

func (*GetParameterContextUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetParameterContextUpdateReader

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

GetParameterContextUpdateReader is a Reader for the GetParameterContextUpdate structure.

func (*GetParameterContextUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetParameterContextUpdateUnauthorized

type GetParameterContextUpdateUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetParameterContextUpdateUnauthorized

func NewGetParameterContextUpdateUnauthorized() *GetParameterContextUpdateUnauthorized

NewGetParameterContextUpdateUnauthorized creates a GetParameterContextUpdateUnauthorized with default headers values

func (*GetParameterContextUpdateUnauthorized) Error

func (*GetParameterContextUpdateUnauthorized) IsClientError added in v1.19.1

func (o *GetParameterContextUpdateUnauthorized) IsClientError() bool

IsClientError returns true when this get parameter context update unauthorized response has a 4xx status code

func (*GetParameterContextUpdateUnauthorized) IsCode added in v1.19.1

IsCode returns true when this get parameter context update unauthorized response a status code equal to that given

func (*GetParameterContextUpdateUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this get parameter context update unauthorized response has a 3xx status code

func (*GetParameterContextUpdateUnauthorized) IsServerError added in v1.19.1

func (o *GetParameterContextUpdateUnauthorized) IsServerError() bool

IsServerError returns true when this get parameter context update unauthorized response has a 5xx status code

func (*GetParameterContextUpdateUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this get parameter context update unauthorized response has a 2xx status code

func (*GetParameterContextUpdateUnauthorized) String added in v1.19.1

type GetValidationRequestBadRequest

type GetValidationRequestBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewGetValidationRequestBadRequest

func NewGetValidationRequestBadRequest() *GetValidationRequestBadRequest

NewGetValidationRequestBadRequest creates a GetValidationRequestBadRequest with default headers values

func (*GetValidationRequestBadRequest) Error

func (*GetValidationRequestBadRequest) IsClientError added in v1.19.1

func (o *GetValidationRequestBadRequest) IsClientError() bool

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

func (*GetValidationRequestBadRequest) IsCode added in v1.19.1

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

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

func (*GetValidationRequestBadRequest) IsRedirect added in v1.19.1

func (o *GetValidationRequestBadRequest) IsRedirect() bool

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

func (*GetValidationRequestBadRequest) IsServerError added in v1.19.1

func (o *GetValidationRequestBadRequest) IsServerError() bool

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

func (*GetValidationRequestBadRequest) IsSuccess added in v1.19.1

func (o *GetValidationRequestBadRequest) IsSuccess() bool

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

func (*GetValidationRequestBadRequest) String added in v1.19.1

type GetValidationRequestConflict

type GetValidationRequestConflict struct {
}

GetValidationRequestConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewGetValidationRequestConflict

func NewGetValidationRequestConflict() *GetValidationRequestConflict

NewGetValidationRequestConflict creates a GetValidationRequestConflict with default headers values

func (*GetValidationRequestConflict) Error

func (*GetValidationRequestConflict) IsClientError added in v1.19.1

func (o *GetValidationRequestConflict) IsClientError() bool

IsClientError returns true when this get validation request conflict response has a 4xx status code

func (*GetValidationRequestConflict) IsCode added in v1.19.1

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

IsCode returns true when this get validation request conflict response a status code equal to that given

func (*GetValidationRequestConflict) IsRedirect added in v1.19.1

func (o *GetValidationRequestConflict) IsRedirect() bool

IsRedirect returns true when this get validation request conflict response has a 3xx status code

func (*GetValidationRequestConflict) IsServerError added in v1.19.1

func (o *GetValidationRequestConflict) IsServerError() bool

IsServerError returns true when this get validation request conflict response has a 5xx status code

func (*GetValidationRequestConflict) IsSuccess added in v1.19.1

func (o *GetValidationRequestConflict) IsSuccess() bool

IsSuccess returns true when this get validation request conflict response has a 2xx status code

func (*GetValidationRequestConflict) String added in v1.19.1

type GetValidationRequestForbidden

type GetValidationRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetValidationRequestForbidden

func NewGetValidationRequestForbidden() *GetValidationRequestForbidden

NewGetValidationRequestForbidden creates a GetValidationRequestForbidden with default headers values

func (*GetValidationRequestForbidden) Error

func (*GetValidationRequestForbidden) IsClientError added in v1.19.1

func (o *GetValidationRequestForbidden) IsClientError() bool

IsClientError returns true when this get validation request forbidden response has a 4xx status code

func (*GetValidationRequestForbidden) IsCode added in v1.19.1

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

IsCode returns true when this get validation request forbidden response a status code equal to that given

func (*GetValidationRequestForbidden) IsRedirect added in v1.19.1

func (o *GetValidationRequestForbidden) IsRedirect() bool

IsRedirect returns true when this get validation request forbidden response has a 3xx status code

func (*GetValidationRequestForbidden) IsServerError added in v1.19.1

func (o *GetValidationRequestForbidden) IsServerError() bool

IsServerError returns true when this get validation request forbidden response has a 5xx status code

func (*GetValidationRequestForbidden) IsSuccess added in v1.19.1

func (o *GetValidationRequestForbidden) IsSuccess() bool

IsSuccess returns true when this get validation request forbidden response has a 2xx status code

func (*GetValidationRequestForbidden) String added in v1.19.1

type GetValidationRequestNotFound

type GetValidationRequestNotFound struct {
}

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

The specified resource could not be found.

func NewGetValidationRequestNotFound

func NewGetValidationRequestNotFound() *GetValidationRequestNotFound

NewGetValidationRequestNotFound creates a GetValidationRequestNotFound with default headers values

func (*GetValidationRequestNotFound) Error

func (*GetValidationRequestNotFound) IsClientError added in v1.19.1

func (o *GetValidationRequestNotFound) IsClientError() bool

IsClientError returns true when this get validation request not found response has a 4xx status code

func (*GetValidationRequestNotFound) IsCode added in v1.19.1

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

IsCode returns true when this get validation request not found response a status code equal to that given

func (*GetValidationRequestNotFound) IsRedirect added in v1.19.1

func (o *GetValidationRequestNotFound) IsRedirect() bool

IsRedirect returns true when this get validation request not found response has a 3xx status code

func (*GetValidationRequestNotFound) IsServerError added in v1.19.1

func (o *GetValidationRequestNotFound) IsServerError() bool

IsServerError returns true when this get validation request not found response has a 5xx status code

func (*GetValidationRequestNotFound) IsSuccess added in v1.19.1

func (o *GetValidationRequestNotFound) IsSuccess() bool

IsSuccess returns true when this get validation request not found response has a 2xx status code

func (*GetValidationRequestNotFound) String added in v1.19.1

type GetValidationRequestOK

type GetValidationRequestOK struct {
	Payload *models.ParameterContextValidationRequestEntity
}

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

successful operation

func NewGetValidationRequestOK

func NewGetValidationRequestOK() *GetValidationRequestOK

NewGetValidationRequestOK creates a GetValidationRequestOK with default headers values

func (*GetValidationRequestOK) Error

func (o *GetValidationRequestOK) Error() string

func (*GetValidationRequestOK) GetPayload

func (*GetValidationRequestOK) IsClientError added in v1.19.1

func (o *GetValidationRequestOK) IsClientError() bool

IsClientError returns true when this get validation request o k response has a 4xx status code

func (*GetValidationRequestOK) IsCode added in v1.19.1

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

IsCode returns true when this get validation request o k response a status code equal to that given

func (*GetValidationRequestOK) IsRedirect added in v1.19.1

func (o *GetValidationRequestOK) IsRedirect() bool

IsRedirect returns true when this get validation request o k response has a 3xx status code

func (*GetValidationRequestOK) IsServerError added in v1.19.1

func (o *GetValidationRequestOK) IsServerError() bool

IsServerError returns true when this get validation request o k response has a 5xx status code

func (*GetValidationRequestOK) IsSuccess added in v1.19.1

func (o *GetValidationRequestOK) IsSuccess() bool

IsSuccess returns true when this get validation request o k response has a 2xx status code

func (*GetValidationRequestOK) String added in v1.19.1

func (o *GetValidationRequestOK) String() string

type GetValidationRequestParams

type GetValidationRequestParams struct {

	/* ContextID.

	   The ID of the Parameter Context
	*/
	ContextID string

	/* ID.

	   The ID of the Validation Request
	*/
	ID string

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

GetValidationRequestParams contains all the parameters to send to the API endpoint

for the get validation request operation.

Typically these are written to a http.Request.

func NewGetValidationRequestParams

func NewGetValidationRequestParams() *GetValidationRequestParams

NewGetValidationRequestParams creates a new GetValidationRequestParams 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 NewGetValidationRequestParamsWithContext

func NewGetValidationRequestParamsWithContext(ctx context.Context) *GetValidationRequestParams

NewGetValidationRequestParamsWithContext creates a new GetValidationRequestParams object with the ability to set a context for a request.

func NewGetValidationRequestParamsWithHTTPClient

func NewGetValidationRequestParamsWithHTTPClient(client *http.Client) *GetValidationRequestParams

NewGetValidationRequestParamsWithHTTPClient creates a new GetValidationRequestParams object with the ability to set a custom HTTPClient for a request.

func NewGetValidationRequestParamsWithTimeout

func NewGetValidationRequestParamsWithTimeout(timeout time.Duration) *GetValidationRequestParams

NewGetValidationRequestParamsWithTimeout creates a new GetValidationRequestParams object with the ability to set a timeout on a request.

func (*GetValidationRequestParams) SetContext

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

SetContext adds the context to the get validation request params

func (*GetValidationRequestParams) SetContextID

func (o *GetValidationRequestParams) SetContextID(contextID string)

SetContextID adds the contextId to the get validation request params

func (*GetValidationRequestParams) SetDefaults

func (o *GetValidationRequestParams) SetDefaults()

SetDefaults hydrates default values in the get validation request params (not the query body).

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

func (*GetValidationRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get validation request params

func (*GetValidationRequestParams) SetID

func (o *GetValidationRequestParams) SetID(id string)

SetID adds the id to the get validation request params

func (*GetValidationRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get validation request params

func (*GetValidationRequestParams) WithContext

WithContext adds the context to the get validation request params

func (*GetValidationRequestParams) WithContextID

func (o *GetValidationRequestParams) WithContextID(contextID string) *GetValidationRequestParams

WithContextID adds the contextID to the get validation request params

func (*GetValidationRequestParams) WithDefaults

WithDefaults hydrates default values in the get validation request params (not the query body).

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

func (*GetValidationRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get validation request params

func (*GetValidationRequestParams) WithID

WithID adds the id to the get validation request params

func (*GetValidationRequestParams) WithTimeout

WithTimeout adds the timeout to the get validation request params

func (*GetValidationRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetValidationRequestReader

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

GetValidationRequestReader is a Reader for the GetValidationRequest structure.

func (*GetValidationRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetValidationRequestUnauthorized

type GetValidationRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetValidationRequestUnauthorized

func NewGetValidationRequestUnauthorized() *GetValidationRequestUnauthorized

NewGetValidationRequestUnauthorized creates a GetValidationRequestUnauthorized with default headers values

func (*GetValidationRequestUnauthorized) Error

func (*GetValidationRequestUnauthorized) IsClientError added in v1.19.1

func (o *GetValidationRequestUnauthorized) IsClientError() bool

IsClientError returns true when this get validation request unauthorized response has a 4xx status code

func (*GetValidationRequestUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this get validation request unauthorized response a status code equal to that given

func (*GetValidationRequestUnauthorized) IsRedirect added in v1.19.1

func (o *GetValidationRequestUnauthorized) IsRedirect() bool

IsRedirect returns true when this get validation request unauthorized response has a 3xx status code

func (*GetValidationRequestUnauthorized) IsServerError added in v1.19.1

func (o *GetValidationRequestUnauthorized) IsServerError() bool

IsServerError returns true when this get validation request unauthorized response has a 5xx status code

func (*GetValidationRequestUnauthorized) IsSuccess added in v1.19.1

func (o *GetValidationRequestUnauthorized) IsSuccess() bool

IsSuccess returns true when this get validation request unauthorized response has a 2xx status code

func (*GetValidationRequestUnauthorized) String added in v1.19.1

type SubmitParameterContextUpdateBadRequest

type SubmitParameterContextUpdateBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewSubmitParameterContextUpdateBadRequest

func NewSubmitParameterContextUpdateBadRequest() *SubmitParameterContextUpdateBadRequest

NewSubmitParameterContextUpdateBadRequest creates a SubmitParameterContextUpdateBadRequest with default headers values

func (*SubmitParameterContextUpdateBadRequest) Error

func (*SubmitParameterContextUpdateBadRequest) IsClientError added in v1.19.1

func (o *SubmitParameterContextUpdateBadRequest) IsClientError() bool

IsClientError returns true when this submit parameter context update bad request response has a 4xx status code

func (*SubmitParameterContextUpdateBadRequest) IsCode added in v1.19.1

IsCode returns true when this submit parameter context update bad request response a status code equal to that given

func (*SubmitParameterContextUpdateBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this submit parameter context update bad request response has a 3xx status code

func (*SubmitParameterContextUpdateBadRequest) IsServerError added in v1.19.1

func (o *SubmitParameterContextUpdateBadRequest) IsServerError() bool

IsServerError returns true when this submit parameter context update bad request response has a 5xx status code

func (*SubmitParameterContextUpdateBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this submit parameter context update bad request response has a 2xx status code

func (*SubmitParameterContextUpdateBadRequest) String added in v1.19.1

type SubmitParameterContextUpdateConflict

type SubmitParameterContextUpdateConflict struct {
}

SubmitParameterContextUpdateConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewSubmitParameterContextUpdateConflict

func NewSubmitParameterContextUpdateConflict() *SubmitParameterContextUpdateConflict

NewSubmitParameterContextUpdateConflict creates a SubmitParameterContextUpdateConflict with default headers values

func (*SubmitParameterContextUpdateConflict) Error

func (*SubmitParameterContextUpdateConflict) IsClientError added in v1.19.1

func (o *SubmitParameterContextUpdateConflict) IsClientError() bool

IsClientError returns true when this submit parameter context update conflict response has a 4xx status code

func (*SubmitParameterContextUpdateConflict) IsCode added in v1.19.1

IsCode returns true when this submit parameter context update conflict response a status code equal to that given

func (*SubmitParameterContextUpdateConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this submit parameter context update conflict response has a 3xx status code

func (*SubmitParameterContextUpdateConflict) IsServerError added in v1.19.1

func (o *SubmitParameterContextUpdateConflict) IsServerError() bool

IsServerError returns true when this submit parameter context update conflict response has a 5xx status code

func (*SubmitParameterContextUpdateConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this submit parameter context update conflict response has a 2xx status code

func (*SubmitParameterContextUpdateConflict) String added in v1.19.1

type SubmitParameterContextUpdateForbidden

type SubmitParameterContextUpdateForbidden struct {
}

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

Client is not authorized to make this request.

func NewSubmitParameterContextUpdateForbidden

func NewSubmitParameterContextUpdateForbidden() *SubmitParameterContextUpdateForbidden

NewSubmitParameterContextUpdateForbidden creates a SubmitParameterContextUpdateForbidden with default headers values

func (*SubmitParameterContextUpdateForbidden) Error

func (*SubmitParameterContextUpdateForbidden) IsClientError added in v1.19.1

func (o *SubmitParameterContextUpdateForbidden) IsClientError() bool

IsClientError returns true when this submit parameter context update forbidden response has a 4xx status code

func (*SubmitParameterContextUpdateForbidden) IsCode added in v1.19.1

IsCode returns true when this submit parameter context update forbidden response a status code equal to that given

func (*SubmitParameterContextUpdateForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this submit parameter context update forbidden response has a 3xx status code

func (*SubmitParameterContextUpdateForbidden) IsServerError added in v1.19.1

func (o *SubmitParameterContextUpdateForbidden) IsServerError() bool

IsServerError returns true when this submit parameter context update forbidden response has a 5xx status code

func (*SubmitParameterContextUpdateForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this submit parameter context update forbidden response has a 2xx status code

func (*SubmitParameterContextUpdateForbidden) String added in v1.19.1

type SubmitParameterContextUpdateNotFound

type SubmitParameterContextUpdateNotFound struct {
}

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

The specified resource could not be found.

func NewSubmitParameterContextUpdateNotFound

func NewSubmitParameterContextUpdateNotFound() *SubmitParameterContextUpdateNotFound

NewSubmitParameterContextUpdateNotFound creates a SubmitParameterContextUpdateNotFound with default headers values

func (*SubmitParameterContextUpdateNotFound) Error

func (*SubmitParameterContextUpdateNotFound) IsClientError added in v1.19.1

func (o *SubmitParameterContextUpdateNotFound) IsClientError() bool

IsClientError returns true when this submit parameter context update not found response has a 4xx status code

func (*SubmitParameterContextUpdateNotFound) IsCode added in v1.19.1

IsCode returns true when this submit parameter context update not found response a status code equal to that given

func (*SubmitParameterContextUpdateNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this submit parameter context update not found response has a 3xx status code

func (*SubmitParameterContextUpdateNotFound) IsServerError added in v1.19.1

func (o *SubmitParameterContextUpdateNotFound) IsServerError() bool

IsServerError returns true when this submit parameter context update not found response has a 5xx status code

func (*SubmitParameterContextUpdateNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this submit parameter context update not found response has a 2xx status code

func (*SubmitParameterContextUpdateNotFound) String added in v1.19.1

type SubmitParameterContextUpdateOK

type SubmitParameterContextUpdateOK struct {
	Payload *models.ParameterContextUpdateRequestEntity
}

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

successful operation

func NewSubmitParameterContextUpdateOK

func NewSubmitParameterContextUpdateOK() *SubmitParameterContextUpdateOK

NewSubmitParameterContextUpdateOK creates a SubmitParameterContextUpdateOK with default headers values

func (*SubmitParameterContextUpdateOK) Error

func (*SubmitParameterContextUpdateOK) GetPayload

func (*SubmitParameterContextUpdateOK) IsClientError added in v1.19.1

func (o *SubmitParameterContextUpdateOK) IsClientError() bool

IsClientError returns true when this submit parameter context update o k response has a 4xx status code

func (*SubmitParameterContextUpdateOK) IsCode added in v1.19.1

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

IsCode returns true when this submit parameter context update o k response a status code equal to that given

func (*SubmitParameterContextUpdateOK) IsRedirect added in v1.19.1

func (o *SubmitParameterContextUpdateOK) IsRedirect() bool

IsRedirect returns true when this submit parameter context update o k response has a 3xx status code

func (*SubmitParameterContextUpdateOK) IsServerError added in v1.19.1

func (o *SubmitParameterContextUpdateOK) IsServerError() bool

IsServerError returns true when this submit parameter context update o k response has a 5xx status code

func (*SubmitParameterContextUpdateOK) IsSuccess added in v1.19.1

func (o *SubmitParameterContextUpdateOK) IsSuccess() bool

IsSuccess returns true when this submit parameter context update o k response has a 2xx status code

func (*SubmitParameterContextUpdateOK) String added in v1.19.1

type SubmitParameterContextUpdateParams

type SubmitParameterContextUpdateParams struct {

	/* Body.

	   The updated version of the parameter context.
	*/
	Body *models.ParameterContextEntity

	// ContextID.
	ContextID string

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

SubmitParameterContextUpdateParams contains all the parameters to send to the API endpoint

for the submit parameter context update operation.

Typically these are written to a http.Request.

func NewSubmitParameterContextUpdateParams

func NewSubmitParameterContextUpdateParams() *SubmitParameterContextUpdateParams

NewSubmitParameterContextUpdateParams creates a new SubmitParameterContextUpdateParams 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 NewSubmitParameterContextUpdateParamsWithContext

func NewSubmitParameterContextUpdateParamsWithContext(ctx context.Context) *SubmitParameterContextUpdateParams

NewSubmitParameterContextUpdateParamsWithContext creates a new SubmitParameterContextUpdateParams object with the ability to set a context for a request.

func NewSubmitParameterContextUpdateParamsWithHTTPClient

func NewSubmitParameterContextUpdateParamsWithHTTPClient(client *http.Client) *SubmitParameterContextUpdateParams

NewSubmitParameterContextUpdateParamsWithHTTPClient creates a new SubmitParameterContextUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewSubmitParameterContextUpdateParamsWithTimeout

func NewSubmitParameterContextUpdateParamsWithTimeout(timeout time.Duration) *SubmitParameterContextUpdateParams

NewSubmitParameterContextUpdateParamsWithTimeout creates a new SubmitParameterContextUpdateParams object with the ability to set a timeout on a request.

func (*SubmitParameterContextUpdateParams) SetBody

SetBody adds the body to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) SetContext

SetContext adds the context to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) SetContextID

func (o *SubmitParameterContextUpdateParams) SetContextID(contextID string)

SetContextID adds the contextId to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) SetDefaults

func (o *SubmitParameterContextUpdateParams) SetDefaults()

SetDefaults hydrates default values in the submit parameter context update params (not the query body).

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

func (*SubmitParameterContextUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WithBody

WithBody adds the body to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WithContext

WithContext adds the context to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WithContextID

WithContextID adds the contextID to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WithDefaults

WithDefaults hydrates default values in the submit parameter context update params (not the query body).

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

func (*SubmitParameterContextUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WithTimeout

WithTimeout adds the timeout to the submit parameter context update params

func (*SubmitParameterContextUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SubmitParameterContextUpdateReader

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

SubmitParameterContextUpdateReader is a Reader for the SubmitParameterContextUpdate structure.

func (*SubmitParameterContextUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SubmitParameterContextUpdateUnauthorized

type SubmitParameterContextUpdateUnauthorized struct {
}

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

Client could not be authenticated.

func NewSubmitParameterContextUpdateUnauthorized

func NewSubmitParameterContextUpdateUnauthorized() *SubmitParameterContextUpdateUnauthorized

NewSubmitParameterContextUpdateUnauthorized creates a SubmitParameterContextUpdateUnauthorized with default headers values

func (*SubmitParameterContextUpdateUnauthorized) Error

func (*SubmitParameterContextUpdateUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this submit parameter context update unauthorized response has a 4xx status code

func (*SubmitParameterContextUpdateUnauthorized) IsCode added in v1.19.1

IsCode returns true when this submit parameter context update unauthorized response a status code equal to that given

func (*SubmitParameterContextUpdateUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this submit parameter context update unauthorized response has a 3xx status code

func (*SubmitParameterContextUpdateUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this submit parameter context update unauthorized response has a 5xx status code

func (*SubmitParameterContextUpdateUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this submit parameter context update unauthorized response has a 2xx status code

func (*SubmitParameterContextUpdateUnauthorized) String added in v1.19.1

type SubmitValidationRequestBadRequest

type SubmitValidationRequestBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewSubmitValidationRequestBadRequest

func NewSubmitValidationRequestBadRequest() *SubmitValidationRequestBadRequest

NewSubmitValidationRequestBadRequest creates a SubmitValidationRequestBadRequest with default headers values

func (*SubmitValidationRequestBadRequest) Error

func (*SubmitValidationRequestBadRequest) IsClientError added in v1.19.1

func (o *SubmitValidationRequestBadRequest) IsClientError() bool

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

func (*SubmitValidationRequestBadRequest) IsCode added in v1.19.1

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

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

func (*SubmitValidationRequestBadRequest) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestBadRequest) IsRedirect() bool

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

func (*SubmitValidationRequestBadRequest) IsServerError added in v1.19.1

func (o *SubmitValidationRequestBadRequest) IsServerError() bool

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

func (*SubmitValidationRequestBadRequest) IsSuccess added in v1.19.1

func (o *SubmitValidationRequestBadRequest) IsSuccess() bool

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

func (*SubmitValidationRequestBadRequest) String added in v1.19.1

type SubmitValidationRequestConflict

type SubmitValidationRequestConflict struct {
}

SubmitValidationRequestConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewSubmitValidationRequestConflict

func NewSubmitValidationRequestConflict() *SubmitValidationRequestConflict

NewSubmitValidationRequestConflict creates a SubmitValidationRequestConflict with default headers values

func (*SubmitValidationRequestConflict) Error

func (*SubmitValidationRequestConflict) IsClientError added in v1.19.1

func (o *SubmitValidationRequestConflict) IsClientError() bool

IsClientError returns true when this submit validation request conflict response has a 4xx status code

func (*SubmitValidationRequestConflict) IsCode added in v1.19.1

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

IsCode returns true when this submit validation request conflict response a status code equal to that given

func (*SubmitValidationRequestConflict) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestConflict) IsRedirect() bool

IsRedirect returns true when this submit validation request conflict response has a 3xx status code

func (*SubmitValidationRequestConflict) IsServerError added in v1.19.1

func (o *SubmitValidationRequestConflict) IsServerError() bool

IsServerError returns true when this submit validation request conflict response has a 5xx status code

func (*SubmitValidationRequestConflict) IsSuccess added in v1.19.1

func (o *SubmitValidationRequestConflict) IsSuccess() bool

IsSuccess returns true when this submit validation request conflict response has a 2xx status code

func (*SubmitValidationRequestConflict) String added in v1.19.1

type SubmitValidationRequestForbidden

type SubmitValidationRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewSubmitValidationRequestForbidden

func NewSubmitValidationRequestForbidden() *SubmitValidationRequestForbidden

NewSubmitValidationRequestForbidden creates a SubmitValidationRequestForbidden with default headers values

func (*SubmitValidationRequestForbidden) Error

func (*SubmitValidationRequestForbidden) IsClientError added in v1.19.1

func (o *SubmitValidationRequestForbidden) IsClientError() bool

IsClientError returns true when this submit validation request forbidden response has a 4xx status code

func (*SubmitValidationRequestForbidden) IsCode added in v1.19.1

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

IsCode returns true when this submit validation request forbidden response a status code equal to that given

func (*SubmitValidationRequestForbidden) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestForbidden) IsRedirect() bool

IsRedirect returns true when this submit validation request forbidden response has a 3xx status code

func (*SubmitValidationRequestForbidden) IsServerError added in v1.19.1

func (o *SubmitValidationRequestForbidden) IsServerError() bool

IsServerError returns true when this submit validation request forbidden response has a 5xx status code

func (*SubmitValidationRequestForbidden) IsSuccess added in v1.19.1

func (o *SubmitValidationRequestForbidden) IsSuccess() bool

IsSuccess returns true when this submit validation request forbidden response has a 2xx status code

func (*SubmitValidationRequestForbidden) String added in v1.19.1

type SubmitValidationRequestNotFound

type SubmitValidationRequestNotFound struct {
}

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

The specified resource could not be found.

func NewSubmitValidationRequestNotFound

func NewSubmitValidationRequestNotFound() *SubmitValidationRequestNotFound

NewSubmitValidationRequestNotFound creates a SubmitValidationRequestNotFound with default headers values

func (*SubmitValidationRequestNotFound) Error

func (*SubmitValidationRequestNotFound) IsClientError added in v1.19.1

func (o *SubmitValidationRequestNotFound) IsClientError() bool

IsClientError returns true when this submit validation request not found response has a 4xx status code

func (*SubmitValidationRequestNotFound) IsCode added in v1.19.1

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

IsCode returns true when this submit validation request not found response a status code equal to that given

func (*SubmitValidationRequestNotFound) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestNotFound) IsRedirect() bool

IsRedirect returns true when this submit validation request not found response has a 3xx status code

func (*SubmitValidationRequestNotFound) IsServerError added in v1.19.1

func (o *SubmitValidationRequestNotFound) IsServerError() bool

IsServerError returns true when this submit validation request not found response has a 5xx status code

func (*SubmitValidationRequestNotFound) IsSuccess added in v1.19.1

func (o *SubmitValidationRequestNotFound) IsSuccess() bool

IsSuccess returns true when this submit validation request not found response has a 2xx status code

func (*SubmitValidationRequestNotFound) String added in v1.19.1

type SubmitValidationRequestOK

type SubmitValidationRequestOK struct {
	Payload *models.ParameterContextValidationRequestEntity
}

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

successful operation

func NewSubmitValidationRequestOK

func NewSubmitValidationRequestOK() *SubmitValidationRequestOK

NewSubmitValidationRequestOK creates a SubmitValidationRequestOK with default headers values

func (*SubmitValidationRequestOK) Error

func (o *SubmitValidationRequestOK) Error() string

func (*SubmitValidationRequestOK) GetPayload

func (*SubmitValidationRequestOK) IsClientError added in v1.19.1

func (o *SubmitValidationRequestOK) IsClientError() bool

IsClientError returns true when this submit validation request o k response has a 4xx status code

func (*SubmitValidationRequestOK) IsCode added in v1.19.1

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

IsCode returns true when this submit validation request o k response a status code equal to that given

func (*SubmitValidationRequestOK) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestOK) IsRedirect() bool

IsRedirect returns true when this submit validation request o k response has a 3xx status code

func (*SubmitValidationRequestOK) IsServerError added in v1.19.1

func (o *SubmitValidationRequestOK) IsServerError() bool

IsServerError returns true when this submit validation request o k response has a 5xx status code

func (*SubmitValidationRequestOK) IsSuccess added in v1.19.1

func (o *SubmitValidationRequestOK) IsSuccess() bool

IsSuccess returns true when this submit validation request o k response has a 2xx status code

func (*SubmitValidationRequestOK) String added in v1.19.1

func (o *SubmitValidationRequestOK) String() string

type SubmitValidationRequestParams

type SubmitValidationRequestParams struct {

	/* Body.

	   The validation request
	*/
	Body *models.ParameterContextValidationRequestEntity

	// ContextID.
	ContextID string

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

SubmitValidationRequestParams contains all the parameters to send to the API endpoint

for the submit validation request operation.

Typically these are written to a http.Request.

func NewSubmitValidationRequestParams

func NewSubmitValidationRequestParams() *SubmitValidationRequestParams

NewSubmitValidationRequestParams creates a new SubmitValidationRequestParams 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 NewSubmitValidationRequestParamsWithContext

func NewSubmitValidationRequestParamsWithContext(ctx context.Context) *SubmitValidationRequestParams

NewSubmitValidationRequestParamsWithContext creates a new SubmitValidationRequestParams object with the ability to set a context for a request.

func NewSubmitValidationRequestParamsWithHTTPClient

func NewSubmitValidationRequestParamsWithHTTPClient(client *http.Client) *SubmitValidationRequestParams

NewSubmitValidationRequestParamsWithHTTPClient creates a new SubmitValidationRequestParams object with the ability to set a custom HTTPClient for a request.

func NewSubmitValidationRequestParamsWithTimeout

func NewSubmitValidationRequestParamsWithTimeout(timeout time.Duration) *SubmitValidationRequestParams

NewSubmitValidationRequestParamsWithTimeout creates a new SubmitValidationRequestParams object with the ability to set a timeout on a request.

func (*SubmitValidationRequestParams) SetBody

SetBody adds the body to the submit validation request params

func (*SubmitValidationRequestParams) SetContext

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

SetContext adds the context to the submit validation request params

func (*SubmitValidationRequestParams) SetContextID

func (o *SubmitValidationRequestParams) SetContextID(contextID string)

SetContextID adds the contextId to the submit validation request params

func (*SubmitValidationRequestParams) SetDefaults

func (o *SubmitValidationRequestParams) SetDefaults()

SetDefaults hydrates default values in the submit validation request params (not the query body).

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

func (*SubmitValidationRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the submit validation request params

func (*SubmitValidationRequestParams) SetTimeout

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

SetTimeout adds the timeout to the submit validation request params

func (*SubmitValidationRequestParams) WithBody

WithBody adds the body to the submit validation request params

func (*SubmitValidationRequestParams) WithContext

WithContext adds the context to the submit validation request params

func (*SubmitValidationRequestParams) WithContextID

WithContextID adds the contextID to the submit validation request params

func (*SubmitValidationRequestParams) WithDefaults

WithDefaults hydrates default values in the submit validation request params (not the query body).

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

func (*SubmitValidationRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the submit validation request params

func (*SubmitValidationRequestParams) WithTimeout

WithTimeout adds the timeout to the submit validation request params

func (*SubmitValidationRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SubmitValidationRequestReader

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

SubmitValidationRequestReader is a Reader for the SubmitValidationRequest structure.

func (*SubmitValidationRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SubmitValidationRequestUnauthorized

type SubmitValidationRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewSubmitValidationRequestUnauthorized

func NewSubmitValidationRequestUnauthorized() *SubmitValidationRequestUnauthorized

NewSubmitValidationRequestUnauthorized creates a SubmitValidationRequestUnauthorized with default headers values

func (*SubmitValidationRequestUnauthorized) Error

func (*SubmitValidationRequestUnauthorized) IsClientError added in v1.19.1

func (o *SubmitValidationRequestUnauthorized) IsClientError() bool

IsClientError returns true when this submit validation request unauthorized response has a 4xx status code

func (*SubmitValidationRequestUnauthorized) IsCode added in v1.19.1

IsCode returns true when this submit validation request unauthorized response a status code equal to that given

func (*SubmitValidationRequestUnauthorized) IsRedirect added in v1.19.1

func (o *SubmitValidationRequestUnauthorized) IsRedirect() bool

IsRedirect returns true when this submit validation request unauthorized response has a 3xx status code

func (*SubmitValidationRequestUnauthorized) IsServerError added in v1.19.1

func (o *SubmitValidationRequestUnauthorized) IsServerError() bool

IsServerError returns true when this submit validation request unauthorized response has a 5xx status code

func (*SubmitValidationRequestUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this submit validation request unauthorized response has a 2xx status code

func (*SubmitValidationRequestUnauthorized) String added in v1.19.1

type UpdateParameterContextBadRequest

type UpdateParameterContextBadRequest struct {
}

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

NiFi was unable to complete the request because it was invalid. The request should not be retried without modification.

func NewUpdateParameterContextBadRequest

func NewUpdateParameterContextBadRequest() *UpdateParameterContextBadRequest

NewUpdateParameterContextBadRequest creates a UpdateParameterContextBadRequest with default headers values

func (*UpdateParameterContextBadRequest) Error

func (*UpdateParameterContextBadRequest) IsClientError added in v1.19.1

func (o *UpdateParameterContextBadRequest) IsClientError() bool

IsClientError returns true when this update parameter context bad request response has a 4xx status code

func (*UpdateParameterContextBadRequest) IsCode added in v1.19.1

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

IsCode returns true when this update parameter context bad request response a status code equal to that given

func (*UpdateParameterContextBadRequest) IsRedirect added in v1.19.1

func (o *UpdateParameterContextBadRequest) IsRedirect() bool

IsRedirect returns true when this update parameter context bad request response has a 3xx status code

func (*UpdateParameterContextBadRequest) IsServerError added in v1.19.1

func (o *UpdateParameterContextBadRequest) IsServerError() bool

IsServerError returns true when this update parameter context bad request response has a 5xx status code

func (*UpdateParameterContextBadRequest) IsSuccess added in v1.19.1

func (o *UpdateParameterContextBadRequest) IsSuccess() bool

IsSuccess returns true when this update parameter context bad request response has a 2xx status code

func (*UpdateParameterContextBadRequest) String added in v1.19.1

type UpdateParameterContextConflict

type UpdateParameterContextConflict struct {
}

UpdateParameterContextConflict describes a response with status code 409, with default header values.

The request was valid but NiFi was not in the appropriate state to process it. Retrying the same request later may be successful.

func NewUpdateParameterContextConflict

func NewUpdateParameterContextConflict() *UpdateParameterContextConflict

NewUpdateParameterContextConflict creates a UpdateParameterContextConflict with default headers values

func (*UpdateParameterContextConflict) Error

func (*UpdateParameterContextConflict) IsClientError added in v1.19.1

func (o *UpdateParameterContextConflict) IsClientError() bool

IsClientError returns true when this update parameter context conflict response has a 4xx status code

func (*UpdateParameterContextConflict) IsCode added in v1.19.1

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

IsCode returns true when this update parameter context conflict response a status code equal to that given

func (*UpdateParameterContextConflict) IsRedirect added in v1.19.1

func (o *UpdateParameterContextConflict) IsRedirect() bool

IsRedirect returns true when this update parameter context conflict response has a 3xx status code

func (*UpdateParameterContextConflict) IsServerError added in v1.19.1

func (o *UpdateParameterContextConflict) IsServerError() bool

IsServerError returns true when this update parameter context conflict response has a 5xx status code

func (*UpdateParameterContextConflict) IsSuccess added in v1.19.1

func (o *UpdateParameterContextConflict) IsSuccess() bool

IsSuccess returns true when this update parameter context conflict response has a 2xx status code

func (*UpdateParameterContextConflict) String added in v1.19.1

type UpdateParameterContextForbidden

type UpdateParameterContextForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateParameterContextForbidden

func NewUpdateParameterContextForbidden() *UpdateParameterContextForbidden

NewUpdateParameterContextForbidden creates a UpdateParameterContextForbidden with default headers values

func (*UpdateParameterContextForbidden) Error

func (*UpdateParameterContextForbidden) IsClientError added in v1.19.1

func (o *UpdateParameterContextForbidden) IsClientError() bool

IsClientError returns true when this update parameter context forbidden response has a 4xx status code

func (*UpdateParameterContextForbidden) IsCode added in v1.19.1

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

IsCode returns true when this update parameter context forbidden response a status code equal to that given

func (*UpdateParameterContextForbidden) IsRedirect added in v1.19.1

func (o *UpdateParameterContextForbidden) IsRedirect() bool

IsRedirect returns true when this update parameter context forbidden response has a 3xx status code

func (*UpdateParameterContextForbidden) IsServerError added in v1.19.1

func (o *UpdateParameterContextForbidden) IsServerError() bool

IsServerError returns true when this update parameter context forbidden response has a 5xx status code

func (*UpdateParameterContextForbidden) IsSuccess added in v1.19.1

func (o *UpdateParameterContextForbidden) IsSuccess() bool

IsSuccess returns true when this update parameter context forbidden response has a 2xx status code

func (*UpdateParameterContextForbidden) String added in v1.19.1

type UpdateParameterContextNotFound

type UpdateParameterContextNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateParameterContextNotFound

func NewUpdateParameterContextNotFound() *UpdateParameterContextNotFound

NewUpdateParameterContextNotFound creates a UpdateParameterContextNotFound with default headers values

func (*UpdateParameterContextNotFound) Error

func (*UpdateParameterContextNotFound) IsClientError added in v1.19.1

func (o *UpdateParameterContextNotFound) IsClientError() bool

IsClientError returns true when this update parameter context not found response has a 4xx status code

func (*UpdateParameterContextNotFound) IsCode added in v1.19.1

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

IsCode returns true when this update parameter context not found response a status code equal to that given

func (*UpdateParameterContextNotFound) IsRedirect added in v1.19.1

func (o *UpdateParameterContextNotFound) IsRedirect() bool

IsRedirect returns true when this update parameter context not found response has a 3xx status code

func (*UpdateParameterContextNotFound) IsServerError added in v1.19.1

func (o *UpdateParameterContextNotFound) IsServerError() bool

IsServerError returns true when this update parameter context not found response has a 5xx status code

func (*UpdateParameterContextNotFound) IsSuccess added in v1.19.1

func (o *UpdateParameterContextNotFound) IsSuccess() bool

IsSuccess returns true when this update parameter context not found response has a 2xx status code

func (*UpdateParameterContextNotFound) String added in v1.19.1

type UpdateParameterContextOK

type UpdateParameterContextOK struct {
	Payload *models.ParameterContextEntity
}

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

successful operation

func NewUpdateParameterContextOK

func NewUpdateParameterContextOK() *UpdateParameterContextOK

NewUpdateParameterContextOK creates a UpdateParameterContextOK with default headers values

func (*UpdateParameterContextOK) Error

func (o *UpdateParameterContextOK) Error() string

func (*UpdateParameterContextOK) GetPayload

func (*UpdateParameterContextOK) IsClientError added in v1.19.1

func (o *UpdateParameterContextOK) IsClientError() bool

IsClientError returns true when this update parameter context o k response has a 4xx status code

func (*UpdateParameterContextOK) IsCode added in v1.19.1

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

IsCode returns true when this update parameter context o k response a status code equal to that given

func (*UpdateParameterContextOK) IsRedirect added in v1.19.1

func (o *UpdateParameterContextOK) IsRedirect() bool

IsRedirect returns true when this update parameter context o k response has a 3xx status code

func (*UpdateParameterContextOK) IsServerError added in v1.19.1

func (o *UpdateParameterContextOK) IsServerError() bool

IsServerError returns true when this update parameter context o k response has a 5xx status code

func (*UpdateParameterContextOK) IsSuccess added in v1.19.1

func (o *UpdateParameterContextOK) IsSuccess() bool

IsSuccess returns true when this update parameter context o k response has a 2xx status code

func (*UpdateParameterContextOK) String added in v1.19.1

func (o *UpdateParameterContextOK) String() string

type UpdateParameterContextParams

type UpdateParameterContextParams struct {

	/* Body.

	   The updated Parameter Context
	*/
	Body *models.ParameterContextEntity

	// ID.
	ID string

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

UpdateParameterContextParams contains all the parameters to send to the API endpoint

for the update parameter context operation.

Typically these are written to a http.Request.

func NewUpdateParameterContextParams

func NewUpdateParameterContextParams() *UpdateParameterContextParams

NewUpdateParameterContextParams creates a new UpdateParameterContextParams 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 NewUpdateParameterContextParamsWithContext

func NewUpdateParameterContextParamsWithContext(ctx context.Context) *UpdateParameterContextParams

NewUpdateParameterContextParamsWithContext creates a new UpdateParameterContextParams object with the ability to set a context for a request.

func NewUpdateParameterContextParamsWithHTTPClient

func NewUpdateParameterContextParamsWithHTTPClient(client *http.Client) *UpdateParameterContextParams

NewUpdateParameterContextParamsWithHTTPClient creates a new UpdateParameterContextParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateParameterContextParamsWithTimeout

func NewUpdateParameterContextParamsWithTimeout(timeout time.Duration) *UpdateParameterContextParams

NewUpdateParameterContextParamsWithTimeout creates a new UpdateParameterContextParams object with the ability to set a timeout on a request.

func (*UpdateParameterContextParams) SetBody

SetBody adds the body to the update parameter context params

func (*UpdateParameterContextParams) SetContext

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

SetContext adds the context to the update parameter context params

func (*UpdateParameterContextParams) SetDefaults

func (o *UpdateParameterContextParams) SetDefaults()

SetDefaults hydrates default values in the update parameter context params (not the query body).

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

func (*UpdateParameterContextParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update parameter context params

func (*UpdateParameterContextParams) SetID

func (o *UpdateParameterContextParams) SetID(id string)

SetID adds the id to the update parameter context params

func (*UpdateParameterContextParams) SetTimeout

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

SetTimeout adds the timeout to the update parameter context params

func (*UpdateParameterContextParams) WithBody

WithBody adds the body to the update parameter context params

func (*UpdateParameterContextParams) WithContext

WithContext adds the context to the update parameter context params

func (*UpdateParameterContextParams) WithDefaults

WithDefaults hydrates default values in the update parameter context params (not the query body).

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

func (*UpdateParameterContextParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update parameter context params

func (*UpdateParameterContextParams) WithID

WithID adds the id to the update parameter context params

func (*UpdateParameterContextParams) WithTimeout

WithTimeout adds the timeout to the update parameter context params

func (*UpdateParameterContextParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateParameterContextReader

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

UpdateParameterContextReader is a Reader for the UpdateParameterContext structure.

func (*UpdateParameterContextReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateParameterContextUnauthorized

type UpdateParameterContextUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateParameterContextUnauthorized

func NewUpdateParameterContextUnauthorized() *UpdateParameterContextUnauthorized

NewUpdateParameterContextUnauthorized creates a UpdateParameterContextUnauthorized with default headers values

func (*UpdateParameterContextUnauthorized) Error

func (*UpdateParameterContextUnauthorized) IsClientError added in v1.19.1

func (o *UpdateParameterContextUnauthorized) IsClientError() bool

IsClientError returns true when this update parameter context unauthorized response has a 4xx status code

func (*UpdateParameterContextUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update parameter context unauthorized response a status code equal to that given

func (*UpdateParameterContextUnauthorized) IsRedirect added in v1.19.1

func (o *UpdateParameterContextUnauthorized) IsRedirect() bool

IsRedirect returns true when this update parameter context unauthorized response has a 3xx status code

func (*UpdateParameterContextUnauthorized) IsServerError added in v1.19.1

func (o *UpdateParameterContextUnauthorized) IsServerError() bool

IsServerError returns true when this update parameter context unauthorized response has a 5xx status code

func (*UpdateParameterContextUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update parameter context unauthorized response has a 2xx status code

func (*UpdateParameterContextUnauthorized) String added in v1.19.1

Jump to

Keyboard shortcuts

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