versions

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 versions API

func (*Client) CreateVersionControlRequest

func (a *Client) CreateVersionControlRequest(params *CreateVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateVersionControlRequestOK, error)

CreateVersionControlRequest creates a version control request

Creates a request so that a Process Group can be placed under Version Control or have its Version Control configuration changed. Creating this request will prevent any other threads from simultaneously saving local changes to Version Control. It will not, however, actually save the local flow to the Flow Registry. A POST to /versions/process-groups/{id} should be used to initiate saving of the local flow to the Flow Registry. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) DeleteRevertRequest

func (a *Client) DeleteRevertRequest(params *DeleteRevertRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRevertRequestOK, error)

DeleteRevertRequest deletes the revert request with the given ID

Deletes the Revert Request with the given ID. After a request is created via a POST to /versions/revert-requests/process-groups/{id}, it is expected that the client will properly clean up the request by DELETE'ing it, once the Revert process has completed. If the request is deleted before the request completes, then the Revert request will finish the step that it is currently performing and then will cancel any subsequent steps. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) DeleteUpdateRequest

func (a *Client) DeleteUpdateRequest(params *DeleteUpdateRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteUpdateRequestOK, error)

DeleteUpdateRequest deletes the update request with the given ID

Deletes the Update Request with the given ID. After a request is created via a POST to /versions/update-requests/process-groups/{id}, it is expected that the client will properly clean up the request by DELETE'ing it, once the Update process has completed. If the request is deleted before the request completes, then the Update request will finish the step that it is currently performing and then will cancel any subsequent steps. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) DeleteVersionControlRequest

func (a *Client) DeleteVersionControlRequest(params *DeleteVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) error

DeleteVersionControlRequest deletes the version control request with the given ID

Deletes the Version Control Request with the given ID. This will allow other threads to save flows to the Flow Registry. See also the documentation for POSTing to /versions/active-requests for information regarding why this is done. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) ExportFlowVersion

func (a *Client) ExportFlowVersion(params *ExportFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ExportFlowVersionOK, error)

ExportFlowVersion gets the latest version of a process group for download

func (*Client) GetRevertRequest

func (a *Client) GetRevertRequest(params *GetRevertRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRevertRequestOK, error)

GetRevertRequest returns the revert request with the given ID

Returns the Revert Request with the given ID. Once a Revert Request has been created by performing a POST to /versions/revert-requests/process-groups/{id}, 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. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) GetUpdateRequest

func (a *Client) GetUpdateRequest(params *GetUpdateRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUpdateRequestOK, error)

GetUpdateRequest 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 /versions/update-requests/process-groups/{id}, 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. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) GetVersionInformation

func (a *Client) GetVersionInformation(params *GetVersionInformationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetVersionInformationOK, error)

GetVersionInformation gets the version control information for a process group

Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) InitiateRevertFlowVersion

func (a *Client) InitiateRevertFlowVersion(params *InitiateRevertFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*InitiateRevertFlowVersionOK, error)

InitiateRevertFlowVersion initiates the revert request of a process group with the given ID

For a Process Group that is already under Version Control, this will initiate the action of reverting any local changes that have been made to the Process Group since it was last synchronized with the Flow Registry. This will result in the flow matching the Versioned Flow that exists in the Flow Registry. This can be a lengthy process, as it will stop any Processors and disable any Controller Services necessary to perform the action and then restart them. As a result, the endpoint will immediately return a VersionedFlowUpdateRequestEntity, and the process of updating the flow will occur asynchronously in the background. The client may then periodically poll the status of the request by issuing a GET request to /versions/revert-requests/{requestId}. Once the request is completed, the client is expected to issue a DELETE request to /versions/revert-requests/{requestId}. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) InitiateVersionControlUpdate

func (a *Client) InitiateVersionControlUpdate(params *InitiateVersionControlUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*InitiateVersionControlUpdateOK, error)

InitiateVersionControlUpdate initiates the update request of a process group with the given ID

For a Process Group that is already under Version Control, this will initiate the action of changing from a specific version of the flow in the Flow Registry to a different version of the flow. This can be a lengthy process, as it will stop any Processors and disable any Controller Services necessary to perform the action and then restart them. As a result, the endpoint will immediately return a VersionedFlowUpdateRequestEntity, and the process of updating the flow will occur asynchronously in the background. The client may then periodically poll the status of the request by issuing a GET request to /versions/update-requests/{requestId}. Once the request is completed, the client is expected to issue a DELETE request to /versions/update-requests/{requestId}. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) SaveToFlowRegistry

func (a *Client) SaveToFlowRegistry(params *SaveToFlowRegistryParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SaveToFlowRegistryOK, error)

SaveToFlowRegistry saves the process group with the given ID

Begins version controlling the Process Group with the given ID or commits changes to the Versioned Flow, depending on if the provided VersionControlInformation includes a flowId. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) StopVersionControl

func (a *Client) StopVersionControl(params *StopVersionControlParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopVersionControlOK, error)

StopVersionControl stops version controlling the process group with the given ID

Stops version controlling the Process Group with the given ID. The Process Group will no longer track to any Versioned Flow. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) UpdateFlowVersion

func (a *Client) UpdateFlowVersion(params *UpdateFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateFlowVersionOK, error)

UpdateFlowVersion updates the version of a process group with the given ID

For a Process Group that is already under Version Control, this will update the version of the flow to a different version. This endpoint expects that the given snapshot will not modify any Processor that is currently running or any Controller Service that is enabled. Note: This endpoint is subject to change as NiFi and it's REST API evolve.

func (*Client) UpdateVersionControlRequest

func (a *Client) UpdateVersionControlRequest(params *UpdateVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateVersionControlRequestOK, error)

UpdateVersionControlRequest updates the request with the given ID

Note: This endpoint is subject to change as NiFi and it's REST API evolve.

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateVersionControlRequest(params *CreateVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateVersionControlRequestOK, error)

	DeleteRevertRequest(params *DeleteRevertRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteRevertRequestOK, error)

	DeleteUpdateRequest(params *DeleteUpdateRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteUpdateRequestOK, error)

	DeleteVersionControlRequest(params *DeleteVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) error

	ExportFlowVersion(params *ExportFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ExportFlowVersionOK, error)

	GetRevertRequest(params *GetRevertRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRevertRequestOK, error)

	GetUpdateRequest(params *GetUpdateRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetUpdateRequestOK, error)

	GetVersionInformation(params *GetVersionInformationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetVersionInformationOK, error)

	InitiateRevertFlowVersion(params *InitiateRevertFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*InitiateRevertFlowVersionOK, error)

	InitiateVersionControlUpdate(params *InitiateVersionControlUpdateParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*InitiateVersionControlUpdateOK, error)

	SaveToFlowRegistry(params *SaveToFlowRegistryParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*SaveToFlowRegistryOK, error)

	StopVersionControl(params *StopVersionControlParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*StopVersionControlOK, error)

	UpdateFlowVersion(params *UpdateFlowVersionParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateFlowVersionOK, error)

	UpdateVersionControlRequest(params *UpdateVersionControlRequestParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateVersionControlRequestOK, 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 versions API client.

type CreateVersionControlRequestBadRequest

type CreateVersionControlRequestBadRequest struct {
}

CreateVersionControlRequestBadRequest 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 NewCreateVersionControlRequestBadRequest

func NewCreateVersionControlRequestBadRequest() *CreateVersionControlRequestBadRequest

NewCreateVersionControlRequestBadRequest creates a CreateVersionControlRequestBadRequest with default headers values

func (*CreateVersionControlRequestBadRequest) Error

func (*CreateVersionControlRequestBadRequest) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestBadRequest) IsClientError() bool

IsClientError returns true when this create version control request bad request response has a 4xx status code

func (*CreateVersionControlRequestBadRequest) IsCode added in v1.19.1

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

func (*CreateVersionControlRequestBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this create version control request bad request response has a 3xx status code

func (*CreateVersionControlRequestBadRequest) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestBadRequest) IsServerError() bool

IsServerError returns true when this create version control request bad request response has a 5xx status code

func (*CreateVersionControlRequestBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this create version control request bad request response has a 2xx status code

func (*CreateVersionControlRequestBadRequest) String added in v1.19.1

type CreateVersionControlRequestConflict

type CreateVersionControlRequestConflict struct {
}

CreateVersionControlRequestConflict 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 NewCreateVersionControlRequestConflict

func NewCreateVersionControlRequestConflict() *CreateVersionControlRequestConflict

NewCreateVersionControlRequestConflict creates a CreateVersionControlRequestConflict with default headers values

func (*CreateVersionControlRequestConflict) Error

func (*CreateVersionControlRequestConflict) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestConflict) IsClientError() bool

IsClientError returns true when this create version control request conflict response has a 4xx status code

func (*CreateVersionControlRequestConflict) IsCode added in v1.19.1

IsCode returns true when this create version control request conflict response a status code equal to that given

func (*CreateVersionControlRequestConflict) IsRedirect added in v1.19.1

func (o *CreateVersionControlRequestConflict) IsRedirect() bool

IsRedirect returns true when this create version control request conflict response has a 3xx status code

func (*CreateVersionControlRequestConflict) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestConflict) IsServerError() bool

IsServerError returns true when this create version control request conflict response has a 5xx status code

func (*CreateVersionControlRequestConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this create version control request conflict response has a 2xx status code

func (*CreateVersionControlRequestConflict) String added in v1.19.1

type CreateVersionControlRequestForbidden

type CreateVersionControlRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewCreateVersionControlRequestForbidden

func NewCreateVersionControlRequestForbidden() *CreateVersionControlRequestForbidden

NewCreateVersionControlRequestForbidden creates a CreateVersionControlRequestForbidden with default headers values

func (*CreateVersionControlRequestForbidden) Error

func (*CreateVersionControlRequestForbidden) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestForbidden) IsClientError() bool

IsClientError returns true when this create version control request forbidden response has a 4xx status code

func (*CreateVersionControlRequestForbidden) IsCode added in v1.19.1

IsCode returns true when this create version control request forbidden response a status code equal to that given

func (*CreateVersionControlRequestForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this create version control request forbidden response has a 3xx status code

func (*CreateVersionControlRequestForbidden) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestForbidden) IsServerError() bool

IsServerError returns true when this create version control request forbidden response has a 5xx status code

func (*CreateVersionControlRequestForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this create version control request forbidden response has a 2xx status code

func (*CreateVersionControlRequestForbidden) String added in v1.19.1

type CreateVersionControlRequestNotFound

type CreateVersionControlRequestNotFound struct {
}

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

The specified resource could not be found.

func NewCreateVersionControlRequestNotFound

func NewCreateVersionControlRequestNotFound() *CreateVersionControlRequestNotFound

NewCreateVersionControlRequestNotFound creates a CreateVersionControlRequestNotFound with default headers values

func (*CreateVersionControlRequestNotFound) Error

func (*CreateVersionControlRequestNotFound) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestNotFound) IsClientError() bool

IsClientError returns true when this create version control request not found response has a 4xx status code

func (*CreateVersionControlRequestNotFound) IsCode added in v1.19.1

IsCode returns true when this create version control request not found response a status code equal to that given

func (*CreateVersionControlRequestNotFound) IsRedirect added in v1.19.1

func (o *CreateVersionControlRequestNotFound) IsRedirect() bool

IsRedirect returns true when this create version control request not found response has a 3xx status code

func (*CreateVersionControlRequestNotFound) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestNotFound) IsServerError() bool

IsServerError returns true when this create version control request not found response has a 5xx status code

func (*CreateVersionControlRequestNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this create version control request not found response has a 2xx status code

func (*CreateVersionControlRequestNotFound) String added in v1.19.1

type CreateVersionControlRequestOK

type CreateVersionControlRequestOK struct {
	Payload string
}

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

successful operation

func NewCreateVersionControlRequestOK

func NewCreateVersionControlRequestOK() *CreateVersionControlRequestOK

NewCreateVersionControlRequestOK creates a CreateVersionControlRequestOK with default headers values

func (*CreateVersionControlRequestOK) Error

func (*CreateVersionControlRequestOK) GetPayload

func (o *CreateVersionControlRequestOK) GetPayload() string

func (*CreateVersionControlRequestOK) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestOK) IsClientError() bool

IsClientError returns true when this create version control request o k response has a 4xx status code

func (*CreateVersionControlRequestOK) IsCode added in v1.19.1

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

IsCode returns true when this create version control request o k response a status code equal to that given

func (*CreateVersionControlRequestOK) IsRedirect added in v1.19.1

func (o *CreateVersionControlRequestOK) IsRedirect() bool

IsRedirect returns true when this create version control request o k response has a 3xx status code

func (*CreateVersionControlRequestOK) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestOK) IsServerError() bool

IsServerError returns true when this create version control request o k response has a 5xx status code

func (*CreateVersionControlRequestOK) IsSuccess added in v1.19.1

func (o *CreateVersionControlRequestOK) IsSuccess() bool

IsSuccess returns true when this create version control request o k response has a 2xx status code

func (*CreateVersionControlRequestOK) String added in v1.19.1

type CreateVersionControlRequestParams

type CreateVersionControlRequestParams struct {

	/* Body.

	   The versioned flow details.
	*/
	Body *models.CreateActiveRequestEntity

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

CreateVersionControlRequestParams contains all the parameters to send to the API endpoint

for the create version control request operation.

Typically these are written to a http.Request.

func NewCreateVersionControlRequestParams

func NewCreateVersionControlRequestParams() *CreateVersionControlRequestParams

NewCreateVersionControlRequestParams creates a new CreateVersionControlRequestParams 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 NewCreateVersionControlRequestParamsWithContext

func NewCreateVersionControlRequestParamsWithContext(ctx context.Context) *CreateVersionControlRequestParams

NewCreateVersionControlRequestParamsWithContext creates a new CreateVersionControlRequestParams object with the ability to set a context for a request.

func NewCreateVersionControlRequestParamsWithHTTPClient

func NewCreateVersionControlRequestParamsWithHTTPClient(client *http.Client) *CreateVersionControlRequestParams

NewCreateVersionControlRequestParamsWithHTTPClient creates a new CreateVersionControlRequestParams object with the ability to set a custom HTTPClient for a request.

func NewCreateVersionControlRequestParamsWithTimeout

func NewCreateVersionControlRequestParamsWithTimeout(timeout time.Duration) *CreateVersionControlRequestParams

NewCreateVersionControlRequestParamsWithTimeout creates a new CreateVersionControlRequestParams object with the ability to set a timeout on a request.

func (*CreateVersionControlRequestParams) SetBody

SetBody adds the body to the create version control request params

func (*CreateVersionControlRequestParams) SetContext

SetContext adds the context to the create version control request params

func (*CreateVersionControlRequestParams) SetDefaults

func (o *CreateVersionControlRequestParams) SetDefaults()

SetDefaults hydrates default values in the create version control request params (not the query body).

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

func (*CreateVersionControlRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create version control request params

func (*CreateVersionControlRequestParams) SetTimeout

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

SetTimeout adds the timeout to the create version control request params

func (*CreateVersionControlRequestParams) WithBody

WithBody adds the body to the create version control request params

func (*CreateVersionControlRequestParams) WithContext

WithContext adds the context to the create version control request params

func (*CreateVersionControlRequestParams) WithDefaults

WithDefaults hydrates default values in the create version control request params (not the query body).

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

func (*CreateVersionControlRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create version control request params

func (*CreateVersionControlRequestParams) WithTimeout

WithTimeout adds the timeout to the create version control request params

func (*CreateVersionControlRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateVersionControlRequestReader

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

CreateVersionControlRequestReader is a Reader for the CreateVersionControlRequest structure.

func (*CreateVersionControlRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateVersionControlRequestUnauthorized

type CreateVersionControlRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewCreateVersionControlRequestUnauthorized

func NewCreateVersionControlRequestUnauthorized() *CreateVersionControlRequestUnauthorized

NewCreateVersionControlRequestUnauthorized creates a CreateVersionControlRequestUnauthorized with default headers values

func (*CreateVersionControlRequestUnauthorized) Error

func (*CreateVersionControlRequestUnauthorized) IsClientError added in v1.19.1

func (o *CreateVersionControlRequestUnauthorized) IsClientError() bool

IsClientError returns true when this create version control request unauthorized response has a 4xx status code

func (*CreateVersionControlRequestUnauthorized) IsCode added in v1.19.1

IsCode returns true when this create version control request unauthorized response a status code equal to that given

func (*CreateVersionControlRequestUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this create version control request unauthorized response has a 3xx status code

func (*CreateVersionControlRequestUnauthorized) IsServerError added in v1.19.1

func (o *CreateVersionControlRequestUnauthorized) IsServerError() bool

IsServerError returns true when this create version control request unauthorized response has a 5xx status code

func (*CreateVersionControlRequestUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this create version control request unauthorized response has a 2xx status code

func (*CreateVersionControlRequestUnauthorized) String added in v1.19.1

type DeleteRevertRequestBadRequest

type DeleteRevertRequestBadRequest struct {
}

DeleteRevertRequestBadRequest 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 NewDeleteRevertRequestBadRequest

func NewDeleteRevertRequestBadRequest() *DeleteRevertRequestBadRequest

NewDeleteRevertRequestBadRequest creates a DeleteRevertRequestBadRequest with default headers values

func (*DeleteRevertRequestBadRequest) Error

func (*DeleteRevertRequestBadRequest) IsClientError added in v1.19.1

func (o *DeleteRevertRequestBadRequest) IsClientError() bool

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

func (*DeleteRevertRequestBadRequest) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestBadRequest) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestBadRequest) IsRedirect() bool

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

func (*DeleteRevertRequestBadRequest) IsServerError added in v1.19.1

func (o *DeleteRevertRequestBadRequest) IsServerError() bool

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

func (*DeleteRevertRequestBadRequest) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestBadRequest) IsSuccess() bool

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

func (*DeleteRevertRequestBadRequest) String added in v1.19.1

type DeleteRevertRequestConflict

type DeleteRevertRequestConflict struct {
}

DeleteRevertRequestConflict 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 NewDeleteRevertRequestConflict

func NewDeleteRevertRequestConflict() *DeleteRevertRequestConflict

NewDeleteRevertRequestConflict creates a DeleteRevertRequestConflict with default headers values

func (*DeleteRevertRequestConflict) Error

func (*DeleteRevertRequestConflict) IsClientError added in v1.19.1

func (o *DeleteRevertRequestConflict) IsClientError() bool

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

func (*DeleteRevertRequestConflict) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestConflict) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestConflict) IsRedirect() bool

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

func (*DeleteRevertRequestConflict) IsServerError added in v1.19.1

func (o *DeleteRevertRequestConflict) IsServerError() bool

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

func (*DeleteRevertRequestConflict) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestConflict) IsSuccess() bool

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

func (*DeleteRevertRequestConflict) String added in v1.19.1

func (o *DeleteRevertRequestConflict) String() string

type DeleteRevertRequestForbidden

type DeleteRevertRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewDeleteRevertRequestForbidden

func NewDeleteRevertRequestForbidden() *DeleteRevertRequestForbidden

NewDeleteRevertRequestForbidden creates a DeleteRevertRequestForbidden with default headers values

func (*DeleteRevertRequestForbidden) Error

func (*DeleteRevertRequestForbidden) IsClientError added in v1.19.1

func (o *DeleteRevertRequestForbidden) IsClientError() bool

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

func (*DeleteRevertRequestForbidden) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestForbidden) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestForbidden) IsRedirect() bool

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

