remote_process_groups

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 remote process groups API

func (*Client) GetRemoteProcessGroup

func (a *Client) GetRemoteProcessGroup(params *GetRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRemoteProcessGroupOK, error)

GetRemoteProcessGroup gets a remote process group

func (*Client) RemoveRemoteProcessGroup

func (a *Client) RemoveRemoteProcessGroup(params *RemoveRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RemoveRemoteProcessGroupOK, error)

RemoveRemoteProcessGroup deletes a remote process group

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateRemoteProcessGroup

func (a *Client) UpdateRemoteProcessGroup(params *UpdateRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupOK, error)

UpdateRemoteProcessGroup updates a remote process group

func (*Client) UpdateRemoteProcessGroupInputPort

func (a *Client) UpdateRemoteProcessGroupInputPort(params *UpdateRemoteProcessGroupInputPortParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupInputPortOK, error)

UpdateRemoteProcessGroupInputPort updates a remote port

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

func (*Client) UpdateRemoteProcessGroupInputPortRunStatus

UpdateRemoteProcessGroupInputPortRunStatus updates run status of a remote port

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

func (*Client) UpdateRemoteProcessGroupOutputPort

func (a *Client) UpdateRemoteProcessGroupOutputPort(params *UpdateRemoteProcessGroupOutputPortParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupOutputPortOK, error)

UpdateRemoteProcessGroupOutputPort updates a remote port

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

func (*Client) UpdateRemoteProcessGroupOutputPortRunStatus

UpdateRemoteProcessGroupOutputPortRunStatus updates run status of a remote port

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

func (*Client) UpdateRemoteProcessGroupRunStatus

func (a *Client) UpdateRemoteProcessGroupRunStatus(params *UpdateRemoteProcessGroupRunStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupRunStatusOK, error)

UpdateRemoteProcessGroupRunStatus updates run status of a remote process group

func (*Client) UpdateRemoteProcessGroupRunStatuses

func (a *Client) UpdateRemoteProcessGroupRunStatuses(params *UpdateRemoteProcessGroupRunStatusesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupRunStatusesOK, error)

UpdateRemoteProcessGroupRunStatuses updates run status of all remote process groups in a process group recursively

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	GetRemoteProcessGroup(params *GetRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetRemoteProcessGroupOK, error)

	RemoveRemoteProcessGroup(params *RemoveRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*RemoveRemoteProcessGroupOK, error)

	UpdateRemoteProcessGroup(params *UpdateRemoteProcessGroupParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupOK, error)

	UpdateRemoteProcessGroupInputPort(params *UpdateRemoteProcessGroupInputPortParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupInputPortOK, error)

	UpdateRemoteProcessGroupInputPortRunStatus(params *UpdateRemoteProcessGroupInputPortRunStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupInputPortRunStatusOK, error)

	UpdateRemoteProcessGroupOutputPort(params *UpdateRemoteProcessGroupOutputPortParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupOutputPortOK, error)

	UpdateRemoteProcessGroupOutputPortRunStatus(params *UpdateRemoteProcessGroupOutputPortRunStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupOutputPortRunStatusOK, error)

	UpdateRemoteProcessGroupRunStatus(params *UpdateRemoteProcessGroupRunStatusParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupRunStatusOK, error)

	UpdateRemoteProcessGroupRunStatuses(params *UpdateRemoteProcessGroupRunStatusesParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateRemoteProcessGroupRunStatusesOK, 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 remote process groups API client.

type GetRemoteProcessGroupBadRequest

type GetRemoteProcessGroupBadRequest struct {
}

GetRemoteProcessGroupBadRequest 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 NewGetRemoteProcessGroupBadRequest

func NewGetRemoteProcessGroupBadRequest() *GetRemoteProcessGroupBadRequest

NewGetRemoteProcessGroupBadRequest creates a GetRemoteProcessGroupBadRequest with default headers values

func (*GetRemoteProcessGroupBadRequest) Error

func (*GetRemoteProcessGroupBadRequest) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupBadRequest) IsClientError() bool

IsClientError returns true when this get remote process group bad request response has a 4xx status code

func (*GetRemoteProcessGroupBadRequest) IsCode added in v1.19.1

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

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

func (*GetRemoteProcessGroupBadRequest) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupBadRequest) IsRedirect() bool

IsRedirect returns true when this get remote process group bad request response has a 3xx status code

func (*GetRemoteProcessGroupBadRequest) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupBadRequest) IsServerError() bool

IsServerError returns true when this get remote process group bad request response has a 5xx status code

func (*GetRemoteProcessGroupBadRequest) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupBadRequest) IsSuccess() bool

IsSuccess returns true when this get remote process group bad request response has a 2xx status code

func (*GetRemoteProcessGroupBadRequest) String added in v1.19.1

type GetRemoteProcessGroupConflict

type GetRemoteProcessGroupConflict struct {
}

GetRemoteProcessGroupConflict 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 NewGetRemoteProcessGroupConflict

func NewGetRemoteProcessGroupConflict() *GetRemoteProcessGroupConflict

NewGetRemoteProcessGroupConflict creates a GetRemoteProcessGroupConflict with default headers values

func (*GetRemoteProcessGroupConflict) Error

func (*GetRemoteProcessGroupConflict) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupConflict) IsClientError() bool

IsClientError returns true when this get remote process group conflict response has a 4xx status code

func (*GetRemoteProcessGroupConflict) IsCode added in v1.19.1

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

IsCode returns true when this get remote process group conflict response a status code equal to that given

func (*GetRemoteProcessGroupConflict) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupConflict) IsRedirect() bool

IsRedirect returns true when this get remote process group conflict response has a 3xx status code

func (*GetRemoteProcessGroupConflict) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupConflict) IsServerError() bool

IsServerError returns true when this get remote process group conflict response has a 5xx status code

func (*GetRemoteProcessGroupConflict) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupConflict) IsSuccess() bool

IsSuccess returns true when this get remote process group conflict response has a 2xx status code

func (*GetRemoteProcessGroupConflict) String added in v1.19.1

type GetRemoteProcessGroupForbidden

type GetRemoteProcessGroupForbidden struct {
}

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

Client is not authorized to make this request.

func NewGetRemoteProcessGroupForbidden

func NewGetRemoteProcessGroupForbidden() *GetRemoteProcessGroupForbidden

NewGetRemoteProcessGroupForbidden creates a GetRemoteProcessGroupForbidden with default headers values

func (*GetRemoteProcessGroupForbidden) Error

func (*GetRemoteProcessGroupForbidden) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupForbidden) IsClientError() bool

IsClientError returns true when this get remote process group forbidden response has a 4xx status code

func (*GetRemoteProcessGroupForbidden) IsCode added in v1.19.1

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

IsCode returns true when this get remote process group forbidden response a status code equal to that given

func (*GetRemoteProcessGroupForbidden) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupForbidden) IsRedirect() bool

IsRedirect returns true when this get remote process group forbidden response has a 3xx status code

func (*GetRemoteProcessGroupForbidden) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupForbidden) IsServerError() bool

IsServerError returns true when this get remote process group forbidden response has a 5xx status code

func (*GetRemoteProcessGroupForbidden) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupForbidden) IsSuccess() bool

IsSuccess returns true when this get remote process group forbidden response has a 2xx status code

func (*GetRemoteProcessGroupForbidden) String added in v1.19.1

type GetRemoteProcessGroupNotFound

type GetRemoteProcessGroupNotFound struct {
}

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

The specified resource could not be found.

func NewGetRemoteProcessGroupNotFound

func NewGetRemoteProcessGroupNotFound() *GetRemoteProcessGroupNotFound

NewGetRemoteProcessGroupNotFound creates a GetRemoteProcessGroupNotFound with default headers values

func (*GetRemoteProcessGroupNotFound) Error

func (*GetRemoteProcessGroupNotFound) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupNotFound) IsClientError() bool

IsClientError returns true when this get remote process group not found response has a 4xx status code

func (*GetRemoteProcessGroupNotFound) IsCode added in v1.19.1

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

IsCode returns true when this get remote process group not found response a status code equal to that given

func (*GetRemoteProcessGroupNotFound) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupNotFound) IsRedirect() bool

IsRedirect returns true when this get remote process group not found response has a 3xx status code

func (*GetRemoteProcessGroupNotFound) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupNotFound) IsServerError() bool

IsServerError returns true when this get remote process group not found response has a 5xx status code

func (*GetRemoteProcessGroupNotFound) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupNotFound) IsSuccess() bool

IsSuccess returns true when this get remote process group not found response has a 2xx status code

func (*GetRemoteProcessGroupNotFound) String added in v1.19.1

type GetRemoteProcessGroupOK

type GetRemoteProcessGroupOK struct {
	Payload *models.RemoteProcessGroupEntity
}

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

successful operation

func NewGetRemoteProcessGroupOK

func NewGetRemoteProcessGroupOK() *GetRemoteProcessGroupOK

NewGetRemoteProcessGroupOK creates a GetRemoteProcessGroupOK with default headers values

func (*GetRemoteProcessGroupOK) Error

func (o *GetRemoteProcessGroupOK) Error() string

func (*GetRemoteProcessGroupOK) GetPayload

func (*GetRemoteProcessGroupOK) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupOK) IsClientError() bool

IsClientError returns true when this get remote process group o k response has a 4xx status code

