preparation

package
v0.5.13 Latest Latest
Warning

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

Go to latest
Published: Mar 7, 2024 License: Apache-2.0, MIT Imports: 10 Imported by: 1

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AddOutputStorageBadRequest added in v0.4.1

type AddOutputStorageBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewAddOutputStorageBadRequest added in v0.4.1

func NewAddOutputStorageBadRequest() *AddOutputStorageBadRequest

NewAddOutputStorageBadRequest creates a AddOutputStorageBadRequest with default headers values

func (*AddOutputStorageBadRequest) Code added in v0.4.1

func (o *AddOutputStorageBadRequest) Code() int

Code gets the status code for the add output storage bad request response

func (*AddOutputStorageBadRequest) Error added in v0.4.1

func (*AddOutputStorageBadRequest) GetPayload added in v0.4.1

func (*AddOutputStorageBadRequest) IsClientError added in v0.4.1

func (o *AddOutputStorageBadRequest) IsClientError() bool

IsClientError returns true when this add output storage bad request response has a 4xx status code

func (*AddOutputStorageBadRequest) IsCode added in v0.4.1

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

IsCode returns true when this add output storage bad request response a status code equal to that given

func (*AddOutputStorageBadRequest) IsRedirect added in v0.4.1

func (o *AddOutputStorageBadRequest) IsRedirect() bool

IsRedirect returns true when this add output storage bad request response has a 3xx status code

func (*AddOutputStorageBadRequest) IsServerError added in v0.4.1

func (o *AddOutputStorageBadRequest) IsServerError() bool

IsServerError returns true when this add output storage bad request response has a 5xx status code

func (*AddOutputStorageBadRequest) IsSuccess added in v0.4.1

func (o *AddOutputStorageBadRequest) IsSuccess() bool

IsSuccess returns true when this add output storage bad request response has a 2xx status code

func (*AddOutputStorageBadRequest) String added in v0.4.1

func (o *AddOutputStorageBadRequest) String() string

type AddOutputStorageInternalServerError added in v0.4.1

type AddOutputStorageInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewAddOutputStorageInternalServerError added in v0.4.1

func NewAddOutputStorageInternalServerError() *AddOutputStorageInternalServerError

NewAddOutputStorageInternalServerError creates a AddOutputStorageInternalServerError with default headers values

func (*AddOutputStorageInternalServerError) Code added in v0.4.1

Code gets the status code for the add output storage internal server error response

func (*AddOutputStorageInternalServerError) Error added in v0.4.1

func (*AddOutputStorageInternalServerError) GetPayload added in v0.4.1

func (*AddOutputStorageInternalServerError) IsClientError added in v0.4.1

func (o *AddOutputStorageInternalServerError) IsClientError() bool

IsClientError returns true when this add output storage internal server error response has a 4xx status code

func (*AddOutputStorageInternalServerError) IsCode added in v0.4.1

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

func (*AddOutputStorageInternalServerError) IsRedirect added in v0.4.1

func (o *AddOutputStorageInternalServerError) IsRedirect() bool

IsRedirect returns true when this add output storage internal server error response has a 3xx status code

func (*AddOutputStorageInternalServerError) IsServerError added in v0.4.1

func (o *AddOutputStorageInternalServerError) IsServerError() bool

IsServerError returns true when this add output storage internal server error response has a 5xx status code

func (*AddOutputStorageInternalServerError) IsSuccess added in v0.4.1

IsSuccess returns true when this add output storage internal server error response has a 2xx status code

func (*AddOutputStorageInternalServerError) String added in v0.4.1

type AddOutputStorageOK added in v0.4.1

type AddOutputStorageOK struct {
	Payload *models.ModelPreparation
}

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

OK

func NewAddOutputStorageOK added in v0.4.1

func NewAddOutputStorageOK() *AddOutputStorageOK

NewAddOutputStorageOK creates a AddOutputStorageOK with default headers values

func (*AddOutputStorageOK) Code added in v0.4.1

func (o *AddOutputStorageOK) Code() int

Code gets the status code for the add output storage o k response

func (*AddOutputStorageOK) Error added in v0.4.1

func (o *AddOutputStorageOK) Error() string

func (*AddOutputStorageOK) GetPayload added in v0.4.1

func (o *AddOutputStorageOK) GetPayload() *models.ModelPreparation

func (*AddOutputStorageOK) IsClientError added in v0.4.1

func (o *AddOutputStorageOK) IsClientError() bool

IsClientError returns true when this add output storage o k response has a 4xx status code

func (*AddOutputStorageOK) IsCode added in v0.4.1

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

IsCode returns true when this add output storage o k response a status code equal to that given

func (*AddOutputStorageOK) IsRedirect added in v0.4.1

func (o *AddOutputStorageOK) IsRedirect() bool

IsRedirect returns true when this add output storage o k response has a 3xx status code

func (*AddOutputStorageOK) IsServerError added in v0.4.1

func (o *AddOutputStorageOK) IsServerError() bool

IsServerError returns true when this add output storage o k response has a 5xx status code

func (*AddOutputStorageOK) IsSuccess added in v0.4.1

func (o *AddOutputStorageOK) IsSuccess() bool

IsSuccess returns true when this add output storage o k response has a 2xx status code

func (*AddOutputStorageOK) String added in v0.4.1

func (o *AddOutputStorageOK) String() string

type AddOutputStorageParams added in v0.4.1