func (*DeleteRevertRequestForbidden) IsServerError added in v1.19.1

func (o *DeleteRevertRequestForbidden) IsServerError() bool

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

func (*DeleteRevertRequestForbidden) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestForbidden) IsSuccess() bool

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

func (*DeleteRevertRequestForbidden) String added in v1.19.1

type DeleteRevertRequestNotFound

type DeleteRevertRequestNotFound struct {
}

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

The specified resource could not be found.

func NewDeleteRevertRequestNotFound

func NewDeleteRevertRequestNotFound() *DeleteRevertRequestNotFound

NewDeleteRevertRequestNotFound creates a DeleteRevertRequestNotFound with default headers values

func (*DeleteRevertRequestNotFound) Error

func (*DeleteRevertRequestNotFound) IsClientError added in v1.19.1

func (o *DeleteRevertRequestNotFound) IsClientError() bool

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

func (*DeleteRevertRequestNotFound) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestNotFound) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestNotFound) IsRedirect() bool

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

func (*DeleteRevertRequestNotFound) IsServerError added in v1.19.1

func (o *DeleteRevertRequestNotFound) IsServerError() bool

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

func (*DeleteRevertRequestNotFound) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestNotFound) IsSuccess() bool

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

func (*DeleteRevertRequestNotFound) String added in v1.19.1

func (o *DeleteRevertRequestNotFound) String() string

type DeleteRevertRequestOK

type DeleteRevertRequestOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewDeleteRevertRequestOK

func NewDeleteRevertRequestOK() *DeleteRevertRequestOK

NewDeleteRevertRequestOK creates a DeleteRevertRequestOK with default headers values

func (*DeleteRevertRequestOK) Error

func (o *DeleteRevertRequestOK) Error() string

func (*DeleteRevertRequestOK) GetPayload

func (*DeleteRevertRequestOK) IsClientError added in v1.19.1

func (o *DeleteRevertRequestOK) IsClientError() bool

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

func (*DeleteRevertRequestOK) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestOK) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestOK) IsRedirect() bool

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

func (*DeleteRevertRequestOK) IsServerError added in v1.19.1

func (o *DeleteRevertRequestOK) IsServerError() bool

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

func (*DeleteRevertRequestOK) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestOK) IsSuccess() bool

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

func (*DeleteRevertRequestOK) String added in v1.19.1

func (o *DeleteRevertRequestOK) String() string

type DeleteRevertRequestParams

type DeleteRevertRequestParams struct {

	/* DisconnectedNodeAcknowledged.

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

	/* ID.

	   The ID of the Revert Request
	*/
	ID string

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

DeleteRevertRequestParams contains all the parameters to send to the API endpoint

for the delete revert request operation.

Typically these are written to a http.Request.

func NewDeleteRevertRequestParams

func NewDeleteRevertRequestParams() *DeleteRevertRequestParams

NewDeleteRevertRequestParams creates a new DeleteRevertRequestParams 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 NewDeleteRevertRequestParamsWithContext

func NewDeleteRevertRequestParamsWithContext(ctx context.Context) *DeleteRevertRequestParams

NewDeleteRevertRequestParamsWithContext creates a new DeleteRevertRequestParams object with the ability to set a context for a request.

func NewDeleteRevertRequestParamsWithHTTPClient

func NewDeleteRevertRequestParamsWithHTTPClient(client *http.Client) *DeleteRevertRequestParams

NewDeleteRevertRequestParamsWithHTTPClient creates a new DeleteRevertRequestParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteRevertRequestParamsWithTimeout

func NewDeleteRevertRequestParamsWithTimeout(timeout time.Duration) *DeleteRevertRequestParams

NewDeleteRevertRequestParamsWithTimeout creates a new DeleteRevertRequestParams object with the ability to set a timeout on a request.

func (*DeleteRevertRequestParams) SetContext

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

SetContext adds the context to the delete revert request params

func (*DeleteRevertRequestParams) SetDefaults

func (o *DeleteRevertRequestParams) SetDefaults()

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

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

func (*DeleteRevertRequestParams) SetDisconnectedNodeAcknowledged

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

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete revert request params

func (*DeleteRevertRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete revert request params

func (*DeleteRevertRequestParams) SetID

func (o *DeleteRevertRequestParams) SetID(id string)

SetID adds the id to the delete revert request params

func (*DeleteRevertRequestParams) SetTimeout

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

SetTimeout adds the timeout to the delete revert request params

func (*DeleteRevertRequestParams) WithContext

WithContext adds the context to the delete revert request params

func (*DeleteRevertRequestParams) WithDefaults

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

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

func (*DeleteRevertRequestParams) WithDisconnectedNodeAcknowledged

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

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete revert request params

func (*DeleteRevertRequestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete revert request params

func (*DeleteRevertRequestParams) WithID

WithID adds the id to the delete revert request params

func (*DeleteRevertRequestParams) WithTimeout

WithTimeout adds the timeout to the delete revert request params

func (*DeleteRevertRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteRevertRequestReader

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

DeleteRevertRequestReader is a Reader for the DeleteRevertRequest structure.

func (*DeleteRevertRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteRevertRequestUnauthorized

type DeleteRevertRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewDeleteRevertRequestUnauthorized

func NewDeleteRevertRequestUnauthorized() *DeleteRevertRequestUnauthorized

NewDeleteRevertRequestUnauthorized creates a DeleteRevertRequestUnauthorized with default headers values

func (*DeleteRevertRequestUnauthorized) Error

func (*DeleteRevertRequestUnauthorized) IsClientError added in v1.19.1

func (o *DeleteRevertRequestUnauthorized) IsClientError() bool

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

func (*DeleteRevertRequestUnauthorized) IsCode added in v1.19.1

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

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

func (*DeleteRevertRequestUnauthorized) IsRedirect added in v1.19.1

func (o *DeleteRevertRequestUnauthorized) IsRedirect() bool

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

func (*DeleteRevertRequestUnauthorized) IsServerError added in v1.19.1

func (o *DeleteRevertRequestUnauthorized) IsServerError() bool

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

func (*DeleteRevertRequestUnauthorized) IsSuccess added in v1.19.1

func (o *DeleteRevertRequestUnauthorized) IsSuccess() bool

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

func (*DeleteRevertRequestUnauthorized) String added in v1.19.1

type DeleteUpdateRequestBadRequest

type DeleteUpdateRequestBadRequest struct {
}

DeleteUpdateRequestBadRequest 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 NewDeleteUpdateRequestBadRequest

func NewDeleteUpdateRequestBadRequest() *DeleteUpdateRequestBadRequest

NewDeleteUpdateRequestBadRequest creates a DeleteUpdateRequestBadRequest with default headers values

func (*DeleteUpdateRequestBadRequest) Error

func (*DeleteUpdateRequestBadRequest) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestBadRequest) IsClientError() bool

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

func (*DeleteUpdateRequestBadRequest) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestBadRequest) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestBadRequest) IsRedirect() bool

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

func (*DeleteUpdateRequestBadRequest) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestBadRequest) IsServerError() bool

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

func (*DeleteUpdateRequestBadRequest) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestBadRequest) IsSuccess() bool

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

func (*DeleteUpdateRequestBadRequest) String added in v1.19.1

type DeleteUpdateRequestConflict

type DeleteUpdateRequestConflict struct {
}

DeleteUpdateRequestConflict 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 NewDeleteUpdateRequestConflict

func NewDeleteUpdateRequestConflict() *DeleteUpdateRequestConflict

NewDeleteUpdateRequestConflict creates a DeleteUpdateRequestConflict with default headers values

func (*DeleteUpdateRequestConflict) Error

func (*DeleteUpdateRequestConflict) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestConflict) IsClientError() bool

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

func (*DeleteUpdateRequestConflict) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestConflict) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestConflict) IsRedirect() bool

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

func (*DeleteUpdateRequestConflict) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestConflict) IsServerError() bool

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

func (*DeleteUpdateRequestConflict) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestConflict) IsSuccess() bool

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

func (*DeleteUpdateRequestConflict) String added in v1.19.1

func (o *DeleteUpdateRequestConflict) String() string

type DeleteUpdateRequestForbidden

type DeleteUpdateRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewDeleteUpdateRequestForbidden

func NewDeleteUpdateRequestForbidden() *DeleteUpdateRequestForbidden

NewDeleteUpdateRequestForbidden creates a DeleteUpdateRequestForbidden with default headers values

func (*DeleteUpdateRequestForbidden) Error

func (*DeleteUpdateRequestForbidden) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestForbidden) IsClientError() bool

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

func (*DeleteUpdateRequestForbidden) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestForbidden) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestForbidden) IsRedirect() bool

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

func (*DeleteUpdateRequestForbidden) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestForbidden) IsServerError() bool

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

func (*DeleteUpdateRequestForbidden) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestForbidden) IsSuccess() bool

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

func (*DeleteUpdateRequestForbidden) String added in v1.19.1

type DeleteUpdateRequestNotFound

type DeleteUpdateRequestNotFound struct {
}

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

The specified resource could not be found.

func NewDeleteUpdateRequestNotFound

func NewDeleteUpdateRequestNotFound() *DeleteUpdateRequestNotFound

NewDeleteUpdateRequestNotFound creates a DeleteUpdateRequestNotFound with default headers values

func (*DeleteUpdateRequestNotFound) Error

func (*DeleteUpdateRequestNotFound) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestNotFound) IsClientError() bool

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

func (*DeleteUpdateRequestNotFound) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestNotFound) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestNotFound) IsRedirect() bool

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

func (*DeleteUpdateRequestNotFound) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestNotFound) IsServerError() bool

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

func (*DeleteUpdateRequestNotFound) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestNotFound) IsSuccess() bool

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

func (*DeleteUpdateRequestNotFound) String added in v1.19.1

func (o *DeleteUpdateRequestNotFound) String() string

type DeleteUpdateRequestOK

type DeleteUpdateRequestOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewDeleteUpdateRequestOK

func NewDeleteUpdateRequestOK() *DeleteUpdateRequestOK

NewDeleteUpdateRequestOK creates a DeleteUpdateRequestOK with default headers values

func (*DeleteUpdateRequestOK) Error

func (o *DeleteUpdateRequestOK) Error() string

func (*DeleteUpdateRequestOK) GetPayload

func (*DeleteUpdateRequestOK) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestOK) IsClientError() bool

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

func (*DeleteUpdateRequestOK) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestOK) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestOK) IsRedirect() bool

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

func (*DeleteUpdateRequestOK) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestOK) IsServerError() bool

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

func (*DeleteUpdateRequestOK) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestOK) IsSuccess() bool

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

func (*DeleteUpdateRequestOK) String added in v1.19.1

func (o *DeleteUpdateRequestOK) String() string

type DeleteUpdateRequestParams