func (*GetRemoteProcessGroupOK) IsCode added in v1.19.1

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

IsCode returns true when this get remote process group o k response a status code equal to that given

func (*GetRemoteProcessGroupOK) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupOK) IsRedirect() bool

IsRedirect returns true when this get remote process group o k response has a 3xx status code

func (*GetRemoteProcessGroupOK) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupOK) IsServerError() bool

IsServerError returns true when this get remote process group o k response has a 5xx status code

func (*GetRemoteProcessGroupOK) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupOK) IsSuccess() bool

IsSuccess returns true when this get remote process group o k response has a 2xx status code

func (*GetRemoteProcessGroupOK) String added in v1.19.1

func (o *GetRemoteProcessGroupOK) String() string

type GetRemoteProcessGroupParams

type GetRemoteProcessGroupParams struct {

	/* ID.

	   The remote process group id.
	*/
	ID string

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

GetRemoteProcessGroupParams contains all the parameters to send to the API endpoint

for the get remote process group operation.

Typically these are written to a http.Request.

func NewGetRemoteProcessGroupParams

func NewGetRemoteProcessGroupParams() *GetRemoteProcessGroupParams

NewGetRemoteProcessGroupParams creates a new GetRemoteProcessGroupParams 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 NewGetRemoteProcessGroupParamsWithContext

func NewGetRemoteProcessGroupParamsWithContext(ctx context.Context) *GetRemoteProcessGroupParams

NewGetRemoteProcessGroupParamsWithContext creates a new GetRemoteProcessGroupParams object with the ability to set a context for a request.

func NewGetRemoteProcessGroupParamsWithHTTPClient

func NewGetRemoteProcessGroupParamsWithHTTPClient(client *http.Client) *GetRemoteProcessGroupParams

NewGetRemoteProcessGroupParamsWithHTTPClient creates a new GetRemoteProcessGroupParams object with the ability to set a custom HTTPClient for a request.

func NewGetRemoteProcessGroupParamsWithTimeout

func NewGetRemoteProcessGroupParamsWithTimeout(timeout time.Duration) *GetRemoteProcessGroupParams

NewGetRemoteProcessGroupParamsWithTimeout creates a new GetRemoteProcessGroupParams object with the ability to set a timeout on a request.

func (*GetRemoteProcessGroupParams) SetContext

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

SetContext adds the context to the get remote process group params

func (*GetRemoteProcessGroupParams) SetDefaults

func (o *GetRemoteProcessGroupParams) SetDefaults()

SetDefaults hydrates default values in the get remote process group params (not the query body).

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

func (*GetRemoteProcessGroupParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get remote process group params

func (*GetRemoteProcessGroupParams) SetID

func (o *GetRemoteProcessGroupParams) SetID(id string)

SetID adds the id to the get remote process group params

func (*GetRemoteProcessGroupParams) SetTimeout

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

SetTimeout adds the timeout to the get remote process group params

func (*GetRemoteProcessGroupParams) WithContext

WithContext adds the context to the get remote process group params

func (*GetRemoteProcessGroupParams) WithDefaults

WithDefaults hydrates default values in the get remote process group params (not the query body).

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

func (*GetRemoteProcessGroupParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get remote process group params

func (*GetRemoteProcessGroupParams) WithID

WithID adds the id to the get remote process group params

func (*GetRemoteProcessGroupParams) WithTimeout

WithTimeout adds the timeout to the get remote process group params

func (*GetRemoteProcessGroupParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetRemoteProcessGroupReader

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

GetRemoteProcessGroupReader is a Reader for the GetRemoteProcessGroup structure.

func (*GetRemoteProcessGroupReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetRemoteProcessGroupUnauthorized

type GetRemoteProcessGroupUnauthorized struct {
}

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

Client could not be authenticated.

func NewGetRemoteProcessGroupUnauthorized

func NewGetRemoteProcessGroupUnauthorized() *GetRemoteProcessGroupUnauthorized

NewGetRemoteProcessGroupUnauthorized creates a GetRemoteProcessGroupUnauthorized with default headers values

func (*GetRemoteProcessGroupUnauthorized) Error

func (*GetRemoteProcessGroupUnauthorized) IsClientError added in v1.19.1

func (o *GetRemoteProcessGroupUnauthorized) IsClientError() bool

IsClientError returns true when this get remote process group unauthorized response has a 4xx status code

func (*GetRemoteProcessGroupUnauthorized) IsCode added in v1.19.1

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

IsCode returns true when this get remote process group unauthorized response a status code equal to that given

func (*GetRemoteProcessGroupUnauthorized) IsRedirect added in v1.19.1

func (o *GetRemoteProcessGroupUnauthorized) IsRedirect() bool

IsRedirect returns true when this get remote process group unauthorized response has a 3xx status code

func (*GetRemoteProcessGroupUnauthorized) IsServerError added in v1.19.1

func (o *GetRemoteProcessGroupUnauthorized) IsServerError() bool

IsServerError returns true when this get remote process group unauthorized response has a 5xx status code

func (*GetRemoteProcessGroupUnauthorized) IsSuccess added in v1.19.1

func (o *GetRemoteProcessGroupUnauthorized) IsSuccess() bool

IsSuccess returns true when this get remote process group unauthorized response has a 2xx status code

func (*GetRemoteProcessGroupUnauthorized) String added in v1.19.1

type RemoveRemoteProcessGroupBadRequest

type RemoveRemoteProcessGroupBadRequest struct {
}

RemoveRemoteProcessGroupBadRequest 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 NewRemoveRemoteProcessGroupBadRequest

func NewRemoveRemoteProcessGroupBadRequest() *RemoveRemoteProcessGroupBadRequest

NewRemoveRemoteProcessGroupBadRequest creates a RemoveRemoteProcessGroupBadRequest with default headers values

func (*RemoveRemoteProcessGroupBadRequest) Error

func (*RemoveRemoteProcessGroupBadRequest) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupBadRequest) IsClientError() bool

IsClientError returns true when this remove remote process group bad request response has a 4xx status code

func (*RemoveRemoteProcessGroupBadRequest) IsCode added in v1.19.1

IsCode returns true when this remove remote process group bad request response a status code equal to that given

func (*RemoveRemoteProcessGroupBadRequest) IsRedirect added in v1.19.1

func (o *RemoveRemoteProcessGroupBadRequest) IsRedirect() bool

IsRedirect returns true when this remove remote process group bad request response has a 3xx status code

func (*RemoveRemoteProcessGroupBadRequest) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupBadRequest) IsServerError() bool

IsServerError returns true when this remove remote process group bad request response has a 5xx status code

func (*RemoveRemoteProcessGroupBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this remove remote process group bad request response has a 2xx status code

func (*RemoveRemoteProcessGroupBadRequest) String added in v1.19.1

type RemoveRemoteProcessGroupConflict

type RemoveRemoteProcessGroupConflict struct {
}

RemoveRemoteProcessGroupConflict 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 NewRemoveRemoteProcessGroupConflict

func NewRemoveRemoteProcessGroupConflict() *RemoveRemoteProcessGroupConflict

NewRemoveRemoteProcessGroupConflict creates a RemoveRemoteProcessGroupConflict with default headers values

func (*RemoveRemoteProcessGroupConflict) Error

func (*RemoveRemoteProcessGroupConflict) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupConflict) IsClientError() bool

IsClientError returns true when this remove remote process group conflict response has a 4xx status code

func (*RemoveRemoteProcessGroupConflict) IsCode added in v1.19.1

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

IsCode returns true when this remove remote process group conflict response a status code equal to that given

func (*RemoveRemoteProcessGroupConflict) IsRedirect added in v1.19.1

func (o *RemoveRemoteProcessGroupConflict) IsRedirect() bool

IsRedirect returns true when this remove remote process group conflict response has a 3xx status code

func (*RemoveRemoteProcessGroupConflict) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupConflict) IsServerError() bool

IsServerError returns true when this remove remote process group conflict response has a 5xx status code

func (*RemoveRemoteProcessGroupConflict) IsSuccess added in v1.19.1

func (o *RemoveRemoteProcessGroupConflict) IsSuccess() bool

IsSuccess returns true when this remove remote process group conflict response has a 2xx status code

func (*RemoveRemoteProcessGroupConflict) String added in v1.19.1

type RemoveRemoteProcessGroupForbidden

type RemoveRemoteProcessGroupForbidden struct {
}

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

Client is not authorized to make this request.

func NewRemoveRemoteProcessGroupForbidden

func NewRemoveRemoteProcessGroupForbidden() *RemoveRemoteProcessGroupForbidden

NewRemoveRemoteProcessGroupForbidden creates a RemoveRemoteProcessGroupForbidden with default headers values

func (*RemoveRemoteProcessGroupForbidden) Error

func (*RemoveRemoteProcessGroupForbidden) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupForbidden) IsClientError() bool

IsClientError returns true when this remove remote process group forbidden response has a 4xx status code

func (*RemoveRemoteProcessGroupForbidden) IsCode added in v1.19.1

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

IsCode returns true when this remove remote process group forbidden response a status code equal to that given

func (*RemoveRemoteProcessGroupForbidden) IsRedirect added in v1.19.1

func (o *RemoveRemoteProcessGroupForbidden) IsRedirect() bool

IsRedirect returns true when this remove remote process group forbidden response has a 3xx status code

func (*RemoveRemoteProcessGroupForbidden) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupForbidden) IsServerError() bool

