install_service

package
v3.0.2 Latest Latest
Warning

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

Go to latest
Published: Feb 21, 2023 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for install service API

func (*Client) GetAgreement

func (a *Client) GetAgreement(params *GetAgreementParams, opts ...ClientOption) (*GetAgreementOK, error)

GetAgreement loads a textual agreement for using the software

func (*Client) GetInstall

func (a *Client) GetInstall(params *GetInstallParams, opts ...ClientOption) (*GetInstallOK, error)

GetInstall loads default values for install form

func (*Client) InstallEvents

func (a *Client) InstallEvents(params *InstallEventsParams, opts ...ClientOption) (*InstallEventsOK, error)

InstallEvents install events API

func (*Client) PerformInstallCheck

func (a *Client) PerformInstallCheck(params *PerformInstallCheckParams, opts ...ClientOption) (*PerformInstallCheckOK, error)

PerformInstallCheck performs a check during install like a valid d b connection

func (*Client) PostInstall

func (a *Client) PostInstall(params *PostInstallParams, opts ...ClientOption) (*PostInstallOK, error)

PostInstall posts values to be saved for install

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 {
	GetAgreement(params *GetAgreementParams, opts ...ClientOption) (*GetAgreementOK, error)

	GetInstall(params *GetInstallParams, opts ...ClientOption) (*GetInstallOK, error)

	InstallEvents(params *InstallEventsParams, opts ...ClientOption) (*InstallEventsOK, error)

	PerformInstallCheck(params *PerformInstallCheckParams, opts ...ClientOption) (*PerformInstallCheckOK, error)

	PostInstall(params *PostInstallParams, opts ...ClientOption) (*PostInstallOK, 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 install service API client.

type GetAgreementForbidden

type GetAgreementForbidden struct {
	Payload *models.RestError
}
GetAgreementForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewGetAgreementForbidden

func NewGetAgreementForbidden() *GetAgreementForbidden

NewGetAgreementForbidden creates a GetAgreementForbidden with default headers values

func (*GetAgreementForbidden) Error

func (o *GetAgreementForbidden) Error() string

func (*GetAgreementForbidden) GetPayload

func (o *GetAgreementForbidden) GetPayload() *models.RestError

type GetAgreementInternalServerError

type GetAgreementInternalServerError struct {
	Payload *models.RestError
}
GetAgreementInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewGetAgreementInternalServerError

func NewGetAgreementInternalServerError() *GetAgreementInternalServerError

NewGetAgreementInternalServerError creates a GetAgreementInternalServerError with default headers values

func (*GetAgreementInternalServerError) Error

func (*GetAgreementInternalServerError) GetPayload

type GetAgreementNotFound

type GetAgreementNotFound struct {
	Payload *models.RestError
}
GetAgreementNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewGetAgreementNotFound

func NewGetAgreementNotFound() *GetAgreementNotFound

NewGetAgreementNotFound creates a GetAgreementNotFound with default headers values

func (*GetAgreementNotFound) Error

func (o *GetAgreementNotFound) Error() string

func (*GetAgreementNotFound) GetPayload

func (o *GetAgreementNotFound) GetPayload() *models.RestError

type GetAgreementOK

type GetAgreementOK struct {
	Payload *models.InstallGetAgreementResponse
}
GetAgreementOK describes a response with status code 200, with default header values.

GetAgreementOK get agreement o k

func NewGetAgreementOK

func NewGetAgreementOK() *GetAgreementOK

NewGetAgreementOK creates a GetAgreementOK with default headers values

func (*GetAgreementOK) Error

func (o *GetAgreementOK) Error() string

func (*GetAgreementOK) GetPayload

type GetAgreementParams

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

GetAgreementParams contains all the parameters to send to the API endpoint

for the get agreement operation.

Typically these are written to a http.Request.

func NewGetAgreementParams

func NewGetAgreementParams() *GetAgreementParams

NewGetAgreementParams creates a new GetAgreementParams 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 NewGetAgreementParamsWithContext

func NewGetAgreementParamsWithContext(ctx context.Context) *GetAgreementParams

NewGetAgreementParamsWithContext creates a new GetAgreementParams object with the ability to set a context for a request.

func NewGetAgreementParamsWithHTTPClient

func NewGetAgreementParamsWithHTTPClient(client *http.Client) *GetAgreementParams

NewGetAgreementParamsWithHTTPClient creates a new GetAgreementParams object with the ability to set a custom HTTPClient for a request.

func NewGetAgreementParamsWithTimeout

func NewGetAgreementParamsWithTimeout(timeout time.Duration) *GetAgreementParams

NewGetAgreementParamsWithTimeout creates a new GetAgreementParams object with the ability to set a timeout on a request.

func (*GetAgreementParams) SetContext

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

SetContext adds the context to the get agreement params

func (*GetAgreementParams) SetDefaults

func (o *GetAgreementParams) SetDefaults()

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

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

func (*GetAgreementParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get agreement params

func (*GetAgreementParams) SetTimeout

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

SetTimeout adds the timeout to the get agreement params

func (*GetAgreementParams) WithContext

WithContext adds the context to the get agreement params

func (*GetAgreementParams) WithDefaults

func (o *GetAgreementParams) WithDefaults() *GetAgreementParams

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

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

func (*GetAgreementParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get agreement params

func (*GetAgreementParams) WithTimeout

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

WithTimeout adds the timeout to the get agreement params

func (*GetAgreementParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetAgreementReader

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

GetAgreementReader is a Reader for the GetAgreement structure.

func (*GetAgreementReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAgreementUnauthorized

type GetAgreementUnauthorized struct {
}
GetAgreementUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewGetAgreementUnauthorized

func NewGetAgreementUnauthorized() *GetAgreementUnauthorized

NewGetAgreementUnauthorized creates a GetAgreementUnauthorized with default headers values

func (*GetAgreementUnauthorized) Error

func (o *GetAgreementUnauthorized) Error() string

type GetInstallForbidden

type GetInstallForbidden struct {
	Payload *models.RestError
}
GetInstallForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewGetInstallForbidden

func NewGetInstallForbidden() *GetInstallForbidden

NewGetInstallForbidden creates a GetInstallForbidden with default headers values

func (*GetInstallForbidden) Error

func (o *GetInstallForbidden) Error() string

func (*GetInstallForbidden) GetPayload

func (o *GetInstallForbidden) GetPayload() *models.RestError

type GetInstallInternalServerError

type GetInstallInternalServerError struct {
	Payload *models.RestError
}
GetInstallInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewGetInstallInternalServerError

func NewGetInstallInternalServerError() *GetInstallInternalServerError

NewGetInstallInternalServerError creates a GetInstallInternalServerError with default headers values

func (*GetInstallInternalServerError) Error

func (*GetInstallInternalServerError) GetPayload

type GetInstallNotFound

type GetInstallNotFound struct {
	Payload *models.RestError
}
GetInstallNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewGetInstallNotFound

func NewGetInstallNotFound() *GetInstallNotFound

NewGetInstallNotFound creates a GetInstallNotFound with default headers values

func (*GetInstallNotFound) Error

func (o *GetInstallNotFound) Error() string

func (*GetInstallNotFound) GetPayload

func (o *GetInstallNotFound) GetPayload() *models.RestError

type GetInstallOK

type GetInstallOK struct {
	Payload *models.InstallGetDefaultsResponse
}
GetInstallOK describes a response with status code 200, with default header values.

GetInstallOK get install o k

func NewGetInstallOK

func NewGetInstallOK() *GetInstallOK

NewGetInstallOK creates a GetInstallOK with default headers values

func (*GetInstallOK) Error

func (o *GetInstallOK) Error() string

func (*GetInstallOK) GetPayload

type GetInstallParams

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

GetInstallParams contains all the parameters to send to the API endpoint

for the get install operation.

Typically these are written to a http.Request.

func NewGetInstallParams

func NewGetInstallParams() *GetInstallParams

NewGetInstallParams creates a new GetInstallParams 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 NewGetInstallParamsWithContext

func NewGetInstallParamsWithContext(ctx context.Context) *GetInstallParams

NewGetInstallParamsWithContext creates a new GetInstallParams object with the ability to set a context for a request.

func NewGetInstallParamsWithHTTPClient

func NewGetInstallParamsWithHTTPClient(client *http.Client) *GetInstallParams

NewGetInstallParamsWithHTTPClient creates a new GetInstallParams object with the ability to set a custom HTTPClient for a request.

func NewGetInstallParamsWithTimeout

func NewGetInstallParamsWithTimeout(timeout time.Duration) *GetInstallParams

NewGetInstallParamsWithTimeout creates a new GetInstallParams object with the ability to set a timeout on a request.

func (*GetInstallParams) SetContext

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

SetContext adds the context to the get install params

func (*GetInstallParams) SetDefaults

func (o *GetInstallParams) SetDefaults()

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

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

func (*GetInstallParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get install params

func (*GetInstallParams) SetTimeout

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

SetTimeout adds the timeout to the get install params

func (*GetInstallParams) WithContext

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

WithContext adds the context to the get install params

func (*GetInstallParams) WithDefaults

func (o *GetInstallParams) WithDefaults() *GetInstallParams

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

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

func (*GetInstallParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get install params

func (*GetInstallParams) WithTimeout

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

WithTimeout adds the timeout to the get install params

func (*GetInstallParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetInstallReader

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

GetInstallReader is a Reader for the GetInstall structure.

func (*GetInstallReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetInstallUnauthorized

type GetInstallUnauthorized struct {
}
GetInstallUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewGetInstallUnauthorized

func NewGetInstallUnauthorized() *GetInstallUnauthorized

NewGetInstallUnauthorized creates a GetInstallUnauthorized with default headers values

func (*GetInstallUnauthorized) Error

func (o *GetInstallUnauthorized) Error() string

type InstallEventsForbidden

type InstallEventsForbidden struct {
	Payload *models.RestError
}
InstallEventsForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewInstallEventsForbidden

func NewInstallEventsForbidden() *InstallEventsForbidden

NewInstallEventsForbidden creates a InstallEventsForbidden with default headers values

func (*InstallEventsForbidden) Error

func (o *InstallEventsForbidden) Error() string

func (*InstallEventsForbidden) GetPayload

func (o *InstallEventsForbidden) GetPayload() *models.RestError

type InstallEventsInternalServerError

type InstallEventsInternalServerError struct {
	Payload *models.RestError
}
InstallEventsInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewInstallEventsInternalServerError

func NewInstallEventsInternalServerError() *InstallEventsInternalServerError

NewInstallEventsInternalServerError creates a InstallEventsInternalServerError with default headers values

func (*InstallEventsInternalServerError) Error

func (*InstallEventsInternalServerError) GetPayload

type InstallEventsNotFound

type InstallEventsNotFound struct {
	Payload *models.RestError
}
InstallEventsNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewInstallEventsNotFound

func NewInstallEventsNotFound() *InstallEventsNotFound

NewInstallEventsNotFound creates a InstallEventsNotFound with default headers values

func (*InstallEventsNotFound) Error

func (o *InstallEventsNotFound) Error() string

func (*InstallEventsNotFound) GetPayload

func (o *InstallEventsNotFound) GetPayload() *models.RestError

type InstallEventsOK

type InstallEventsOK struct {
	Payload models.InstallInstallEventsResponse
}
InstallEventsOK describes a response with status code 200, with default header values.

InstallEventsOK install events o k

func NewInstallEventsOK

func NewInstallEventsOK() *InstallEventsOK

NewInstallEventsOK creates a InstallEventsOK with default headers values

func (*InstallEventsOK) Error

func (o *InstallEventsOK) Error() string

func (*InstallEventsOK) GetPayload

type InstallEventsParams

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

InstallEventsParams contains all the parameters to send to the API endpoint

for the install events operation.

Typically these are written to a http.Request.

func NewInstallEventsParams

func NewInstallEventsParams() *InstallEventsParams

NewInstallEventsParams creates a new InstallEventsParams 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 NewInstallEventsParamsWithContext

func NewInstallEventsParamsWithContext(ctx context.Context) *InstallEventsParams

NewInstallEventsParamsWithContext creates a new InstallEventsParams object with the ability to set a context for a request.

func NewInstallEventsParamsWithHTTPClient

func NewInstallEventsParamsWithHTTPClient(client *http.Client) *InstallEventsParams

NewInstallEventsParamsWithHTTPClient creates a new InstallEventsParams object with the ability to set a custom HTTPClient for a request.

func NewInstallEventsParamsWithTimeout

func NewInstallEventsParamsWithTimeout(timeout time.Duration) *InstallEventsParams

NewInstallEventsParamsWithTimeout creates a new InstallEventsParams object with the ability to set a timeout on a request.

func (*InstallEventsParams) SetContext

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

SetContext adds the context to the install events params

func (*InstallEventsParams) SetDefaults

func (o *InstallEventsParams) SetDefaults()

SetDefaults hydrates default values in the install events params (not the query body).

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

func (*InstallEventsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the install events params

func (*InstallEventsParams) SetTimeout

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

SetTimeout adds the timeout to the install events params

func (*InstallEventsParams) WithContext

WithContext adds the context to the install events params

func (*InstallEventsParams) WithDefaults

func (o *InstallEventsParams) WithDefaults() *InstallEventsParams

WithDefaults hydrates default values in the install events params (not the query body).

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

func (*InstallEventsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the install events params

func (*InstallEventsParams) WithTimeout

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

WithTimeout adds the timeout to the install events params

func (*InstallEventsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type InstallEventsReader

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

InstallEventsReader is a Reader for the InstallEvents structure.

func (*InstallEventsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InstallEventsUnauthorized

type InstallEventsUnauthorized struct {
}
InstallEventsUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewInstallEventsUnauthorized

func NewInstallEventsUnauthorized() *InstallEventsUnauthorized

NewInstallEventsUnauthorized creates a InstallEventsUnauthorized with default headers values

func (*InstallEventsUnauthorized) Error

func (o *InstallEventsUnauthorized) Error() string

type PerformInstallCheckForbidden

type PerformInstallCheckForbidden struct {
	Payload *models.RestError
}
PerformInstallCheckForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewPerformInstallCheckForbidden

func NewPerformInstallCheckForbidden() *PerformInstallCheckForbidden

NewPerformInstallCheckForbidden creates a PerformInstallCheckForbidden with default headers values

func (*PerformInstallCheckForbidden) Error

func (*PerformInstallCheckForbidden) GetPayload

type PerformInstallCheckInternalServerError

type PerformInstallCheckInternalServerError struct {
	Payload *models.RestError
}
PerformInstallCheckInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewPerformInstallCheckInternalServerError

func NewPerformInstallCheckInternalServerError() *PerformInstallCheckInternalServerError

NewPerformInstallCheckInternalServerError creates a PerformInstallCheckInternalServerError with default headers values

func (*PerformInstallCheckInternalServerError) Error

func (*PerformInstallCheckInternalServerError) GetPayload

type PerformInstallCheckNotFound

type PerformInstallCheckNotFound struct {
	Payload *models.RestError
}
PerformInstallCheckNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewPerformInstallCheckNotFound

func NewPerformInstallCheckNotFound() *PerformInstallCheckNotFound

NewPerformInstallCheckNotFound creates a PerformInstallCheckNotFound with default headers values

func (*PerformInstallCheckNotFound) Error

func (*PerformInstallCheckNotFound) GetPayload

func (o *PerformInstallCheckNotFound) GetPayload() *models.RestError

type PerformInstallCheckOK

type PerformInstallCheckOK struct {
	Payload *models.InstallPerformCheckResponse
}
PerformInstallCheckOK describes a response with status code 200, with default header values.

PerformInstallCheckOK perform install check o k

func NewPerformInstallCheckOK

func NewPerformInstallCheckOK() *PerformInstallCheckOK

NewPerformInstallCheckOK creates a PerformInstallCheckOK with default headers values

func (*PerformInstallCheckOK) Error

func (o *PerformInstallCheckOK) Error() string

func (*PerformInstallCheckOK) GetPayload

type PerformInstallCheckParams

type PerformInstallCheckParams struct {

	// Body.
	Body *models.InstallPerformCheckRequest

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

PerformInstallCheckParams contains all the parameters to send to the API endpoint

for the perform install check operation.

Typically these are written to a http.Request.

func NewPerformInstallCheckParams

func NewPerformInstallCheckParams() *PerformInstallCheckParams

NewPerformInstallCheckParams creates a new PerformInstallCheckParams 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 NewPerformInstallCheckParamsWithContext

func NewPerformInstallCheckParamsWithContext(ctx context.Context) *PerformInstallCheckParams

NewPerformInstallCheckParamsWithContext creates a new PerformInstallCheckParams object with the ability to set a context for a request.

func NewPerformInstallCheckParamsWithHTTPClient

func NewPerformInstallCheckParamsWithHTTPClient(client *http.Client) *PerformInstallCheckParams

NewPerformInstallCheckParamsWithHTTPClient creates a new PerformInstallCheckParams object with the ability to set a custom HTTPClient for a request.

func NewPerformInstallCheckParamsWithTimeout

func NewPerformInstallCheckParamsWithTimeout(timeout time.Duration) *PerformInstallCheckParams

NewPerformInstallCheckParamsWithTimeout creates a new PerformInstallCheckParams object with the ability to set a timeout on a request.

func (*PerformInstallCheckParams) SetBody

SetBody adds the body to the perform install check params

func (*PerformInstallCheckParams) SetContext

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

SetContext adds the context to the perform install check params

func (*PerformInstallCheckParams) SetDefaults

func (o *PerformInstallCheckParams) SetDefaults()

SetDefaults hydrates default values in the perform install check params (not the query body).

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

func (*PerformInstallCheckParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the perform install check params

func (*PerformInstallCheckParams) SetTimeout

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

SetTimeout adds the timeout to the perform install check params

func (*PerformInstallCheckParams) WithBody

WithBody adds the body to the perform install check params

func (*PerformInstallCheckParams) WithContext

WithContext adds the context to the perform install check params

func (*PerformInstallCheckParams) WithDefaults

WithDefaults hydrates default values in the perform install check params (not the query body).

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

func (*PerformInstallCheckParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the perform install check params

func (*PerformInstallCheckParams) WithTimeout

WithTimeout adds the timeout to the perform install check params

func (*PerformInstallCheckParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PerformInstallCheckReader

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

PerformInstallCheckReader is a Reader for the PerformInstallCheck structure.

func (*PerformInstallCheckReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PerformInstallCheckUnauthorized

type PerformInstallCheckUnauthorized struct {
}
PerformInstallCheckUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewPerformInstallCheckUnauthorized

func NewPerformInstallCheckUnauthorized() *PerformInstallCheckUnauthorized

NewPerformInstallCheckUnauthorized creates a PerformInstallCheckUnauthorized with default headers values

func (*PerformInstallCheckUnauthorized) Error

type PostInstallForbidden

type PostInstallForbidden struct {
	Payload *models.RestError
}
PostInstallForbidden describes a response with status code 403, with default header values.

User has no permission to access this resource

func NewPostInstallForbidden

func NewPostInstallForbidden() *PostInstallForbidden

NewPostInstallForbidden creates a PostInstallForbidden with default headers values

func (*PostInstallForbidden) Error

func (o *PostInstallForbidden) Error() string

func (*PostInstallForbidden) GetPayload

func (o *PostInstallForbidden) GetPayload() *models.RestError

type PostInstallInternalServerError

type PostInstallInternalServerError struct {
	Payload *models.RestError
}
PostInstallInternalServerError describes a response with status code 500, with default header values.

An internal error occurred in the backend

func NewPostInstallInternalServerError

func NewPostInstallInternalServerError() *PostInstallInternalServerError

NewPostInstallInternalServerError creates a PostInstallInternalServerError with default headers values

func (*PostInstallInternalServerError) Error

func (*PostInstallInternalServerError) GetPayload

type PostInstallNotFound

type PostInstallNotFound struct {
	Payload *models.RestError
}
PostInstallNotFound describes a response with status code 404, with default header values.

Resource does not exist in the system

func NewPostInstallNotFound

func NewPostInstallNotFound() *PostInstallNotFound

NewPostInstallNotFound creates a PostInstallNotFound with default headers values

func (*PostInstallNotFound) Error

func (o *PostInstallNotFound) Error() string

func (*PostInstallNotFound) GetPayload

func (o *PostInstallNotFound) GetPayload() *models.RestError

type PostInstallOK

type PostInstallOK struct {
	Payload *models.InstallInstallResponse
}
PostInstallOK describes a response with status code 200, with default header values.

PostInstallOK post install o k

func NewPostInstallOK

func NewPostInstallOK() *PostInstallOK

NewPostInstallOK creates a PostInstallOK with default headers values

func (*PostInstallOK) Error

func (o *PostInstallOK) Error() string

func (*PostInstallOK) GetPayload

func (o *PostInstallOK) GetPayload() *models.InstallInstallResponse

type PostInstallParams

type PostInstallParams struct {

	// Body.
	Body *models.InstallInstallRequest

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

PostInstallParams contains all the parameters to send to the API endpoint

for the post install operation.

Typically these are written to a http.Request.

func NewPostInstallParams

func NewPostInstallParams() *PostInstallParams

NewPostInstallParams creates a new PostInstallParams 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 NewPostInstallParamsWithContext

func NewPostInstallParamsWithContext(ctx context.Context) *PostInstallParams

NewPostInstallParamsWithContext creates a new PostInstallParams object with the ability to set a context for a request.

func NewPostInstallParamsWithHTTPClient

func NewPostInstallParamsWithHTTPClient(client *http.Client) *PostInstallParams

NewPostInstallParamsWithHTTPClient creates a new PostInstallParams object with the ability to set a custom HTTPClient for a request.

func NewPostInstallParamsWithTimeout

func NewPostInstallParamsWithTimeout(timeout time.Duration) *PostInstallParams

NewPostInstallParamsWithTimeout creates a new PostInstallParams object with the ability to set a timeout on a request.

func (*PostInstallParams) SetBody

SetBody adds the body to the post install params

func (*PostInstallParams) SetContext

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

SetContext adds the context to the post install params

func (*PostInstallParams) SetDefaults

func (o *PostInstallParams) SetDefaults()

SetDefaults hydrates default values in the post install params (not the query body).

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

func (*PostInstallParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post install params

func (*PostInstallParams) SetTimeout

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

SetTimeout adds the timeout to the post install params

func (*PostInstallParams) WithBody

WithBody adds the body to the post install params

func (*PostInstallParams) WithContext

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

WithContext adds the context to the post install params

func (*PostInstallParams) WithDefaults

func (o *PostInstallParams) WithDefaults() *PostInstallParams

WithDefaults hydrates default values in the post install params (not the query body).

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

func (*PostInstallParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post install params

func (*PostInstallParams) WithTimeout

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

WithTimeout adds the timeout to the post install params

func (*PostInstallParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PostInstallReader

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

PostInstallReader is a Reader for the PostInstall structure.

func (*PostInstallReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostInstallUnauthorized

type PostInstallUnauthorized struct {
}
PostInstallUnauthorized describes a response with status code 401, with default header values.

User is not authenticated

func NewPostInstallUnauthorized

func NewPostInstallUnauthorized() *PostInstallUnauthorized

NewPostInstallUnauthorized creates a PostInstallUnauthorized with default headers values

func (*PostInstallUnauthorized) Error

func (o *PostInstallUnauthorized) Error() string

Jump to

Keyboard shortcuts

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