type AddOutputStorageParams struct {

	/* ID.

	   Preparation ID or name
	*/
	ID string

	/* Name.

	   Output storage ID or name
	*/
	Name string

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

AddOutputStorageParams contains all the parameters to send to the API endpoint

for the add output storage operation.

Typically these are written to a http.Request.

func NewAddOutputStorageParams added in v0.4.1

func NewAddOutputStorageParams() *AddOutputStorageParams

NewAddOutputStorageParams creates a new AddOutputStorageParams 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 NewAddOutputStorageParamsWithContext added in v0.4.1

func NewAddOutputStorageParamsWithContext(ctx context.Context) *AddOutputStorageParams

NewAddOutputStorageParamsWithContext creates a new AddOutputStorageParams object with the ability to set a context for a request.

func NewAddOutputStorageParamsWithHTTPClient added in v0.4.1

func NewAddOutputStorageParamsWithHTTPClient(client *http.Client) *AddOutputStorageParams

NewAddOutputStorageParamsWithHTTPClient creates a new AddOutputStorageParams object with the ability to set a custom HTTPClient for a request.

func NewAddOutputStorageParamsWithTimeout added in v0.4.1

func NewAddOutputStorageParamsWithTimeout(timeout time.Duration) *AddOutputStorageParams

NewAddOutputStorageParamsWithTimeout creates a new AddOutputStorageParams object with the ability to set a timeout on a request.

func (*AddOutputStorageParams) SetContext added in v0.4.1

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

SetContext adds the context to the add output storage params

func (*AddOutputStorageParams) SetDefaults added in v0.4.1

func (o *AddOutputStorageParams) SetDefaults()

SetDefaults hydrates default values in the add output storage params (not the query body).

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

func (*AddOutputStorageParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the add output storage params

func (*AddOutputStorageParams) SetID added in v0.4.1

func (o *AddOutputStorageParams) SetID(id string)

SetID adds the id to the add output storage params

func (*AddOutputStorageParams) SetName added in v0.4.1

func (o *AddOutputStorageParams) SetName(name string)

SetName adds the name to the add output storage params

func (*AddOutputStorageParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the add output storage params

func (*AddOutputStorageParams) WithContext added in v0.4.1

WithContext adds the context to the add output storage params

func (*AddOutputStorageParams) WithDefaults added in v0.4.1

WithDefaults hydrates default values in the add output storage params (not the query body).

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

func (*AddOutputStorageParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the add output storage params

func (*AddOutputStorageParams) WithID added in v0.4.1

WithID adds the id to the add output storage params

func (*AddOutputStorageParams) WithName added in v0.4.1

WithName adds the name to the add output storage params

func (*AddOutputStorageParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the add output storage params

func (*AddOutputStorageParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type AddOutputStorageReader added in v0.4.1

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

AddOutputStorageReader is a Reader for the AddOutputStorage structure.

func (*AddOutputStorageReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type AddSourceStorageBadRequest added in v0.4.1

type AddSourceStorageBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewAddSourceStorageBadRequest added in v0.4.1

func NewAddSourceStorageBadRequest() *AddSourceStorageBadRequest

NewAddSourceStorageBadRequest creates a AddSourceStorageBadRequest with default headers values

func (*AddSourceStorageBadRequest) Code added in v0.4.1

func (o *AddSourceStorageBadRequest) Code() int

Code gets the status code for the add source storage bad request response

func (*AddSourceStorageBadRequest) Error added in v0.4.1

func (*AddSourceStorageBadRequest) GetPayload added in v0.4.1

func (*AddSourceStorageBadRequest) IsClientError added in v0.4.1

func (o *AddSourceStorageBadRequest) IsClientError() bool

IsClientError returns true when this add source storage bad request response has a 4xx status code

func (*AddSourceStorageBadRequest) IsCode added in v0.4.1

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

IsCode returns true when this add source storage bad request response a status code equal to that given

func (*AddSourceStorageBadRequest) IsRedirect added in v0.4.1

func (o *AddSourceStorageBadRequest) IsRedirect() bool

IsRedirect returns true when this add source storage bad request response has a 3xx status code

func (*AddSourceStorageBadRequest) IsServerError added in v0.4.1

func (o *AddSourceStorageBadRequest) IsServerError() bool

IsServerError returns true when this add source storage bad request response has a 5xx status code

func (*AddSourceStorageBadRequest) IsSuccess added in v0.4.1

func (o *AddSourceStorageBadRequest) IsSuccess() bool

IsSuccess returns true when this add source storage bad request response has a 2xx status code

func (*AddSourceStorageBadRequest) String added in v0.4.1

func (o *AddSourceStorageBadRequest) String() string

type AddSourceStorageInternalServerError added in v0.4.1

type AddSourceStorageInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewAddSourceStorageInternalServerError added in v0.4.1

func NewAddSourceStorageInternalServerError() *AddSourceStorageInternalServerError

NewAddSourceStorageInternalServerError creates a AddSourceStorageInternalServerError with default headers values

func (*AddSourceStorageInternalServerError) Code added in v0.4.1

Code gets the status code for the add source storage internal server error response

func (*AddSourceStorageInternalServerError) Error added in v0.4.1

func (*AddSourceStorageInternalServerError) GetPayload added in v0.4.1

func (*AddSourceStorageInternalServerError) IsClientError added in v0.4.1

func (o *AddSourceStorageInternalServerError) IsClientError() bool

IsClientError returns true when this add source storage internal server error response has a 4xx status code

func (*AddSourceStorageInternalServerError) IsCode added in v0.4.1

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

func (*AddSourceStorageInternalServerError) IsRedirect added in v0.4.1

func (o *AddSourceStorageInternalServerError) IsRedirect() bool

IsRedirect returns true when this add source storage internal server error response has a 3xx status code

func (*AddSourceStorageInternalServerError) IsServerError added in v0.4.1

func (o *AddSourceStorageInternalServerError) IsServerError() bool

IsServerError returns true when this add source storage internal server error response has a 5xx status code

func (*AddSourceStorageInternalServerError) IsSuccess added in v0.4.1

IsSuccess returns true when this add source storage internal server error response has a 2xx status code

func (*AddSourceStorageInternalServerError) String added in v0.4.1

type AddSourceStorageOK added in v0.4.1

type AddSourceStorageOK struct {
	Payload *models.ModelPreparation
}

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

OK

func NewAddSourceStorageOK added in v0.4.1

func NewAddSourceStorageOK() *AddSourceStorageOK

NewAddSourceStorageOK creates a AddSourceStorageOK with default headers values

func (*AddSourceStorageOK) Code added in v0.4.1

func (o *AddSourceStorageOK) Code() int

Code gets the status code for the add source storage o k response

func (*AddSourceStorageOK) Error added in v0.4.1

func (o *AddSourceStorageOK) Error() string

func (*AddSourceStorageOK) GetPayload added in v0.4.1

func (o *AddSourceStorageOK) GetPayload() *models.ModelPreparation

func (*AddSourceStorageOK) IsClientError added in v0.4.1

func (o *AddSourceStorageOK) IsClientError() bool

IsClientError returns true when this add source storage o k response has a 4xx status code

func (*AddSourceStorageOK) IsCode added in v0.4.1

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

IsCode returns true when this add source storage o k response a status code equal to that given

func (*AddSourceStorageOK) IsRedirect added in v0.4.1

func (o *AddSourceStorageOK) IsRedirect() bool

IsRedirect returns true when this add source storage o k response has a 3xx status code

func (*AddSourceStorageOK) IsServerError added in v0.4.1

func (o *AddSourceStorageOK) IsServerError() bool

IsServerError returns true when this add source storage o k response has a 5xx status code

func (*AddSourceStorageOK) IsSuccess added in v0.4.1

func (o *AddSourceStorageOK) IsSuccess() bool

IsSuccess returns true when this add source storage o k response has a 2xx status code

func (*AddSourceStorageOK) String added in v0.4.1

func (o *AddSourceStorageOK) String() string

type AddSourceStorageParams added in v0.4.1

type AddSourceStorageParams struct {

	/* ID.

	   Preparation ID or name
	*/
	ID string

	/* Name.

	   Source storage ID or name
	*/
	Name string

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

AddSourceStorageParams contains all the parameters to send to the API endpoint

for the add source storage operation.

Typically these are written to a http.Request.

func NewAddSourceStorageParams added in v0.4.1

func NewAddSourceStorageParams() *AddSourceStorageParams

NewAddSourceStorageParams creates a new AddSourceStorageParams 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 NewAddSourceStorageParamsWithContext added in v0.4.1

func NewAddSourceStorageParamsWithContext(ctx context.Context) *AddSourceStorageParams

NewAddSourceStorageParamsWithContext creates a new AddSourceStorageParams object with the ability to set a context for a request.

func NewAddSourceStorageParamsWithHTTPClient added in v0.4.1

func NewAddSourceStorageParamsWithHTTPClient(client *http.Client) *AddSourceStorageParams

NewAddSourceStorageParamsWithHTTPClient creates a new AddSourceStorageParams object with the ability to set a custom HTTPClient for a request.

func NewAddSourceStorageParamsWithTimeout added in v0.4.1

func NewAddSourceStorageParamsWithTimeout(timeout time.Duration) *AddSourceStorageParams

NewAddSourceStorageParamsWithTimeout creates a new AddSourceStorageParams object with the ability to set a timeout on a request.

func (*AddSourceStorageParams) SetContext added in v0.4.1

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

SetContext adds the context to the add source storage params

func (*AddSourceStorageParams) SetDefaults added in v0.4.1

func (o *AddSourceStorageParams) SetDefaults()

SetDefaults hydrates default values in the add source storage params (not the query body).

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

func (*AddSourceStorageParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the add source storage params

func (*AddSourceStorageParams) SetID added in v0.4.1

func (o *AddSourceStorageParams) SetID(id string)

SetID adds the id to the add source storage params

func (*AddSourceStorageParams) SetName added in v0.4.1

func (o *AddSourceStorageParams) SetName(name string)

SetName adds the name to the add source storage params

func (*AddSourceStorageParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the add source storage params

func (*AddSourceStorageParams) WithContext added in v0.4.1

WithContext adds the context to the add source storage params

func (*AddSourceStorageParams) WithDefaults added in v0.4.1

WithDefaults hydrates default values in the add source storage params (not the query body).

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

func (*AddSourceStorageParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the add source storage params

func (*AddSourceStorageParams) WithID added in v0.4.1

WithID adds the id to the add source storage params

func (*AddSourceStorageParams) WithName added in v0.4.1

WithName adds the name to the add source storage params

func (*AddSourceStorageParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the add source storage params

func (*AddSourceStorageParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type AddSourceStorageReader added in v0.4.1

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

AddSourceStorageReader is a Reader for the AddSourceStorage structure.

func (*AddSourceStorageReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type Client

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

Client for preparation API

func (*Client) AddOutputStorage added in v0.4.1

func (a *Client) AddOutputStorage(params *AddOutputStorageParams, opts ...ClientOption) (*AddOutputStorageOK, error)

AddOutputStorage attaches an output storage with a preparation

func (*Client) AddSourceStorage added in v0.4.1

func (a *Client) AddSourceStorage(params *AddSourceStorageParams, opts ...ClientOption) (*AddSourceStorageOK, error)

AddSourceStorage attaches a source storage with a preparation

func (*Client) CreatePreparation added in v0.4.1

func (a *Client) CreatePreparation(params *CreatePreparationParams, opts ...ClientOption) (*CreatePreparationOK, error)

CreatePreparation creates a new preparation

func (*Client) ExplorePreparation added in v0.4.1

func (a *Client) ExplorePreparation(params *ExplorePreparationParams, opts ...ClientOption) (*ExplorePreparationOK, error)

ExplorePreparation explores a directory in a prepared source storage

func (*Client) GetPreparationStatus added in v0.4.1

func (a *Client) GetPreparationStatus(params *GetPreparationStatusParams, opts ...ClientOption) (*GetPreparationStatusOK, error)

GetPreparationStatus gets the status of a preparation

func (*Client) ListPreparations added in v0.4.1

func (a *Client) ListPreparations(params *ListPreparationsParams, opts ...ClientOption) (*ListPreparationsOK, error)

ListPreparations lists all preparations

func (*Client) RemoveOutputStorage added in v0.4.1

func (a *Client) RemoveOutputStorage(params *RemoveOutputStorageParams, opts ...ClientOption) (*RemoveOutputStorageOK, error)

RemoveOutputStorage detaches an output storage from a preparation

func (*Client) RemovePreparation added in v0.5.2

func (a *Client) RemovePreparation(params *RemovePreparationParams, opts ...ClientOption) (*RemovePreparationNoContent, error)

RemovePreparation removes a preparation

func (*Client) RenamePreparation added in v0.5.0

func (a *Client) RenamePreparation(params *RenamePreparationParams, opts ...ClientOption) (*RenamePreparationOK, error)

RenamePreparation renames a preparation

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	AddOutputStorage(params *AddOutputStorageParams, opts ...ClientOption) (*AddOutputStorageOK, error)

	AddSourceStorage(params *AddSourceStorageParams, opts ...ClientOption) (*AddSourceStorageOK, error)

	CreatePreparation(params *CreatePreparationParams, opts ...ClientOption) (*CreatePreparationOK, error)

	ExplorePreparation(params *ExplorePreparationParams, opts ...ClientOption) (*ExplorePreparationOK, error)

	GetPreparationStatus(params *GetPreparationStatusParams, opts ...ClientOption) (*GetPreparationStatusOK, error)

	ListPreparations(params *ListPreparationsParams, opts ...ClientOption) (*ListPreparationsOK, error)

	RemoveOutputStorage(params *RemoveOutputStorageParams, opts ...ClientOption) (*RemoveOutputStorageOK, error)

	RemovePreparation(params *RemovePreparationParams, opts ...ClientOption) (*RemovePreparationNoContent, error)

	RenamePreparation(params *RenamePreparationParams, opts ...ClientOption) (*RenamePreparationOK, 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 preparation API client.

type CreatePreparationBadRequest added in v0.4.1

type CreatePreparationBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewCreatePreparationBadRequest added in v0.4.1

func NewCreatePreparationBadRequest() *CreatePreparationBadRequest

NewCreatePreparationBadRequest creates a CreatePreparationBadRequest with default headers values

func (*CreatePreparationBadRequest) Code added in v0.4.1

func (o *CreatePreparationBadRequest) Code() int

Code gets the status code for the create preparation bad request response

func (*CreatePreparationBadRequest) Error added in v0.4.1

func (*CreatePreparationBadRequest) GetPayload added in v0.4.1

func (*CreatePreparationBadRequest) IsClientError added in v0.4.1

func (o *CreatePreparationBadRequest) IsClientError() bool

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

func (*CreatePreparationBadRequest) IsCode added in v0.4.1

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

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

func (*CreatePreparationBadRequest) IsRedirect added in v0.4.1

func (o *CreatePreparationBadRequest) IsRedirect() bool

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

func (*CreatePreparationBadRequest) IsServerError added in v0.4.1

func (o *CreatePreparationBadRequest) IsServerError() bool

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

func (*CreatePreparationBadRequest) IsSuccess added in v0.4.1

func (o *CreatePreparationBadRequest) IsSuccess() bool

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

func (*CreatePreparationBadRequest) String added in v0.4.1

func (o *CreatePreparationBadRequest) String() string

type CreatePreparationInternalServerError added in v0.4.1

type CreatePreparationInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewCreatePreparationInternalServerError added in v0.4.1

func NewCreatePreparationInternalServerError() *CreatePreparationInternalServerError

NewCreatePreparationInternalServerError creates a CreatePreparationInternalServerError with default headers values

func (*CreatePreparationInternalServerError) Code added in v0.4.1

Code gets the status code for the create preparation internal server error response

func (*CreatePreparationInternalServerError) Error added in v0.4.1

func (*CreatePreparationInternalServerError) GetPayload added in v0.4.1

func (*CreatePreparationInternalServerError) IsClientError added in v0.4.1

func (o *CreatePreparationInternalServerError) IsClientError() bool

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

func (*CreatePreparationInternalServerError) IsCode added in v0.4.1

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

func (*CreatePreparationInternalServerError) IsRedirect added in v0.4.1

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

func (*CreatePreparationInternalServerError) IsServerError added in v0.4.1

func (o *CreatePreparationInternalServerError) IsServerError() bool

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

func (*CreatePreparationInternalServerError) IsSuccess added in v0.4.1

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

func (*CreatePreparationInternalServerError) String added in v0.4.1

type CreatePreparationOK added in v0.4.1

type CreatePreparationOK struct {
	Payload *models.ModelPreparation
}

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

OK

func NewCreatePreparationOK added in v0.4.1

func NewCreatePreparationOK() *CreatePreparationOK

NewCreatePreparationOK creates a CreatePreparationOK with default headers values

func (*CreatePreparationOK) Code added in v0.4.1

func (o *CreatePreparationOK) Code() int

Code gets the status code for the create preparation o k response

func (*CreatePreparationOK) Error added in v0.4.1

func (o *CreatePreparationOK) Error() string

func (*CreatePreparationOK) GetPayload added in v0.4.1

func (o *CreatePreparationOK) GetPayload() *models.ModelPreparation

func (*CreatePreparationOK) IsClientError added in v0.4.1

func (o *CreatePreparationOK) IsClientError() bool

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

func (*CreatePreparationOK) IsCode added in v0.4.1

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

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

func (*CreatePreparationOK) IsRedirect added in v0.4.1

func (o *CreatePreparationOK) IsRedirect() bool

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

func (*CreatePreparationOK) IsServerError added in v0.4.1

func (o *CreatePreparationOK) IsServerError() bool

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

func (*CreatePreparationOK) IsSuccess added in v0.4.1

func (o *CreatePreparationOK) IsSuccess() bool

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

func (*CreatePreparationOK) String added in v0.4.1

func (o *CreatePreparationOK) String() string

type CreatePreparationParams added in v0.4.1

type CreatePreparationParams struct {

	/* Request.

	   Create Request
	*/
	Request *models.DataprepCreateRequest

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

CreatePreparationParams contains all the parameters to send to the API endpoint

for the create preparation operation.

Typically these are written to a http.Request.

func NewCreatePreparationParams added in v0.4.1

func NewCreatePreparationParams() *CreatePreparationParams

NewCreatePreparationParams creates a new CreatePreparationParams 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 NewCreatePreparationParamsWithContext added in v0.4.1

func NewCreatePreparationParamsWithContext(ctx context.Context) *CreatePreparationParams

NewCreatePreparationParamsWithContext creates a new CreatePreparationParams object with the ability to set a context for a request.

func NewCreatePreparationParamsWithHTTPClient added in v0.4.1

func NewCreatePreparationParamsWithHTTPClient(client *http.Client) *CreatePreparationParams

NewCreatePreparationParamsWithHTTPClient creates a new CreatePreparationParams object with the ability to set a custom HTTPClient for a request.

func NewCreatePreparationParamsWithTimeout added in v0.4.1

func NewCreatePreparationParamsWithTimeout(timeout time.Duration) *CreatePreparationParams

NewCreatePreparationParamsWithTimeout creates a new CreatePreparationParams object with the ability to set a timeout on a request.

func (*CreatePreparationParams) SetContext added in v0.4.1

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

SetContext adds the context to the create preparation params

func (*CreatePreparationParams) SetDefaults added in v0.4.1

func (o *CreatePreparationParams) SetDefaults()

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

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

func (*CreatePreparationParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the create preparation params

func (*CreatePreparationParams) SetRequest added in v0.4.1

func (o *CreatePreparationParams) SetRequest(request *models.DataprepCreateRequest)

SetRequest adds the request to the create preparation params

func (*CreatePreparationParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the create preparation params

func (*CreatePreparationParams) WithContext added in v0.4.1

WithContext adds the context to the create preparation params

func (*CreatePreparationParams) WithDefaults added in v0.4.1

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

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

func (*CreatePreparationParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the create preparation params

func (*CreatePreparationParams) WithRequest added in v0.4.1

WithRequest adds the request to the create preparation params

func (*CreatePreparationParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the create preparation params

func (*CreatePreparationParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type CreatePreparationReader added in v0.4.1

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

CreatePreparationReader is a Reader for the CreatePreparation structure.

func (*CreatePreparationReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type ExplorePreparationBadRequest added in v0.4.1

type ExplorePreparationBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewExplorePreparationBadRequest added in v0.4.1

func NewExplorePreparationBadRequest() *ExplorePreparationBadRequest

NewExplorePreparationBadRequest creates a ExplorePreparationBadRequest with default headers values

func (*ExplorePreparationBadRequest) Code added in v0.4.1

Code gets the status code for the explore preparation bad request response

func (*ExplorePreparationBadRequest) Error added in v0.4.1

func (*ExplorePreparationBadRequest) GetPayload added in v0.4.1

func (*ExplorePreparationBadRequest) IsClientError added in v0.4.1

func (o *ExplorePreparationBadRequest) IsClientError() bool

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

func (*ExplorePreparationBadRequest) IsCode added in v0.4.1

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

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

func (*ExplorePreparationBadRequest) IsRedirect added in v0.4.1

func (o *ExplorePreparationBadRequest) IsRedirect() bool

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

func (*ExplorePreparationBadRequest) IsServerError added in v0.4.1

func (o *ExplorePreparationBadRequest) IsServerError() bool

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

func (*ExplorePreparationBadRequest) IsSuccess added in v0.4.1

func (o *ExplorePreparationBadRequest) IsSuccess() bool

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

func (*ExplorePreparationBadRequest) String added in v0.4.1

type ExplorePreparationInternalServerError added in v0.4.1

type ExplorePreparationInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewExplorePreparationInternalServerError added in v0.4.1

func NewExplorePreparationInternalServerError() *ExplorePreparationInternalServerError

NewExplorePreparationInternalServerError creates a ExplorePreparationInternalServerError with default headers values

func (*ExplorePreparationInternalServerError) Code added in v0.4.1

Code gets the status code for the explore preparation internal server error response

func (*ExplorePreparationInternalServerError) Error added in v0.4.1

func (*ExplorePreparationInternalServerError) GetPayload added in v0.4.1

func (*ExplorePreparationInternalServerError) IsClientError added in v0.4.1

func (o *ExplorePreparationInternalServerError) IsClientError() bool

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

func (*ExplorePreparationInternalServerError) IsCode added in v0.4.1

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

func (*ExplorePreparationInternalServerError) IsRedirect added in v0.4.1

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

func (*ExplorePreparationInternalServerError) IsServerError added in v0.4.1

func (o *ExplorePreparationInternalServerError) IsServerError() bool

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

func (*ExplorePreparationInternalServerError) IsSuccess added in v0.4.1

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

func (*ExplorePreparationInternalServerError) String added in v0.4.1

type ExplorePreparationOK added in v0.4.1

type ExplorePreparationOK struct {
	Payload *models.DataprepExploreResult
}

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

OK

func NewExplorePreparationOK added in v0.4.1

func NewExplorePreparationOK() *ExplorePreparationOK

NewExplorePreparationOK creates a ExplorePreparationOK with default headers values

func (*ExplorePreparationOK) Code added in v0.4.1

func (o *ExplorePreparationOK) Code() int

Code gets the status code for the explore preparation o k response

func (*ExplorePreparationOK) Error added in v0.4.1

func (o *ExplorePreparationOK) Error() string

func (*ExplorePreparationOK) GetPayload added in v0.4.1

func (*ExplorePreparationOK) IsClientError added in v0.4.1

func (o *ExplorePreparationOK) IsClientError() bool

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

func (*ExplorePreparationOK) IsCode added in v0.4.1

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

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

func (*ExplorePreparationOK) IsRedirect added in v0.4.1

func (o *ExplorePreparationOK) IsRedirect() bool

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

func (*ExplorePreparationOK) IsServerError added in v0.4.1

func (o *ExplorePreparationOK) IsServerError() bool

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

func (*ExplorePreparationOK) IsSuccess added in v0.4.1

func (o *ExplorePreparationOK) IsSuccess() bool

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

func (*ExplorePreparationOK) String added in v0.4.1

func (o *ExplorePreparationOK) String() string

type ExplorePreparationParams added in v0.4.1

type ExplorePreparationParams struct {

	/* ID.

	   Preparation ID or name
	*/
	ID string

	/* Name.

	   Source storage ID or name
	*/
	Name string

	/* Path.

	   Directory path
	*/
	Path string

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

ExplorePreparationParams contains all the parameters to send to the API endpoint

for the explore preparation operation.

Typically these are written to a http.Request.

func NewExplorePreparationParams added in v0.4.1

func NewExplorePreparationParams() *ExplorePreparationParams

NewExplorePreparationParams creates a new ExplorePreparationParams 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 NewExplorePreparationParamsWithContext added in v0.4.1

func NewExplorePreparationParamsWithContext(ctx context.Context) *ExplorePreparationParams

NewExplorePreparationParamsWithContext creates a new ExplorePreparationParams object with the ability to set a context for a request.

func NewExplorePreparationParamsWithHTTPClient added in v0.4.1

func NewExplorePreparationParamsWithHTTPClient(client *http.Client) *ExplorePreparationParams

NewExplorePreparationParamsWithHTTPClient creates a new ExplorePreparationParams object with the ability to set a custom HTTPClient for a request.

func NewExplorePreparationParamsWithTimeout added in v0.4.1

func NewExplorePreparationParamsWithTimeout(timeout time.Duration) *ExplorePreparationParams

NewExplorePreparationParamsWithTimeout creates a new ExplorePreparationParams object with the ability to set a timeout on a request.

func (*ExplorePreparationParams) SetContext added in v0.4.1

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

SetContext adds the context to the explore preparation params

func (*ExplorePreparationParams) SetDefaults added in v0.4.1

func (o *ExplorePreparationParams) SetDefaults()

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

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

func (*ExplorePreparationParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the explore preparation params

func (*ExplorePreparationParams) SetID added in v0.4.1

func (o *ExplorePreparationParams) SetID(id string)

SetID adds the id to the explore preparation params

func (*ExplorePreparationParams) SetName added in v0.4.1

func (o *ExplorePreparationParams) SetName(name string)

SetName adds the name to the explore preparation params

func (*ExplorePreparationParams) SetPath added in v0.4.1

func (o *ExplorePreparationParams) SetPath(path string)

SetPath adds the path to the explore preparation params

func (*ExplorePreparationParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the explore preparation params

func (*ExplorePreparationParams) WithContext added in v0.4.1

WithContext adds the context to the explore preparation params

func (*ExplorePreparationParams) WithDefaults added in v0.4.1

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

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

func (*ExplorePreparationParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the explore preparation params

func (*ExplorePreparationParams) WithID added in v0.4.1

WithID adds the id to the explore preparation params

func (*ExplorePreparationParams) WithName added in v0.4.1

WithName adds the name to the explore preparation params

func (*ExplorePreparationParams) WithPath added in v0.4.1

WithPath adds the path to the explore preparation params

func (*ExplorePreparationParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the explore preparation params

func (*ExplorePreparationParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type ExplorePreparationReader added in v0.4.1

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

ExplorePreparationReader is a Reader for the ExplorePreparation structure.

func (*ExplorePreparationReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type GetPreparationStatusBadRequest added in v0.4.1

type GetPreparationStatusBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewGetPreparationStatusBadRequest added in v0.4.1

func NewGetPreparationStatusBadRequest() *GetPreparationStatusBadRequest

NewGetPreparationStatusBadRequest creates a GetPreparationStatusBadRequest with default headers values

func (*GetPreparationStatusBadRequest) Code added in v0.4.1

Code gets the status code for the get preparation status bad request response

func (*GetPreparationStatusBadRequest) Error added in v0.4.1

func (*GetPreparationStatusBadRequest) GetPayload added in v0.4.1

func (*GetPreparationStatusBadRequest) IsClientError added in v0.4.1

func (o *GetPreparationStatusBadRequest) IsClientError() bool

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

func (*GetPreparationStatusBadRequest) IsCode added in v0.4.1

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

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

func (*GetPreparationStatusBadRequest) IsRedirect added in v0.4.1

func (o *GetPreparationStatusBadRequest) IsRedirect() bool

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

func (*GetPreparationStatusBadRequest) IsServerError added in v0.4.1

func (o *GetPreparationStatusBadRequest) IsServerError() bool

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

func (*GetPreparationStatusBadRequest) IsSuccess added in v0.4.1

func (o *GetPreparationStatusBadRequest) IsSuccess() bool

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

func (*GetPreparationStatusBadRequest) String added in v0.4.1

type GetPreparationStatusInternalServerError added in v0.4.1

type GetPreparationStatusInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewGetPreparationStatusInternalServerError added in v0.4.1

func NewGetPreparationStatusInternalServerError() *GetPreparationStatusInternalServerError

NewGetPreparationStatusInternalServerError creates a GetPreparationStatusInternalServerError with default headers values

func (*GetPreparationStatusInternalServerError) Code added in v0.4.1

Code gets the status code for the get preparation status internal server error response

func (*GetPreparationStatusInternalServerError) Error added in v0.4.1

func (*GetPreparationStatusInternalServerError) GetPayload added in v0.4.1

func (*GetPreparationStatusInternalServerError) IsClientError added in v0.4.1

func (o *GetPreparationStatusInternalServerError) IsClientError() bool

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

func (*GetPreparationStatusInternalServerError) IsCode added in v0.4.1

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

func (*GetPreparationStatusInternalServerError) IsRedirect added in v0.4.1

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

func (*GetPreparationStatusInternalServerError) IsServerError added in v0.4.1

func (o *GetPreparationStatusInternalServerError) IsServerError() bool

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

func (*GetPreparationStatusInternalServerError) IsSuccess added in v0.4.1

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

func (*GetPreparationStatusInternalServerError) String added in v0.4.1

type GetPreparationStatusOK added in v0.4.1

type GetPreparationStatusOK struct {
	Payload []*models.JobSourceStatus
}

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

OK

func NewGetPreparationStatusOK added in v0.4.1

func NewGetPreparationStatusOK() *GetPreparationStatusOK

NewGetPreparationStatusOK creates a GetPreparationStatusOK with default headers values

func (*GetPreparationStatusOK) Code added in v0.4.1

func (o *GetPreparationStatusOK) Code() int

Code gets the status code for the get preparation status o k response

func (*GetPreparationStatusOK) Error added in v0.4.1

func (o *GetPreparationStatusOK) Error() string

func (*GetPreparationStatusOK) GetPayload added in v0.4.1

func (o *GetPreparationStatusOK) GetPayload() []*models.JobSourceStatus

func (*GetPreparationStatusOK) IsClientError added in v0.4.1

func (o *GetPreparationStatusOK) IsClientError() bool

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

func (*GetPreparationStatusOK) IsCode added in v0.4.1

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

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

func (*GetPreparationStatusOK) IsRedirect added in v0.4.1

func (o *GetPreparationStatusOK) IsRedirect() bool

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

func (*GetPreparationStatusOK) IsServerError added in v0.4.1

func (o *GetPreparationStatusOK) IsServerError() bool

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

func (*GetPreparationStatusOK) IsSuccess added in v0.4.1

func (o *GetPreparationStatusOK) IsSuccess() bool

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

func (*GetPreparationStatusOK) String added in v0.4.1

func (o *GetPreparationStatusOK) String() string

type GetPreparationStatusParams added in v0.4.1

type GetPreparationStatusParams struct {

	/* ID.

	   Preparation ID or name
	*/
	ID string

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

GetPreparationStatusParams contains all the parameters to send to the API endpoint

for the get preparation status operation.

Typically these are written to a http.Request.

func NewGetPreparationStatusParams added in v0.4.1

func NewGetPreparationStatusParams() *GetPreparationStatusParams

NewGetPreparationStatusParams creates a new GetPreparationStatusParams 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 NewGetPreparationStatusParamsWithContext added in v0.4.1

func NewGetPreparationStatusParamsWithContext(ctx context.Context) *GetPreparationStatusParams

NewGetPreparationStatusParamsWithContext creates a new GetPreparationStatusParams object with the ability to set a context for a request.

func NewGetPreparationStatusParamsWithHTTPClient added in v0.4.1

func NewGetPreparationStatusParamsWithHTTPClient(client *http.Client) *GetPreparationStatusParams

NewGetPreparationStatusParamsWithHTTPClient creates a new GetPreparationStatusParams object with the ability to set a custom HTTPClient for a request.

func NewGetPreparationStatusParamsWithTimeout added in v0.4.1

func NewGetPreparationStatusParamsWithTimeout(timeout time.Duration) *GetPreparationStatusParams

NewGetPreparationStatusParamsWithTimeout creates a new GetPreparationStatusParams object with the ability to set a timeout on a request.

func (*GetPreparationStatusParams) SetContext added in v0.4.1

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

SetContext adds the context to the get preparation status params

func (*GetPreparationStatusParams) SetDefaults added in v0.4.1

func (o *GetPreparationStatusParams) SetDefaults()

SetDefaults hydrates default values in the get preparation status params (not the query body).

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

func (*GetPreparationStatusParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the get preparation status params

func (*GetPreparationStatusParams) SetID added in v0.4.1

func (o *GetPreparationStatusParams) SetID(id string)

SetID adds the id to the get preparation status params

func (*GetPreparationStatusParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the get preparation status params

func (*GetPreparationStatusParams) WithContext added in v0.4.1

WithContext adds the context to the get preparation status params

func (*GetPreparationStatusParams) WithDefaults added in v0.4.1

WithDefaults hydrates default values in the get preparation status params (not the query body).

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

func (*GetPreparationStatusParams) WithHTTPClient added in v0.4.1

WithHTTPClient adds the HTTPClient to the get preparation status params

func (*GetPreparationStatusParams) WithID added in v0.4.1

WithID adds the id to the get preparation status params

func (*GetPreparationStatusParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the get preparation status params

func (*GetPreparationStatusParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type GetPreparationStatusReader added in v0.4.1

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

GetPreparationStatusReader is a Reader for the GetPreparationStatus structure.

func (*GetPreparationStatusReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type ListPreparationsBadRequest added in v0.4.1

type ListPreparationsBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewListPreparationsBadRequest added in v0.4.1

func NewListPreparationsBadRequest() *ListPreparationsBadRequest

NewListPreparationsBadRequest creates a ListPreparationsBadRequest with default headers values

func (*ListPreparationsBadRequest) Code added in v0.4.1

func (o *ListPreparationsBadRequest) Code() int

Code gets the status code for the list preparations bad request response

func (*ListPreparationsBadRequest) Error added in v0.4.1

func (*ListPreparationsBadRequest) GetPayload added in v0.4.1

func (*ListPreparationsBadRequest) IsClientError added in v0.4.1

func (o *ListPreparationsBadRequest) IsClientError() bool

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

func (*ListPreparationsBadRequest) IsCode added in v0.4.1

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

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

func (*ListPreparationsBadRequest) IsRedirect added in v0.4.1

func (o *ListPreparationsBadRequest) IsRedirect() bool

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

func (*ListPreparationsBadRequest) IsServerError added in v0.4.1

func (o *ListPreparationsBadRequest) IsServerError() bool

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

func (*ListPreparationsBadRequest) IsSuccess added in v0.4.1

func (o *ListPreparationsBadRequest) IsSuccess() bool

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

func (*ListPreparationsBadRequest) String added in v0.4.1

func (o *ListPreparationsBadRequest) String() string

type ListPreparationsInternalServerError added in v0.4.1

type ListPreparationsInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewListPreparationsInternalServerError added in v0.4.1

func NewListPreparationsInternalServerError() *ListPreparationsInternalServerError

NewListPreparationsInternalServerError creates a ListPreparationsInternalServerError with default headers values

func (*ListPreparationsInternalServerError) Code added in v0.4.1

Code gets the status code for the list preparations internal server error response

func (*ListPreparationsInternalServerError) Error added in v0.4.1

func (*ListPreparationsInternalServerError) GetPayload added in v0.4.1

func (*ListPreparationsInternalServerError) IsClientError added in v0.4.1

func (o *ListPreparationsInternalServerError) IsClientError() bool

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

func (*ListPreparationsInternalServerError) IsCode added in v0.4.1

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

func (*ListPreparationsInternalServerError) IsRedirect added in v0.4.1

func (o *ListPreparationsInternalServerError) IsRedirect() bool

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

func (*ListPreparationsInternalServerError) IsServerError added in v0.4.1

func (o *ListPreparationsInternalServerError) IsServerError() bool

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

func (*ListPreparationsInternalServerError) IsSuccess added in v0.4.1

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

func (*ListPreparationsInternalServerError) String added in v0.4.1

type ListPreparationsOK added in v0.4.1

type ListPreparationsOK struct {
	Payload []*models.ModelPreparation
}

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

OK

func NewListPreparationsOK added in v0.4.1

func NewListPreparationsOK() *ListPreparationsOK

NewListPreparationsOK creates a ListPreparationsOK with default headers values

func (*ListPreparationsOK) Code added in v0.4.1

func (o *ListPreparationsOK) Code() int

Code gets the status code for the list preparations o k response

func (*ListPreparationsOK) Error added in v0.4.1

func (o *ListPreparationsOK) Error() string

func (*ListPreparationsOK) GetPayload added in v0.4.1

func (o *ListPreparationsOK) GetPayload() []*models.ModelPreparation

func (*ListPreparationsOK) IsClientError added in v0.4.1

func (o *ListPreparationsOK) IsClientError() bool

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

func (*ListPreparationsOK) IsCode added in v0.4.1

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

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

func (*ListPreparationsOK) IsRedirect added in v0.4.1

func (o *ListPreparationsOK) IsRedirect() bool

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

func (*ListPreparationsOK) IsServerError added in v0.4.1

func (o *ListPreparationsOK) IsServerError() bool

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

func (*ListPreparationsOK) IsSuccess added in v0.4.1

func (o *ListPreparationsOK) IsSuccess() bool

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

func (*ListPreparationsOK) String added in v0.4.1

func (o *ListPreparationsOK) String() string

type ListPreparationsParams added in v0.4.1

type ListPreparationsParams struct {
	Context    context.Context
	HTTPClient *http.Client
	// contains filtered or unexported fields
}

ListPreparationsParams contains all the parameters to send to the API endpoint

for the list preparations operation.

Typically these are written to a http.Request.

func NewListPreparationsParams added in v0.4.1

func NewListPreparationsParams() *ListPreparationsParams

NewListPreparationsParams creates a new ListPreparationsParams 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 NewListPreparationsParamsWithContext added in v0.4.1

func NewListPreparationsParamsWithContext(ctx context.Context) *ListPreparationsParams

NewListPreparationsParamsWithContext creates a new ListPreparationsParams object with the ability to set a context for a request.

func NewListPreparationsParamsWithHTTPClient added in v0.4.1

func NewListPreparationsParamsWithHTTPClient(client *http.Client) *ListPreparationsParams

NewListPreparationsParamsWithHTTPClient creates a new ListPreparationsParams object with the ability to set a custom HTTPClient for a request.

func NewListPreparationsParamsWithTimeout added in v0.4.1

func NewListPreparationsParamsWithTimeout(timeout time.Duration) *ListPreparationsParams

NewListPreparationsParamsWithTimeout creates a new ListPreparationsParams object with the ability to set a timeout on a request.

func (*ListPreparationsParams) SetContext added in v0.4.1

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

SetContext adds the context to the list preparations params

func (*ListPreparationsParams) SetDefaults added in v0.4.1

func (o *ListPreparationsParams) SetDefaults()

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

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

func (*ListPreparationsParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the list preparations params

func (*ListPreparationsParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the list preparations params

func (*ListPreparationsParams) WithContext added in v0.4.1

WithContext adds the context to the list preparations params

func (*ListPreparationsParams) WithDefaults added in v0.4.1

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

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

func (*ListPreparationsParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the list preparations params

func (*ListPreparationsParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the list preparations params

func (*ListPreparationsParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type ListPreparationsReader added in v0.4.1

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

ListPreparationsReader is a Reader for the ListPreparations structure.

func (*ListPreparationsReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type RemoveOutputStorageBadRequest added in v0.4.1

type RemoveOutputStorageBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewRemoveOutputStorageBadRequest added in v0.4.1

func NewRemoveOutputStorageBadRequest() *RemoveOutputStorageBadRequest

NewRemoveOutputStorageBadRequest creates a RemoveOutputStorageBadRequest with default headers values

func (*RemoveOutputStorageBadRequest) Code added in v0.4.1

Code gets the status code for the remove output storage bad request response

func (*RemoveOutputStorageBadRequest) Error added in v0.4.1

func (*RemoveOutputStorageBadRequest) GetPayload added in v0.4.1

func (*RemoveOutputStorageBadRequest) IsClientError added in v0.4.1

func (o *RemoveOutputStorageBadRequest) IsClientError() bool

IsClientError returns true when this remove output storage bad request response has a 4xx status code

func (*RemoveOutputStorageBadRequest) IsCode added in v0.4.1

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

IsCode returns true when this remove output storage bad request response a status code equal to that given

func (*RemoveOutputStorageBadRequest) IsRedirect added in v0.4.1

func (o *RemoveOutputStorageBadRequest) IsRedirect() bool

IsRedirect returns true when this remove output storage bad request response has a 3xx status code

func (*RemoveOutputStorageBadRequest) IsServerError added in v0.4.1

func (o *RemoveOutputStorageBadRequest) IsServerError() bool

IsServerError returns true when this remove output storage bad request response has a 5xx status code

func (*RemoveOutputStorageBadRequest) IsSuccess added in v0.4.1

func (o *RemoveOutputStorageBadRequest) IsSuccess() bool

IsSuccess returns true when this remove output storage bad request response has a 2xx status code

func (*RemoveOutputStorageBadRequest) String added in v0.4.1

type RemoveOutputStorageInternalServerError added in v0.4.1

type RemoveOutputStorageInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewRemoveOutputStorageInternalServerError added in v0.4.1

func NewRemoveOutputStorageInternalServerError() *RemoveOutputStorageInternalServerError

NewRemoveOutputStorageInternalServerError creates a RemoveOutputStorageInternalServerError with default headers values

func (*RemoveOutputStorageInternalServerError) Code added in v0.4.1

Code gets the status code for the remove output storage internal server error response

func (*RemoveOutputStorageInternalServerError) Error added in v0.4.1

func (*RemoveOutputStorageInternalServerError) GetPayload added in v0.4.1

func (*RemoveOutputStorageInternalServerError) IsClientError added in v0.4.1

func (o *RemoveOutputStorageInternalServerError) IsClientError() bool

IsClientError returns true when this remove output storage internal server error response has a 4xx status code

func (*RemoveOutputStorageInternalServerError) IsCode added in v0.4.1

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

func (*RemoveOutputStorageInternalServerError) IsRedirect added in v0.4.1

IsRedirect returns true when this remove output storage internal server error response has a 3xx status code

func (*RemoveOutputStorageInternalServerError) IsServerError added in v0.4.1

func (o *RemoveOutputStorageInternalServerError) IsServerError() bool

IsServerError returns true when this remove output storage internal server error response has a 5xx status code

func (*RemoveOutputStorageInternalServerError) IsSuccess added in v0.4.1

IsSuccess returns true when this remove output storage internal server error response has a 2xx status code

func (*RemoveOutputStorageInternalServerError) String added in v0.4.1

type RemoveOutputStorageOK added in v0.4.1

type RemoveOutputStorageOK struct {
	Payload *models.ModelPreparation
}

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

OK

func NewRemoveOutputStorageOK added in v0.4.1

func NewRemoveOutputStorageOK() *RemoveOutputStorageOK

NewRemoveOutputStorageOK creates a RemoveOutputStorageOK with default headers values

func (*RemoveOutputStorageOK) Code added in v0.4.1

func (o *RemoveOutputStorageOK) Code() int

Code gets the status code for the remove output storage o k response

func (*RemoveOutputStorageOK) Error added in v0.4.1

func (o *RemoveOutputStorageOK) Error() string

func (*RemoveOutputStorageOK) GetPayload added in v0.4.1

func (*RemoveOutputStorageOK) IsClientError added in v0.4.1

func (o *RemoveOutputStorageOK) IsClientError() bool

IsClientError returns true when this remove output storage o k response has a 4xx status code

func (*RemoveOutputStorageOK) IsCode added in v0.4.1

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

IsCode returns true when this remove output storage o k response a status code equal to that given

func (*RemoveOutputStorageOK) IsRedirect added in v0.4.1

func (o *RemoveOutputStorageOK) IsRedirect() bool

IsRedirect returns true when this remove output storage o k response has a 3xx status code

func (*RemoveOutputStorageOK) IsServerError added in v0.4.1

func (o *RemoveOutputStorageOK) IsServerError() bool

IsServerError returns true when this remove output storage o k response has a 5xx status code

func (*RemoveOutputStorageOK) IsSuccess added in v0.4.1

func (o *RemoveOutputStorageOK) IsSuccess() bool

IsSuccess returns true when this remove output storage o k response has a 2xx status code

func (*RemoveOutputStorageOK) String added in v0.4.1

func (o *RemoveOutputStorageOK) String() string

type RemoveOutputStorageParams added in v0.4.1

type RemoveOutputStorageParams struct {

	/* ID.

	   Preparation ID or name
	*/
	ID string

	/* Name.

	   Output storage ID or name
	*/
	Name string

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

RemoveOutputStorageParams contains all the parameters to send to the API endpoint

for the remove output storage operation.

Typically these are written to a http.Request.

func NewRemoveOutputStorageParams added in v0.4.1

func NewRemoveOutputStorageParams() *RemoveOutputStorageParams

NewRemoveOutputStorageParams creates a new RemoveOutputStorageParams 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 NewRemoveOutputStorageParamsWithContext added in v0.4.1

func NewRemoveOutputStorageParamsWithContext(ctx context.Context) *RemoveOutputStorageParams

NewRemoveOutputStorageParamsWithContext creates a new RemoveOutputStorageParams object with the ability to set a context for a request.

func NewRemoveOutputStorageParamsWithHTTPClient added in v0.4.1

func NewRemoveOutputStorageParamsWithHTTPClient(client *http.Client) *RemoveOutputStorageParams

NewRemoveOutputStorageParamsWithHTTPClient creates a new RemoveOutputStorageParams object with the ability to set a custom HTTPClient for a request.

func NewRemoveOutputStorageParamsWithTimeout added in v0.4.1

func NewRemoveOutputStorageParamsWithTimeout(timeout time.Duration) *RemoveOutputStorageParams

NewRemoveOutputStorageParamsWithTimeout creates a new RemoveOutputStorageParams object with the ability to set a timeout on a request.

func (*RemoveOutputStorageParams) SetContext added in v0.4.1

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

SetContext adds the context to the remove output storage params

func (*RemoveOutputStorageParams) SetDefaults added in v0.4.1

func (o *RemoveOutputStorageParams) SetDefaults()

SetDefaults hydrates default values in the remove output storage params (not the query body).

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

func (*RemoveOutputStorageParams) SetHTTPClient added in v0.4.1

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

SetHTTPClient adds the HTTPClient to the remove output storage params

func (*RemoveOutputStorageParams) SetID added in v0.4.1

func (o *RemoveOutputStorageParams) SetID(id string)

SetID adds the id to the remove output storage params

func (*RemoveOutputStorageParams) SetName added in v0.4.1

func (o *RemoveOutputStorageParams) SetName(name string)

SetName adds the name to the remove output storage params

func (*RemoveOutputStorageParams) SetTimeout added in v0.4.1

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

SetTimeout adds the timeout to the remove output storage params

func (*RemoveOutputStorageParams) WithContext added in v0.4.1

WithContext adds the context to the remove output storage params

func (*RemoveOutputStorageParams) WithDefaults added in v0.4.1

WithDefaults hydrates default values in the remove output storage params (not the query body).

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

func (*RemoveOutputStorageParams) WithHTTPClient added in v0.4.1

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

WithHTTPClient adds the HTTPClient to the remove output storage params

func (*RemoveOutputStorageParams) WithID added in v0.4.1

WithID adds the id to the remove output storage params

func (*RemoveOutputStorageParams) WithName added in v0.4.1

WithName adds the name to the remove output storage params

func (*RemoveOutputStorageParams) WithTimeout added in v0.4.1

WithTimeout adds the timeout to the remove output storage params

func (*RemoveOutputStorageParams) WriteToRequest added in v0.4.1

WriteToRequest writes these params to a swagger request

type RemoveOutputStorageReader added in v0.4.1

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

RemoveOutputStorageReader is a Reader for the RemoveOutputStorage structure.

func (*RemoveOutputStorageReader) ReadResponse added in v0.4.1

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

ReadResponse reads a server response into the received o.

type RemovePreparationBadRequest added in v0.5.2

type RemovePreparationBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewRemovePreparationBadRequest added in v0.5.2

func NewRemovePreparationBadRequest() *RemovePreparationBadRequest

NewRemovePreparationBadRequest creates a RemovePreparationBadRequest with default headers values

func (*RemovePreparationBadRequest) Code added in v0.5.2

func (o *RemovePreparationBadRequest) Code() int

Code gets the status code for the remove preparation bad request response

func (*RemovePreparationBadRequest) Error added in v0.5.2

func (*RemovePreparationBadRequest) GetPayload added in v0.5.2

func (*RemovePreparationBadRequest) IsClientError added in v0.5.2

func (o *RemovePreparationBadRequest) IsClientError() bool

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

func (*RemovePreparationBadRequest) IsCode added in v0.5.2

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

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

func (*RemovePreparationBadRequest) IsRedirect added in v0.5.2

func (o *RemovePreparationBadRequest) IsRedirect() bool

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

func (*RemovePreparationBadRequest) IsServerError added in v0.5.2

func (o *RemovePreparationBadRequest) IsServerError() bool

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

func (*RemovePreparationBadRequest) IsSuccess added in v0.5.2

func (o *RemovePreparationBadRequest) IsSuccess() bool

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

func (*RemovePreparationBadRequest) String added in v0.5.2

func (o *RemovePreparationBadRequest) String() string

type RemovePreparationInternalServerError added in v0.5.2

type RemovePreparationInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewRemovePreparationInternalServerError added in v0.5.2

func NewRemovePreparationInternalServerError() *RemovePreparationInternalServerError

NewRemovePreparationInternalServerError creates a RemovePreparationInternalServerError with default headers values

func (*RemovePreparationInternalServerError) Code added in v0.5.2

Code gets the status code for the remove preparation internal server error response

func (*RemovePreparationInternalServerError) Error added in v0.5.2

func (*RemovePreparationInternalServerError) GetPayload added in v0.5.2

func (*RemovePreparationInternalServerError) IsClientError added in v0.5.2

func (o *RemovePreparationInternalServerError) IsClientError() bool

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

func (*RemovePreparationInternalServerError) IsCode added in v0.5.2

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

func (*RemovePreparationInternalServerError) IsRedirect added in v0.5.2

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

func (*RemovePreparationInternalServerError) IsServerError added in v0.5.2

func (o *RemovePreparationInternalServerError) IsServerError() bool

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

func (*RemovePreparationInternalServerError) IsSuccess added in v0.5.2

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

func (*RemovePreparationInternalServerError) String added in v0.5.2

type RemovePreparationNoContent added in v0.5.2

type RemovePreparationNoContent struct {
}

RemovePreparationNoContent describes a response with status code 204, with default header values.

No Content

func NewRemovePreparationNoContent added in v0.5.2

func NewRemovePreparationNoContent() *RemovePreparationNoContent

NewRemovePreparationNoContent creates a RemovePreparationNoContent with default headers values

func (*RemovePreparationNoContent) Code added in v0.5.2

func (o *RemovePreparationNoContent) Code() int

Code gets the status code for the remove preparation no content response

func (*RemovePreparationNoContent) Error added in v0.5.2

func (*RemovePreparationNoContent) IsClientError added in v0.5.2

func (o *RemovePreparationNoContent) IsClientError() bool

IsClientError returns true when this remove preparation no content response has a 4xx status code

func (*RemovePreparationNoContent) IsCode added in v0.5.2

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

IsCode returns true when this remove preparation no content response a status code equal to that given

func (*RemovePreparationNoContent) IsRedirect added in v0.5.2

func (o *RemovePreparationNoContent) IsRedirect() bool

IsRedirect returns true when this remove preparation no content response has a 3xx status code

func (*RemovePreparationNoContent) IsServerError added in v0.5.2

func (o *RemovePreparationNoContent) IsServerError() bool

IsServerError returns true when this remove preparation no content response has a 5xx status code

func (*RemovePreparationNoContent) IsSuccess added in v0.5.2

func (o *RemovePreparationNoContent) IsSuccess() bool

IsSuccess returns true when this remove preparation no content response has a 2xx status code

func (*RemovePreparationNoContent) String added in v0.5.2

func (o *RemovePreparationNoContent) String() string

type RemovePreparationParams added in v0.5.2

type RemovePreparationParams struct {

	/* Name.

	   Preparation ID or name
	*/
	Name string

	/* Request.

	   Remove Request
	*/
	Request *models.DataprepRemoveRequest

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

RemovePreparationParams contains all the parameters to send to the API endpoint

for the remove preparation operation.

Typically these are written to a http.Request.

func NewRemovePreparationParams added in v0.5.2

func NewRemovePreparationParams() *RemovePreparationParams

NewRemovePreparationParams creates a new RemovePreparationParams 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 NewRemovePreparationParamsWithContext added in v0.5.2

func NewRemovePreparationParamsWithContext(ctx context.Context) *RemovePreparationParams

NewRemovePreparationParamsWithContext creates a new RemovePreparationParams object with the ability to set a context for a request.

func NewRemovePreparationParamsWithHTTPClient added in v0.5.2

func NewRemovePreparationParamsWithHTTPClient(client *http.Client) *RemovePreparationParams

NewRemovePreparationParamsWithHTTPClient creates a new RemovePreparationParams object with the ability to set a custom HTTPClient for a request.

func NewRemovePreparationParamsWithTimeout added in v0.5.2

func NewRemovePreparationParamsWithTimeout(timeout time.Duration) *RemovePreparationParams

NewRemovePreparationParamsWithTimeout creates a new RemovePreparationParams object with the ability to set a timeout on a request.

func (*RemovePreparationParams) SetContext added in v0.5.2

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

SetContext adds the context to the remove preparation params

func (*RemovePreparationParams) SetDefaults added in v0.5.2

func (o *RemovePreparationParams) SetDefaults()

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

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

func (*RemovePreparationParams) SetHTTPClient added in v0.5.2

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

SetHTTPClient adds the HTTPClient to the remove preparation params

func (*RemovePreparationParams) SetName added in v0.5.2

func (o *RemovePreparationParams) SetName(name string)

SetName adds the name to the remove preparation params

func (*RemovePreparationParams) SetRequest added in v0.5.2

func (o *RemovePreparationParams) SetRequest(request *models.DataprepRemoveRequest)

SetRequest adds the request to the remove preparation params

func (*RemovePreparationParams) SetTimeout added in v0.5.2

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

SetTimeout adds the timeout to the remove preparation params

func (*RemovePreparationParams) WithContext added in v0.5.2

WithContext adds the context to the remove preparation params

func (*RemovePreparationParams) WithDefaults added in v0.5.2

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

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

func (*RemovePreparationParams) WithHTTPClient added in v0.5.2

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

WithHTTPClient adds the HTTPClient to the remove preparation params

func (*RemovePreparationParams) WithName added in v0.5.2

WithName adds the name to the remove preparation params

func (*RemovePreparationParams) WithRequest added in v0.5.2

WithRequest adds the request to the remove preparation params

func (*RemovePreparationParams) WithTimeout added in v0.5.2

WithTimeout adds the timeout to the remove preparation params

func (*RemovePreparationParams) WriteToRequest added in v0.5.2

WriteToRequest writes these params to a swagger request

type RemovePreparationReader added in v0.5.2

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

RemovePreparationReader is a Reader for the RemovePreparation structure.

func (*RemovePreparationReader) ReadResponse added in v0.5.2

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

ReadResponse reads a server response into the received o.

type RenamePreparationBadRequest added in v0.5.0

type RenamePreparationBadRequest struct {
	Payload *models.APIHTTPError
}

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

Bad Request

func NewRenamePreparationBadRequest added in v0.5.0

func NewRenamePreparationBadRequest() *RenamePreparationBadRequest

NewRenamePreparationBadRequest creates a RenamePreparationBadRequest with default headers values

func (*RenamePreparationBadRequest) Code added in v0.5.0

func (o *RenamePreparationBadRequest) Code() int

Code gets the status code for the rename preparation bad request response

func (*RenamePreparationBadRequest) Error added in v0.5.0

func (*RenamePreparationBadRequest) GetPayload added in v0.5.0

func (*RenamePreparationBadRequest) IsClientError added in v0.5.0

func (o *RenamePreparationBadRequest) IsClientError() bool

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

func (*RenamePreparationBadRequest) IsCode added in v0.5.0

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

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

func (*RenamePreparationBadRequest) IsRedirect added in v0.5.0

func (o *RenamePreparationBadRequest) IsRedirect() bool

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

func (*RenamePreparationBadRequest) IsServerError added in v0.5.0

func (o *RenamePreparationBadRequest) IsServerError() bool

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

func (*RenamePreparationBadRequest) IsSuccess added in v0.5.0

func (o *RenamePreparationBadRequest) IsSuccess() bool

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

func (*RenamePreparationBadRequest) String added in v0.5.0

func (o *RenamePreparationBadRequest) String() string

type RenamePreparationInternalServerError added in v0.5.0

type RenamePreparationInternalServerError struct {
	Payload *models.APIHTTPError
}

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

Internal Server Error

func NewRenamePreparationInternalServerError added in v0.5.0

func NewRenamePreparationInternalServerError() *RenamePreparationInternalServerError

NewRenamePreparationInternalServerError creates a RenamePreparationInternalServerError with default headers values

func (*RenamePreparationInternalServerError) Code added in v0.5.0

Code gets the status code for the rename preparation internal server error response

func (*RenamePreparationInternalServerError) Error added in v0.5.0

func (*RenamePreparationInternalServerError) GetPayload added in v0.5.0

func (*RenamePreparationInternalServerError) IsClientError added in v0.5.0

func (o *RenamePreparationInternalServerError) IsClientError() bool

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

func (*RenamePreparationInternalServerError) IsCode added in v0.5.0

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

func (*RenamePreparationInternalServerError) IsRedirect added in v0.5.0

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

func (*RenamePreparationInternalServerError) IsServerError added in v0.5.0

func (o *RenamePreparationInternalServerError) IsServerError() bool

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

func (*RenamePreparationInternalServerError) IsSuccess added in v0.5.0

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

func (*RenamePreparationInternalServerError) String added in v0.5.0

type RenamePreparationOK added in v0.5.0

type RenamePreparationOK struct {
	Payload *models.ModelPreparation
}

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

OK

func NewRenamePreparationOK added in v0.5.0

func NewRenamePreparationOK() *RenamePreparationOK

NewRenamePreparationOK creates a RenamePreparationOK with default headers values

func (*RenamePreparationOK) Code added in v0.5.0

func (o *RenamePreparationOK) Code() int

Code gets the status code for the rename preparation o k response

func (*RenamePreparationOK) Error added in v0.5.0

func (o *RenamePreparationOK) Error() string

func (*RenamePreparationOK) GetPayload added in v0.5.0

func (o *RenamePreparationOK) GetPayload() *models.ModelPreparation

func (*RenamePreparationOK) IsClientError added in v0.5.0

func (o *RenamePreparationOK) IsClientError() bool

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

func (*RenamePreparationOK) IsCode added in v0.5.0

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

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

func (*RenamePreparationOK) IsRedirect added in v0.5.0

func (o *RenamePreparationOK) IsRedirect() bool

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

func (*RenamePreparationOK) IsServerError added in v0.5.0

func (o *RenamePreparationOK) IsServerError() bool

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

func (*RenamePreparationOK) IsSuccess added in v0.5.0

func (o *RenamePreparationOK) IsSuccess() bool

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

func (*RenamePreparationOK) String added in v0.5.0

func (o *RenamePreparationOK) String() string

type RenamePreparationParams added in v0.5.0

type RenamePreparationParams struct {

	/* Name.

	   Preparation ID or name
	*/
	Name string

	/* Request.

	   New preparation name
	*/
	Request *models.DataprepRenameRequest

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

RenamePreparationParams contains all the parameters to send to the API endpoint

for the rename preparation operation.

Typically these are written to a http.Request.

func NewRenamePreparationParams added in v0.5.0

func NewRenamePreparationParams() *RenamePreparationParams

NewRenamePreparationParams creates a new RenamePreparationParams 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 NewRenamePreparationParamsWithContext added in v0.5.0

func NewRenamePreparationParamsWithContext(ctx context.Context) *RenamePreparationParams

NewRenamePreparationParamsWithContext creates a new RenamePreparationParams object with the ability to set a context for a request.

func NewRenamePreparationParamsWithHTTPClient added in v0.5.0

func NewRenamePreparationParamsWithHTTPClient(client *http.Client) *RenamePreparationParams

NewRenamePreparationParamsWithHTTPClient creates a new RenamePreparationParams object with the ability to set a custom HTTPClient for a request.

func NewRenamePreparationParamsWithTimeout added in v0.5.0

func NewRenamePreparationParamsWithTimeout(timeout time.Duration) *RenamePreparationParams

NewRenamePreparationParamsWithTimeout creates a new RenamePreparationParams object with the ability to set a timeout on a request.

func (*RenamePreparationParams) SetContext added in v0.5.0

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

SetContext adds the context to the rename preparation params

func (*RenamePreparationParams) SetDefaults added in v0.5.0

func (o *RenamePreparationParams) SetDefaults()

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

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

func (*RenamePreparationParams) SetHTTPClient added in v0.5.0

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

SetHTTPClient adds the HTTPClient to the rename preparation params

func (*RenamePreparationParams) SetName added in v0.5.0

func (o *RenamePreparationParams) SetName(name string)

SetName adds the name to the rename preparation params

func (*RenamePreparationParams) SetRequest added in v0.5.0

func (o *RenamePreparationParams) SetRequest(request *models.DataprepRenameRequest)

SetRequest adds the request to the rename preparation params

func (*RenamePreparationParams) SetTimeout added in v0.5.0

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

SetTimeout adds the timeout to the rename preparation params

func (*RenamePreparationParams) WithContext added in v0.5.0

WithContext adds the context to the rename preparation params

func (*RenamePreparationParams) WithDefaults added in v0.5.0

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

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

func (*RenamePreparationParams) WithHTTPClient added in v0.5.0

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

WithHTTPClient adds the HTTPClient to the rename preparation params

func (*RenamePreparationParams) WithName added in v0.5.0

WithName adds the name to the rename preparation params

func (*RenamePreparationParams) WithRequest added in v0.5.0

WithRequest adds the request to the rename preparation params

func (*RenamePreparationParams) WithTimeout added in v0.5.0

WithTimeout adds the timeout to the rename preparation params

func (*RenamePreparationParams) WriteToRequest added in v0.5.0

WriteToRequest writes these params to a swagger request

type RenamePreparationReader added in v0.5.0

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

RenamePreparationReader is a Reader for the RenamePreparation structure.

func (*RenamePreparationReader) ReadResponse added in v0.5.0

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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