IsServerError returns true when this remove remote process group forbidden response has a 5xx status code

func (*RemoveRemoteProcessGroupForbidden) IsSuccess added in v1.19.1

func (o *RemoveRemoteProcessGroupForbidden) IsSuccess() bool

IsSuccess returns true when this remove remote process group forbidden response has a 2xx status code

func (*RemoveRemoteProcessGroupForbidden) String added in v1.19.1

type RemoveRemoteProcessGroupNotFound

type RemoveRemoteProcessGroupNotFound struct {
}

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

The specified resource could not be found.

func NewRemoveRemoteProcessGroupNotFound

func NewRemoveRemoteProcessGroupNotFound() *RemoveRemoteProcessGroupNotFound

NewRemoveRemoteProcessGroupNotFound creates a RemoveRemoteProcessGroupNotFound with default headers values

func (*RemoveRemoteProcessGroupNotFound) Error

func (*RemoveRemoteProcessGroupNotFound) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupNotFound) IsClientError() bool

IsClientError returns true when this remove remote process group not found response has a 4xx status code

func (*RemoveRemoteProcessGroupNotFound) IsCode added in v1.19.1

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

IsCode returns true when this remove remote process group not found response a status code equal to that given

func (*RemoveRemoteProcessGroupNotFound) IsRedirect added in v1.19.1

func (o *RemoveRemoteProcessGroupNotFound) IsRedirect() bool

IsRedirect returns true when this remove remote process group not found response has a 3xx status code

func (*RemoveRemoteProcessGroupNotFound) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupNotFound) IsServerError() bool

IsServerError returns true when this remove remote process group not found response has a 5xx status code

func (*RemoveRemoteProcessGroupNotFound) IsSuccess added in v1.19.1

func (o *RemoveRemoteProcessGroupNotFound) IsSuccess() bool

IsSuccess returns true when this remove remote process group not found response has a 2xx status code

func (*RemoveRemoteProcessGroupNotFound) String added in v1.19.1

type RemoveRemoteProcessGroupOK

type RemoveRemoteProcessGroupOK struct {
	Payload *models.RemoteProcessGroupEntity
}

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

successful operation

func NewRemoveRemoteProcessGroupOK

func NewRemoveRemoteProcessGroupOK() *RemoveRemoteProcessGroupOK

NewRemoveRemoteProcessGroupOK creates a RemoveRemoteProcessGroupOK with default headers values

func (*RemoveRemoteProcessGroupOK) Error

func (*RemoveRemoteProcessGroupOK) GetPayload

func (*RemoveRemoteProcessGroupOK) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupOK) IsClientError() bool

IsClientError returns true when this remove remote process group o k response has a 4xx status code

func (*RemoveRemoteProcessGroupOK) IsCode added in v1.19.1

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

IsCode returns true when this remove remote process group o k response a status code equal to that given

func (*RemoveRemoteProcessGroupOK) IsRedirect added in v1.19.1

func (o *RemoveRemoteProcessGroupOK) IsRedirect() bool

IsRedirect returns true when this remove remote process group o k response has a 3xx status code

func (*RemoveRemoteProcessGroupOK) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupOK) IsServerError() bool

IsServerError returns true when this remove remote process group o k response has a 5xx status code

func (*RemoveRemoteProcessGroupOK) IsSuccess added in v1.19.1

func (o *RemoveRemoteProcessGroupOK) IsSuccess() bool

IsSuccess returns true when this remove remote process group o k response has a 2xx status code

func (*RemoveRemoteProcessGroupOK) String added in v1.19.1

func (o *RemoveRemoteProcessGroupOK) String() string

type RemoveRemoteProcessGroupParams