type DeleteUpdateRequestParams struct {

	/* 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
}

DeleteUpdateRequestParams contains all the parameters to send to the API endpoint

for the delete update request operation.

Typically these are written to a http.Request.

func NewDeleteUpdateRequestParams

func NewDeleteUpdateRequestParams() *DeleteUpdateRequestParams

NewDeleteUpdateRequestParams creates a new DeleteUpdateRequestParams 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 NewDeleteUpdateRequestParamsWithContext

func NewDeleteUpdateRequestParamsWithContext(ctx context.Context) *DeleteUpdateRequestParams

NewDeleteUpdateRequestParamsWithContext creates a new DeleteUpdateRequestParams object with the ability to set a context for a request.

func NewDeleteUpdateRequestParamsWithHTTPClient

func NewDeleteUpdateRequestParamsWithHTTPClient(client *http.Client) *DeleteUpdateRequestParams

NewDeleteUpdateRequestParamsWithHTTPClient creates a new DeleteUpdateRequestParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteUpdateRequestParamsWithTimeout

func NewDeleteUpdateRequestParamsWithTimeout(timeout time.Duration) *DeleteUpdateRequestParams

NewDeleteUpdateRequestParamsWithTimeout creates a new DeleteUpdateRequestParams object with the ability to set a timeout on a request.

func (*DeleteUpdateRequestParams) SetContext

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

SetContext adds the context to the delete update request params

func (*DeleteUpdateRequestParams) SetDefaults

func (o *DeleteUpdateRequestParams) SetDefaults()

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

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

func (*DeleteUpdateRequestParams) SetDisconnectedNodeAcknowledged

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

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete update request params

func (*DeleteUpdateRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete update request params

func (*DeleteUpdateRequestParams) SetID

func (o *DeleteUpdateRequestParams) SetID(id string)

SetID adds the id to the delete update request params

func (*DeleteUpdateRequestParams) SetTimeout

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

SetTimeout adds the timeout to the delete update request params

func (*DeleteUpdateRequestParams) WithContext

WithContext adds the context to the delete update request params

func (*DeleteUpdateRequestParams) WithDefaults

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

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

func (*DeleteUpdateRequestParams) WithDisconnectedNodeAcknowledged

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

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete update request params

func (*DeleteUpdateRequestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the delete update request params

func (*DeleteUpdateRequestParams) WithID

WithID adds the id to the delete update request params

func (*DeleteUpdateRequestParams) WithTimeout

WithTimeout adds the timeout to the delete update request params

func (*DeleteUpdateRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteUpdateRequestReader

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

DeleteUpdateRequestReader is a Reader for the DeleteUpdateRequest structure.

func (*DeleteUpdateRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteUpdateRequestUnauthorized

type DeleteUpdateRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewDeleteUpdateRequestUnauthorized

func NewDeleteUpdateRequestUnauthorized() *DeleteUpdateRequestUnauthorized

NewDeleteUpdateRequestUnauthorized creates a DeleteUpdateRequestUnauthorized with default headers values

func (*DeleteUpdateRequestUnauthorized) Error

func (*DeleteUpdateRequestUnauthorized) IsClientError added in v1.19.1

func (o *DeleteUpdateRequestUnauthorized) IsClientError() bool

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

func (*DeleteUpdateRequestUnauthorized) IsCode added in v1.19.1

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

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

func (*DeleteUpdateRequestUnauthorized) IsRedirect added in v1.19.1

func (o *DeleteUpdateRequestUnauthorized) IsRedirect() bool

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

func (*DeleteUpdateRequestUnauthorized) IsServerError added in v1.19.1

func (o *DeleteUpdateRequestUnauthorized) IsServerError() bool

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

func (*DeleteUpdateRequestUnauthorized) IsSuccess added in v1.19.1

func (o *DeleteUpdateRequestUnauthorized) IsSuccess() bool

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

func (*DeleteUpdateRequestUnauthorized) String added in v1.19.1

type DeleteVersionControlRequestBadRequest

type DeleteVersionControlRequestBadRequest struct {
}

DeleteVersionControlRequestBadRequest 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 NewDeleteVersionControlRequestBadRequest

func NewDeleteVersionControlRequestBadRequest() *DeleteVersionControlRequestBadRequest

NewDeleteVersionControlRequestBadRequest creates a DeleteVersionControlRequestBadRequest with default headers values

func (*DeleteVersionControlRequestBadRequest) Error

func (*DeleteVersionControlRequestBadRequest) IsClientError added in v1.19.1

func (o *DeleteVersionControlRequestBadRequest) IsClientError() bool

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

func (*DeleteVersionControlRequestBadRequest) IsCode added in v1.19.1

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

func (*DeleteVersionControlRequestBadRequest) IsRedirect added in v1.19.1

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

func (*DeleteVersionControlRequestBadRequest) IsServerError added in v1.19.1

func (o *DeleteVersionControlRequestBadRequest) IsServerError() bool

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

func (*DeleteVersionControlRequestBadRequest) IsSuccess added in v1.19.1

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

func (*DeleteVersionControlRequestBadRequest) String added in v1.19.1

type DeleteVersionControlRequestConflict

type DeleteVersionControlRequestConflict struct {
}

DeleteVersionControlRequestConflict 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 NewDeleteVersionControlRequestConflict

func NewDeleteVersionControlRequestConflict() *DeleteVersionControlRequestConflict

NewDeleteVersionControlRequestConflict creates a DeleteVersionControlRequestConflict with default headers values

func (*DeleteVersionControlRequestConflict) Error

func (*DeleteVersionControlRequestConflict) IsClientError added in v1.19.1

func (o *DeleteVersionControlRequestConflict) IsClientError() bool

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

func (*DeleteVersionControlRequestConflict) IsCode added in v1.19.1

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

func (*DeleteVersionControlRequestConflict) IsRedirect added in v1.19.1

func (o *DeleteVersionControlRequestConflict) IsRedirect() bool

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

func (*DeleteVersionControlRequestConflict) IsServerError added in v1.19.1

func (o *DeleteVersionControlRequestConflict) IsServerError() bool

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

func (*DeleteVersionControlRequestConflict) IsSuccess added in v1.19.1

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

func (*DeleteVersionControlRequestConflict) String added in v1.19.1

type DeleteVersionControlRequestForbidden

type DeleteVersionControlRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewDeleteVersionControlRequestForbidden

func NewDeleteVersionControlRequestForbidden() *DeleteVersionControlRequestForbidden

NewDeleteVersionControlRequestForbidden creates a DeleteVersionControlRequestForbidden with default headers values

func (*DeleteVersionControlRequestForbidden) Error

func (*DeleteVersionControlRequestForbidden) IsClientError added in v1.19.1

func (o *DeleteVersionControlRequestForbidden) IsClientError() bool

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

func (*DeleteVersionControlRequestForbidden) IsCode added in v1.19.1

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

func (*DeleteVersionControlRequestForbidden) IsRedirect added in v1.19.1

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

func (*DeleteVersionControlRequestForbidden) IsServerError added in v1.19.1

func (o *DeleteVersionControlRequestForbidden) IsServerError() bool

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

func (*DeleteVersionControlRequestForbidden) IsSuccess added in v1.19.1

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

func (*DeleteVersionControlRequestForbidden) String added in v1.19.1

type DeleteVersionControlRequestNotFound

type DeleteVersionControlRequestNotFound struct {
}

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

The specified resource could not be found.

func NewDeleteVersionControlRequestNotFound

func NewDeleteVersionControlRequestNotFound() *DeleteVersionControlRequestNotFound

NewDeleteVersionControlRequestNotFound creates a DeleteVersionControlRequestNotFound with default headers values

func (*DeleteVersionControlRequestNotFound) Error

func (*DeleteVersionControlRequestNotFound) IsClientError added in v1.19.1

func (o *DeleteVersionControlRequestNotFound) IsClientError() bool

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

func (*DeleteVersionControlRequestNotFound) IsCode added in v1.19.1

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

func (*DeleteVersionControlRequestNotFound) IsRedirect added in v1.19.1

func (o *DeleteVersionControlRequestNotFound) IsRedirect() bool

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

func (*DeleteVersionControlRequestNotFound) IsServerError added in v1.19.1

func (o *DeleteVersionControlRequestNotFound) IsServerError() bool

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

func (*DeleteVersionControlRequestNotFound) IsSuccess added in v1.19.1

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

func (*DeleteVersionControlRequestNotFound) String added in v1.19.1

type DeleteVersionControlRequestParams

type DeleteVersionControlRequestParams struct {

	/* DisconnectedNodeAcknowledged.

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

	/* ID.

	   The request ID.
	*/
	ID string

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

DeleteVersionControlRequestParams contains all the parameters to send to the API endpoint

for the delete version control request operation.

Typically these are written to a http.Request.

func NewDeleteVersionControlRequestParams

func NewDeleteVersionControlRequestParams() *DeleteVersionControlRequestParams

NewDeleteVersionControlRequestParams creates a new DeleteVersionControlRequestParams 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 NewDeleteVersionControlRequestParamsWithContext

func NewDeleteVersionControlRequestParamsWithContext(ctx context.Context) *DeleteVersionControlRequestParams

NewDeleteVersionControlRequestParamsWithContext creates a new DeleteVersionControlRequestParams object with the ability to set a context for a request.

func NewDeleteVersionControlRequestParamsWithHTTPClient

func NewDeleteVersionControlRequestParamsWithHTTPClient(client *http.Client) *DeleteVersionControlRequestParams

NewDeleteVersionControlRequestParamsWithHTTPClient creates a new DeleteVersionControlRequestParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteVersionControlRequestParamsWithTimeout

func NewDeleteVersionControlRequestParamsWithTimeout(timeout time.Duration) *DeleteVersionControlRequestParams

NewDeleteVersionControlRequestParamsWithTimeout creates a new DeleteVersionControlRequestParams object with the ability to set a timeout on a request.

func (*DeleteVersionControlRequestParams) SetContext

SetContext adds the context to the delete version control request params

func (*DeleteVersionControlRequestParams) SetDefaults

func (o *DeleteVersionControlRequestParams) SetDefaults()

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

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

func (*DeleteVersionControlRequestParams) SetDisconnectedNodeAcknowledged

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

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete version control request params

func (*DeleteVersionControlRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete version control request params

func (*DeleteVersionControlRequestParams) SetID

SetID adds the id to the delete version control request params

func (*DeleteVersionControlRequestParams) SetTimeout

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

SetTimeout adds the timeout to the delete version control request params

func (*DeleteVersionControlRequestParams) WithContext

WithContext adds the context to the delete version control request params

func (*DeleteVersionControlRequestParams) WithDefaults

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

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

func (*DeleteVersionControlRequestParams) WithDisconnectedNodeAcknowledged

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

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the delete version control request params

func (*DeleteVersionControlRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete version control request params

func (*DeleteVersionControlRequestParams) WithID

WithID adds the id to the delete version control request params

func (*DeleteVersionControlRequestParams) WithTimeout

WithTimeout adds the timeout to the delete version control request params

func (*DeleteVersionControlRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteVersionControlRequestReader

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

DeleteVersionControlRequestReader is a Reader for the DeleteVersionControlRequest structure.

func (*DeleteVersionControlRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteVersionControlRequestUnauthorized

type DeleteVersionControlRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewDeleteVersionControlRequestUnauthorized

func NewDeleteVersionControlRequestUnauthorized() *DeleteVersionControlRequestUnauthorized

NewDeleteVersionControlRequestUnauthorized creates a DeleteVersionControlRequestUnauthorized with default headers values

func (*DeleteVersionControlRequestUnauthorized) Error

func (*DeleteVersionControlRequestUnauthorized) IsClientError added in v1.19.1

func (o *DeleteVersionControlRequestUnauthorized) IsClientError() bool

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

func (*DeleteVersionControlRequestUnauthorized) IsCode added in v1.19.1

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

func (*DeleteVersionControlRequestUnauthorized) IsRedirect added in v1.19.1

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

func (*DeleteVersionControlRequestUnauthorized) IsServerError added in v1.19.1

func (o *DeleteVersionControlRequestUnauthorized) IsServerError() bool

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

func (*DeleteVersionControlRequestUnauthorized) IsSuccess added in v1.19.1

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

func (*DeleteVersionControlRequestUnauthorized) String added in v1.19.1

type ExportFlowVersionBadRequest

type ExportFlowVersionBadRequest struct {
}

ExportFlowVersionBadRequest 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 NewExportFlowVersionBadRequest

func NewExportFlowVersionBadRequest() *ExportFlowVersionBadRequest

NewExportFlowVersionBadRequest creates a ExportFlowVersionBadRequest with default headers values

func (*ExportFlowVersionBadRequest) Error

func (*ExportFlowVersionBadRequest) IsClientError added in v1.19.1

func (o *ExportFlowVersionBadRequest) IsClientError() bool

IsClientError returns true when this export flow version bad request response has a 4xx status code

func (*ExportFlowVersionBadRequest) IsCode added in v1.19.1

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

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

func (*ExportFlowVersionBadRequest) IsRedirect added in v1.19.1

func (o *ExportFlowVersionBadRequest) IsRedirect() bool

IsRedirect returns true when this export flow version bad request response has a 3xx status code

func (*ExportFlowVersionBadRequest) IsServerError added in v1.19.1

func (o *ExportFlowVersionBadRequest) IsServerError() bool

IsServerError returns true when this export flow version bad request response has a 5xx status code

func (*ExportFlowVersionBadRequest) IsSuccess added in v1.19.1

func (o *ExportFlowVersionBadRequest) IsSuccess() bool

IsSuccess returns true when this export flow version bad request response has a 2xx status code

func (*ExportFlowVersionBadRequest) String added in v1.19.1

func (o *ExportFlowVersionBadRequest) String() string

type ExportFlowVersionConflict

type ExportFlowVersionConflict struct {
}

ExportFlowVersionConflict 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 NewExportFlowVersionConflict

func NewExportFlowVersionConflict() *ExportFlowVersionConflict

NewExportFlowVersionConflict creates a ExportFlowVersionConflict with default headers values

func (*ExportFlowVersionConflict) Error

func (o *ExportFlowVersionConflict) Error() string

func (*ExportFlowVersionConflict) IsClientError added in v1.19.1

func (o *ExportFlowVersionConflict) IsClientError() bool

IsClientError returns true when this export flow version conflict response has a 4xx status code

func (*ExportFlowVersionConflict) IsCode added in v1.19.1

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

IsCode returns true when this export flow version conflict response a status code equal to that given

func (*ExportFlowVersionConflict) IsRedirect added in v1.19.1

func (o *ExportFlowVersionConflict) IsRedirect() bool

IsRedirect returns true when this export flow version conflict response has a 3xx status code

func (*ExportFlowVersionConflict) IsServerError added in v1.19.1

func (o *ExportFlowVersionConflict) IsServerError() bool

IsServerError returns true when this export flow version conflict response has a 5xx status code

func (*ExportFlowVersionConflict) IsSuccess added in v1.19.1

func (o *ExportFlowVersionConflict) IsSuccess() bool

IsSuccess returns true when this export flow version conflict response has a 2xx status code

func (*ExportFlowVersionConflict) String added in v1.19.1

func (o *ExportFlowVersionConflict) String() string

type ExportFlowVersionForbidden

type ExportFlowVersionForbidden struct {
}

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

Client is not authorized to make this request.

func NewExportFlowVersionForbidden

func NewExportFlowVersionForbidden() *ExportFlowVersionForbidden

NewExportFlowVersionForbidden creates a ExportFlowVersionForbidden with default headers values

func (*ExportFlowVersionForbidden) Error

func (*ExportFlowVersionForbidden) IsClientError added in v1.19.1

func (o *ExportFlowVersionForbidden) IsClientError() bool

IsClientError returns true when this export flow version forbidden response has a 4xx status code

func (*ExportFlowVersionForbidden) IsCode added in v1.19.1

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

IsCode returns true when this export flow version forbidden response a status code equal to that given

func (*ExportFlowVersionForbidden) IsRedirect added in v1.19.1

func (o *ExportFlowVersionForbidden) IsRedirect() bool

IsRedirect returns true when this export flow version forbidden response has a 3xx status code

func (*ExportFlowVersionForbidden) IsServerError added in v1.19.1

func (o *ExportFlowVersionForbidden) IsServerError() bool

IsServerError returns true when this export flow version forbidden response has a 5xx status code

func (*ExportFlowVersionForbidden) IsSuccess added in v1.19.1

func (o *ExportFlowVersionForbidden) IsSuccess() bool

IsSuccess returns true when this export flow version forbidden response has a 2xx status code

func (*ExportFlowVersionForbidden) String added in v1.19.1

func (o *ExportFlowVersionForbidden) String() string

type ExportFlowVersionNotFound

type ExportFlowVersionNotFound struct {
}

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

The specified resource could not be found.

func NewExportFlowVersionNotFound

func NewExportFlowVersionNotFound() *ExportFlowVersionNotFound

NewExportFlowVersionNotFound creates a ExportFlowVersionNotFound with default headers values

func (*ExportFlowVersionNotFound) Error

func (o *ExportFlowVersionNotFound) Error() string

func (*ExportFlowVersionNotFound) IsClientError added in v1.19.1

func (o *ExportFlowVersionNotFound) IsClientError() bool

IsClientError returns true when this export flow version not found response has a 4xx status code

func (*ExportFlowVersionNotFound) IsCode added in v1.19.1

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

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

func (*ExportFlowVersionNotFound) IsRedirect added in v1.19.1

func (o *ExportFlowVersionNotFound) IsRedirect() bool

IsRedirect returns true when this export flow version not found response has a 3xx status code

func (*ExportFlowVersionNotFound) IsServerError added in v1.19.1

func (o *ExportFlowVersionNotFound) IsServerError() bool

IsServerError returns true when this export flow version not found response has a 5xx status code

func (*ExportFlowVersionNotFound) IsSuccess added in v1.19.1

func (o *ExportFlowVersionNotFound) IsSuccess() bool

IsSuccess returns true when this export flow version not found response has a 2xx status code

func (*ExportFlowVersionNotFound) String added in v1.19.1

func (o *ExportFlowVersionNotFound) String() string

type ExportFlowVersionOK

type ExportFlowVersionOK struct {
	Payload string
}

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

successful operation

func NewExportFlowVersionOK

func NewExportFlowVersionOK() *ExportFlowVersionOK

NewExportFlowVersionOK creates a ExportFlowVersionOK with default headers values

func (*ExportFlowVersionOK) Error

func (o *ExportFlowVersionOK) Error() string

func (*ExportFlowVersionOK) GetPayload

func (o *ExportFlowVersionOK) GetPayload() string

func (*ExportFlowVersionOK) IsClientError added in v1.19.1

func (o *ExportFlowVersionOK) IsClientError() bool

IsClientError returns true when this export flow version o k response has a 4xx status code

func (*ExportFlowVersionOK) IsCode added in v1.19.1

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

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

func (*ExportFlowVersionOK) IsRedirect added in v1.19.1

func (o *ExportFlowVersionOK) IsRedirect() bool

IsRedirect returns true when this export flow version o k response has a 3xx status code

func (*ExportFlowVersionOK) IsServerError added in v1.19.1

func (o *ExportFlowVersionOK) IsServerError() bool

IsServerError returns true when this export flow version o k response has a 5xx status code

func (*ExportFlowVersionOK) IsSuccess added in v1.19.1

func (o *ExportFlowVersionOK) IsSuccess() bool

IsSuccess returns true when this export flow version o k response has a 2xx status code

func (*ExportFlowVersionOK) String added in v1.19.1

func (o *ExportFlowVersionOK) String() string

type ExportFlowVersionParams

type ExportFlowVersionParams struct {

	/* ID.

	   The process group id.
	*/
	ID string

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

ExportFlowVersionParams contains all the parameters to send to the API endpoint

for the export flow version operation.

Typically these are written to a http.Request.

func NewExportFlowVersionParams

func NewExportFlowVersionParams() *ExportFlowVersionParams

NewExportFlowVersionParams creates a new ExportFlowVersionParams 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 NewExportFlowVersionParamsWithContext

func NewExportFlowVersionParamsWithContext(ctx context.Context) *ExportFlowVersionParams

NewExportFlowVersionParamsWithContext creates a new ExportFlowVersionParams object with the ability to set a context for a request.

func NewExportFlowVersionParamsWithHTTPClient

func NewExportFlowVersionParamsWithHTTPClient(client *http.Client) *ExportFlowVersionParams

NewExportFlowVersionParamsWithHTTPClient creates a new ExportFlowVersionParams object with the ability to set a custom HTTPClient for a request.

func NewExportFlowVersionParamsWithTimeout

func NewExportFlowVersionParamsWithTimeout(timeout time.Duration) *ExportFlowVersionParams

NewExportFlowVersionParamsWithTimeout creates a new ExportFlowVersionParams object with the ability to set a timeout on a request.

func (*ExportFlowVersionParams) SetContext

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

SetContext adds the context to the export flow version params

func (*ExportFlowVersionParams) SetDefaults

func (o *ExportFlowVersionParams) SetDefaults()

SetDefaults hydrates default values in the export flow version params (not the query body).

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

func (*ExportFlowVersionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the export flow version params

func (*ExportFlowVersionParams) SetID

func (o *ExportFlowVersionParams) SetID(id string)

SetID adds the id to the export flow version params

func (*ExportFlowVersionParams) SetTimeout

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

SetTimeout adds the timeout to the export flow version params

func (*ExportFlowVersionParams) WithContext

WithContext adds the context to the export flow version params

func (*ExportFlowVersionParams) WithDefaults

WithDefaults hydrates default values in the export flow version params (not the query body).

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

func (*ExportFlowVersionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the export flow version params

func (*ExportFlowVersionParams) WithID

WithID adds the id to the export flow version params

func (*ExportFlowVersionParams) WithTimeout

WithTimeout adds the timeout to the export flow version params

func (*ExportFlowVersionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ExportFlowVersionReader

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

ExportFlowVersionReader is a Reader for the ExportFlowVersion structure.

func (*ExportFlowVersionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ExportFlowVersionUnauthorized

type ExportFlowVersionUnauthorized struct {
}

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

Client could not be authenticated.

func NewExportFlowVersionUnauthorized

func NewExportFlowVersionUnauthorized() *ExportFlowVersionUnauthorized

NewExportFlowVersionUnauthorized creates a ExportFlowVersionUnauthorized with default headers values

func (*ExportFlowVersionUnauthorized) Error

func (*ExportFlowVersionUnauthorized) IsClientError added in v1.19.1

func (o *ExportFlowVersionUnauthorized) IsClientError() bool

IsClientError returns true when this export flow version unauthorized response has a 4xx status code

func (*ExportFlowVersionUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this export flow version unauthorized response a status code equal to that given

func (*ExportFlowVersionUnauthorized) IsRedirect added in v1.19.1

func (o *ExportFlowVersionUnauthorized) IsRedirect() bool

IsRedirect returns true when this export flow version unauthorized response has a 3xx status code

func (*ExportFlowVersionUnauthorized) IsServerError added in v1.19.1

func (o *ExportFlowVersionUnauthorized) IsServerError() bool

IsServerError returns true when this export flow version unauthorized response has a 5xx status code

func (*ExportFlowVersionUnauthorized) IsSuccess added in v1.19.1

func (o *ExportFlowVersionUnauthorized) IsSuccess() bool

IsSuccess returns true when this export flow version unauthorized response has a 2xx status code

func (*ExportFlowVersionUnauthorized) String added in v1.19.1

type GetRevertRequestBadRequest

type GetRevertRequestBadRequest struct {
}

GetRevertRequestBadRequest 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 NewGetRevertRequestBadRequest

func NewGetRevertRequestBadRequest() *GetRevertRequestBadRequest

NewGetRevertRequestBadRequest creates a GetRevertRequestBadRequest with default headers values

func (*GetRevertRequestBadRequest) Error

func (*GetRevertRequestBadRequest) IsClientError added in v1.19.1

func (o *GetRevertRequestBadRequest) IsClientError() bool

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

func (*GetRevertRequestBadRequest) IsCode added in v1.19.1

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

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

func (*GetRevertRequestBadRequest) IsRedirect added in v1.19.1

func (o *GetRevertRequestBadRequest) IsRedirect() bool

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

func (*GetRevertRequestBadRequest) IsServerError added in v1.19.1

func (o *GetRevertRequestBadRequest) IsServerError() bool

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

func (*GetRevertRequestBadRequest) IsSuccess added in v1.19.1

func (o *GetRevertRequestBadRequest) IsSuccess() bool

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

func (*GetRevertRequestBadRequest) String added in v1.19.1

func (o *GetRevertRequestBadRequest) String() string

type GetRevertRequestConflict

type GetRevertRequestConflict struct {
}

GetRevertRequestConflict 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 NewGetRevertRequestConflict

func NewGetRevertRequestConflict() *GetRevertRequestConflict

NewGetRevertRequestConflict creates a GetRevertRequestConflict with default headers values

func (*GetRevertRequestConflict) Error

func (o *GetRevertRequestConflict) Error() string

func (*GetRevertRequestConflict) IsClientError added in v1.19.1

func (o *GetRevertRequestConflict) IsClientError() bool

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

func (*GetRevertRequestConflict) IsCode added in v1.19.1

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

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

func (*GetRevertRequestConflict) IsRedirect added in v1.19.1

func (o *GetRevertRequestConflict) IsRedirect() bool

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

func (*GetRevertRequestConflict) IsServerError added in v1.19.1

func (o *GetRevertRequestConflict) IsServerError() bool

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

func (*GetRevertRequestConflict) IsSuccess added in v1.19.1

func (o *GetRevertRequestConflict) IsSuccess() bool

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

func (*GetRevertRequestConflict) String added in v1.19.1

func (o *GetRevertRequestConflict) String() string

type GetRevertRequestForbidden

type GetRevertRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetRevertRequestForbidden

func NewGetRevertRequestForbidden() *GetRevertRequestForbidden

NewGetRevertRequestForbidden creates a GetRevertRequestForbidden with default headers values

func (*GetRevertRequestForbidden) Error

func (o *GetRevertRequestForbidden) Error() string

func (*GetRevertRequestForbidden) IsClientError added in v1.19.1

func (o *GetRevertRequestForbidden) IsClientError() bool

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

func (*GetRevertRequestForbidden) IsCode added in v1.19.1

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

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

func (*GetRevertRequestForbidden) IsRedirect added in v1.19.1

func (o *GetRevertRequestForbidden) IsRedirect() bool

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

func (*GetRevertRequestForbidden) IsServerError added in v1.19.1

func (o *GetRevertRequestForbidden) IsServerError() bool

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

func (*GetRevertRequestForbidden) IsSuccess added in v1.19.1

func (o *GetRevertRequestForbidden) IsSuccess() bool

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

func (*GetRevertRequestForbidden) String added in v1.19.1

func (o *GetRevertRequestForbidden) String() string

type GetRevertRequestNotFound

type GetRevertRequestNotFound struct {
}

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

The specified resource could not be found.

func NewGetRevertRequestNotFound

func NewGetRevertRequestNotFound() *GetRevertRequestNotFound

NewGetRevertRequestNotFound creates a GetRevertRequestNotFound with default headers values

func (*GetRevertRequestNotFound) Error

func (o *GetRevertRequestNotFound) Error() string

func (*GetRevertRequestNotFound) IsClientError added in v1.19.1

func (o *GetRevertRequestNotFound) IsClientError() bool

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

func (*GetRevertRequestNotFound) IsCode added in v1.19.1

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

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

func (*GetRevertRequestNotFound) IsRedirect added in v1.19.1

func (o *GetRevertRequestNotFound) IsRedirect() bool

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

func (*GetRevertRequestNotFound) IsServerError added in v1.19.1

func (o *GetRevertRequestNotFound) IsServerError() bool

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

func (*GetRevertRequestNotFound) IsSuccess added in v1.19.1

func (o *GetRevertRequestNotFound) IsSuccess() bool

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

func (*GetRevertRequestNotFound) String added in v1.19.1

func (o *GetRevertRequestNotFound) String() string

type GetRevertRequestOK

type GetRevertRequestOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewGetRevertRequestOK

func NewGetRevertRequestOK() *GetRevertRequestOK

NewGetRevertRequestOK creates a GetRevertRequestOK with default headers values

func (*GetRevertRequestOK) Error

func (o *GetRevertRequestOK) Error() string

func (*GetRevertRequestOK) GetPayload

func (*GetRevertRequestOK) IsClientError added in v1.19.1

func (o *GetRevertRequestOK) IsClientError() bool

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

func (*GetRevertRequestOK) IsCode added in v1.19.1

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

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

func (*GetRevertRequestOK) IsRedirect added in v1.19.1

func (o *GetRevertRequestOK) IsRedirect() bool

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

func (*GetRevertRequestOK) IsServerError added in v1.19.1

func (o *GetRevertRequestOK) IsServerError() bool

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

func (*GetRevertRequestOK) IsSuccess added in v1.19.1

func (o *GetRevertRequestOK) IsSuccess() bool

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

func (*GetRevertRequestOK) String added in v1.19.1

func (o *GetRevertRequestOK) String() string

type GetRevertRequestParams

type GetRevertRequestParams struct {

	/* ID.

	   The ID of the Revert Request
	*/
	ID string

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

GetRevertRequestParams contains all the parameters to send to the API endpoint

for the get revert request operation.

Typically these are written to a http.Request.

func NewGetRevertRequestParams

func NewGetRevertRequestParams() *GetRevertRequestParams

NewGetRevertRequestParams creates a new GetRevertRequestParams 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 NewGetRevertRequestParamsWithContext

func NewGetRevertRequestParamsWithContext(ctx context.Context) *GetRevertRequestParams

NewGetRevertRequestParamsWithContext creates a new GetRevertRequestParams object with the ability to set a context for a request.

func NewGetRevertRequestParamsWithHTTPClient

func NewGetRevertRequestParamsWithHTTPClient(client *http.Client) *GetRevertRequestParams

NewGetRevertRequestParamsWithHTTPClient creates a new GetRevertRequestParams object with the ability to set a custom HTTPClient for a request.

func NewGetRevertRequestParamsWithTimeout

func NewGetRevertRequestParamsWithTimeout(timeout time.Duration) *GetRevertRequestParams

NewGetRevertRequestParamsWithTimeout creates a new GetRevertRequestParams object with the ability to set a timeout on a request.

func (*GetRevertRequestParams) SetContext

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

SetContext adds the context to the get revert request params

func (*GetRevertRequestParams) SetDefaults

func (o *GetRevertRequestParams) SetDefaults()

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

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

func (*GetRevertRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get revert request params

func (*GetRevertRequestParams) SetID

func (o *GetRevertRequestParams) SetID(id string)

SetID adds the id to the get revert request params

func (*GetRevertRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get revert request params

func (*GetRevertRequestParams) WithContext

WithContext adds the context to the get revert request params

func (*GetRevertRequestParams) WithDefaults

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

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

func (*GetRevertRequestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get revert request params

func (*GetRevertRequestParams) WithID

WithID adds the id to the get revert request params

func (*GetRevertRequestParams) WithTimeout

WithTimeout adds the timeout to the get revert request params

func (*GetRevertRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRevertRequestReader

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

GetRevertRequestReader is a Reader for the GetRevertRequest structure.

func (*GetRevertRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRevertRequestUnauthorized

type GetRevertRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetRevertRequestUnauthorized

func NewGetRevertRequestUnauthorized() *GetRevertRequestUnauthorized

NewGetRevertRequestUnauthorized creates a GetRevertRequestUnauthorized with default headers values

func (*GetRevertRequestUnauthorized) Error

func (*GetRevertRequestUnauthorized) IsClientError added in v1.19.1

func (o *GetRevertRequestUnauthorized) IsClientError() bool

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

func (*GetRevertRequestUnauthorized) IsCode added in v1.19.1

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

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

func (*GetRevertRequestUnauthorized) IsRedirect added in v1.19.1

func (o *GetRevertRequestUnauthorized) IsRedirect() bool

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

func (*GetRevertRequestUnauthorized) IsServerError added in v1.19.1

func (o *GetRevertRequestUnauthorized) IsServerError() bool

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

func (*GetRevertRequestUnauthorized) IsSuccess added in v1.19.1

func (o *GetRevertRequestUnauthorized) IsSuccess() bool

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

func (*GetRevertRequestUnauthorized) String added in v1.19.1

type GetUpdateRequestBadRequest

type GetUpdateRequestBadRequest struct {
}

GetUpdateRequestBadRequest 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 NewGetUpdateRequestBadRequest

func NewGetUpdateRequestBadRequest() *GetUpdateRequestBadRequest

NewGetUpdateRequestBadRequest creates a GetUpdateRequestBadRequest with default headers values

func (*GetUpdateRequestBadRequest) Error

func (*GetUpdateRequestBadRequest) IsClientError added in v1.19.1

func (o *GetUpdateRequestBadRequest) IsClientError() bool

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

func (*GetUpdateRequestBadRequest) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestBadRequest) IsRedirect added in v1.19.1

func (o *GetUpdateRequestBadRequest) IsRedirect() bool

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

func (*GetUpdateRequestBadRequest) IsServerError added in v1.19.1

func (o *GetUpdateRequestBadRequest) IsServerError() bool

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

func (*GetUpdateRequestBadRequest) IsSuccess added in v1.19.1

func (o *GetUpdateRequestBadRequest) IsSuccess() bool

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

func (*GetUpdateRequestBadRequest) String added in v1.19.1

func (o *GetUpdateRequestBadRequest) String() string

type GetUpdateRequestConflict

type GetUpdateRequestConflict struct {
}

GetUpdateRequestConflict 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 NewGetUpdateRequestConflict

func NewGetUpdateRequestConflict() *GetUpdateRequestConflict

NewGetUpdateRequestConflict creates a GetUpdateRequestConflict with default headers values

func (*GetUpdateRequestConflict) Error

func (o *GetUpdateRequestConflict) Error() string

func (*GetUpdateRequestConflict) IsClientError added in v1.19.1

func (o *GetUpdateRequestConflict) IsClientError() bool

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

func (*GetUpdateRequestConflict) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestConflict) IsRedirect added in v1.19.1

func (o *GetUpdateRequestConflict) IsRedirect() bool

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

func (*GetUpdateRequestConflict) IsServerError added in v1.19.1

func (o *GetUpdateRequestConflict) IsServerError() bool

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

func (*GetUpdateRequestConflict) IsSuccess added in v1.19.1

func (o *GetUpdateRequestConflict) IsSuccess() bool

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

func (*GetUpdateRequestConflict) String added in v1.19.1

func (o *GetUpdateRequestConflict) String() string

type GetUpdateRequestForbidden

type GetUpdateRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetUpdateRequestForbidden

func NewGetUpdateRequestForbidden() *GetUpdateRequestForbidden

NewGetUpdateRequestForbidden creates a GetUpdateRequestForbidden with default headers values

func (*GetUpdateRequestForbidden) Error

func (o *GetUpdateRequestForbidden) Error() string

func (*GetUpdateRequestForbidden) IsClientError added in v1.19.1

func (o *GetUpdateRequestForbidden) IsClientError() bool

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

func (*GetUpdateRequestForbidden) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestForbidden) IsRedirect added in v1.19.1

func (o *GetUpdateRequestForbidden) IsRedirect() bool

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

func (*GetUpdateRequestForbidden) IsServerError added in v1.19.1

func (o *GetUpdateRequestForbidden) IsServerError() bool

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

func (*GetUpdateRequestForbidden) IsSuccess added in v1.19.1

func (o *GetUpdateRequestForbidden) IsSuccess() bool

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

func (*GetUpdateRequestForbidden) String added in v1.19.1

func (o *GetUpdateRequestForbidden) String() string

type GetUpdateRequestNotFound

type GetUpdateRequestNotFound struct {
}

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

The specified resource could not be found.

func NewGetUpdateRequestNotFound

func NewGetUpdateRequestNotFound() *GetUpdateRequestNotFound

NewGetUpdateRequestNotFound creates a GetUpdateRequestNotFound with default headers values

func (*GetUpdateRequestNotFound) Error

func (o *GetUpdateRequestNotFound) Error() string

func (*GetUpdateRequestNotFound) IsClientError added in v1.19.1

func (o *GetUpdateRequestNotFound) IsClientError() bool

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

func (*GetUpdateRequestNotFound) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestNotFound) IsRedirect added in v1.19.1

func (o *GetUpdateRequestNotFound) IsRedirect() bool

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

func (*GetUpdateRequestNotFound) IsServerError added in v1.19.1

func (o *GetUpdateRequestNotFound) IsServerError() bool

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

func (*GetUpdateRequestNotFound) IsSuccess added in v1.19.1

func (o *GetUpdateRequestNotFound) IsSuccess() bool

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

func (*GetUpdateRequestNotFound) String added in v1.19.1

func (o *GetUpdateRequestNotFound) String() string

type GetUpdateRequestOK

type GetUpdateRequestOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewGetUpdateRequestOK

func NewGetUpdateRequestOK() *GetUpdateRequestOK

NewGetUpdateRequestOK creates a GetUpdateRequestOK with default headers values

func (*GetUpdateRequestOK) Error

func (o *GetUpdateRequestOK) Error() string

func (*GetUpdateRequestOK) GetPayload

func (*GetUpdateRequestOK) IsClientError added in v1.19.1

func (o *GetUpdateRequestOK) IsClientError() bool

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

func (*GetUpdateRequestOK) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestOK) IsRedirect added in v1.19.1

func (o *GetUpdateRequestOK) IsRedirect() bool

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

func (*GetUpdateRequestOK) IsServerError added in v1.19.1

func (o *GetUpdateRequestOK) IsServerError() bool

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

func (*GetUpdateRequestOK) IsSuccess added in v1.19.1

func (o *GetUpdateRequestOK) IsSuccess() bool

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

func (*GetUpdateRequestOK) String added in v1.19.1

func (o *GetUpdateRequestOK) String() string

type GetUpdateRequestParams

type GetUpdateRequestParams struct {

	/* ID.

	   The ID of the Update Request
	*/
	ID string

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

GetUpdateRequestParams contains all the parameters to send to the API endpoint

for the get update request operation.

Typically these are written to a http.Request.

func NewGetUpdateRequestParams

func NewGetUpdateRequestParams() *GetUpdateRequestParams

NewGetUpdateRequestParams creates a new GetUpdateRequestParams 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 NewGetUpdateRequestParamsWithContext

func NewGetUpdateRequestParamsWithContext(ctx context.Context) *GetUpdateRequestParams

NewGetUpdateRequestParamsWithContext creates a new GetUpdateRequestParams object with the ability to set a context for a request.

func NewGetUpdateRequestParamsWithHTTPClient

func NewGetUpdateRequestParamsWithHTTPClient(client *http.Client) *GetUpdateRequestParams

NewGetUpdateRequestParamsWithHTTPClient creates a new GetUpdateRequestParams object with the ability to set a custom HTTPClient for a request.

func NewGetUpdateRequestParamsWithTimeout

func NewGetUpdateRequestParamsWithTimeout(timeout time.Duration) *GetUpdateRequestParams

NewGetUpdateRequestParamsWithTimeout creates a new GetUpdateRequestParams object with the ability to set a timeout on a request.

func (*GetUpdateRequestParams) SetContext

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

SetContext adds the context to the get update request params

func (*GetUpdateRequestParams) SetDefaults

func (o *GetUpdateRequestParams) SetDefaults()

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

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

func (*GetUpdateRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get update request params

func (*GetUpdateRequestParams) SetID

func (o *GetUpdateRequestParams) SetID(id string)

SetID adds the id to the get update request params

func (*GetUpdateRequestParams) SetTimeout

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

SetTimeout adds the timeout to the get update request params

func (*GetUpdateRequestParams) WithContext

WithContext adds the context to the get update request params

func (*GetUpdateRequestParams) WithDefaults

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

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

func (*GetUpdateRequestParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get update request params

func (*GetUpdateRequestParams) WithID

WithID adds the id to the get update request params

func (*GetUpdateRequestParams) WithTimeout

WithTimeout adds the timeout to the get update request params

func (*GetUpdateRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetUpdateRequestReader

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

GetUpdateRequestReader is a Reader for the GetUpdateRequest structure.

func (*GetUpdateRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetUpdateRequestUnauthorized

type GetUpdateRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetUpdateRequestUnauthorized

func NewGetUpdateRequestUnauthorized() *GetUpdateRequestUnauthorized

NewGetUpdateRequestUnauthorized creates a GetUpdateRequestUnauthorized with default headers values

func (*GetUpdateRequestUnauthorized) Error

func (*GetUpdateRequestUnauthorized) IsClientError added in v1.19.1

func (o *GetUpdateRequestUnauthorized) IsClientError() bool

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

func (*GetUpdateRequestUnauthorized) IsCode added in v1.19.1

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

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

func (*GetUpdateRequestUnauthorized) IsRedirect added in v1.19.1

func (o *GetUpdateRequestUnauthorized) IsRedirect() bool

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

func (*GetUpdateRequestUnauthorized) IsServerError added in v1.19.1

func (o *GetUpdateRequestUnauthorized) IsServerError() bool

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

func (*GetUpdateRequestUnauthorized) IsSuccess added in v1.19.1

func (o *GetUpdateRequestUnauthorized) IsSuccess() bool

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

func (*GetUpdateRequestUnauthorized) String added in v1.19.1

type GetVersionInformationBadRequest

type GetVersionInformationBadRequest struct {
}

GetVersionInformationBadRequest 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 NewGetVersionInformationBadRequest

func NewGetVersionInformationBadRequest() *GetVersionInformationBadRequest

NewGetVersionInformationBadRequest creates a GetVersionInformationBadRequest with default headers values

func (*GetVersionInformationBadRequest) Error

func (*GetVersionInformationBadRequest) IsClientError added in v1.19.1

func (o *GetVersionInformationBadRequest) IsClientError() bool

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

func (*GetVersionInformationBadRequest) IsCode added in v1.19.1

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

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

func (*GetVersionInformationBadRequest) IsRedirect added in v1.19.1

func (o *GetVersionInformationBadRequest) IsRedirect() bool

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

func (*GetVersionInformationBadRequest) IsServerError added in v1.19.1

func (o *GetVersionInformationBadRequest) IsServerError() bool

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

func (*GetVersionInformationBadRequest) IsSuccess added in v1.19.1

func (o *GetVersionInformationBadRequest) IsSuccess() bool

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

func (*GetVersionInformationBadRequest) String added in v1.19.1

type GetVersionInformationConflict

type GetVersionInformationConflict struct {
}

GetVersionInformationConflict 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 NewGetVersionInformationConflict

func NewGetVersionInformationConflict() *GetVersionInformationConflict

NewGetVersionInformationConflict creates a GetVersionInformationConflict with default headers values

func (*GetVersionInformationConflict) Error

func (*GetVersionInformationConflict) IsClientError added in v1.19.1

func (o *GetVersionInformationConflict) IsClientError() bool

IsClientError returns true when this get version information conflict response has a 4xx status code

func (*GetVersionInformationConflict) IsCode added in v1.19.1

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

IsCode returns true when this get version information conflict response a status code equal to that given

func (*GetVersionInformationConflict) IsRedirect added in v1.19.1

func (o *GetVersionInformationConflict) IsRedirect() bool

IsRedirect returns true when this get version information conflict response has a 3xx status code

func (*GetVersionInformationConflict) IsServerError added in v1.19.1

func (o *GetVersionInformationConflict) IsServerError() bool

IsServerError returns true when this get version information conflict response has a 5xx status code

func (*GetVersionInformationConflict) IsSuccess added in v1.19.1

func (o *GetVersionInformationConflict) IsSuccess() bool

IsSuccess returns true when this get version information conflict response has a 2xx status code

func (*GetVersionInformationConflict) String added in v1.19.1

type GetVersionInformationForbidden

type GetVersionInformationForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetVersionInformationForbidden

func NewGetVersionInformationForbidden() *GetVersionInformationForbidden

NewGetVersionInformationForbidden creates a GetVersionInformationForbidden with default headers values

func (*GetVersionInformationForbidden) Error

func (*GetVersionInformationForbidden) IsClientError added in v1.19.1

func (o *GetVersionInformationForbidden) IsClientError() bool

IsClientError returns true when this get version information forbidden response has a 4xx status code

func (*GetVersionInformationForbidden) IsCode added in v1.19.1

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

IsCode returns true when this get version information forbidden response a status code equal to that given

func (*GetVersionInformationForbidden) IsRedirect added in v1.19.1

func (o *GetVersionInformationForbidden) IsRedirect() bool

IsRedirect returns true when this get version information forbidden response has a 3xx status code

func (*GetVersionInformationForbidden) IsServerError added in v1.19.1

func (o *GetVersionInformationForbidden) IsServerError() bool

IsServerError returns true when this get version information forbidden response has a 5xx status code

func (*GetVersionInformationForbidden) IsSuccess added in v1.19.1

func (o *GetVersionInformationForbidden) IsSuccess() bool

IsSuccess returns true when this get version information forbidden response has a 2xx status code

func (*GetVersionInformationForbidden) String added in v1.19.1

type GetVersionInformationNotFound

type GetVersionInformationNotFound struct {
}

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

The specified resource could not be found.

func NewGetVersionInformationNotFound

func NewGetVersionInformationNotFound() *GetVersionInformationNotFound

NewGetVersionInformationNotFound creates a GetVersionInformationNotFound with default headers values

func (*GetVersionInformationNotFound) Error

func (*GetVersionInformationNotFound) IsClientError added in v1.19.1

func (o *GetVersionInformationNotFound) IsClientError() bool

IsClientError returns true when this get version information not found response has a 4xx status code

func (*GetVersionInformationNotFound) IsCode added in v1.19.1

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

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

func (*GetVersionInformationNotFound) IsRedirect added in v1.19.1

func (o *GetVersionInformationNotFound) IsRedirect() bool

IsRedirect returns true when this get version information not found response has a 3xx status code

func (*GetVersionInformationNotFound) IsServerError added in v1.19.1

func (o *GetVersionInformationNotFound) IsServerError() bool

IsServerError returns true when this get version information not found response has a 5xx status code

func (*GetVersionInformationNotFound) IsSuccess added in v1.19.1

func (o *GetVersionInformationNotFound) IsSuccess() bool

IsSuccess returns true when this get version information not found response has a 2xx status code

func (*GetVersionInformationNotFound) String added in v1.19.1

type GetVersionInformationOK

type GetVersionInformationOK struct {
	Payload *models.VersionControlInformationEntity
}

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

successful operation

func NewGetVersionInformationOK

func NewGetVersionInformationOK() *GetVersionInformationOK

NewGetVersionInformationOK creates a GetVersionInformationOK with default headers values

func (*GetVersionInformationOK) Error

func (o *GetVersionInformationOK) Error() string

func (*GetVersionInformationOK) GetPayload

func (*GetVersionInformationOK) IsClientError added in v1.19.1

func (o *GetVersionInformationOK) IsClientError() bool

IsClientError returns true when this get version information o k response has a 4xx status code

func (*GetVersionInformationOK) IsCode added in v1.19.1

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

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

func (*GetVersionInformationOK) IsRedirect added in v1.19.1

func (o *GetVersionInformationOK) IsRedirect() bool

IsRedirect returns true when this get version information o k response has a 3xx status code

func (*GetVersionInformationOK) IsServerError added in v1.19.1

func (o *GetVersionInformationOK) IsServerError() bool

IsServerError returns true when this get version information o k response has a 5xx status code

func (*GetVersionInformationOK) IsSuccess added in v1.19.1

func (o *GetVersionInformationOK) IsSuccess() bool

IsSuccess returns true when this get version information o k response has a 2xx status code

func (*GetVersionInformationOK) String added in v1.19.1

func (o *GetVersionInformationOK) String() string

type GetVersionInformationParams

type GetVersionInformationParams struct {

	/* ID.

	   The process group id.
	*/
	ID string

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

GetVersionInformationParams contains all the parameters to send to the API endpoint

for the get version information operation.

Typically these are written to a http.Request.

func NewGetVersionInformationParams

func NewGetVersionInformationParams() *GetVersionInformationParams

NewGetVersionInformationParams creates a new GetVersionInformationParams 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 NewGetVersionInformationParamsWithContext

func NewGetVersionInformationParamsWithContext(ctx context.Context) *GetVersionInformationParams

NewGetVersionInformationParamsWithContext creates a new GetVersionInformationParams object with the ability to set a context for a request.

func NewGetVersionInformationParamsWithHTTPClient

func NewGetVersionInformationParamsWithHTTPClient(client *http.Client) *GetVersionInformationParams

NewGetVersionInformationParamsWithHTTPClient creates a new GetVersionInformationParams object with the ability to set a custom HTTPClient for a request.

func NewGetVersionInformationParamsWithTimeout

func NewGetVersionInformationParamsWithTimeout(timeout time.Duration) *GetVersionInformationParams

NewGetVersionInformationParamsWithTimeout creates a new GetVersionInformationParams object with the ability to set a timeout on a request.

func (*GetVersionInformationParams) SetContext

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

SetContext adds the context to the get version information params

func (*GetVersionInformationParams) SetDefaults

func (o *GetVersionInformationParams) SetDefaults()

SetDefaults hydrates default values in the get version information params (not the query body).

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

func (*GetVersionInformationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get version information params

func (*GetVersionInformationParams) SetID

func (o *GetVersionInformationParams) SetID(id string)

SetID adds the id to the get version information params

func (*GetVersionInformationParams) SetTimeout

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

SetTimeout adds the timeout to the get version information params

func (*GetVersionInformationParams) WithContext

WithContext adds the context to the get version information params

func (*GetVersionInformationParams) WithDefaults

WithDefaults hydrates default values in the get version information params (not the query body).

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

func (*GetVersionInformationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get version information params

func (*GetVersionInformationParams) WithID

WithID adds the id to the get version information params

func (*GetVersionInformationParams) WithTimeout

WithTimeout adds the timeout to the get version information params

func (*GetVersionInformationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetVersionInformationReader

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

GetVersionInformationReader is a Reader for the GetVersionInformation structure.

func (*GetVersionInformationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetVersionInformationUnauthorized

type GetVersionInformationUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetVersionInformationUnauthorized

func NewGetVersionInformationUnauthorized() *GetVersionInformationUnauthorized

NewGetVersionInformationUnauthorized creates a GetVersionInformationUnauthorized with default headers values

func (*GetVersionInformationUnauthorized) Error

func (*GetVersionInformationUnauthorized) IsClientError added in v1.19.1

func (o *GetVersionInformationUnauthorized) IsClientError() bool

IsClientError returns true when this get version information unauthorized response has a 4xx status code

func (*GetVersionInformationUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this get version information unauthorized response a status code equal to that given

func (*GetVersionInformationUnauthorized) IsRedirect added in v1.19.1

func (o *GetVersionInformationUnauthorized) IsRedirect() bool

IsRedirect returns true when this get version information unauthorized response has a 3xx status code

func (*GetVersionInformationUnauthorized) IsServerError added in v1.19.1

func (o *GetVersionInformationUnauthorized) IsServerError() bool

IsServerError returns true when this get version information unauthorized response has a 5xx status code

func (*GetVersionInformationUnauthorized) IsSuccess added in v1.19.1

func (o *GetVersionInformationUnauthorized) IsSuccess() bool

IsSuccess returns true when this get version information unauthorized response has a 2xx status code

func (*GetVersionInformationUnauthorized) String added in v1.19.1

type InitiateRevertFlowVersionBadRequest

type InitiateRevertFlowVersionBadRequest struct {
}

InitiateRevertFlowVersionBadRequest 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 NewInitiateRevertFlowVersionBadRequest

func NewInitiateRevertFlowVersionBadRequest() *InitiateRevertFlowVersionBadRequest

NewInitiateRevertFlowVersionBadRequest creates a InitiateRevertFlowVersionBadRequest with default headers values

func (*InitiateRevertFlowVersionBadRequest) Error

func (*InitiateRevertFlowVersionBadRequest) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionBadRequest) IsClientError() bool

IsClientError returns true when this initiate revert flow version bad request response has a 4xx status code

func (*InitiateRevertFlowVersionBadRequest) IsCode added in v1.19.1

IsCode returns true when this initiate revert flow version bad request response a status code equal to that given

func (*InitiateRevertFlowVersionBadRequest) IsRedirect added in v1.19.1

func (o *InitiateRevertFlowVersionBadRequest) IsRedirect() bool

IsRedirect returns true when this initiate revert flow version bad request response has a 3xx status code

func (*InitiateRevertFlowVersionBadRequest) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionBadRequest) IsServerError() bool

IsServerError returns true when this initiate revert flow version bad request response has a 5xx status code

func (*InitiateRevertFlowVersionBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate revert flow version bad request response has a 2xx status code

func (*InitiateRevertFlowVersionBadRequest) String added in v1.19.1

type InitiateRevertFlowVersionConflict

type InitiateRevertFlowVersionConflict struct {
}

InitiateRevertFlowVersionConflict 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 NewInitiateRevertFlowVersionConflict

func NewInitiateRevertFlowVersionConflict() *InitiateRevertFlowVersionConflict

NewInitiateRevertFlowVersionConflict creates a InitiateRevertFlowVersionConflict with default headers values

func (*InitiateRevertFlowVersionConflict) Error

func (*InitiateRevertFlowVersionConflict) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionConflict) IsClientError() bool

IsClientError returns true when this initiate revert flow version conflict response has a 4xx status code

func (*InitiateRevertFlowVersionConflict) IsCode added in v1.19.1

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

IsCode returns true when this initiate revert flow version conflict response a status code equal to that given

func (*InitiateRevertFlowVersionConflict) IsRedirect added in v1.19.1

func (o *InitiateRevertFlowVersionConflict) IsRedirect() bool

IsRedirect returns true when this initiate revert flow version conflict response has a 3xx status code

func (*InitiateRevertFlowVersionConflict) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionConflict) IsServerError() bool

IsServerError returns true when this initiate revert flow version conflict response has a 5xx status code

func (*InitiateRevertFlowVersionConflict) IsSuccess added in v1.19.1

func (o *InitiateRevertFlowVersionConflict) IsSuccess() bool

IsSuccess returns true when this initiate revert flow version conflict response has a 2xx status code

func (*InitiateRevertFlowVersionConflict) String added in v1.19.1

type InitiateRevertFlowVersionForbidden

type InitiateRevertFlowVersionForbidden struct {
}

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

Client is not authorized to make this request.

func NewInitiateRevertFlowVersionForbidden

func NewInitiateRevertFlowVersionForbidden() *InitiateRevertFlowVersionForbidden

NewInitiateRevertFlowVersionForbidden creates a InitiateRevertFlowVersionForbidden with default headers values

func (*InitiateRevertFlowVersionForbidden) Error

func (*InitiateRevertFlowVersionForbidden) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionForbidden) IsClientError() bool

IsClientError returns true when this initiate revert flow version forbidden response has a 4xx status code

func (*InitiateRevertFlowVersionForbidden) IsCode added in v1.19.1

IsCode returns true when this initiate revert flow version forbidden response a status code equal to that given

func (*InitiateRevertFlowVersionForbidden) IsRedirect added in v1.19.1

func (o *InitiateRevertFlowVersionForbidden) IsRedirect() bool

IsRedirect returns true when this initiate revert flow version forbidden response has a 3xx status code

func (*InitiateRevertFlowVersionForbidden) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionForbidden) IsServerError() bool

IsServerError returns true when this initiate revert flow version forbidden response has a 5xx status code

func (*InitiateRevertFlowVersionForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate revert flow version forbidden response has a 2xx status code

func (*InitiateRevertFlowVersionForbidden) String added in v1.19.1

type InitiateRevertFlowVersionNotFound

type InitiateRevertFlowVersionNotFound struct {
}

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

The specified resource could not be found.

func NewInitiateRevertFlowVersionNotFound

func NewInitiateRevertFlowVersionNotFound() *InitiateRevertFlowVersionNotFound

NewInitiateRevertFlowVersionNotFound creates a InitiateRevertFlowVersionNotFound with default headers values

func (*InitiateRevertFlowVersionNotFound) Error

func (*InitiateRevertFlowVersionNotFound) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionNotFound) IsClientError() bool

IsClientError returns true when this initiate revert flow version not found response has a 4xx status code

func (*InitiateRevertFlowVersionNotFound) IsCode added in v1.19.1

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

IsCode returns true when this initiate revert flow version not found response a status code equal to that given

func (*InitiateRevertFlowVersionNotFound) IsRedirect added in v1.19.1

func (o *InitiateRevertFlowVersionNotFound) IsRedirect() bool

IsRedirect returns true when this initiate revert flow version not found response has a 3xx status code

func (*InitiateRevertFlowVersionNotFound) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionNotFound) IsServerError() bool

IsServerError returns true when this initiate revert flow version not found response has a 5xx status code

func (*InitiateRevertFlowVersionNotFound) IsSuccess added in v1.19.1

func (o *InitiateRevertFlowVersionNotFound) IsSuccess() bool

IsSuccess returns true when this initiate revert flow version not found response has a 2xx status code

func (*InitiateRevertFlowVersionNotFound) String added in v1.19.1

type InitiateRevertFlowVersionOK

type InitiateRevertFlowVersionOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewInitiateRevertFlowVersionOK

func NewInitiateRevertFlowVersionOK() *InitiateRevertFlowVersionOK

NewInitiateRevertFlowVersionOK creates a InitiateRevertFlowVersionOK with default headers values

func (*InitiateRevertFlowVersionOK) Error

func (*InitiateRevertFlowVersionOK) GetPayload

func (*InitiateRevertFlowVersionOK) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionOK) IsClientError() bool

IsClientError returns true when this initiate revert flow version o k response has a 4xx status code

func (*InitiateRevertFlowVersionOK) IsCode added in v1.19.1

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

IsCode returns true when this initiate revert flow version o k response a status code equal to that given

func (*InitiateRevertFlowVersionOK) IsRedirect added in v1.19.1

func (o *InitiateRevertFlowVersionOK) IsRedirect() bool

IsRedirect returns true when this initiate revert flow version o k response has a 3xx status code

func (*InitiateRevertFlowVersionOK) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionOK) IsServerError() bool

IsServerError returns true when this initiate revert flow version o k response has a 5xx status code

func (*InitiateRevertFlowVersionOK) IsSuccess added in v1.19.1

func (o *InitiateRevertFlowVersionOK) IsSuccess() bool

IsSuccess returns true when this initiate revert flow version o k response has a 2xx status code

func (*InitiateRevertFlowVersionOK) String added in v1.19.1

func (o *InitiateRevertFlowVersionOK) String() string

type InitiateRevertFlowVersionParams

type InitiateRevertFlowVersionParams struct {

	/* Body.

	   The Version Control Information to revert to.
	*/
	Body *models.VersionControlInformationEntity

	/* ID.

	   The process group id.
	*/
	ID string

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

InitiateRevertFlowVersionParams contains all the parameters to send to the API endpoint

for the initiate revert flow version operation.

Typically these are written to a http.Request.

func NewInitiateRevertFlowVersionParams

func NewInitiateRevertFlowVersionParams() *InitiateRevertFlowVersionParams

NewInitiateRevertFlowVersionParams creates a new InitiateRevertFlowVersionParams 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 NewInitiateRevertFlowVersionParamsWithContext

func NewInitiateRevertFlowVersionParamsWithContext(ctx context.Context) *InitiateRevertFlowVersionParams

NewInitiateRevertFlowVersionParamsWithContext creates a new InitiateRevertFlowVersionParams object with the ability to set a context for a request.

func NewInitiateRevertFlowVersionParamsWithHTTPClient

func NewInitiateRevertFlowVersionParamsWithHTTPClient(client *http.Client) *InitiateRevertFlowVersionParams

NewInitiateRevertFlowVersionParamsWithHTTPClient creates a new InitiateRevertFlowVersionParams object with the ability to set a custom HTTPClient for a request.

func NewInitiateRevertFlowVersionParamsWithTimeout

func NewInitiateRevertFlowVersionParamsWithTimeout(timeout time.Duration) *InitiateRevertFlowVersionParams

NewInitiateRevertFlowVersionParamsWithTimeout creates a new InitiateRevertFlowVersionParams object with the ability to set a timeout on a request.

func (*InitiateRevertFlowVersionParams) SetBody

SetBody adds the body to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) SetContext

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

SetContext adds the context to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) SetDefaults

func (o *InitiateRevertFlowVersionParams) SetDefaults()

SetDefaults hydrates default values in the initiate revert flow version params (not the query body).

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

func (*InitiateRevertFlowVersionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) SetID

SetID adds the id to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) SetTimeout

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

SetTimeout adds the timeout to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WithBody

WithBody adds the body to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WithContext

WithContext adds the context to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WithDefaults

WithDefaults hydrates default values in the initiate revert flow version params (not the query body).

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

func (*InitiateRevertFlowVersionParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WithID

WithID adds the id to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WithTimeout

WithTimeout adds the timeout to the initiate revert flow version params

func (*InitiateRevertFlowVersionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type InitiateRevertFlowVersionReader

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

InitiateRevertFlowVersionReader is a Reader for the InitiateRevertFlowVersion structure.

func (*InitiateRevertFlowVersionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InitiateRevertFlowVersionUnauthorized

type InitiateRevertFlowVersionUnauthorized struct {
}

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

Client could not be authenticated.

func NewInitiateRevertFlowVersionUnauthorized

func NewInitiateRevertFlowVersionUnauthorized() *InitiateRevertFlowVersionUnauthorized

NewInitiateRevertFlowVersionUnauthorized creates a InitiateRevertFlowVersionUnauthorized with default headers values

func (*InitiateRevertFlowVersionUnauthorized) Error

func (*InitiateRevertFlowVersionUnauthorized) IsClientError added in v1.19.1

func (o *InitiateRevertFlowVersionUnauthorized) IsClientError() bool

IsClientError returns true when this initiate revert flow version unauthorized response has a 4xx status code

func (*InitiateRevertFlowVersionUnauthorized) IsCode added in v1.19.1

IsCode returns true when this initiate revert flow version unauthorized response a status code equal to that given

func (*InitiateRevertFlowVersionUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate revert flow version unauthorized response has a 3xx status code

func (*InitiateRevertFlowVersionUnauthorized) IsServerError added in v1.19.1

func (o *InitiateRevertFlowVersionUnauthorized) IsServerError() bool

IsServerError returns true when this initiate revert flow version unauthorized response has a 5xx status code

func (*InitiateRevertFlowVersionUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate revert flow version unauthorized response has a 2xx status code

func (*InitiateRevertFlowVersionUnauthorized) String added in v1.19.1

type InitiateVersionControlUpdateBadRequest

type InitiateVersionControlUpdateBadRequest struct {
}

InitiateVersionControlUpdateBadRequest 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 NewInitiateVersionControlUpdateBadRequest

func NewInitiateVersionControlUpdateBadRequest() *InitiateVersionControlUpdateBadRequest

NewInitiateVersionControlUpdateBadRequest creates a InitiateVersionControlUpdateBadRequest with default headers values

func (*InitiateVersionControlUpdateBadRequest) Error

func (*InitiateVersionControlUpdateBadRequest) IsClientError added in v1.19.1

func (o *InitiateVersionControlUpdateBadRequest) IsClientError() bool

IsClientError returns true when this initiate version control update bad request response has a 4xx status code

func (*InitiateVersionControlUpdateBadRequest) IsCode added in v1.19.1

IsCode returns true when this initiate version control update bad request response a status code equal to that given

func (*InitiateVersionControlUpdateBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate version control update bad request response has a 3xx status code

func (*InitiateVersionControlUpdateBadRequest) IsServerError added in v1.19.1

func (o *InitiateVersionControlUpdateBadRequest) IsServerError() bool

IsServerError returns true when this initiate version control update bad request response has a 5xx status code

func (*InitiateVersionControlUpdateBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate version control update bad request response has a 2xx status code

func (*InitiateVersionControlUpdateBadRequest) String added in v1.19.1

type InitiateVersionControlUpdateConflict

type InitiateVersionControlUpdateConflict struct {
}

InitiateVersionControlUpdateConflict 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 NewInitiateVersionControlUpdateConflict

func NewInitiateVersionControlUpdateConflict() *InitiateVersionControlUpdateConflict

NewInitiateVersionControlUpdateConflict creates a InitiateVersionControlUpdateConflict with default headers values

func (*InitiateVersionControlUpdateConflict) Error

func (*InitiateVersionControlUpdateConflict) IsClientError added in v1.19.1

func (o *InitiateVersionControlUpdateConflict) IsClientError() bool

IsClientError returns true when this initiate version control update conflict response has a 4xx status code

func (*InitiateVersionControlUpdateConflict) IsCode added in v1.19.1

IsCode returns true when this initiate version control update conflict response a status code equal to that given

func (*InitiateVersionControlUpdateConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate version control update conflict response has a 3xx status code

func (*InitiateVersionControlUpdateConflict) IsServerError added in v1.19.1

func (o *InitiateVersionControlUpdateConflict) IsServerError() bool

IsServerError returns true when this initiate version control update conflict response has a 5xx status code

func (*InitiateVersionControlUpdateConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate version control update conflict response has a 2xx status code

func (*InitiateVersionControlUpdateConflict) String added in v1.19.1

type InitiateVersionControlUpdateForbidden

type InitiateVersionControlUpdateForbidden struct {
}

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

Client is not authorized to make this request.

func NewInitiateVersionControlUpdateForbidden

func NewInitiateVersionControlUpdateForbidden() *InitiateVersionControlUpdateForbidden

NewInitiateVersionControlUpdateForbidden creates a InitiateVersionControlUpdateForbidden with default headers values

func (*InitiateVersionControlUpdateForbidden) Error

func (*InitiateVersionControlUpdateForbidden) IsClientError added in v1.19.1

func (o *InitiateVersionControlUpdateForbidden) IsClientError() bool

IsClientError returns true when this initiate version control update forbidden response has a 4xx status code

func (*InitiateVersionControlUpdateForbidden) IsCode added in v1.19.1

IsCode returns true when this initiate version control update forbidden response a status code equal to that given

func (*InitiateVersionControlUpdateForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate version control update forbidden response has a 3xx status code

func (*InitiateVersionControlUpdateForbidden) IsServerError added in v1.19.1

func (o *InitiateVersionControlUpdateForbidden) IsServerError() bool

IsServerError returns true when this initiate version control update forbidden response has a 5xx status code

func (*InitiateVersionControlUpdateForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate version control update forbidden response has a 2xx status code

func (*InitiateVersionControlUpdateForbidden) String added in v1.19.1

type InitiateVersionControlUpdateNotFound

type InitiateVersionControlUpdateNotFound struct {
}

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

The specified resource could not be found.

func NewInitiateVersionControlUpdateNotFound

func NewInitiateVersionControlUpdateNotFound() *InitiateVersionControlUpdateNotFound

NewInitiateVersionControlUpdateNotFound creates a InitiateVersionControlUpdateNotFound with default headers values

func (*InitiateVersionControlUpdateNotFound) Error

func (*InitiateVersionControlUpdateNotFound) IsClientError added in v1.19.1

func (o *InitiateVersionControlUpdateNotFound) IsClientError() bool

IsClientError returns true when this initiate version control update not found response has a 4xx status code

func (*InitiateVersionControlUpdateNotFound) IsCode added in v1.19.1

IsCode returns true when this initiate version control update not found response a status code equal to that given

func (*InitiateVersionControlUpdateNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate version control update not found response has a 3xx status code

func (*InitiateVersionControlUpdateNotFound) IsServerError added in v1.19.1

func (o *InitiateVersionControlUpdateNotFound) IsServerError() bool

IsServerError returns true when this initiate version control update not found response has a 5xx status code

func (*InitiateVersionControlUpdateNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate version control update not found response has a 2xx status code

func (*InitiateVersionControlUpdateNotFound) String added in v1.19.1

type InitiateVersionControlUpdateOK

type InitiateVersionControlUpdateOK struct {
	Payload *models.VersionedFlowUpdateRequestEntity
}

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

successful operation

func NewInitiateVersionControlUpdateOK

func NewInitiateVersionControlUpdateOK() *InitiateVersionControlUpdateOK

NewInitiateVersionControlUpdateOK creates a InitiateVersionControlUpdateOK with default headers values

func (*InitiateVersionControlUpdateOK) Error

func (*InitiateVersionControlUpdateOK) GetPayload

func (*InitiateVersionControlUpdateOK) IsClientError added in v1.19.1

func (o *InitiateVersionControlUpdateOK) IsClientError() bool

IsClientError returns true when this initiate version control update o k response has a 4xx status code

func (*InitiateVersionControlUpdateOK) IsCode added in v1.19.1

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

IsCode returns true when this initiate version control update o k response a status code equal to that given

func (*InitiateVersionControlUpdateOK) IsRedirect added in v1.19.1

func (o *InitiateVersionControlUpdateOK) IsRedirect() bool

IsRedirect returns true when this initiate version control update o k response has a 3xx status code

func (*InitiateVersionControlUpdateOK) IsServerError added in v1.19.1

func (o *InitiateVersionControlUpdateOK) IsServerError() bool

IsServerError returns true when this initiate version control update o k response has a 5xx status code

func (*InitiateVersionControlUpdateOK) IsSuccess added in v1.19.1

func (o *InitiateVersionControlUpdateOK) IsSuccess() bool

IsSuccess returns true when this initiate version control update o k response has a 2xx status code

func (*InitiateVersionControlUpdateOK) String added in v1.19.1

type InitiateVersionControlUpdateParams

type InitiateVersionControlUpdateParams struct {

	/* Body.

	   The controller service configuration details.
	*/
	Body *models.VersionControlInformationEntity

	/* ID.

	   The process group id.
	*/
	ID string

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

InitiateVersionControlUpdateParams contains all the parameters to send to the API endpoint

for the initiate version control update operation.

Typically these are written to a http.Request.

func NewInitiateVersionControlUpdateParams

func NewInitiateVersionControlUpdateParams() *InitiateVersionControlUpdateParams

NewInitiateVersionControlUpdateParams creates a new InitiateVersionControlUpdateParams 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 NewInitiateVersionControlUpdateParamsWithContext

func NewInitiateVersionControlUpdateParamsWithContext(ctx context.Context) *InitiateVersionControlUpdateParams

NewInitiateVersionControlUpdateParamsWithContext creates a new InitiateVersionControlUpdateParams object with the ability to set a context for a request.

func NewInitiateVersionControlUpdateParamsWithHTTPClient

func NewInitiateVersionControlUpdateParamsWithHTTPClient(client *http.Client) *InitiateVersionControlUpdateParams

NewInitiateVersionControlUpdateParamsWithHTTPClient creates a new InitiateVersionControlUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewInitiateVersionControlUpdateParamsWithTimeout

func NewInitiateVersionControlUpdateParamsWithTimeout(timeout time.Duration) *InitiateVersionControlUpdateParams

NewInitiateVersionControlUpdateParamsWithTimeout creates a new InitiateVersionControlUpdateParams object with the ability to set a timeout on a request.

func (*InitiateVersionControlUpdateParams) SetBody

SetBody adds the body to the initiate version control update params

func (*InitiateVersionControlUpdateParams) SetContext

SetContext adds the context to the initiate version control update params

func (*InitiateVersionControlUpdateParams) SetDefaults

func (o *InitiateVersionControlUpdateParams) SetDefaults()

SetDefaults hydrates default values in the initiate version control update params (not the query body).

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

func (*InitiateVersionControlUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the initiate version control update params

func (*InitiateVersionControlUpdateParams) SetID

SetID adds the id to the initiate version control update params

func (*InitiateVersionControlUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WithBody

WithBody adds the body to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WithContext

WithContext adds the context to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WithDefaults

WithDefaults hydrates default values in the initiate version control update params (not the query body).

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

func (*InitiateVersionControlUpdateParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WithID

WithID adds the id to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WithTimeout

WithTimeout adds the timeout to the initiate version control update params

func (*InitiateVersionControlUpdateParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type InitiateVersionControlUpdateReader

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

InitiateVersionControlUpdateReader is a Reader for the InitiateVersionControlUpdate structure.

func (*InitiateVersionControlUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InitiateVersionControlUpdateUnauthorized

type InitiateVersionControlUpdateUnauthorized struct {
}

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

Client could not be authenticated.

func NewInitiateVersionControlUpdateUnauthorized

func NewInitiateVersionControlUpdateUnauthorized() *InitiateVersionControlUpdateUnauthorized

NewInitiateVersionControlUpdateUnauthorized creates a InitiateVersionControlUpdateUnauthorized with default headers values

func (*InitiateVersionControlUpdateUnauthorized) Error

func (*InitiateVersionControlUpdateUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this initiate version control update unauthorized response has a 4xx status code

func (*InitiateVersionControlUpdateUnauthorized) IsCode added in v1.19.1

IsCode returns true when this initiate version control update unauthorized response a status code equal to that given

func (*InitiateVersionControlUpdateUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this initiate version control update unauthorized response has a 3xx status code

func (*InitiateVersionControlUpdateUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this initiate version control update unauthorized response has a 5xx status code

func (*InitiateVersionControlUpdateUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this initiate version control update unauthorized response has a 2xx status code

func (*InitiateVersionControlUpdateUnauthorized) String added in v1.19.1

type SaveToFlowRegistryBadRequest

type SaveToFlowRegistryBadRequest struct {
}

SaveToFlowRegistryBadRequest 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 NewSaveToFlowRegistryBadRequest

func NewSaveToFlowRegistryBadRequest() *SaveToFlowRegistryBadRequest

NewSaveToFlowRegistryBadRequest creates a SaveToFlowRegistryBadRequest with default headers values

func (*SaveToFlowRegistryBadRequest) Error

func (*SaveToFlowRegistryBadRequest) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryBadRequest) IsClientError() bool

IsClientError returns true when this save to flow registry bad request response has a 4xx status code

func (*SaveToFlowRegistryBadRequest) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry bad request response a status code equal to that given

func (*SaveToFlowRegistryBadRequest) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryBadRequest) IsRedirect() bool

IsRedirect returns true when this save to flow registry bad request response has a 3xx status code

func (*SaveToFlowRegistryBadRequest) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryBadRequest) IsServerError() bool

IsServerError returns true when this save to flow registry bad request response has a 5xx status code

func (*SaveToFlowRegistryBadRequest) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryBadRequest) IsSuccess() bool

IsSuccess returns true when this save to flow registry bad request response has a 2xx status code

func (*SaveToFlowRegistryBadRequest) String added in v1.19.1

type SaveToFlowRegistryConflict

type SaveToFlowRegistryConflict struct {
}

SaveToFlowRegistryConflict 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 NewSaveToFlowRegistryConflict

func NewSaveToFlowRegistryConflict() *SaveToFlowRegistryConflict

NewSaveToFlowRegistryConflict creates a SaveToFlowRegistryConflict with default headers values

func (*SaveToFlowRegistryConflict) Error

func (*SaveToFlowRegistryConflict) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryConflict) IsClientError() bool

IsClientError returns true when this save to flow registry conflict response has a 4xx status code

func (*SaveToFlowRegistryConflict) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry conflict response a status code equal to that given

func (*SaveToFlowRegistryConflict) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryConflict) IsRedirect() bool

IsRedirect returns true when this save to flow registry conflict response has a 3xx status code

func (*SaveToFlowRegistryConflict) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryConflict) IsServerError() bool

IsServerError returns true when this save to flow registry conflict response has a 5xx status code

func (*SaveToFlowRegistryConflict) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryConflict) IsSuccess() bool

IsSuccess returns true when this save to flow registry conflict response has a 2xx status code

func (*SaveToFlowRegistryConflict) String added in v1.19.1

func (o *SaveToFlowRegistryConflict) String() string

type SaveToFlowRegistryForbidden

type SaveToFlowRegistryForbidden struct {
}

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

Client is not authorized to make this request.

func NewSaveToFlowRegistryForbidden

func NewSaveToFlowRegistryForbidden() *SaveToFlowRegistryForbidden

NewSaveToFlowRegistryForbidden creates a SaveToFlowRegistryForbidden with default headers values

func (*SaveToFlowRegistryForbidden) Error

func (*SaveToFlowRegistryForbidden) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryForbidden) IsClientError() bool

IsClientError returns true when this save to flow registry forbidden response has a 4xx status code

func (*SaveToFlowRegistryForbidden) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry forbidden response a status code equal to that given

func (*SaveToFlowRegistryForbidden) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryForbidden) IsRedirect() bool

IsRedirect returns true when this save to flow registry forbidden response has a 3xx status code

func (*SaveToFlowRegistryForbidden) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryForbidden) IsServerError() bool

IsServerError returns true when this save to flow registry forbidden response has a 5xx status code

func (*SaveToFlowRegistryForbidden) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryForbidden) IsSuccess() bool

IsSuccess returns true when this save to flow registry forbidden response has a 2xx status code

func (*SaveToFlowRegistryForbidden) String added in v1.19.1

func (o *SaveToFlowRegistryForbidden) String() string

type SaveToFlowRegistryNotFound

type SaveToFlowRegistryNotFound struct {
}

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

The specified resource could not be found.

func NewSaveToFlowRegistryNotFound

func NewSaveToFlowRegistryNotFound() *SaveToFlowRegistryNotFound

NewSaveToFlowRegistryNotFound creates a SaveToFlowRegistryNotFound with default headers values

func (*SaveToFlowRegistryNotFound) Error

func (*SaveToFlowRegistryNotFound) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryNotFound) IsClientError() bool

IsClientError returns true when this save to flow registry not found response has a 4xx status code

func (*SaveToFlowRegistryNotFound) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry not found response a status code equal to that given

func (*SaveToFlowRegistryNotFound) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryNotFound) IsRedirect() bool

IsRedirect returns true when this save to flow registry not found response has a 3xx status code

func (*SaveToFlowRegistryNotFound) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryNotFound) IsServerError() bool

IsServerError returns true when this save to flow registry not found response has a 5xx status code

func (*SaveToFlowRegistryNotFound) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryNotFound) IsSuccess() bool

IsSuccess returns true when this save to flow registry not found response has a 2xx status code

func (*SaveToFlowRegistryNotFound) String added in v1.19.1

func (o *SaveToFlowRegistryNotFound) String() string

type SaveToFlowRegistryOK

type SaveToFlowRegistryOK struct {
	Payload *models.VersionControlInformationEntity
}

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

successful operation

func NewSaveToFlowRegistryOK

func NewSaveToFlowRegistryOK() *SaveToFlowRegistryOK

NewSaveToFlowRegistryOK creates a SaveToFlowRegistryOK with default headers values

func (*SaveToFlowRegistryOK) Error

func (o *SaveToFlowRegistryOK) Error() string

func (*SaveToFlowRegistryOK) GetPayload

func (*SaveToFlowRegistryOK) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryOK) IsClientError() bool

IsClientError returns true when this save to flow registry o k response has a 4xx status code

func (*SaveToFlowRegistryOK) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry o k response a status code equal to that given

func (*SaveToFlowRegistryOK) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryOK) IsRedirect() bool

IsRedirect returns true when this save to flow registry o k response has a 3xx status code

func (*SaveToFlowRegistryOK) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryOK) IsServerError() bool

IsServerError returns true when this save to flow registry o k response has a 5xx status code

func (*SaveToFlowRegistryOK) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryOK) IsSuccess() bool

IsSuccess returns true when this save to flow registry o k response has a 2xx status code

func (*SaveToFlowRegistryOK) String added in v1.19.1

func (o *SaveToFlowRegistryOK) String() string

type SaveToFlowRegistryParams

type SaveToFlowRegistryParams struct {

	/* Body.

	   The versioned flow details.
	*/
	Body *models.StartVersionControlRequestEntity

	/* ID.

	   The process group id.
	*/
	ID string

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

SaveToFlowRegistryParams contains all the parameters to send to the API endpoint

for the save to flow registry operation.

Typically these are written to a http.Request.

func NewSaveToFlowRegistryParams

func NewSaveToFlowRegistryParams() *SaveToFlowRegistryParams

NewSaveToFlowRegistryParams creates a new SaveToFlowRegistryParams 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 NewSaveToFlowRegistryParamsWithContext

func NewSaveToFlowRegistryParamsWithContext(ctx context.Context) *SaveToFlowRegistryParams

NewSaveToFlowRegistryParamsWithContext creates a new SaveToFlowRegistryParams object with the ability to set a context for a request.

func NewSaveToFlowRegistryParamsWithHTTPClient

func NewSaveToFlowRegistryParamsWithHTTPClient(client *http.Client) *SaveToFlowRegistryParams

NewSaveToFlowRegistryParamsWithHTTPClient creates a new SaveToFlowRegistryParams object with the ability to set a custom HTTPClient for a request.

func NewSaveToFlowRegistryParamsWithTimeout

func NewSaveToFlowRegistryParamsWithTimeout(timeout time.Duration) *SaveToFlowRegistryParams

NewSaveToFlowRegistryParamsWithTimeout creates a new SaveToFlowRegistryParams object with the ability to set a timeout on a request.

func (*SaveToFlowRegistryParams) SetBody

SetBody adds the body to the save to flow registry params

func (*SaveToFlowRegistryParams) SetContext

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

SetContext adds the context to the save to flow registry params

func (*SaveToFlowRegistryParams) SetDefaults

func (o *SaveToFlowRegistryParams) SetDefaults()

SetDefaults hydrates default values in the save to flow registry params (not the query body).

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

func (*SaveToFlowRegistryParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the save to flow registry params

func (*SaveToFlowRegistryParams) SetID

func (o *SaveToFlowRegistryParams) SetID(id string)

SetID adds the id to the save to flow registry params

func (*SaveToFlowRegistryParams) SetTimeout

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

SetTimeout adds the timeout to the save to flow registry params

func (*SaveToFlowRegistryParams) WithBody

WithBody adds the body to the save to flow registry params

func (*SaveToFlowRegistryParams) WithContext

WithContext adds the context to the save to flow registry params

func (*SaveToFlowRegistryParams) WithDefaults

WithDefaults hydrates default values in the save to flow registry params (not the query body).

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

func (*SaveToFlowRegistryParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the save to flow registry params

func (*SaveToFlowRegistryParams) WithID

WithID adds the id to the save to flow registry params

func (*SaveToFlowRegistryParams) WithTimeout

WithTimeout adds the timeout to the save to flow registry params

func (*SaveToFlowRegistryParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type SaveToFlowRegistryReader

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

SaveToFlowRegistryReader is a Reader for the SaveToFlowRegistry structure.

func (*SaveToFlowRegistryReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type SaveToFlowRegistryUnauthorized

type SaveToFlowRegistryUnauthorized struct {
}

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

Client could not be authenticated.

func NewSaveToFlowRegistryUnauthorized

func NewSaveToFlowRegistryUnauthorized() *SaveToFlowRegistryUnauthorized

NewSaveToFlowRegistryUnauthorized creates a SaveToFlowRegistryUnauthorized with default headers values

func (*SaveToFlowRegistryUnauthorized) Error

func (*SaveToFlowRegistryUnauthorized) IsClientError added in v1.19.1

func (o *SaveToFlowRegistryUnauthorized) IsClientError() bool

IsClientError returns true when this save to flow registry unauthorized response has a 4xx status code

func (*SaveToFlowRegistryUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this save to flow registry unauthorized response a status code equal to that given

func (*SaveToFlowRegistryUnauthorized) IsRedirect added in v1.19.1

func (o *SaveToFlowRegistryUnauthorized) IsRedirect() bool

IsRedirect returns true when this save to flow registry unauthorized response has a 3xx status code

func (*SaveToFlowRegistryUnauthorized) IsServerError added in v1.19.1

func (o *SaveToFlowRegistryUnauthorized) IsServerError() bool

IsServerError returns true when this save to flow registry unauthorized response has a 5xx status code

func (*SaveToFlowRegistryUnauthorized) IsSuccess added in v1.19.1

func (o *SaveToFlowRegistryUnauthorized) IsSuccess() bool

IsSuccess returns true when this save to flow registry unauthorized response has a 2xx status code

func (*SaveToFlowRegistryUnauthorized) String added in v1.19.1

type StopVersionControlBadRequest

type StopVersionControlBadRequest struct {
}

StopVersionControlBadRequest 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 NewStopVersionControlBadRequest

func NewStopVersionControlBadRequest() *StopVersionControlBadRequest

NewStopVersionControlBadRequest creates a StopVersionControlBadRequest with default headers values

func (*StopVersionControlBadRequest) Error

func (*StopVersionControlBadRequest) IsClientError added in v1.19.1

func (o *StopVersionControlBadRequest) IsClientError() bool

IsClientError returns true when this stop version control bad request response has a 4xx status code

func (*StopVersionControlBadRequest) IsCode added in v1.19.1

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

IsCode returns true when this stop version control bad request response a status code equal to that given

func (*StopVersionControlBadRequest) IsRedirect added in v1.19.1

func (o *StopVersionControlBadRequest) IsRedirect() bool

IsRedirect returns true when this stop version control bad request response has a 3xx status code

func (*StopVersionControlBadRequest) IsServerError added in v1.19.1

func (o *StopVersionControlBadRequest) IsServerError() bool

IsServerError returns true when this stop version control bad request response has a 5xx status code

func (*StopVersionControlBadRequest) IsSuccess added in v1.19.1

func (o *StopVersionControlBadRequest) IsSuccess() bool

IsSuccess returns true when this stop version control bad request response has a 2xx status code

func (*StopVersionControlBadRequest) String added in v1.19.1

type StopVersionControlConflict

type StopVersionControlConflict struct {
}

StopVersionControlConflict 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 NewStopVersionControlConflict

func NewStopVersionControlConflict() *StopVersionControlConflict

NewStopVersionControlConflict creates a StopVersionControlConflict with default headers values

func (*StopVersionControlConflict) Error

func (*StopVersionControlConflict) IsClientError added in v1.19.1

func (o *StopVersionControlConflict) IsClientError() bool

IsClientError returns true when this stop version control conflict response has a 4xx status code

func (*StopVersionControlConflict) IsCode added in v1.19.1

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

IsCode returns true when this stop version control conflict response a status code equal to that given

func (*StopVersionControlConflict) IsRedirect added in v1.19.1

func (o *StopVersionControlConflict) IsRedirect() bool

IsRedirect returns true when this stop version control conflict response has a 3xx status code

func (*StopVersionControlConflict) IsServerError added in v1.19.1

func (o *StopVersionControlConflict) IsServerError() bool

IsServerError returns true when this stop version control conflict response has a 5xx status code

func (*StopVersionControlConflict) IsSuccess added in v1.19.1

func (o *StopVersionControlConflict) IsSuccess() bool

IsSuccess returns true when this stop version control conflict response has a 2xx status code

func (*StopVersionControlConflict) String added in v1.19.1

func (o *StopVersionControlConflict) String() string

type StopVersionControlForbidden

type StopVersionControlForbidden struct {
}

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

Client is not authorized to make this request.

func NewStopVersionControlForbidden

func NewStopVersionControlForbidden() *StopVersionControlForbidden

NewStopVersionControlForbidden creates a StopVersionControlForbidden with default headers values

func (*StopVersionControlForbidden) Error

func (*StopVersionControlForbidden) IsClientError added in v1.19.1

func (o *StopVersionControlForbidden) IsClientError() bool

IsClientError returns true when this stop version control forbidden response has a 4xx status code

func (*StopVersionControlForbidden) IsCode added in v1.19.1

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

IsCode returns true when this stop version control forbidden response a status code equal to that given

func (*StopVersionControlForbidden) IsRedirect added in v1.19.1

func (o *StopVersionControlForbidden) IsRedirect() bool

IsRedirect returns true when this stop version control forbidden response has a 3xx status code

func (*StopVersionControlForbidden) IsServerError added in v1.19.1

func (o *StopVersionControlForbidden) IsServerError() bool

IsServerError returns true when this stop version control forbidden response has a 5xx status code

func (*StopVersionControlForbidden) IsSuccess added in v1.19.1

func (o *StopVersionControlForbidden) IsSuccess() bool

IsSuccess returns true when this stop version control forbidden response has a 2xx status code

func (*StopVersionControlForbidden) String added in v1.19.1

func (o *StopVersionControlForbidden) String() string

type StopVersionControlNotFound

type StopVersionControlNotFound struct {
}

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

The specified resource could not be found.

func NewStopVersionControlNotFound

func NewStopVersionControlNotFound() *StopVersionControlNotFound

NewStopVersionControlNotFound creates a StopVersionControlNotFound with default headers values

func (*StopVersionControlNotFound) Error

func (*StopVersionControlNotFound) IsClientError added in v1.19.1

func (o *StopVersionControlNotFound) IsClientError() bool

IsClientError returns true when this stop version control not found response has a 4xx status code

func (*StopVersionControlNotFound) IsCode added in v1.19.1

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

IsCode returns true when this stop version control not found response a status code equal to that given

func (*StopVersionControlNotFound) IsRedirect added in v1.19.1

func (o *StopVersionControlNotFound) IsRedirect() bool

IsRedirect returns true when this stop version control not found response has a 3xx status code

func (*StopVersionControlNotFound) IsServerError added in v1.19.1

func (o *StopVersionControlNotFound) IsServerError() bool

IsServerError returns true when this stop version control not found response has a 5xx status code

func (*StopVersionControlNotFound) IsSuccess added in v1.19.1

func (o *StopVersionControlNotFound) IsSuccess() bool

IsSuccess returns true when this stop version control not found response has a 2xx status code

func (*StopVersionControlNotFound) String added in v1.19.1

func (o *StopVersionControlNotFound) String() string

type StopVersionControlOK

type StopVersionControlOK struct {
	Payload *models.VersionControlInformationEntity
}

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

successful operation

func NewStopVersionControlOK

func NewStopVersionControlOK() *StopVersionControlOK

NewStopVersionControlOK creates a StopVersionControlOK with default headers values

func (*StopVersionControlOK) Error

func (o *StopVersionControlOK) Error() string

func (*StopVersionControlOK) GetPayload

func (*StopVersionControlOK) IsClientError added in v1.19.1

func (o *StopVersionControlOK) IsClientError() bool

IsClientError returns true when this stop version control o k response has a 4xx status code

func (*StopVersionControlOK) IsCode added in v1.19.1

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

IsCode returns true when this stop version control o k response a status code equal to that given

func (*StopVersionControlOK) IsRedirect added in v1.19.1

func (o *StopVersionControlOK) IsRedirect() bool

IsRedirect returns true when this stop version control o k response has a 3xx status code

func (*StopVersionControlOK) IsServerError added in v1.19.1

func (o *StopVersionControlOK) IsServerError() bool

IsServerError returns true when this stop version control o k response has a 5xx status code

func (*StopVersionControlOK) IsSuccess added in v1.19.1

func (o *StopVersionControlOK) IsSuccess() bool

IsSuccess returns true when this stop version control o k response has a 2xx status code

func (*StopVersionControlOK) String added in v1.19.1

func (o *StopVersionControlOK) String() string

type StopVersionControlParams

type StopVersionControlParams 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 process group 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
}

StopVersionControlParams contains all the parameters to send to the API endpoint

for the stop version control operation.

Typically these are written to a http.Request.

func NewStopVersionControlParams

func NewStopVersionControlParams() *StopVersionControlParams

NewStopVersionControlParams creates a new StopVersionControlParams 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 NewStopVersionControlParamsWithContext

func NewStopVersionControlParamsWithContext(ctx context.Context) *StopVersionControlParams

NewStopVersionControlParamsWithContext creates a new StopVersionControlParams object with the ability to set a context for a request.

func NewStopVersionControlParamsWithHTTPClient

func NewStopVersionControlParamsWithHTTPClient(client *http.Client) *StopVersionControlParams

NewStopVersionControlParamsWithHTTPClient creates a new StopVersionControlParams object with the ability to set a custom HTTPClient for a request.

func NewStopVersionControlParamsWithTimeout

func NewStopVersionControlParamsWithTimeout(timeout time.Duration) *StopVersionControlParams

NewStopVersionControlParamsWithTimeout creates a new StopVersionControlParams object with the ability to set a timeout on a request.

func (*StopVersionControlParams) SetClientID

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

SetClientID adds the clientId to the stop version control params

func (*StopVersionControlParams) SetContext

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

SetContext adds the context to the stop version control params

func (*StopVersionControlParams) SetDefaults

func (o *StopVersionControlParams) SetDefaults()

SetDefaults hydrates default values in the stop version control params (not the query body).

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

func (*StopVersionControlParams) SetDisconnectedNodeAcknowledged

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

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the stop version control params

func (*StopVersionControlParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the stop version control params

func (*StopVersionControlParams) SetID

func (o *StopVersionControlParams) SetID(id string)

SetID adds the id to the stop version control params

func (*StopVersionControlParams) SetTimeout

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

SetTimeout adds the timeout to the stop version control params

func (*StopVersionControlParams) SetVersion

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

SetVersion adds the version to the stop version control params

func (*StopVersionControlParams) WithClientID

func (o *StopVersionControlParams) WithClientID(clientID *string) *StopVersionControlParams

WithClientID adds the clientID to the stop version control params

func (*StopVersionControlParams) WithContext

WithContext adds the context to the stop version control params

func (*StopVersionControlParams) WithDefaults

WithDefaults hydrates default values in the stop version control params (not the query body).

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

func (*StopVersionControlParams) WithDisconnectedNodeAcknowledged

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

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the stop version control params

func (*StopVersionControlParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the stop version control params

func (*StopVersionControlParams) WithID

WithID adds the id to the stop version control params

func (*StopVersionControlParams) WithTimeout

WithTimeout adds the timeout to the stop version control params

func (*StopVersionControlParams) WithVersion

func (o *StopVersionControlParams) WithVersion(version *string) *StopVersionControlParams

WithVersion adds the version to the stop version control params

func (*StopVersionControlParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type StopVersionControlReader

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

StopVersionControlReader is a Reader for the StopVersionControl structure.

func (*StopVersionControlReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type StopVersionControlUnauthorized

type StopVersionControlUnauthorized struct {
}

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

Client could not be authenticated.

func NewStopVersionControlUnauthorized

func NewStopVersionControlUnauthorized() *StopVersionControlUnauthorized

NewStopVersionControlUnauthorized creates a StopVersionControlUnauthorized with default headers values

func (*StopVersionControlUnauthorized) Error

func (*StopVersionControlUnauthorized) IsClientError added in v1.19.1

func (o *StopVersionControlUnauthorized) IsClientError() bool

IsClientError returns true when this stop version control unauthorized response has a 4xx status code

func (*StopVersionControlUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this stop version control unauthorized response a status code equal to that given

func (*StopVersionControlUnauthorized) IsRedirect added in v1.19.1

func (o *StopVersionControlUnauthorized) IsRedirect() bool

IsRedirect returns true when this stop version control unauthorized response has a 3xx status code

func (*StopVersionControlUnauthorized) IsServerError added in v1.19.1

func (o *StopVersionControlUnauthorized) IsServerError() bool

IsServerError returns true when this stop version control unauthorized response has a 5xx status code

func (*StopVersionControlUnauthorized) IsSuccess added in v1.19.1

func (o *StopVersionControlUnauthorized) IsSuccess() bool

IsSuccess returns true when this stop version control unauthorized response has a 2xx status code

func (*StopVersionControlUnauthorized) String added in v1.19.1

type UpdateFlowVersionBadRequest

type UpdateFlowVersionBadRequest struct {
}

UpdateFlowVersionBadRequest 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 NewUpdateFlowVersionBadRequest

func NewUpdateFlowVersionBadRequest() *UpdateFlowVersionBadRequest

NewUpdateFlowVersionBadRequest creates a UpdateFlowVersionBadRequest with default headers values

func (*UpdateFlowVersionBadRequest) Error

func (*UpdateFlowVersionBadRequest) IsClientError added in v1.19.1

func (o *UpdateFlowVersionBadRequest) IsClientError() bool

IsClientError returns true when this update flow version bad request response has a 4xx status code

func (*UpdateFlowVersionBadRequest) IsCode added in v1.19.1

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

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

func (*UpdateFlowVersionBadRequest) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionBadRequest) IsRedirect() bool

IsRedirect returns true when this update flow version bad request response has a 3xx status code

func (*UpdateFlowVersionBadRequest) IsServerError added in v1.19.1

func (o *UpdateFlowVersionBadRequest) IsServerError() bool

IsServerError returns true when this update flow version bad request response has a 5xx status code

func (*UpdateFlowVersionBadRequest) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionBadRequest) IsSuccess() bool

IsSuccess returns true when this update flow version bad request response has a 2xx status code

func (*UpdateFlowVersionBadRequest) String added in v1.19.1

func (o *UpdateFlowVersionBadRequest) String() string

type UpdateFlowVersionConflict

type UpdateFlowVersionConflict struct {
}

UpdateFlowVersionConflict 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 NewUpdateFlowVersionConflict

func NewUpdateFlowVersionConflict() *UpdateFlowVersionConflict

NewUpdateFlowVersionConflict creates a UpdateFlowVersionConflict with default headers values

func (*UpdateFlowVersionConflict) Error

func (o *UpdateFlowVersionConflict) Error() string

func (*UpdateFlowVersionConflict) IsClientError added in v1.19.1

func (o *UpdateFlowVersionConflict) IsClientError() bool

IsClientError returns true when this update flow version conflict response has a 4xx status code

func (*UpdateFlowVersionConflict) IsCode added in v1.19.1

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

IsCode returns true when this update flow version conflict response a status code equal to that given

func (*UpdateFlowVersionConflict) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionConflict) IsRedirect() bool

IsRedirect returns true when this update flow version conflict response has a 3xx status code

func (*UpdateFlowVersionConflict) IsServerError added in v1.19.1

func (o *UpdateFlowVersionConflict) IsServerError() bool

IsServerError returns true when this update flow version conflict response has a 5xx status code

func (*UpdateFlowVersionConflict) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionConflict) IsSuccess() bool

IsSuccess returns true when this update flow version conflict response has a 2xx status code

func (*UpdateFlowVersionConflict) String added in v1.19.1

func (o *UpdateFlowVersionConflict) String() string

type UpdateFlowVersionForbidden

type UpdateFlowVersionForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateFlowVersionForbidden

func NewUpdateFlowVersionForbidden() *UpdateFlowVersionForbidden

NewUpdateFlowVersionForbidden creates a UpdateFlowVersionForbidden with default headers values

func (*UpdateFlowVersionForbidden) Error

func (*UpdateFlowVersionForbidden) IsClientError added in v1.19.1

func (o *UpdateFlowVersionForbidden) IsClientError() bool

IsClientError returns true when this update flow version forbidden response has a 4xx status code

func (*UpdateFlowVersionForbidden) IsCode added in v1.19.1

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

IsCode returns true when this update flow version forbidden response a status code equal to that given

func (*UpdateFlowVersionForbidden) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionForbidden) IsRedirect() bool

IsRedirect returns true when this update flow version forbidden response has a 3xx status code

func (*UpdateFlowVersionForbidden) IsServerError added in v1.19.1

func (o *UpdateFlowVersionForbidden) IsServerError() bool

IsServerError returns true when this update flow version forbidden response has a 5xx status code

func (*UpdateFlowVersionForbidden) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionForbidden) IsSuccess() bool

IsSuccess returns true when this update flow version forbidden response has a 2xx status code

func (*UpdateFlowVersionForbidden) String added in v1.19.1

func (o *UpdateFlowVersionForbidden) String() string

type UpdateFlowVersionNotFound

type UpdateFlowVersionNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateFlowVersionNotFound

func NewUpdateFlowVersionNotFound() *UpdateFlowVersionNotFound

NewUpdateFlowVersionNotFound creates a UpdateFlowVersionNotFound with default headers values

func (*UpdateFlowVersionNotFound) Error

func (o *UpdateFlowVersionNotFound) Error() string

func (*UpdateFlowVersionNotFound) IsClientError added in v1.19.1

func (o *UpdateFlowVersionNotFound) IsClientError() bool

IsClientError returns true when this update flow version not found response has a 4xx status code

func (*UpdateFlowVersionNotFound) IsCode added in v1.19.1

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

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

func (*UpdateFlowVersionNotFound) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionNotFound) IsRedirect() bool

IsRedirect returns true when this update flow version not found response has a 3xx status code

func (*UpdateFlowVersionNotFound) IsServerError added in v1.19.1

func (o *UpdateFlowVersionNotFound) IsServerError() bool

IsServerError returns true when this update flow version not found response has a 5xx status code

func (*UpdateFlowVersionNotFound) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionNotFound) IsSuccess() bool

IsSuccess returns true when this update flow version not found response has a 2xx status code

func (*UpdateFlowVersionNotFound) String added in v1.19.1

func (o *UpdateFlowVersionNotFound) String() string

type UpdateFlowVersionOK

type UpdateFlowVersionOK struct {
	Payload *models.VersionControlInformationEntity
}

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

successful operation

func NewUpdateFlowVersionOK

func NewUpdateFlowVersionOK() *UpdateFlowVersionOK

NewUpdateFlowVersionOK creates a UpdateFlowVersionOK with default headers values

func (*UpdateFlowVersionOK) Error

func (o *UpdateFlowVersionOK) Error() string

func (*UpdateFlowVersionOK) GetPayload

func (*UpdateFlowVersionOK) IsClientError added in v1.19.1

func (o *UpdateFlowVersionOK) IsClientError() bool

IsClientError returns true when this update flow version o k response has a 4xx status code

func (*UpdateFlowVersionOK) IsCode added in v1.19.1

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

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

func (*UpdateFlowVersionOK) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionOK) IsRedirect() bool

IsRedirect returns true when this update flow version o k response has a 3xx status code

func (*UpdateFlowVersionOK) IsServerError added in v1.19.1

func (o *UpdateFlowVersionOK) IsServerError() bool

IsServerError returns true when this update flow version o k response has a 5xx status code

func (*UpdateFlowVersionOK) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionOK) IsSuccess() bool

IsSuccess returns true when this update flow version o k response has a 2xx status code

func (*UpdateFlowVersionOK) String added in v1.19.1

func (o *UpdateFlowVersionOK) String() string

type UpdateFlowVersionParams

type UpdateFlowVersionParams struct {

	/* Body.

	   The controller service configuration details.
	*/
	Body *models.VersionedFlowSnapshotEntity

	/* ID.

	   The process group id.
	*/
	ID string

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

UpdateFlowVersionParams contains all the parameters to send to the API endpoint

for the update flow version operation.

Typically these are written to a http.Request.

func NewUpdateFlowVersionParams

func NewUpdateFlowVersionParams() *UpdateFlowVersionParams

NewUpdateFlowVersionParams creates a new UpdateFlowVersionParams 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 NewUpdateFlowVersionParamsWithContext

func NewUpdateFlowVersionParamsWithContext(ctx context.Context) *UpdateFlowVersionParams

NewUpdateFlowVersionParamsWithContext creates a new UpdateFlowVersionParams object with the ability to set a context for a request.

func NewUpdateFlowVersionParamsWithHTTPClient

func NewUpdateFlowVersionParamsWithHTTPClient(client *http.Client) *UpdateFlowVersionParams

NewUpdateFlowVersionParamsWithHTTPClient creates a new UpdateFlowVersionParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateFlowVersionParamsWithTimeout

func NewUpdateFlowVersionParamsWithTimeout(timeout time.Duration) *UpdateFlowVersionParams

NewUpdateFlowVersionParamsWithTimeout creates a new UpdateFlowVersionParams object with the ability to set a timeout on a request.

func (*UpdateFlowVersionParams) SetBody

SetBody adds the body to the update flow version params

func (*UpdateFlowVersionParams) SetContext

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

SetContext adds the context to the update flow version params

func (*UpdateFlowVersionParams) SetDefaults

func (o *UpdateFlowVersionParams) SetDefaults()

SetDefaults hydrates default values in the update flow version params (not the query body).

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

func (*UpdateFlowVersionParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update flow version params

func (*UpdateFlowVersionParams) SetID

func (o *UpdateFlowVersionParams) SetID(id string)

SetID adds the id to the update flow version params

func (*UpdateFlowVersionParams) SetTimeout

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

SetTimeout adds the timeout to the update flow version params

func (*UpdateFlowVersionParams) WithBody

WithBody adds the body to the update flow version params

func (*UpdateFlowVersionParams) WithContext

WithContext adds the context to the update flow version params

func (*UpdateFlowVersionParams) WithDefaults

WithDefaults hydrates default values in the update flow version params (not the query body).

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

func (*UpdateFlowVersionParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update flow version params

func (*UpdateFlowVersionParams) WithID

WithID adds the id to the update flow version params

func (*UpdateFlowVersionParams) WithTimeout

WithTimeout adds the timeout to the update flow version params

func (*UpdateFlowVersionParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateFlowVersionReader

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

UpdateFlowVersionReader is a Reader for the UpdateFlowVersion structure.

func (*UpdateFlowVersionReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateFlowVersionUnauthorized

type UpdateFlowVersionUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateFlowVersionUnauthorized

func NewUpdateFlowVersionUnauthorized() *UpdateFlowVersionUnauthorized

NewUpdateFlowVersionUnauthorized creates a UpdateFlowVersionUnauthorized with default headers values

func (*UpdateFlowVersionUnauthorized) Error

func (*UpdateFlowVersionUnauthorized) IsClientError added in v1.19.1

func (o *UpdateFlowVersionUnauthorized) IsClientError() bool

IsClientError returns true when this update flow version unauthorized response has a 4xx status code

func (*UpdateFlowVersionUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this update flow version unauthorized response a status code equal to that given

func (*UpdateFlowVersionUnauthorized) IsRedirect added in v1.19.1

func (o *UpdateFlowVersionUnauthorized) IsRedirect() bool

IsRedirect returns true when this update flow version unauthorized response has a 3xx status code

func (*UpdateFlowVersionUnauthorized) IsServerError added in v1.19.1

func (o *UpdateFlowVersionUnauthorized) IsServerError() bool

IsServerError returns true when this update flow version unauthorized response has a 5xx status code

func (*UpdateFlowVersionUnauthorized) IsSuccess added in v1.19.1

func (o *UpdateFlowVersionUnauthorized) IsSuccess() bool

IsSuccess returns true when this update flow version unauthorized response has a 2xx status code

func (*UpdateFlowVersionUnauthorized) String added in v1.19.1

type UpdateVersionControlRequestBadRequest

type UpdateVersionControlRequestBadRequest struct {
}

UpdateVersionControlRequestBadRequest 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 NewUpdateVersionControlRequestBadRequest

func NewUpdateVersionControlRequestBadRequest() *UpdateVersionControlRequestBadRequest

NewUpdateVersionControlRequestBadRequest creates a UpdateVersionControlRequestBadRequest with default headers values

func (*UpdateVersionControlRequestBadRequest) Error

func (*UpdateVersionControlRequestBadRequest) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestBadRequest) IsClientError() bool

IsClientError returns true when this update version control request bad request response has a 4xx status code

func (*UpdateVersionControlRequestBadRequest) IsCode added in v1.19.1

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

func (*UpdateVersionControlRequestBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update version control request bad request response has a 3xx status code

func (*UpdateVersionControlRequestBadRequest) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestBadRequest) IsServerError() bool

IsServerError returns true when this update version control request bad request response has a 5xx status code

func (*UpdateVersionControlRequestBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update version control request bad request response has a 2xx status code

func (*UpdateVersionControlRequestBadRequest) String added in v1.19.1

type UpdateVersionControlRequestConflict

type UpdateVersionControlRequestConflict struct {
}

UpdateVersionControlRequestConflict 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 NewUpdateVersionControlRequestConflict

func NewUpdateVersionControlRequestConflict() *UpdateVersionControlRequestConflict

NewUpdateVersionControlRequestConflict creates a UpdateVersionControlRequestConflict with default headers values

func (*UpdateVersionControlRequestConflict) Error

func (*UpdateVersionControlRequestConflict) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestConflict) IsClientError() bool

IsClientError returns true when this update version control request conflict response has a 4xx status code

func (*UpdateVersionControlRequestConflict) IsCode added in v1.19.1

IsCode returns true when this update version control request conflict response a status code equal to that given

func (*UpdateVersionControlRequestConflict) IsRedirect added in v1.19.1

func (o *UpdateVersionControlRequestConflict) IsRedirect() bool

IsRedirect returns true when this update version control request conflict response has a 3xx status code

func (*UpdateVersionControlRequestConflict) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestConflict) IsServerError() bool

IsServerError returns true when this update version control request conflict response has a 5xx status code

func (*UpdateVersionControlRequestConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update version control request conflict response has a 2xx status code

func (*UpdateVersionControlRequestConflict) String added in v1.19.1

type UpdateVersionControlRequestForbidden

type UpdateVersionControlRequestForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateVersionControlRequestForbidden

func NewUpdateVersionControlRequestForbidden() *UpdateVersionControlRequestForbidden

NewUpdateVersionControlRequestForbidden creates a UpdateVersionControlRequestForbidden with default headers values

func (*UpdateVersionControlRequestForbidden) Error

func (*UpdateVersionControlRequestForbidden) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestForbidden) IsClientError() bool

IsClientError returns true when this update version control request forbidden response has a 4xx status code

func (*UpdateVersionControlRequestForbidden) IsCode added in v1.19.1

IsCode returns true when this update version control request forbidden response a status code equal to that given

func (*UpdateVersionControlRequestForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update version control request forbidden response has a 3xx status code

func (*UpdateVersionControlRequestForbidden) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestForbidden) IsServerError() bool

IsServerError returns true when this update version control request forbidden response has a 5xx status code

func (*UpdateVersionControlRequestForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update version control request forbidden response has a 2xx status code

func (*UpdateVersionControlRequestForbidden) String added in v1.19.1

type UpdateVersionControlRequestNotFound

type UpdateVersionControlRequestNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateVersionControlRequestNotFound

func NewUpdateVersionControlRequestNotFound() *UpdateVersionControlRequestNotFound

NewUpdateVersionControlRequestNotFound creates a UpdateVersionControlRequestNotFound with default headers values

func (*UpdateVersionControlRequestNotFound) Error

func (*UpdateVersionControlRequestNotFound) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestNotFound) IsClientError() bool

IsClientError returns true when this update version control request not found response has a 4xx status code

func (*UpdateVersionControlRequestNotFound) IsCode added in v1.19.1

IsCode returns true when this update version control request not found response a status code equal to that given

func (*UpdateVersionControlRequestNotFound) IsRedirect added in v1.19.1

func (o *UpdateVersionControlRequestNotFound) IsRedirect() bool

IsRedirect returns true when this update version control request not found response has a 3xx status code

func (*UpdateVersionControlRequestNotFound) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestNotFound) IsServerError() bool

IsServerError returns true when this update version control request not found response has a 5xx status code

func (*UpdateVersionControlRequestNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update version control request not found response has a 2xx status code

func (*UpdateVersionControlRequestNotFound) String added in v1.19.1

type UpdateVersionControlRequestOK

type UpdateVersionControlRequestOK struct {
	Payload *models.VersionControlInformationEntity
}

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

successful operation

func NewUpdateVersionControlRequestOK

func NewUpdateVersionControlRequestOK() *UpdateVersionControlRequestOK

NewUpdateVersionControlRequestOK creates a UpdateVersionControlRequestOK with default headers values

func (*UpdateVersionControlRequestOK) Error

func (*UpdateVersionControlRequestOK) GetPayload

func (*UpdateVersionControlRequestOK) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestOK) IsClientError() bool

IsClientError returns true when this update version control request o k response has a 4xx status code

func (*UpdateVersionControlRequestOK) IsCode added in v1.19.1

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

IsCode returns true when this update version control request o k response a status code equal to that given

func (*UpdateVersionControlRequestOK) IsRedirect added in v1.19.1

func (o *UpdateVersionControlRequestOK) IsRedirect() bool

IsRedirect returns true when this update version control request o k response has a 3xx status code

func (*UpdateVersionControlRequestOK) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestOK) IsServerError() bool

IsServerError returns true when this update version control request o k response has a 5xx status code

func (*UpdateVersionControlRequestOK) IsSuccess added in v1.19.1

func (o *UpdateVersionControlRequestOK) IsSuccess() bool

IsSuccess returns true when this update version control request o k response has a 2xx status code

func (*UpdateVersionControlRequestOK) String added in v1.19.1

type UpdateVersionControlRequestParams

type UpdateVersionControlRequestParams struct {

	/* Body.

	   The version control component mapping.
	*/
	Body *models.VersionControlComponentMappingEntity

	/* ID.

	   The request ID.
	*/
	ID string

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

UpdateVersionControlRequestParams contains all the parameters to send to the API endpoint

for the update version control request operation.

Typically these are written to a http.Request.

func NewUpdateVersionControlRequestParams

func NewUpdateVersionControlRequestParams() *UpdateVersionControlRequestParams

NewUpdateVersionControlRequestParams creates a new UpdateVersionControlRequestParams 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 NewUpdateVersionControlRequestParamsWithContext

func NewUpdateVersionControlRequestParamsWithContext(ctx context.Context) *UpdateVersionControlRequestParams

NewUpdateVersionControlRequestParamsWithContext creates a new UpdateVersionControlRequestParams object with the ability to set a context for a request.

func NewUpdateVersionControlRequestParamsWithHTTPClient

func NewUpdateVersionControlRequestParamsWithHTTPClient(client *http.Client) *UpdateVersionControlRequestParams

NewUpdateVersionControlRequestParamsWithHTTPClient creates a new UpdateVersionControlRequestParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateVersionControlRequestParamsWithTimeout

func NewUpdateVersionControlRequestParamsWithTimeout(timeout time.Duration) *UpdateVersionControlRequestParams

NewUpdateVersionControlRequestParamsWithTimeout creates a new UpdateVersionControlRequestParams object with the ability to set a timeout on a request.

func (*UpdateVersionControlRequestParams) SetBody

SetBody adds the body to the update version control request params

func (*UpdateVersionControlRequestParams) SetContext

SetContext adds the context to the update version control request params

func (*UpdateVersionControlRequestParams) SetDefaults

func (o *UpdateVersionControlRequestParams) SetDefaults()

SetDefaults hydrates default values in the update version control request params (not the query body).

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

func (*UpdateVersionControlRequestParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update version control request params

func (*UpdateVersionControlRequestParams) SetID

SetID adds the id to the update version control request params

func (*UpdateVersionControlRequestParams) SetTimeout

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

SetTimeout adds the timeout to the update version control request params

func (*UpdateVersionControlRequestParams) WithBody

WithBody adds the body to the update version control request params

func (*UpdateVersionControlRequestParams) WithContext

WithContext adds the context to the update version control request params

func (*UpdateVersionControlRequestParams) WithDefaults

WithDefaults hydrates default values in the update version control request params (not the query body).

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

func (*UpdateVersionControlRequestParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update version control request params

func (*UpdateVersionControlRequestParams) WithID

WithID adds the id to the update version control request params

func (*UpdateVersionControlRequestParams) WithTimeout

WithTimeout adds the timeout to the update version control request params

func (*UpdateVersionControlRequestParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateVersionControlRequestReader

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

UpdateVersionControlRequestReader is a Reader for the UpdateVersionControlRequest structure.

func (*UpdateVersionControlRequestReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateVersionControlRequestUnauthorized

type UpdateVersionControlRequestUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateVersionControlRequestUnauthorized

func NewUpdateVersionControlRequestUnauthorized() *UpdateVersionControlRequestUnauthorized

NewUpdateVersionControlRequestUnauthorized creates a UpdateVersionControlRequestUnauthorized with default headers values

func (*UpdateVersionControlRequestUnauthorized) Error

func (*UpdateVersionControlRequestUnauthorized) IsClientError added in v1.19.1

func (o *UpdateVersionControlRequestUnauthorized) IsClientError() bool

IsClientError returns true when this update version control request unauthorized response has a 4xx status code

func (*UpdateVersionControlRequestUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update version control request unauthorized response a status code equal to that given

func (*UpdateVersionControlRequestUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update version control request unauthorized response has a 3xx status code

func (*UpdateVersionControlRequestUnauthorized) IsServerError added in v1.19.1

func (o *UpdateVersionControlRequestUnauthorized) IsServerError() bool

IsServerError returns true when this update version control request unauthorized response has a 5xx status code

func (*UpdateVersionControlRequestUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update version control request unauthorized response has a 2xx status code

func (*UpdateVersionControlRequestUnauthorized) String added in v1.19.1

Jump to

Keyboard shortcuts

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