type RemoveRemoteProcessGroupParams struct {

	/* ClientID.

	   If the client id is not specified, 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 remote process group id.
	*/
	ID string

	/* Version.

	   The revision 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
}

RemoveRemoteProcessGroupParams contains all the parameters to send to the API endpoint

for the remove remote process group operation.

Typically these are written to a http.Request.

func NewRemoveRemoteProcessGroupParams

func NewRemoveRemoteProcessGroupParams() *RemoveRemoteProcessGroupParams

NewRemoveRemoteProcessGroupParams creates a new RemoveRemoteProcessGroupParams 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 NewRemoveRemoteProcessGroupParamsWithContext

func NewRemoveRemoteProcessGroupParamsWithContext(ctx context.Context) *RemoveRemoteProcessGroupParams

NewRemoveRemoteProcessGroupParamsWithContext creates a new RemoveRemoteProcessGroupParams object with the ability to set a context for a request.

func NewRemoveRemoteProcessGroupParamsWithHTTPClient

func NewRemoveRemoteProcessGroupParamsWithHTTPClient(client *http.Client) *RemoveRemoteProcessGroupParams

NewRemoveRemoteProcessGroupParamsWithHTTPClient creates a new RemoveRemoteProcessGroupParams object with the ability to set a custom HTTPClient for a request.

func NewRemoveRemoteProcessGroupParamsWithTimeout

func NewRemoveRemoteProcessGroupParamsWithTimeout(timeout time.Duration) *RemoveRemoteProcessGroupParams

NewRemoveRemoteProcessGroupParamsWithTimeout creates a new RemoveRemoteProcessGroupParams object with the ability to set a timeout on a request.

func (*RemoveRemoteProcessGroupParams) SetClientID

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

SetClientID adds the clientId to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetContext

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

SetContext adds the context to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetDefaults

func (o *RemoveRemoteProcessGroupParams) SetDefaults()

SetDefaults hydrates default values in the remove remote process group params (not the query body).

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

func (*RemoveRemoteProcessGroupParams) SetDisconnectedNodeAcknowledged

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

SetDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetID

SetID adds the id to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetTimeout

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

SetTimeout adds the timeout to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) SetVersion

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

SetVersion adds the version to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithClientID

WithClientID adds the clientID to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithContext

WithContext adds the context to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithDefaults

WithDefaults hydrates default values in the remove remote process group params (not the query body).

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

func (*RemoveRemoteProcessGroupParams) WithDisconnectedNodeAcknowledged

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

WithDisconnectedNodeAcknowledged adds the disconnectedNodeAcknowledged to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithID

WithID adds the id to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithTimeout

WithTimeout adds the timeout to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WithVersion

WithVersion adds the version to the remove remote process group params

func (*RemoveRemoteProcessGroupParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type RemoveRemoteProcessGroupReader

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

RemoveRemoteProcessGroupReader is a Reader for the RemoveRemoteProcessGroup structure.

func (*RemoveRemoteProcessGroupReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RemoveRemoteProcessGroupUnauthorized

type RemoveRemoteProcessGroupUnauthorized struct {
}

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

Client could not be authenticated.

func NewRemoveRemoteProcessGroupUnauthorized

func NewRemoveRemoteProcessGroupUnauthorized() *RemoveRemoteProcessGroupUnauthorized

NewRemoveRemoteProcessGroupUnauthorized creates a RemoveRemoteProcessGroupUnauthorized with default headers values

func (*RemoveRemoteProcessGroupUnauthorized) Error

func (*RemoveRemoteProcessGroupUnauthorized) IsClientError added in v1.19.1

func (o *RemoveRemoteProcessGroupUnauthorized) IsClientError() bool

IsClientError returns true when this remove remote process group unauthorized response has a 4xx status code

func (*RemoveRemoteProcessGroupUnauthorized) IsCode added in v1.19.1

IsCode returns true when this remove remote process group unauthorized response a status code equal to that given

func (*RemoveRemoteProcessGroupUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this remove remote process group unauthorized response has a 3xx status code

func (*RemoveRemoteProcessGroupUnauthorized) IsServerError added in v1.19.1

func (o *RemoveRemoteProcessGroupUnauthorized) IsServerError() bool

IsServerError returns true when this remove remote process group unauthorized response has a 5xx status code

func (*RemoveRemoteProcessGroupUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this remove remote process group unauthorized response has a 2xx status code

func (*RemoveRemoteProcessGroupUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupBadRequest

type UpdateRemoteProcessGroupBadRequest struct {
}

UpdateRemoteProcessGroupBadRequest 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 NewUpdateRemoteProcessGroupBadRequest

func NewUpdateRemoteProcessGroupBadRequest() *UpdateRemoteProcessGroupBadRequest

NewUpdateRemoteProcessGroupBadRequest creates a UpdateRemoteProcessGroupBadRequest with default headers values

func (*UpdateRemoteProcessGroupBadRequest) Error

func (*UpdateRemoteProcessGroupBadRequest) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupBadRequest) IsClientError() bool

IsClientError returns true when this update remote process group bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupBadRequest) IsCode added in v1.19.1

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

func (*UpdateRemoteProcessGroupBadRequest) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupBadRequest) IsRedirect() bool

IsRedirect returns true when this update remote process group bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupBadRequest) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupBadRequest) IsServerError() bool

IsServerError returns true when this update remote process group bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupConflict

type UpdateRemoteProcessGroupConflict struct {
}

UpdateRemoteProcessGroupConflict 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 NewUpdateRemoteProcessGroupConflict

func NewUpdateRemoteProcessGroupConflict() *UpdateRemoteProcessGroupConflict

NewUpdateRemoteProcessGroupConflict creates a UpdateRemoteProcessGroupConflict with default headers values

func (*UpdateRemoteProcessGroupConflict) Error

func (*UpdateRemoteProcessGroupConflict) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupConflict) IsClientError() bool

IsClientError returns true when this update remote process group conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupConflict) IsCode added in v1.19.1

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

IsCode returns true when this update remote process group conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupConflict) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupConflict) IsRedirect() bool

IsRedirect returns true when this update remote process group conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupConflict) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupConflict) IsServerError() bool

IsServerError returns true when this update remote process group conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupConflict) IsSuccess added in v1.19.1

func (o *UpdateRemoteProcessGroupConflict) IsSuccess() bool

IsSuccess returns true when this update remote process group conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupConflict) String added in v1.19.1

type UpdateRemoteProcessGroupForbidden

type UpdateRemoteProcessGroupForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupForbidden

func NewUpdateRemoteProcessGroupForbidden() *UpdateRemoteProcessGroupForbidden

NewUpdateRemoteProcessGroupForbidden creates a UpdateRemoteProcessGroupForbidden with default headers values

func (*UpdateRemoteProcessGroupForbidden) Error

func (*UpdateRemoteProcessGroupForbidden) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupForbidden) IsClientError() bool

IsClientError returns true when this update remote process group forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupForbidden) IsCode added in v1.19.1

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

IsCode returns true when this update remote process group forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupForbidden) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupForbidden) IsRedirect() bool

IsRedirect returns true when this update remote process group forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupForbidden) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupForbidden) IsServerError() bool

IsServerError returns true when this update remote process group forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupForbidden) IsSuccess added in v1.19.1

func (o *UpdateRemoteProcessGroupForbidden) IsSuccess() bool

IsSuccess returns true when this update remote process group forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortBadRequest

type UpdateRemoteProcessGroupInputPortBadRequest struct {
}

UpdateRemoteProcessGroupInputPortBadRequest 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 NewUpdateRemoteProcessGroupInputPortBadRequest

func NewUpdateRemoteProcessGroupInputPortBadRequest() *UpdateRemoteProcessGroupInputPortBadRequest

NewUpdateRemoteProcessGroupInputPortBadRequest creates a UpdateRemoteProcessGroupInputPortBadRequest with default headers values

func (*UpdateRemoteProcessGroupInputPortBadRequest) Error

func (*UpdateRemoteProcessGroupInputPortBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortConflict

type UpdateRemoteProcessGroupInputPortConflict struct {
}

UpdateRemoteProcessGroupInputPortConflict 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 NewUpdateRemoteProcessGroupInputPortConflict

func NewUpdateRemoteProcessGroupInputPortConflict() *UpdateRemoteProcessGroupInputPortConflict

NewUpdateRemoteProcessGroupInputPortConflict creates a UpdateRemoteProcessGroupInputPortConflict with default headers values

func (*UpdateRemoteProcessGroupInputPortConflict) Error

func (*UpdateRemoteProcessGroupInputPortConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortConflict) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortForbidden

type UpdateRemoteProcessGroupInputPortForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupInputPortForbidden

func NewUpdateRemoteProcessGroupInputPortForbidden() *UpdateRemoteProcessGroupInputPortForbidden

NewUpdateRemoteProcessGroupInputPortForbidden creates a UpdateRemoteProcessGroupInputPortForbidden with default headers values

func (*UpdateRemoteProcessGroupInputPortForbidden) Error

func (*UpdateRemoteProcessGroupInputPortForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortNotFound

type UpdateRemoteProcessGroupInputPortNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupInputPortNotFound

func NewUpdateRemoteProcessGroupInputPortNotFound() *UpdateRemoteProcessGroupInputPortNotFound

NewUpdateRemoteProcessGroupInputPortNotFound creates a UpdateRemoteProcessGroupInputPortNotFound with default headers values

func (*UpdateRemoteProcessGroupInputPortNotFound) Error

func (*UpdateRemoteProcessGroupInputPortNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port not found response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port not found response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port not found response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port not found response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port not found response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortOK

type UpdateRemoteProcessGroupInputPortOK struct {
	Payload *models.RemoteProcessGroupPortEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupInputPortOK

func NewUpdateRemoteProcessGroupInputPortOK() *UpdateRemoteProcessGroupInputPortOK

NewUpdateRemoteProcessGroupInputPortOK creates a UpdateRemoteProcessGroupInputPortOK with default headers values

func (*UpdateRemoteProcessGroupInputPortOK) Error

func (*UpdateRemoteProcessGroupInputPortOK) GetPayload

func (*UpdateRemoteProcessGroupInputPortOK) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupInputPortOK) IsClientError() bool

IsClientError returns true when this update remote process group input port o k response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port o k response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortOK) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupInputPortOK) IsRedirect() bool

IsRedirect returns true when this update remote process group input port o k response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortOK) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupInputPortOK) IsServerError() bool

IsServerError returns true when this update remote process group input port o k response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port o k response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortOK) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortParams

type UpdateRemoteProcessGroupInputPortParams struct {

	/* Body.

	   The remote process group port.
	*/
	Body *models.RemoteProcessGroupPortEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

	/* PortID.

	   The remote process group port id.
	*/
	PortID string

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

UpdateRemoteProcessGroupInputPortParams contains all the parameters to send to the API endpoint

for the update remote process group input port operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupInputPortParams

func NewUpdateRemoteProcessGroupInputPortParams() *UpdateRemoteProcessGroupInputPortParams

NewUpdateRemoteProcessGroupInputPortParams creates a new UpdateRemoteProcessGroupInputPortParams 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 NewUpdateRemoteProcessGroupInputPortParamsWithContext

func NewUpdateRemoteProcessGroupInputPortParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupInputPortParams

NewUpdateRemoteProcessGroupInputPortParamsWithContext creates a new UpdateRemoteProcessGroupInputPortParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupInputPortParamsWithHTTPClient

func NewUpdateRemoteProcessGroupInputPortParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupInputPortParams

NewUpdateRemoteProcessGroupInputPortParamsWithHTTPClient creates a new UpdateRemoteProcessGroupInputPortParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupInputPortParamsWithTimeout

func NewUpdateRemoteProcessGroupInputPortParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupInputPortParams

NewUpdateRemoteProcessGroupInputPortParamsWithTimeout creates a new UpdateRemoteProcessGroupInputPortParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupInputPortParams) SetBody

SetBody adds the body to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) SetContext

SetContext adds the context to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) SetDefaults

func (o *UpdateRemoteProcessGroupInputPortParams) SetDefaults()

SetDefaults hydrates default values in the update remote process group input port params (not the query body).

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

func (*UpdateRemoteProcessGroupInputPortParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) SetID

SetID adds the id to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) SetPortID

func (o *UpdateRemoteProcessGroupInputPortParams) SetPortID(portID string)

SetPortID adds the portId to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) SetTimeout

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

SetTimeout adds the timeout to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithBody

WithBody adds the body to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithContext

WithContext adds the context to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithDefaults

WithDefaults hydrates default values in the update remote process group input port params (not the query body).

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

func (*UpdateRemoteProcessGroupInputPortParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithID

WithID adds the id to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithPortID

WithPortID adds the portID to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WithTimeout

WithTimeout adds the timeout to the update remote process group input port params

func (*UpdateRemoteProcessGroupInputPortParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupInputPortReader

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

UpdateRemoteProcessGroupInputPortReader is a Reader for the UpdateRemoteProcessGroupInputPort structure.

func (*UpdateRemoteProcessGroupInputPortReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupInputPortRunStatusBadRequest

type UpdateRemoteProcessGroupInputPortRunStatusBadRequest struct {
}

UpdateRemoteProcessGroupInputPortRunStatusBadRequest 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 NewUpdateRemoteProcessGroupInputPortRunStatusBadRequest

func NewUpdateRemoteProcessGroupInputPortRunStatusBadRequest() *UpdateRemoteProcessGroupInputPortRunStatusBadRequest

NewUpdateRemoteProcessGroupInputPortRunStatusBadRequest creates a UpdateRemoteProcessGroupInputPortRunStatusBadRequest with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortRunStatusConflict

type UpdateRemoteProcessGroupInputPortRunStatusConflict struct {
}

UpdateRemoteProcessGroupInputPortRunStatusConflict 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 NewUpdateRemoteProcessGroupInputPortRunStatusConflict

func NewUpdateRemoteProcessGroupInputPortRunStatusConflict() *UpdateRemoteProcessGroupInputPortRunStatusConflict

NewUpdateRemoteProcessGroupInputPortRunStatusConflict creates a UpdateRemoteProcessGroupInputPortRunStatusConflict with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusConflict) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortRunStatusForbidden

type UpdateRemoteProcessGroupInputPortRunStatusForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupInputPortRunStatusForbidden

func NewUpdateRemoteProcessGroupInputPortRunStatusForbidden() *UpdateRemoteProcessGroupInputPortRunStatusForbidden

NewUpdateRemoteProcessGroupInputPortRunStatusForbidden creates a UpdateRemoteProcessGroupInputPortRunStatusForbidden with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortRunStatusNotFound

type UpdateRemoteProcessGroupInputPortRunStatusNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupInputPortRunStatusNotFound

func NewUpdateRemoteProcessGroupInputPortRunStatusNotFound() *UpdateRemoteProcessGroupInputPortRunStatusNotFound

NewUpdateRemoteProcessGroupInputPortRunStatusNotFound creates a UpdateRemoteProcessGroupInputPortRunStatusNotFound with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status not found response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status not found response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status not found response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status not found response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status not found response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortRunStatusOK

type UpdateRemoteProcessGroupInputPortRunStatusOK struct {
	Payload *models.RemoteProcessGroupPortEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupInputPortRunStatusOK

func NewUpdateRemoteProcessGroupInputPortRunStatusOK() *UpdateRemoteProcessGroupInputPortRunStatusOK

NewUpdateRemoteProcessGroupInputPortRunStatusOK creates a UpdateRemoteProcessGroupInputPortRunStatusOK with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) GetPayload

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status o k response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status o k response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status o k response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status o k response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status o k response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusOK) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortRunStatusParams

type UpdateRemoteProcessGroupInputPortRunStatusParams struct {

	/* Body.

	   The remote process group port.
	*/
	Body *models.RemotePortRunStatusEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

	/* PortID.

	   The remote process group port id.
	*/
	PortID string

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

UpdateRemoteProcessGroupInputPortRunStatusParams contains all the parameters to send to the API endpoint

for the update remote process group input port run status operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupInputPortRunStatusParams

func NewUpdateRemoteProcessGroupInputPortRunStatusParams() *UpdateRemoteProcessGroupInputPortRunStatusParams

NewUpdateRemoteProcessGroupInputPortRunStatusParams creates a new UpdateRemoteProcessGroupInputPortRunStatusParams 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 NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithContext

func NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupInputPortRunStatusParams

NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithContext creates a new UpdateRemoteProcessGroupInputPortRunStatusParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithHTTPClient

func NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupInputPortRunStatusParams

NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithHTTPClient creates a new UpdateRemoteProcessGroupInputPortRunStatusParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithTimeout

func NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupInputPortRunStatusParams

NewUpdateRemoteProcessGroupInputPortRunStatusParamsWithTimeout creates a new UpdateRemoteProcessGroupInputPortRunStatusParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetBody

SetBody adds the body to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetContext

SetContext adds the context to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetDefaults

SetDefaults hydrates default values in the update remote process group input port run status params (not the query body).

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

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetID

SetID adds the id to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetPortID

SetPortID adds the portId to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) SetTimeout

SetTimeout adds the timeout to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithBody

WithBody adds the body to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithContext

WithContext adds the context to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithDefaults

WithDefaults hydrates default values in the update remote process group input port run status params (not the query body).

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

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithID

WithID adds the id to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithPortID

WithPortID adds the portID to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WithTimeout

WithTimeout adds the timeout to the update remote process group input port run status params

func (*UpdateRemoteProcessGroupInputPortRunStatusParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupInputPortRunStatusReader

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

UpdateRemoteProcessGroupInputPortRunStatusReader is a Reader for the UpdateRemoteProcessGroupInputPortRunStatus structure.

func (*UpdateRemoteProcessGroupInputPortRunStatusReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupInputPortRunStatusUnauthorized

type UpdateRemoteProcessGroupInputPortRunStatusUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupInputPortRunStatusUnauthorized

func NewUpdateRemoteProcessGroupInputPortRunStatusUnauthorized() *UpdateRemoteProcessGroupInputPortRunStatusUnauthorized

NewUpdateRemoteProcessGroupInputPortRunStatusUnauthorized creates a UpdateRemoteProcessGroupInputPortRunStatusUnauthorized with default headers values

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) Error

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port run status unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port run status unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port run status unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port run status unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port run status unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortRunStatusUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupInputPortUnauthorized

type UpdateRemoteProcessGroupInputPortUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupInputPortUnauthorized

func NewUpdateRemoteProcessGroupInputPortUnauthorized() *UpdateRemoteProcessGroupInputPortUnauthorized

NewUpdateRemoteProcessGroupInputPortUnauthorized creates a UpdateRemoteProcessGroupInputPortUnauthorized with default headers values

func (*UpdateRemoteProcessGroupInputPortUnauthorized) Error

func (*UpdateRemoteProcessGroupInputPortUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group input port unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupInputPortUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group input port unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupInputPortUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group input port unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupInputPortUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group input port unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupInputPortUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group input port unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupInputPortUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupNotFound

type UpdateRemoteProcessGroupNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupNotFound

func NewUpdateRemoteProcessGroupNotFound() *UpdateRemoteProcessGroupNotFound

NewUpdateRemoteProcessGroupNotFound creates a UpdateRemoteProcessGroupNotFound with default headers values

func (*UpdateRemoteProcessGroupNotFound) Error

func (*UpdateRemoteProcessGroupNotFound) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupNotFound) IsClientError() bool

IsClientError returns true when this update remote process group not found response has a 4xx status code

func (*UpdateRemoteProcessGroupNotFound) IsCode added in v1.19.1

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

IsCode returns true when this update remote process group not found response a status code equal to that given

func (*UpdateRemoteProcessGroupNotFound) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupNotFound) IsRedirect() bool

IsRedirect returns true when this update remote process group not found response has a 3xx status code

func (*UpdateRemoteProcessGroupNotFound) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupNotFound) IsServerError() bool

IsServerError returns true when this update remote process group not found response has a 5xx status code

func (*UpdateRemoteProcessGroupNotFound) IsSuccess added in v1.19.1

func (o *UpdateRemoteProcessGroupNotFound) IsSuccess() bool

IsSuccess returns true when this update remote process group not found response has a 2xx status code

func (*UpdateRemoteProcessGroupNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupOK

type UpdateRemoteProcessGroupOK struct {
	Payload *models.RemoteProcessGroupEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupOK

func NewUpdateRemoteProcessGroupOK() *UpdateRemoteProcessGroupOK

NewUpdateRemoteProcessGroupOK creates a UpdateRemoteProcessGroupOK with default headers values

func (*UpdateRemoteProcessGroupOK) Error

func (*UpdateRemoteProcessGroupOK) GetPayload

func (*UpdateRemoteProcessGroupOK) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupOK) IsClientError() bool

IsClientError returns true when this update remote process group o k response has a 4xx status code

func (*UpdateRemoteProcessGroupOK) IsCode added in v1.19.1

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

IsCode returns true when this update remote process group o k response a status code equal to that given

func (*UpdateRemoteProcessGroupOK) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupOK) IsRedirect() bool

IsRedirect returns true when this update remote process group o k response has a 3xx status code

func (*UpdateRemoteProcessGroupOK) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupOK) IsServerError() bool

IsServerError returns true when this update remote process group o k response has a 5xx status code

func (*UpdateRemoteProcessGroupOK) IsSuccess added in v1.19.1

func (o *UpdateRemoteProcessGroupOK) IsSuccess() bool

IsSuccess returns true when this update remote process group o k response has a 2xx status code

func (*UpdateRemoteProcessGroupOK) String added in v1.19.1

func (o *UpdateRemoteProcessGroupOK) String() string

type UpdateRemoteProcessGroupOutputPortBadRequest

type UpdateRemoteProcessGroupOutputPortBadRequest struct {
}

UpdateRemoteProcessGroupOutputPortBadRequest 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 NewUpdateRemoteProcessGroupOutputPortBadRequest

func NewUpdateRemoteProcessGroupOutputPortBadRequest() *UpdateRemoteProcessGroupOutputPortBadRequest

NewUpdateRemoteProcessGroupOutputPortBadRequest creates a UpdateRemoteProcessGroupOutputPortBadRequest with default headers values

func (*UpdateRemoteProcessGroupOutputPortBadRequest) Error

func (*UpdateRemoteProcessGroupOutputPortBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortConflict

type UpdateRemoteProcessGroupOutputPortConflict struct {
}

UpdateRemoteProcessGroupOutputPortConflict 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 NewUpdateRemoteProcessGroupOutputPortConflict

func NewUpdateRemoteProcessGroupOutputPortConflict() *UpdateRemoteProcessGroupOutputPortConflict

NewUpdateRemoteProcessGroupOutputPortConflict creates a UpdateRemoteProcessGroupOutputPortConflict with default headers values

func (*UpdateRemoteProcessGroupOutputPortConflict) Error

func (*UpdateRemoteProcessGroupOutputPortConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortConflict) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortForbidden

type UpdateRemoteProcessGroupOutputPortForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupOutputPortForbidden

func NewUpdateRemoteProcessGroupOutputPortForbidden() *UpdateRemoteProcessGroupOutputPortForbidden

NewUpdateRemoteProcessGroupOutputPortForbidden creates a UpdateRemoteProcessGroupOutputPortForbidden with default headers values

func (*UpdateRemoteProcessGroupOutputPortForbidden) Error

func (*UpdateRemoteProcessGroupOutputPortForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortNotFound

type UpdateRemoteProcessGroupOutputPortNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupOutputPortNotFound

func NewUpdateRemoteProcessGroupOutputPortNotFound() *UpdateRemoteProcessGroupOutputPortNotFound

NewUpdateRemoteProcessGroupOutputPortNotFound creates a UpdateRemoteProcessGroupOutputPortNotFound with default headers values

func (*UpdateRemoteProcessGroupOutputPortNotFound) Error

func (*UpdateRemoteProcessGroupOutputPortNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port not found response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port not found response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port not found response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port not found response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port not found response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortOK

type UpdateRemoteProcessGroupOutputPortOK struct {
	Payload *models.RemoteProcessGroupPortEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupOutputPortOK

func NewUpdateRemoteProcessGroupOutputPortOK() *UpdateRemoteProcessGroupOutputPortOK

NewUpdateRemoteProcessGroupOutputPortOK creates a UpdateRemoteProcessGroupOutputPortOK with default headers values

func (*UpdateRemoteProcessGroupOutputPortOK) Error

func (*UpdateRemoteProcessGroupOutputPortOK) GetPayload

func (*UpdateRemoteProcessGroupOutputPortOK) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupOutputPortOK) IsClientError() bool

IsClientError returns true when this update remote process group output port o k response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port o k response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortOK) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port o k response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortOK) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupOutputPortOK) IsServerError() bool

IsServerError returns true when this update remote process group output port o k response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port o k response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortOK) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortParams

type UpdateRemoteProcessGroupOutputPortParams struct {

	/* Body.

	   The remote process group port.
	*/
	Body *models.RemoteProcessGroupPortEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

	/* PortID.

	   The remote process group port id.
	*/
	PortID string

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

UpdateRemoteProcessGroupOutputPortParams contains all the parameters to send to the API endpoint

for the update remote process group output port operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupOutputPortParams

func NewUpdateRemoteProcessGroupOutputPortParams() *UpdateRemoteProcessGroupOutputPortParams

NewUpdateRemoteProcessGroupOutputPortParams creates a new UpdateRemoteProcessGroupOutputPortParams 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 NewUpdateRemoteProcessGroupOutputPortParamsWithContext

func NewUpdateRemoteProcessGroupOutputPortParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupOutputPortParams

NewUpdateRemoteProcessGroupOutputPortParamsWithContext creates a new UpdateRemoteProcessGroupOutputPortParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupOutputPortParamsWithHTTPClient

func NewUpdateRemoteProcessGroupOutputPortParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupOutputPortParams

NewUpdateRemoteProcessGroupOutputPortParamsWithHTTPClient creates a new UpdateRemoteProcessGroupOutputPortParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupOutputPortParamsWithTimeout

func NewUpdateRemoteProcessGroupOutputPortParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupOutputPortParams

NewUpdateRemoteProcessGroupOutputPortParamsWithTimeout creates a new UpdateRemoteProcessGroupOutputPortParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupOutputPortParams) SetBody

SetBody adds the body to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) SetContext

SetContext adds the context to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) SetDefaults

SetDefaults hydrates default values in the update remote process group output port params (not the query body).

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

func (*UpdateRemoteProcessGroupOutputPortParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) SetID

SetID adds the id to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) SetPortID

func (o *UpdateRemoteProcessGroupOutputPortParams) SetPortID(portID string)

SetPortID adds the portId to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) SetTimeout

SetTimeout adds the timeout to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithBody

WithBody adds the body to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithContext

WithContext adds the context to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithDefaults

WithDefaults hydrates default values in the update remote process group output port params (not the query body).

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

func (*UpdateRemoteProcessGroupOutputPortParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithID

WithID adds the id to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithPortID

WithPortID adds the portID to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WithTimeout

WithTimeout adds the timeout to the update remote process group output port params

func (*UpdateRemoteProcessGroupOutputPortParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupOutputPortReader

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

UpdateRemoteProcessGroupOutputPortReader is a Reader for the UpdateRemoteProcessGroupOutputPort structure.

func (*UpdateRemoteProcessGroupOutputPortReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupOutputPortRunStatusBadRequest

type UpdateRemoteProcessGroupOutputPortRunStatusBadRequest struct {
}

UpdateRemoteProcessGroupOutputPortRunStatusBadRequest 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 NewUpdateRemoteProcessGroupOutputPortRunStatusBadRequest

func NewUpdateRemoteProcessGroupOutputPortRunStatusBadRequest() *UpdateRemoteProcessGroupOutputPortRunStatusBadRequest

NewUpdateRemoteProcessGroupOutputPortRunStatusBadRequest creates a UpdateRemoteProcessGroupOutputPortRunStatusBadRequest with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortRunStatusConflict

type UpdateRemoteProcessGroupOutputPortRunStatusConflict struct {
}

UpdateRemoteProcessGroupOutputPortRunStatusConflict 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 NewUpdateRemoteProcessGroupOutputPortRunStatusConflict

func NewUpdateRemoteProcessGroupOutputPortRunStatusConflict() *UpdateRemoteProcessGroupOutputPortRunStatusConflict

NewUpdateRemoteProcessGroupOutputPortRunStatusConflict creates a UpdateRemoteProcessGroupOutputPortRunStatusConflict with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusConflict) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortRunStatusForbidden

type UpdateRemoteProcessGroupOutputPortRunStatusForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupOutputPortRunStatusForbidden

func NewUpdateRemoteProcessGroupOutputPortRunStatusForbidden() *UpdateRemoteProcessGroupOutputPortRunStatusForbidden

NewUpdateRemoteProcessGroupOutputPortRunStatusForbidden creates a UpdateRemoteProcessGroupOutputPortRunStatusForbidden with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortRunStatusNotFound

type UpdateRemoteProcessGroupOutputPortRunStatusNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupOutputPortRunStatusNotFound

func NewUpdateRemoteProcessGroupOutputPortRunStatusNotFound() *UpdateRemoteProcessGroupOutputPortRunStatusNotFound

NewUpdateRemoteProcessGroupOutputPortRunStatusNotFound creates a UpdateRemoteProcessGroupOutputPortRunStatusNotFound with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status not found response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status not found response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status not found response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status not found response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status not found response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortRunStatusOK

type UpdateRemoteProcessGroupOutputPortRunStatusOK struct {
	Payload *models.RemoteProcessGroupPortEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupOutputPortRunStatusOK

func NewUpdateRemoteProcessGroupOutputPortRunStatusOK() *UpdateRemoteProcessGroupOutputPortRunStatusOK

NewUpdateRemoteProcessGroupOutputPortRunStatusOK creates a UpdateRemoteProcessGroupOutputPortRunStatusOK with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) GetPayload

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status o k response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status o k response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status o k response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status o k response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status o k response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusOK) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortRunStatusParams

type UpdateRemoteProcessGroupOutputPortRunStatusParams struct {

	/* Body.

	   The remote process group port.
	*/
	Body *models.RemotePortRunStatusEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

	/* PortID.

	   The remote process group port id.
	*/
	PortID string

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

UpdateRemoteProcessGroupOutputPortRunStatusParams contains all the parameters to send to the API endpoint

for the update remote process group output port run status operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupOutputPortRunStatusParams

func NewUpdateRemoteProcessGroupOutputPortRunStatusParams() *UpdateRemoteProcessGroupOutputPortRunStatusParams

NewUpdateRemoteProcessGroupOutputPortRunStatusParams creates a new UpdateRemoteProcessGroupOutputPortRunStatusParams 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 NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithContext

func NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupOutputPortRunStatusParams

NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithContext creates a new UpdateRemoteProcessGroupOutputPortRunStatusParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithHTTPClient

func NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupOutputPortRunStatusParams

NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithHTTPClient creates a new UpdateRemoteProcessGroupOutputPortRunStatusParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithTimeout

func NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupOutputPortRunStatusParams

NewUpdateRemoteProcessGroupOutputPortRunStatusParamsWithTimeout creates a new UpdateRemoteProcessGroupOutputPortRunStatusParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetBody

SetBody adds the body to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetContext

SetContext adds the context to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetDefaults

SetDefaults hydrates default values in the update remote process group output port run status params (not the query body).

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

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetHTTPClient

SetHTTPClient adds the HTTPClient to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetID

SetID adds the id to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetPortID

SetPortID adds the portId to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) SetTimeout

SetTimeout adds the timeout to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithBody

WithBody adds the body to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithContext

WithContext adds the context to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithDefaults

WithDefaults hydrates default values in the update remote process group output port run status params (not the query body).

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

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithID

WithID adds the id to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithPortID

WithPortID adds the portID to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WithTimeout

WithTimeout adds the timeout to the update remote process group output port run status params

func (*UpdateRemoteProcessGroupOutputPortRunStatusParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupOutputPortRunStatusReader

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

UpdateRemoteProcessGroupOutputPortRunStatusReader is a Reader for the UpdateRemoteProcessGroupOutputPortRunStatus structure.

func (*UpdateRemoteProcessGroupOutputPortRunStatusReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized

type UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupOutputPortRunStatusUnauthorized

func NewUpdateRemoteProcessGroupOutputPortRunStatusUnauthorized() *UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized

NewUpdateRemoteProcessGroupOutputPortRunStatusUnauthorized creates a UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized with default headers values

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) Error

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port run status unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port run status unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port run status unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port run status unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port run status unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortRunStatusUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupOutputPortUnauthorized

type UpdateRemoteProcessGroupOutputPortUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupOutputPortUnauthorized

func NewUpdateRemoteProcessGroupOutputPortUnauthorized() *UpdateRemoteProcessGroupOutputPortUnauthorized

NewUpdateRemoteProcessGroupOutputPortUnauthorized creates a UpdateRemoteProcessGroupOutputPortUnauthorized with default headers values

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) Error

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group output port unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group output port unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group output port unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group output port unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group output port unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupOutputPortUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupParams

type UpdateRemoteProcessGroupParams struct {

	/* Body.

	   The remote process group.
	*/
	Body *models.RemoteProcessGroupEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

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

UpdateRemoteProcessGroupParams contains all the parameters to send to the API endpoint

for the update remote process group operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupParams

func NewUpdateRemoteProcessGroupParams() *UpdateRemoteProcessGroupParams

NewUpdateRemoteProcessGroupParams creates a new UpdateRemoteProcessGroupParams 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 NewUpdateRemoteProcessGroupParamsWithContext

func NewUpdateRemoteProcessGroupParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupParams

NewUpdateRemoteProcessGroupParamsWithContext creates a new UpdateRemoteProcessGroupParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupParamsWithHTTPClient

func NewUpdateRemoteProcessGroupParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupParams

NewUpdateRemoteProcessGroupParamsWithHTTPClient creates a new UpdateRemoteProcessGroupParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupParamsWithTimeout

func NewUpdateRemoteProcessGroupParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupParams

NewUpdateRemoteProcessGroupParamsWithTimeout creates a new UpdateRemoteProcessGroupParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupParams) SetBody

SetBody adds the body to the update remote process group params

func (*UpdateRemoteProcessGroupParams) SetContext

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

SetContext adds the context to the update remote process group params

func (*UpdateRemoteProcessGroupParams) SetDefaults

func (o *UpdateRemoteProcessGroupParams) SetDefaults()

SetDefaults hydrates default values in the update remote process group params (not the query body).

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

func (*UpdateRemoteProcessGroupParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update remote process group params

func (*UpdateRemoteProcessGroupParams) SetID

SetID adds the id to the update remote process group params

func (*UpdateRemoteProcessGroupParams) SetTimeout

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

SetTimeout adds the timeout to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WithBody

WithBody adds the body to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WithContext

WithContext adds the context to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WithDefaults

WithDefaults hydrates default values in the update remote process group params (not the query body).

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

func (*UpdateRemoteProcessGroupParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WithID

WithID adds the id to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WithTimeout

WithTimeout adds the timeout to the update remote process group params

func (*UpdateRemoteProcessGroupParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupReader

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

UpdateRemoteProcessGroupReader is a Reader for the UpdateRemoteProcessGroup structure.

func (*UpdateRemoteProcessGroupReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupRunStatusBadRequest

type UpdateRemoteProcessGroupRunStatusBadRequest struct {
}

UpdateRemoteProcessGroupRunStatusBadRequest 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 NewUpdateRemoteProcessGroupRunStatusBadRequest

func NewUpdateRemoteProcessGroupRunStatusBadRequest() *UpdateRemoteProcessGroupRunStatusBadRequest

NewUpdateRemoteProcessGroupRunStatusBadRequest creates a UpdateRemoteProcessGroupRunStatusBadRequest with default headers values

func (*UpdateRemoteProcessGroupRunStatusBadRequest) Error

func (*UpdateRemoteProcessGroupRunStatusBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run status bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run status bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run status bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusConflict

type UpdateRemoteProcessGroupRunStatusConflict struct {
}

UpdateRemoteProcessGroupRunStatusConflict 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 NewUpdateRemoteProcessGroupRunStatusConflict

func NewUpdateRemoteProcessGroupRunStatusConflict() *UpdateRemoteProcessGroupRunStatusConflict

NewUpdateRemoteProcessGroupRunStatusConflict creates a UpdateRemoteProcessGroupRunStatusConflict with default headers values

func (*UpdateRemoteProcessGroupRunStatusConflict) Error

func (*UpdateRemoteProcessGroupRunStatusConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run status conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run status conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run status conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusConflict) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusForbidden

type UpdateRemoteProcessGroupRunStatusForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupRunStatusForbidden

func NewUpdateRemoteProcessGroupRunStatusForbidden() *UpdateRemoteProcessGroupRunStatusForbidden

NewUpdateRemoteProcessGroupRunStatusForbidden creates a UpdateRemoteProcessGroupRunStatusForbidden with default headers values

func (*UpdateRemoteProcessGroupRunStatusForbidden) Error

func (*UpdateRemoteProcessGroupRunStatusForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run status forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run status forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run status forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusNotFound

type UpdateRemoteProcessGroupRunStatusNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupRunStatusNotFound

func NewUpdateRemoteProcessGroupRunStatusNotFound() *UpdateRemoteProcessGroupRunStatusNotFound

NewUpdateRemoteProcessGroupRunStatusNotFound creates a UpdateRemoteProcessGroupRunStatusNotFound with default headers values

func (*UpdateRemoteProcessGroupRunStatusNotFound) Error

func (*UpdateRemoteProcessGroupRunStatusNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run status not found response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status not found response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run status not found response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run status not found response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status not found response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusOK

type UpdateRemoteProcessGroupRunStatusOK struct {
	Payload *models.RemoteProcessGroupEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupRunStatusOK

func NewUpdateRemoteProcessGroupRunStatusOK() *UpdateRemoteProcessGroupRunStatusOK

NewUpdateRemoteProcessGroupRunStatusOK creates a UpdateRemoteProcessGroupRunStatusOK with default headers values

func (*UpdateRemoteProcessGroupRunStatusOK) Error

func (*UpdateRemoteProcessGroupRunStatusOK) GetPayload

func (*UpdateRemoteProcessGroupRunStatusOK) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupRunStatusOK) IsClientError() bool

IsClientError returns true when this update remote process group run status o k response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status o k response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusOK) IsRedirect added in v1.19.1

func (o *UpdateRemoteProcessGroupRunStatusOK) IsRedirect() bool

IsRedirect returns true when this update remote process group run status o k response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusOK) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupRunStatusOK) IsServerError() bool

IsServerError returns true when this update remote process group run status o k response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status o k response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusOK) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusParams

type UpdateRemoteProcessGroupRunStatusParams struct {

	/* Body.

	   The remote process group run status.
	*/
	Body *models.RemotePortRunStatusEntity

	/* ID.

	   The remote process group id.
	*/
	ID string

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

UpdateRemoteProcessGroupRunStatusParams contains all the parameters to send to the API endpoint

for the update remote process group run status operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupRunStatusParams

func NewUpdateRemoteProcessGroupRunStatusParams() *UpdateRemoteProcessGroupRunStatusParams

NewUpdateRemoteProcessGroupRunStatusParams creates a new UpdateRemoteProcessGroupRunStatusParams 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 NewUpdateRemoteProcessGroupRunStatusParamsWithContext

func NewUpdateRemoteProcessGroupRunStatusParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupRunStatusParams

NewUpdateRemoteProcessGroupRunStatusParamsWithContext creates a new UpdateRemoteProcessGroupRunStatusParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupRunStatusParamsWithHTTPClient

func NewUpdateRemoteProcessGroupRunStatusParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupRunStatusParams

NewUpdateRemoteProcessGroupRunStatusParamsWithHTTPClient creates a new UpdateRemoteProcessGroupRunStatusParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupRunStatusParamsWithTimeout

func NewUpdateRemoteProcessGroupRunStatusParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupRunStatusParams

NewUpdateRemoteProcessGroupRunStatusParamsWithTimeout creates a new UpdateRemoteProcessGroupRunStatusParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupRunStatusParams) SetBody

SetBody adds the body to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) SetContext

SetContext adds the context to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) SetDefaults

func (o *UpdateRemoteProcessGroupRunStatusParams) SetDefaults()

SetDefaults hydrates default values in the update remote process group run status params (not the query body).

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

func (*UpdateRemoteProcessGroupRunStatusParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) SetID

SetID adds the id to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) SetTimeout

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

SetTimeout adds the timeout to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WithBody

WithBody adds the body to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WithContext

WithContext adds the context to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WithDefaults

WithDefaults hydrates default values in the update remote process group run status params (not the query body).

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

func (*UpdateRemoteProcessGroupRunStatusParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WithID

WithID adds the id to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WithTimeout

WithTimeout adds the timeout to the update remote process group run status params

func (*UpdateRemoteProcessGroupRunStatusParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupRunStatusReader

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

UpdateRemoteProcessGroupRunStatusReader is a Reader for the UpdateRemoteProcessGroupRunStatus structure.

func (*UpdateRemoteProcessGroupRunStatusReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupRunStatusUnauthorized

type UpdateRemoteProcessGroupRunStatusUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupRunStatusUnauthorized

func NewUpdateRemoteProcessGroupRunStatusUnauthorized() *UpdateRemoteProcessGroupRunStatusUnauthorized

NewUpdateRemoteProcessGroupRunStatusUnauthorized creates a UpdateRemoteProcessGroupRunStatusUnauthorized with default headers values

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) Error

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run status unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group run status unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run status unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run status unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run status unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesBadRequest

type UpdateRemoteProcessGroupRunStatusesBadRequest struct {
}

UpdateRemoteProcessGroupRunStatusesBadRequest 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 NewUpdateRemoteProcessGroupRunStatusesBadRequest

func NewUpdateRemoteProcessGroupRunStatusesBadRequest() *UpdateRemoteProcessGroupRunStatusesBadRequest

NewUpdateRemoteProcessGroupRunStatusesBadRequest creates a UpdateRemoteProcessGroupRunStatusesBadRequest with default headers values

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) Error

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run statuses bad request response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses bad request response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses bad request response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run statuses bad request response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses bad request response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesBadRequest) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesConflict

type UpdateRemoteProcessGroupRunStatusesConflict struct {
}

UpdateRemoteProcessGroupRunStatusesConflict 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 NewUpdateRemoteProcessGroupRunStatusesConflict

func NewUpdateRemoteProcessGroupRunStatusesConflict() *UpdateRemoteProcessGroupRunStatusesConflict

NewUpdateRemoteProcessGroupRunStatusesConflict creates a UpdateRemoteProcessGroupRunStatusesConflict with default headers values

func (*UpdateRemoteProcessGroupRunStatusesConflict) Error

func (*UpdateRemoteProcessGroupRunStatusesConflict) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run statuses conflict response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesConflict) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses conflict response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesConflict) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses conflict response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesConflict) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run statuses conflict response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesConflict) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses conflict response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesConflict) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesForbidden

type UpdateRemoteProcessGroupRunStatusesForbidden struct {
}

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

Client is not authorized to make this request.

func NewUpdateRemoteProcessGroupRunStatusesForbidden

func NewUpdateRemoteProcessGroupRunStatusesForbidden() *UpdateRemoteProcessGroupRunStatusesForbidden

NewUpdateRemoteProcessGroupRunStatusesForbidden creates a UpdateRemoteProcessGroupRunStatusesForbidden with default headers values

func (*UpdateRemoteProcessGroupRunStatusesForbidden) Error

func (*UpdateRemoteProcessGroupRunStatusesForbidden) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run statuses forbidden response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesForbidden) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses forbidden response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesForbidden) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses forbidden response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesForbidden) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run statuses forbidden response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesForbidden) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses forbidden response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesForbidden) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesNotFound

type UpdateRemoteProcessGroupRunStatusesNotFound struct {
}

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

The specified resource could not be found.

func NewUpdateRemoteProcessGroupRunStatusesNotFound

func NewUpdateRemoteProcessGroupRunStatusesNotFound() *UpdateRemoteProcessGroupRunStatusesNotFound

NewUpdateRemoteProcessGroupRunStatusesNotFound creates a UpdateRemoteProcessGroupRunStatusesNotFound with default headers values

func (*UpdateRemoteProcessGroupRunStatusesNotFound) Error

func (*UpdateRemoteProcessGroupRunStatusesNotFound) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run statuses not found response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesNotFound) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses not found response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesNotFound) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses not found response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesNotFound) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run statuses not found response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesNotFound) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses not found response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesNotFound) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesOK

type UpdateRemoteProcessGroupRunStatusesOK struct {
	Payload *models.RemoteProcessGroupEntity
}

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

successful operation

func NewUpdateRemoteProcessGroupRunStatusesOK

func NewUpdateRemoteProcessGroupRunStatusesOK() *UpdateRemoteProcessGroupRunStatusesOK

NewUpdateRemoteProcessGroupRunStatusesOK creates a UpdateRemoteProcessGroupRunStatusesOK with default headers values

func (*UpdateRemoteProcessGroupRunStatusesOK) Error

func (*UpdateRemoteProcessGroupRunStatusesOK) GetPayload

func (*UpdateRemoteProcessGroupRunStatusesOK) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupRunStatusesOK) IsClientError() bool

IsClientError returns true when this update remote process group run statuses o k response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesOK) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses o k response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesOK) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses o k response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesOK) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupRunStatusesOK) IsServerError() bool

IsServerError returns true when this update remote process group run statuses o k response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesOK) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses o k response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesOK) String added in v1.19.1

type UpdateRemoteProcessGroupRunStatusesParams

type UpdateRemoteProcessGroupRunStatusesParams struct {

	/* Body.

	   The remote process groups run status.
	*/
	Body *models.RemotePortRunStatusEntity

	/* ID.

	   The process group id.
	*/
	ID string

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

UpdateRemoteProcessGroupRunStatusesParams contains all the parameters to send to the API endpoint

for the update remote process group run statuses operation.

Typically these are written to a http.Request.

func NewUpdateRemoteProcessGroupRunStatusesParams

func NewUpdateRemoteProcessGroupRunStatusesParams() *UpdateRemoteProcessGroupRunStatusesParams

NewUpdateRemoteProcessGroupRunStatusesParams creates a new UpdateRemoteProcessGroupRunStatusesParams 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 NewUpdateRemoteProcessGroupRunStatusesParamsWithContext

func NewUpdateRemoteProcessGroupRunStatusesParamsWithContext(ctx context.Context) *UpdateRemoteProcessGroupRunStatusesParams

NewUpdateRemoteProcessGroupRunStatusesParamsWithContext creates a new UpdateRemoteProcessGroupRunStatusesParams object with the ability to set a context for a request.

func NewUpdateRemoteProcessGroupRunStatusesParamsWithHTTPClient

func NewUpdateRemoteProcessGroupRunStatusesParamsWithHTTPClient(client *http.Client) *UpdateRemoteProcessGroupRunStatusesParams

NewUpdateRemoteProcessGroupRunStatusesParamsWithHTTPClient creates a new UpdateRemoteProcessGroupRunStatusesParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateRemoteProcessGroupRunStatusesParamsWithTimeout

func NewUpdateRemoteProcessGroupRunStatusesParamsWithTimeout(timeout time.Duration) *UpdateRemoteProcessGroupRunStatusesParams

NewUpdateRemoteProcessGroupRunStatusesParamsWithTimeout creates a new UpdateRemoteProcessGroupRunStatusesParams object with the ability to set a timeout on a request.

func (*UpdateRemoteProcessGroupRunStatusesParams) SetBody

SetBody adds the body to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) SetContext

SetContext adds the context to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) SetDefaults

SetDefaults hydrates default values in the update remote process group run statuses params (not the query body).

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

func (*UpdateRemoteProcessGroupRunStatusesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) SetID

SetID adds the id to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) SetTimeout

SetTimeout adds the timeout to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WithBody

WithBody adds the body to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WithContext

WithContext adds the context to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WithDefaults

WithDefaults hydrates default values in the update remote process group run statuses params (not the query body).

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

func (*UpdateRemoteProcessGroupRunStatusesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WithID

WithID adds the id to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WithTimeout

WithTimeout adds the timeout to the update remote process group run statuses params

func (*UpdateRemoteProcessGroupRunStatusesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateRemoteProcessGroupRunStatusesReader

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

UpdateRemoteProcessGroupRunStatusesReader is a Reader for the UpdateRemoteProcessGroupRunStatuses structure.

func (*UpdateRemoteProcessGroupRunStatusesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateRemoteProcessGroupRunStatusesUnauthorized

type UpdateRemoteProcessGroupRunStatusesUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupRunStatusesUnauthorized

func NewUpdateRemoteProcessGroupRunStatusesUnauthorized() *UpdateRemoteProcessGroupRunStatusesUnauthorized

NewUpdateRemoteProcessGroupRunStatusesUnauthorized creates a UpdateRemoteProcessGroupRunStatusesUnauthorized with default headers values

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) Error

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) IsClientError added in v1.19.1

IsClientError returns true when this update remote process group run statuses unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group run statuses unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group run statuses unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) IsServerError added in v1.19.1

IsServerError returns true when this update remote process group run statuses unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group run statuses unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupRunStatusesUnauthorized) String added in v1.19.1

type UpdateRemoteProcessGroupUnauthorized

type UpdateRemoteProcessGroupUnauthorized struct {
}

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

Client could not be authenticated.

func NewUpdateRemoteProcessGroupUnauthorized

func NewUpdateRemoteProcessGroupUnauthorized() *UpdateRemoteProcessGroupUnauthorized

NewUpdateRemoteProcessGroupUnauthorized creates a UpdateRemoteProcessGroupUnauthorized with default headers values

func (*UpdateRemoteProcessGroupUnauthorized) Error

func (*UpdateRemoteProcessGroupUnauthorized) IsClientError added in v1.19.1

func (o *UpdateRemoteProcessGroupUnauthorized) IsClientError() bool

IsClientError returns true when this update remote process group unauthorized response has a 4xx status code

func (*UpdateRemoteProcessGroupUnauthorized) IsCode added in v1.19.1

IsCode returns true when this update remote process group unauthorized response a status code equal to that given

func (*UpdateRemoteProcessGroupUnauthorized) IsRedirect added in v1.19.1

IsRedirect returns true when this update remote process group unauthorized response has a 3xx status code

func (*UpdateRemoteProcessGroupUnauthorized) IsServerError added in v1.19.1

func (o *UpdateRemoteProcessGroupUnauthorized) IsServerError() bool

IsServerError returns true when this update remote process group unauthorized response has a 5xx status code

func (*UpdateRemoteProcessGroupUnauthorized) IsSuccess added in v1.19.1

IsSuccess returns true when this update remote process group unauthorized response has a 2xx status code

func (*UpdateRemoteProcessGroupUnauthorized) String added in v1.19.1

Jump to

Keyboard shortcuts

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