installer

package
v1.0.8 Latest Latest
Warning

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

Go to latest
Published: Aug 2, 2020 License: Apache-2.0 Imports: 11 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type API

type API interface {
	/*
	   CancelInstallation cancels an ongoing installation*/
	CancelInstallation(ctx context.Context, params *CancelInstallationParams) (*CancelInstallationAccepted, error)
	/*
	   CompleteInstallation agents API to mark a finalizing installation as complete*/
	CompleteInstallation(ctx context.Context, params *CompleteInstallationParams) (*CompleteInstallationAccepted, error)
	/*
	   DeregisterCluster deletes an open shift bare metal cluster definition*/
	DeregisterCluster(ctx context.Context, params *DeregisterClusterParams) (*DeregisterClusterNoContent, error)
	/*
	   DeregisterHost deregisters an open shift bare metal host*/
	DeregisterHost(ctx context.Context, params *DeregisterHostParams) (*DeregisterHostNoContent, error)
	/*
	   DisableHost disables a host for inclusion in the cluster*/
	DisableHost(ctx context.Context, params *DisableHostParams) (*DisableHostOK, error)
	/*
	   DownloadClusterFiles downloads files relating to the installed installing cluster*/
	DownloadClusterFiles(ctx context.Context, params *DownloadClusterFilesParams, writer io.Writer) (*DownloadClusterFilesOK, error)
	/*
	   DownloadClusterISO downloads the open shift per cluster discovery i s o*/
	DownloadClusterISO(ctx context.Context, params *DownloadClusterISOParams, writer io.Writer) (*DownloadClusterISOOK, error)
	/*
	   DownloadClusterKubeconfig downloads the kubeconfig file for this cluster*/
	DownloadClusterKubeconfig(ctx context.Context, params *DownloadClusterKubeconfigParams, writer io.Writer) (*DownloadClusterKubeconfigOK, error)
	/*
	   EnableHost enables a host for inclusion in the cluster*/
	EnableHost(ctx context.Context, params *EnableHostParams) (*EnableHostOK, error)
	/*
	   GenerateClusterISO creates a new open shift per cluster discovery i s o*/
	GenerateClusterISO(ctx context.Context, params *GenerateClusterISOParams) (*GenerateClusterISOCreated, error)
	/*
	   GetCluster retrieves the details of the open shift bare metal cluster*/
	GetCluster(ctx context.Context, params *GetClusterParams) (*GetClusterOK, error)
	/*
	   GetCredentials gets the the cluster admin credentials*/
	GetCredentials(ctx context.Context, params *GetCredentialsParams) (*GetCredentialsOK, error)
	/*
	   GetFreeAddresses retrieves the free address list for a network*/
	GetFreeAddresses(ctx context.Context, params *GetFreeAddressesParams) (*GetFreeAddressesOK, error)
	/*
	   GetHost retrieves the details of the open shift bare metal host*/
	GetHost(ctx context.Context, params *GetHostParams) (*GetHostOK, error)
	/*
	   GetNextSteps retrieves the next operations that the host agent needs to perform*/
	GetNextSteps(ctx context.Context, params *GetNextStepsParams) (*GetNextStepsOK, error)
	/*
	   InstallCluster installs the open shift bare metal cluster*/
	InstallCluster(ctx context.Context, params *InstallClusterParams) (*InstallClusterAccepted, error)
	/*
	   ListClusters retrieves the list of open shift bare metal clusters*/
	ListClusters(ctx context.Context, params *ListClustersParams) (*ListClustersOK, error)
	/*
	   ListHosts retrieves the list of open shift bare metal hosts*/
	ListHosts(ctx context.Context, params *ListHostsParams) (*ListHostsOK, error)
	/*
	   PostStepReply posts the result of the operations from the host agent*/
	PostStepReply(ctx context.Context, params *PostStepReplyParams) (*PostStepReplyNoContent, error)
	/*
	   RegisterCluster creates a new open shift bare metal cluster definition*/
	RegisterCluster(ctx context.Context, params *RegisterClusterParams) (*RegisterClusterCreated, error)
	/*
	   RegisterHost registers a new open shift bare metal host*/
	RegisterHost(ctx context.Context, params *RegisterHostParams) (*RegisterHostCreated, error)
	/*
	   ResetCluster resets a failed installation*/
	ResetCluster(ctx context.Context, params *ResetClusterParams) (*ResetClusterAccepted, error)
	/*
	   SetDebugStep sets a single shot debug step that will be sent next time the host agent will ask for a command*/
	SetDebugStep(ctx context.Context, params *SetDebugStepParams) (*SetDebugStepNoContent, error)
	/*
	   UpdateCluster updates an open shift bare metal cluster definition*/
	UpdateCluster(ctx context.Context, params *UpdateClusterParams) (*UpdateClusterCreated, error)
	/*
	   UpdateHostInstallProgress updates installation progress*/
	UpdateHostInstallProgress(ctx context.Context, params *UpdateHostInstallProgressParams) (*UpdateHostInstallProgressOK, error)
	/*
	   UploadClusterIngressCert transfers the ingress certificate for the cluster*/
	UploadClusterIngressCert(ctx context.Context, params *UploadClusterIngressCertParams) (*UploadClusterIngressCertCreated, error)
}

API is the interface of the installer client

type CancelInstallationAccepted added in v1.0.4

type CancelInstallationAccepted struct {
	Payload *models.Cluster
}

CancelInstallationAccepted handles this case with default header values.

Success.

func NewCancelInstallationAccepted added in v1.0.4

func NewCancelInstallationAccepted() *CancelInstallationAccepted

NewCancelInstallationAccepted creates a CancelInstallationAccepted with default headers values

func (*CancelInstallationAccepted) Error added in v1.0.4

func (*CancelInstallationAccepted) GetPayload added in v1.0.4

func (o *CancelInstallationAccepted) GetPayload() *models.Cluster

type CancelInstallationConflict added in v1.0.4

type CancelInstallationConflict struct {
	Payload *models.Error
}

CancelInstallationConflict handles this case with default header values.

Error.

func NewCancelInstallationConflict added in v1.0.4

func NewCancelInstallationConflict() *CancelInstallationConflict

NewCancelInstallationConflict creates a CancelInstallationConflict with default headers values

func (*CancelInstallationConflict) Error added in v1.0.4

func (*CancelInstallationConflict) GetPayload added in v1.0.4

func (o *CancelInstallationConflict) GetPayload() *models.Error

type CancelInstallationInternalServerError added in v1.0.4

type CancelInstallationInternalServerError struct {
	Payload *models.Error
}

CancelInstallationInternalServerError handles this case with default header values.

Error.

func NewCancelInstallationInternalServerError added in v1.0.4

func NewCancelInstallationInternalServerError() *CancelInstallationInternalServerError

NewCancelInstallationInternalServerError creates a CancelInstallationInternalServerError with default headers values

func (*CancelInstallationInternalServerError) Error added in v1.0.4

func (*CancelInstallationInternalServerError) GetPayload added in v1.0.4

type CancelInstallationNotFound added in v1.0.4

type CancelInstallationNotFound struct {
	Payload *models.Error
}

CancelInstallationNotFound handles this case with default header values.

Error.

func NewCancelInstallationNotFound added in v1.0.4

func NewCancelInstallationNotFound() *CancelInstallationNotFound

NewCancelInstallationNotFound creates a CancelInstallationNotFound with default headers values

func (*CancelInstallationNotFound) Error added in v1.0.4

func (*CancelInstallationNotFound) GetPayload added in v1.0.4

func (o *CancelInstallationNotFound) GetPayload() *models.Error

type CancelInstallationParams added in v1.0.4

type CancelInstallationParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

CancelInstallationParams contains all the parameters to send to the API endpoint for the cancel installation operation typically these are written to a http.Request

func NewCancelInstallationParams added in v1.0.4

func NewCancelInstallationParams() *CancelInstallationParams

NewCancelInstallationParams creates a new CancelInstallationParams object with the default values initialized.

func NewCancelInstallationParamsWithContext added in v1.0.4

func NewCancelInstallationParamsWithContext(ctx context.Context) *CancelInstallationParams

NewCancelInstallationParamsWithContext creates a new CancelInstallationParams object with the default values initialized, and the ability to set a context for a request

func NewCancelInstallationParamsWithHTTPClient added in v1.0.4

func NewCancelInstallationParamsWithHTTPClient(client *http.Client) *CancelInstallationParams

NewCancelInstallationParamsWithHTTPClient creates a new CancelInstallationParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewCancelInstallationParamsWithTimeout added in v1.0.4

func NewCancelInstallationParamsWithTimeout(timeout time.Duration) *CancelInstallationParams

NewCancelInstallationParamsWithTimeout creates a new CancelInstallationParams object with the default values initialized, and the ability to set a timeout on a request

func (*CancelInstallationParams) SetClusterID added in v1.0.4

func (o *CancelInstallationParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the cancel installation params

func (*CancelInstallationParams) SetContext added in v1.0.4

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

SetContext adds the context to the cancel installation params

func (*CancelInstallationParams) SetHTTPClient added in v1.0.4

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

SetHTTPClient adds the HTTPClient to the cancel installation params

func (*CancelInstallationParams) SetTimeout added in v1.0.4

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

SetTimeout adds the timeout to the cancel installation params

func (*CancelInstallationParams) WithClusterID added in v1.0.4

func (o *CancelInstallationParams) WithClusterID(clusterID strfmt.UUID) *CancelInstallationParams

WithClusterID adds the clusterID to the cancel installation params

func (*CancelInstallationParams) WithContext added in v1.0.4

WithContext adds the context to the cancel installation params

func (*CancelInstallationParams) WithHTTPClient added in v1.0.4

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

WithHTTPClient adds the HTTPClient to the cancel installation params

func (*CancelInstallationParams) WithTimeout added in v1.0.4

WithTimeout adds the timeout to the cancel installation params

func (*CancelInstallationParams) WriteToRequest added in v1.0.4

WriteToRequest writes these params to a swagger request

type CancelInstallationReader added in v1.0.4

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

CancelInstallationReader is a Reader for the CancelInstallation structure.

func (*CancelInstallationReader) ReadResponse added in v1.0.4

func (o *CancelInstallationReader) 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 installer API

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry, authInfo runtime.ClientAuthInfoWriter) *Client

New creates a new installer API client.

func (*Client) CancelInstallation added in v1.0.4

func (a *Client) CancelInstallation(ctx context.Context, params *CancelInstallationParams) (*CancelInstallationAccepted, error)

CancelInstallation cancels an ongoing installation

func (*Client) CompleteInstallation added in v1.0.6

func (a *Client) CompleteInstallation(ctx context.Context, params *CompleteInstallationParams) (*CompleteInstallationAccepted, error)

CompleteInstallation agents API to mark a finalizing installation as complete

func (*Client) DeregisterCluster

func (a *Client) DeregisterCluster(ctx context.Context, params *DeregisterClusterParams) (*DeregisterClusterNoContent, error)

DeregisterCluster deletes an open shift bare metal cluster definition

func (*Client) DeregisterHost

func (a *Client) DeregisterHost(ctx context.Context, params *DeregisterHostParams) (*DeregisterHostNoContent, error)

DeregisterHost deregisters an open shift bare metal host

func (*Client) DisableHost

func (a *Client) DisableHost(ctx context.Context, params *DisableHostParams) (*DisableHostOK, error)

DisableHost disables a host for inclusion in the cluster

func (*Client) DownloadClusterFiles

func (a *Client) DownloadClusterFiles(ctx context.Context, params *DownloadClusterFilesParams, writer io.Writer) (*DownloadClusterFilesOK, error)

DownloadClusterFiles downloads files relating to the installed installing cluster

func (*Client) DownloadClusterISO

func (a *Client) DownloadClusterISO(ctx context.Context, params *DownloadClusterISOParams, writer io.Writer) (*DownloadClusterISOOK, error)

DownloadClusterISO downloads the open shift per cluster discovery i s o

func (*Client) DownloadClusterKubeconfig

func (a *Client) DownloadClusterKubeconfig(ctx context.Context, params *DownloadClusterKubeconfigParams, writer io.Writer) (*DownloadClusterKubeconfigOK, error)

DownloadClusterKubeconfig downloads the kubeconfig file for this cluster

func (*Client) EnableHost

func (a *Client) EnableHost(ctx context.Context, params *EnableHostParams) (*EnableHostOK, error)

EnableHost enables a host for inclusion in the cluster

func (*Client) GenerateClusterISO

func (a *Client) GenerateClusterISO(ctx context.Context, params *GenerateClusterISOParams) (*GenerateClusterISOCreated, error)

GenerateClusterISO creates a new open shift per cluster discovery i s o

func (*Client) GetCluster

func (a *Client) GetCluster(ctx context.Context, params *GetClusterParams) (*GetClusterOK, error)

GetCluster retrieves the details of the open shift bare metal cluster

func (*Client) GetCredentials

func (a *Client) GetCredentials(ctx context.Context, params *GetCredentialsParams) (*GetCredentialsOK, error)

GetCredentials gets the the cluster admin credentials

func (*Client) GetFreeAddresses added in v1.0.4

func (a *Client) GetFreeAddresses(ctx context.Context, params *GetFreeAddressesParams) (*GetFreeAddressesOK, error)

GetFreeAddresses retrieves the free address list for a network

func (*Client) GetHost

func (a *Client) GetHost(ctx context.Context, params *GetHostParams) (*GetHostOK, error)

GetHost retrieves the details of the open shift bare metal host

func (*Client) GetNextSteps

func (a *Client) GetNextSteps(ctx context.Context, params *GetNextStepsParams) (*GetNextStepsOK, error)

GetNextSteps retrieves the next operations that the host agent needs to perform

func (*Client) InstallCluster

func (a *Client) InstallCluster(ctx context.Context, params *InstallClusterParams) (*InstallClusterAccepted, error)

InstallCluster installs the open shift bare metal cluster

func (*Client) ListClusters

func (a *Client) ListClusters(ctx context.Context, params *ListClustersParams) (*ListClustersOK, error)

ListClusters retrieves the list of open shift bare metal clusters

func (*Client) ListHosts

func (a *Client) ListHosts(ctx context.Context, params *ListHostsParams) (*ListHostsOK, error)

ListHosts retrieves the list of open shift bare metal hosts

func (*Client) PostStepReply

func (a *Client) PostStepReply(ctx context.Context, params *PostStepReplyParams) (*PostStepReplyNoContent, error)

PostStepReply posts the result of the operations from the host agent

func (*Client) RegisterCluster

func (a *Client) RegisterCluster(ctx context.Context, params *RegisterClusterParams) (*RegisterClusterCreated, error)

RegisterCluster creates a new open shift bare metal cluster definition

func (*Client) RegisterHost

func (a *Client) RegisterHost(ctx context.Context, params *RegisterHostParams) (*RegisterHostCreated, error)

RegisterHost registers a new open shift bare metal host

func (*Client) ResetCluster added in v1.0.4

func (a *Client) ResetCluster(ctx context.Context, params *ResetClusterParams) (*ResetClusterAccepted, error)

ResetCluster resets a failed installation

func (*Client) SetDebugStep

func (a *Client) SetDebugStep(ctx context.Context, params *SetDebugStepParams) (*SetDebugStepNoContent, error)

SetDebugStep sets a single shot debug step that will be sent next time the host agent will ask for a command

func (*Client) UpdateCluster

func (a *Client) UpdateCluster(ctx context.Context, params *UpdateClusterParams) (*UpdateClusterCreated, error)

UpdateCluster updates an open shift bare metal cluster definition

func (*Client) UpdateHostInstallProgress

func (a *Client) UpdateHostInstallProgress(ctx context.Context, params *UpdateHostInstallProgressParams) (*UpdateHostInstallProgressOK, error)

UpdateHostInstallProgress updates installation progress

func (*Client) UploadClusterIngressCert

func (a *Client) UploadClusterIngressCert(ctx context.Context, params *UploadClusterIngressCertParams) (*UploadClusterIngressCertCreated, error)

UploadClusterIngressCert transfers the ingress certificate for the cluster

type CompleteInstallationAccepted added in v1.0.6

type CompleteInstallationAccepted struct {
	Payload *models.Cluster
}

CompleteInstallationAccepted handles this case with default header values.

Success.

func NewCompleteInstallationAccepted added in v1.0.6

func NewCompleteInstallationAccepted() *CompleteInstallationAccepted

NewCompleteInstallationAccepted creates a CompleteInstallationAccepted with default headers values

func (*CompleteInstallationAccepted) Error added in v1.0.6

func (*CompleteInstallationAccepted) GetPayload added in v1.0.6

func (o *CompleteInstallationAccepted) GetPayload() *models.Cluster

type CompleteInstallationConflict added in v1.0.6

type CompleteInstallationConflict struct {
	Payload *models.Error
}

CompleteInstallationConflict handles this case with default header values.

Error.

func NewCompleteInstallationConflict added in v1.0.6

func NewCompleteInstallationConflict() *CompleteInstallationConflict

NewCompleteInstallationConflict creates a CompleteInstallationConflict with default headers values

func (*CompleteInstallationConflict) Error added in v1.0.6

func (*CompleteInstallationConflict) GetPayload added in v1.0.6

func (o *CompleteInstallationConflict) GetPayload() *models.Error

type CompleteInstallationInternalServerError added in v1.0.6

type CompleteInstallationInternalServerError struct {
	Payload *models.Error
}

CompleteInstallationInternalServerError handles this case with default header values.

Error.

func NewCompleteInstallationInternalServerError added in v1.0.6

func NewCompleteInstallationInternalServerError() *CompleteInstallationInternalServerError

NewCompleteInstallationInternalServerError creates a CompleteInstallationInternalServerError with default headers values

func (*CompleteInstallationInternalServerError) Error added in v1.0.6

func (*CompleteInstallationInternalServerError) GetPayload added in v1.0.6

type CompleteInstallationNotFound added in v1.0.6

type CompleteInstallationNotFound struct {
	Payload *models.Error
}

CompleteInstallationNotFound handles this case with default header values.

Error.

func NewCompleteInstallationNotFound added in v1.0.6

func NewCompleteInstallationNotFound() *CompleteInstallationNotFound

NewCompleteInstallationNotFound creates a CompleteInstallationNotFound with default headers values

func (*CompleteInstallationNotFound) Error added in v1.0.6

func (*CompleteInstallationNotFound) GetPayload added in v1.0.6

func (o *CompleteInstallationNotFound) GetPayload() *models.Error

type CompleteInstallationParams added in v1.0.6

type CompleteInstallationParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*CompletionParams*/
	CompletionParams *models.CompletionParams

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

CompleteInstallationParams contains all the parameters to send to the API endpoint for the complete installation operation typically these are written to a http.Request

func NewCompleteInstallationParams added in v1.0.6

func NewCompleteInstallationParams() *CompleteInstallationParams

NewCompleteInstallationParams creates a new CompleteInstallationParams object with the default values initialized.

func NewCompleteInstallationParamsWithContext added in v1.0.6

func NewCompleteInstallationParamsWithContext(ctx context.Context) *CompleteInstallationParams

NewCompleteInstallationParamsWithContext creates a new CompleteInstallationParams object with the default values initialized, and the ability to set a context for a request

func NewCompleteInstallationParamsWithHTTPClient added in v1.0.6

func NewCompleteInstallationParamsWithHTTPClient(client *http.Client) *CompleteInstallationParams

NewCompleteInstallationParamsWithHTTPClient creates a new CompleteInstallationParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewCompleteInstallationParamsWithTimeout added in v1.0.6

func NewCompleteInstallationParamsWithTimeout(timeout time.Duration) *CompleteInstallationParams

NewCompleteInstallationParamsWithTimeout creates a new CompleteInstallationParams object with the default values initialized, and the ability to set a timeout on a request

func (*CompleteInstallationParams) SetClusterID added in v1.0.6

func (o *CompleteInstallationParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the complete installation params

func (*CompleteInstallationParams) SetCompletionParams added in v1.0.6

func (o *CompleteInstallationParams) SetCompletionParams(completionParams *models.CompletionParams)

SetCompletionParams adds the completionParams to the complete installation params

func (*CompleteInstallationParams) SetContext added in v1.0.6

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

SetContext adds the context to the complete installation params

func (*CompleteInstallationParams) SetHTTPClient added in v1.0.6

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

SetHTTPClient adds the HTTPClient to the complete installation params

func (*CompleteInstallationParams) SetTimeout added in v1.0.6

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

SetTimeout adds the timeout to the complete installation params

func (*CompleteInstallationParams) WithClusterID added in v1.0.6

WithClusterID adds the clusterID to the complete installation params

func (*CompleteInstallationParams) WithCompletionParams added in v1.0.6

func (o *CompleteInstallationParams) WithCompletionParams(completionParams *models.CompletionParams) *CompleteInstallationParams

WithCompletionParams adds the completionParams to the complete installation params

func (*CompleteInstallationParams) WithContext added in v1.0.6

WithContext adds the context to the complete installation params

func (*CompleteInstallationParams) WithHTTPClient added in v1.0.6

WithHTTPClient adds the HTTPClient to the complete installation params

func (*CompleteInstallationParams) WithTimeout added in v1.0.6

WithTimeout adds the timeout to the complete installation params

func (*CompleteInstallationParams) WriteToRequest added in v1.0.6

WriteToRequest writes these params to a swagger request

type CompleteInstallationReader added in v1.0.6

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

CompleteInstallationReader is a Reader for the CompleteInstallation structure.

func (*CompleteInstallationReader) ReadResponse added in v1.0.6

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

ReadResponse reads a server response into the received o.

type DeregisterClusterConflict

type DeregisterClusterConflict struct {
	Payload *models.Error
}

DeregisterClusterConflict handles this case with default header values.

Error.

func NewDeregisterClusterConflict

func NewDeregisterClusterConflict() *DeregisterClusterConflict

NewDeregisterClusterConflict creates a DeregisterClusterConflict with default headers values

func (*DeregisterClusterConflict) Error

func (o *DeregisterClusterConflict) Error() string

func (*DeregisterClusterConflict) GetPayload

func (o *DeregisterClusterConflict) GetPayload() *models.Error

type DeregisterClusterInternalServerError

type DeregisterClusterInternalServerError struct {
	Payload *models.Error
}

DeregisterClusterInternalServerError handles this case with default header values.

Error.

func NewDeregisterClusterInternalServerError

func NewDeregisterClusterInternalServerError() *DeregisterClusterInternalServerError

NewDeregisterClusterInternalServerError creates a DeregisterClusterInternalServerError with default headers values

func (*DeregisterClusterInternalServerError) Error

func (*DeregisterClusterInternalServerError) GetPayload

type DeregisterClusterNoContent

type DeregisterClusterNoContent struct {
}

DeregisterClusterNoContent handles this case with default header values.

Success.

func NewDeregisterClusterNoContent

func NewDeregisterClusterNoContent() *DeregisterClusterNoContent

NewDeregisterClusterNoContent creates a DeregisterClusterNoContent with default headers values

func (*DeregisterClusterNoContent) Error

type DeregisterClusterNotFound

type DeregisterClusterNotFound struct {
	Payload *models.Error
}

DeregisterClusterNotFound handles this case with default header values.

Error.

func NewDeregisterClusterNotFound

func NewDeregisterClusterNotFound() *DeregisterClusterNotFound

NewDeregisterClusterNotFound creates a DeregisterClusterNotFound with default headers values

func (*DeregisterClusterNotFound) Error

func (o *DeregisterClusterNotFound) Error() string

func (*DeregisterClusterNotFound) GetPayload

func (o *DeregisterClusterNotFound) GetPayload() *models.Error

type DeregisterClusterParams

type DeregisterClusterParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

DeregisterClusterParams contains all the parameters to send to the API endpoint for the deregister cluster operation typically these are written to a http.Request

func NewDeregisterClusterParams

func NewDeregisterClusterParams() *DeregisterClusterParams

NewDeregisterClusterParams creates a new DeregisterClusterParams object with the default values initialized.

func NewDeregisterClusterParamsWithContext

func NewDeregisterClusterParamsWithContext(ctx context.Context) *DeregisterClusterParams

NewDeregisterClusterParamsWithContext creates a new DeregisterClusterParams object with the default values initialized, and the ability to set a context for a request

func NewDeregisterClusterParamsWithHTTPClient

func NewDeregisterClusterParamsWithHTTPClient(client *http.Client) *DeregisterClusterParams

NewDeregisterClusterParamsWithHTTPClient creates a new DeregisterClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDeregisterClusterParamsWithTimeout

func NewDeregisterClusterParamsWithTimeout(timeout time.Duration) *DeregisterClusterParams

NewDeregisterClusterParamsWithTimeout creates a new DeregisterClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*DeregisterClusterParams) SetClusterID

func (o *DeregisterClusterParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the deregister cluster params

func (*DeregisterClusterParams) SetContext

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

SetContext adds the context to the deregister cluster params

func (*DeregisterClusterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the deregister cluster params

func (*DeregisterClusterParams) SetTimeout

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

SetTimeout adds the timeout to the deregister cluster params

func (*DeregisterClusterParams) WithClusterID

func (o *DeregisterClusterParams) WithClusterID(clusterID strfmt.UUID) *DeregisterClusterParams

WithClusterID adds the clusterID to the deregister cluster params

func (*DeregisterClusterParams) WithContext

WithContext adds the context to the deregister cluster params

func (*DeregisterClusterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the deregister cluster params

func (*DeregisterClusterParams) WithTimeout

WithTimeout adds the timeout to the deregister cluster params

func (*DeregisterClusterParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeregisterClusterReader

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

DeregisterClusterReader is a Reader for the DeregisterCluster structure.

func (*DeregisterClusterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeregisterHostBadRequest

type DeregisterHostBadRequest struct {
	Payload *models.Error
}

DeregisterHostBadRequest handles this case with default header values.

Error.

func NewDeregisterHostBadRequest

func NewDeregisterHostBadRequest() *DeregisterHostBadRequest

NewDeregisterHostBadRequest creates a DeregisterHostBadRequest with default headers values

func (*DeregisterHostBadRequest) Error

func (o *DeregisterHostBadRequest) Error() string

func (*DeregisterHostBadRequest) GetPayload

func (o *DeregisterHostBadRequest) GetPayload() *models.Error

type DeregisterHostInternalServerError

type DeregisterHostInternalServerError struct {
	Payload *models.Error
}

DeregisterHostInternalServerError handles this case with default header values.

Error.

func NewDeregisterHostInternalServerError

func NewDeregisterHostInternalServerError() *DeregisterHostInternalServerError

NewDeregisterHostInternalServerError creates a DeregisterHostInternalServerError with default headers values

func (*DeregisterHostInternalServerError) Error

func (*DeregisterHostInternalServerError) GetPayload

type DeregisterHostNoContent

type DeregisterHostNoContent struct {
}

DeregisterHostNoContent handles this case with default header values.

Success.

func NewDeregisterHostNoContent

func NewDeregisterHostNoContent() *DeregisterHostNoContent

NewDeregisterHostNoContent creates a DeregisterHostNoContent with default headers values

func (*DeregisterHostNoContent) Error

func (o *DeregisterHostNoContent) Error() string

type DeregisterHostNotFound

type DeregisterHostNotFound struct {
	Payload *models.Error
}

DeregisterHostNotFound handles this case with default header values.

Error.

func NewDeregisterHostNotFound

func NewDeregisterHostNotFound() *DeregisterHostNotFound

NewDeregisterHostNotFound creates a DeregisterHostNotFound with default headers values

func (*DeregisterHostNotFound) Error

func (o *DeregisterHostNotFound) Error() string

func (*DeregisterHostNotFound) GetPayload

func (o *DeregisterHostNotFound) GetPayload() *models.Error

type DeregisterHostParams

type DeregisterHostParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID

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

DeregisterHostParams contains all the parameters to send to the API endpoint for the deregister host operation typically these are written to a http.Request

func NewDeregisterHostParams

func NewDeregisterHostParams() *DeregisterHostParams

NewDeregisterHostParams creates a new DeregisterHostParams object with the default values initialized.

func NewDeregisterHostParamsWithContext

func NewDeregisterHostParamsWithContext(ctx context.Context) *DeregisterHostParams

NewDeregisterHostParamsWithContext creates a new DeregisterHostParams object with the default values initialized, and the ability to set a context for a request

func NewDeregisterHostParamsWithHTTPClient

func NewDeregisterHostParamsWithHTTPClient(client *http.Client) *DeregisterHostParams

NewDeregisterHostParamsWithHTTPClient creates a new DeregisterHostParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDeregisterHostParamsWithTimeout

func NewDeregisterHostParamsWithTimeout(timeout time.Duration) *DeregisterHostParams

NewDeregisterHostParamsWithTimeout creates a new DeregisterHostParams object with the default values initialized, and the ability to set a timeout on a request

func (*DeregisterHostParams) SetClusterID

func (o *DeregisterHostParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the deregister host params

func (*DeregisterHostParams) SetContext

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

SetContext adds the context to the deregister host params

func (*DeregisterHostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the deregister host params

func (*DeregisterHostParams) SetHostID

func (o *DeregisterHostParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the deregister host params

func (*DeregisterHostParams) SetTimeout

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

SetTimeout adds the timeout to the deregister host params

func (*DeregisterHostParams) WithClusterID

func (o *DeregisterHostParams) WithClusterID(clusterID strfmt.UUID) *DeregisterHostParams

WithClusterID adds the clusterID to the deregister host params

func (*DeregisterHostParams) WithContext

WithContext adds the context to the deregister host params

func (*DeregisterHostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the deregister host params

func (*DeregisterHostParams) WithHostID

func (o *DeregisterHostParams) WithHostID(hostID strfmt.UUID) *DeregisterHostParams

WithHostID adds the hostID to the deregister host params

func (*DeregisterHostParams) WithTimeout

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

WithTimeout adds the timeout to the deregister host params

func (*DeregisterHostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DeregisterHostReader

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

DeregisterHostReader is a Reader for the DeregisterHost structure.

func (*DeregisterHostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DisableHostConflict

type DisableHostConflict struct {
	Payload *models.Error
}

DisableHostConflict handles this case with default header values.

Error.

func NewDisableHostConflict

func NewDisableHostConflict() *DisableHostConflict

NewDisableHostConflict creates a DisableHostConflict with default headers values

func (*DisableHostConflict) Error

func (o *DisableHostConflict) Error() string

func (*DisableHostConflict) GetPayload

func (o *DisableHostConflict) GetPayload() *models.Error

type DisableHostInternalServerError

type DisableHostInternalServerError struct {
	Payload *models.Error
}

DisableHostInternalServerError handles this case with default header values.

Error.

func NewDisableHostInternalServerError

func NewDisableHostInternalServerError() *DisableHostInternalServerError

NewDisableHostInternalServerError creates a DisableHostInternalServerError with default headers values

func (*DisableHostInternalServerError) Error

func (*DisableHostInternalServerError) GetPayload

func (o *DisableHostInternalServerError) GetPayload() *models.Error

type DisableHostNotFound

type DisableHostNotFound struct {
	Payload *models.Error
}

DisableHostNotFound handles this case with default header values.

Error.

func NewDisableHostNotFound

func NewDisableHostNotFound() *DisableHostNotFound

NewDisableHostNotFound creates a DisableHostNotFound with default headers values

func (*DisableHostNotFound) Error

func (o *DisableHostNotFound) Error() string

func (*DisableHostNotFound) GetPayload

func (o *DisableHostNotFound) GetPayload() *models.Error

type DisableHostOK added in v1.0.5

type DisableHostOK struct {
	Payload *models.Host
}

DisableHostOK handles this case with default header values.

Success.

func NewDisableHostOK added in v1.0.5

func NewDisableHostOK() *DisableHostOK

NewDisableHostOK creates a DisableHostOK with default headers values

func (*DisableHostOK) Error added in v1.0.5

func (o *DisableHostOK) Error() string

func (*DisableHostOK) GetPayload added in v1.0.5

func (o *DisableHostOK) GetPayload() *models.Host

type DisableHostParams

type DisableHostParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID

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

DisableHostParams contains all the parameters to send to the API endpoint for the disable host operation typically these are written to a http.Request

func NewDisableHostParams

func NewDisableHostParams() *DisableHostParams

NewDisableHostParams creates a new DisableHostParams object with the default values initialized.

func NewDisableHostParamsWithContext

func NewDisableHostParamsWithContext(ctx context.Context) *DisableHostParams

NewDisableHostParamsWithContext creates a new DisableHostParams object with the default values initialized, and the ability to set a context for a request

func NewDisableHostParamsWithHTTPClient

func NewDisableHostParamsWithHTTPClient(client *http.Client) *DisableHostParams

NewDisableHostParamsWithHTTPClient creates a new DisableHostParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDisableHostParamsWithTimeout

func NewDisableHostParamsWithTimeout(timeout time.Duration) *DisableHostParams

NewDisableHostParamsWithTimeout creates a new DisableHostParams object with the default values initialized, and the ability to set a timeout on a request

func (*DisableHostParams) SetClusterID

func (o *DisableHostParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the disable host params

func (*DisableHostParams) SetContext

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

SetContext adds the context to the disable host params

func (*DisableHostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the disable host params

func (*DisableHostParams) SetHostID

func (o *DisableHostParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the disable host params

func (*DisableHostParams) SetTimeout

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

SetTimeout adds the timeout to the disable host params

func (*DisableHostParams) WithClusterID

func (o *DisableHostParams) WithClusterID(clusterID strfmt.UUID) *DisableHostParams

WithClusterID adds the clusterID to the disable host params

func (*DisableHostParams) WithContext

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

WithContext adds the context to the disable host params

func (*DisableHostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the disable host params

func (*DisableHostParams) WithHostID

func (o *DisableHostParams) WithHostID(hostID strfmt.UUID) *DisableHostParams

WithHostID adds the hostID to the disable host params

func (*DisableHostParams) WithTimeout

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

WithTimeout adds the timeout to the disable host params

func (*DisableHostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type DisableHostReader

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

DisableHostReader is a Reader for the DisableHost structure.

func (*DisableHostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DownloadClusterFilesConflict

type DownloadClusterFilesConflict struct {
	Payload *models.Error
}

DownloadClusterFilesConflict handles this case with default header values.

Error.

func NewDownloadClusterFilesConflict

func NewDownloadClusterFilesConflict() *DownloadClusterFilesConflict

NewDownloadClusterFilesConflict creates a DownloadClusterFilesConflict with default headers values

func (*DownloadClusterFilesConflict) Error

func (*DownloadClusterFilesConflict) GetPayload

func (o *DownloadClusterFilesConflict) GetPayload() *models.Error

type DownloadClusterFilesInternalServerError

type DownloadClusterFilesInternalServerError struct {
	Payload *models.Error
}

DownloadClusterFilesInternalServerError handles this case with default header values.

Error.

func NewDownloadClusterFilesInternalServerError

func NewDownloadClusterFilesInternalServerError() *DownloadClusterFilesInternalServerError

NewDownloadClusterFilesInternalServerError creates a DownloadClusterFilesInternalServerError with default headers values

func (*DownloadClusterFilesInternalServerError) Error

func (*DownloadClusterFilesInternalServerError) GetPayload

type DownloadClusterFilesNotFound

type DownloadClusterFilesNotFound struct {
	Payload *models.Error
}

DownloadClusterFilesNotFound handles this case with default header values.

Error.

func NewDownloadClusterFilesNotFound

func NewDownloadClusterFilesNotFound() *DownloadClusterFilesNotFound

NewDownloadClusterFilesNotFound creates a DownloadClusterFilesNotFound with default headers values

func (*DownloadClusterFilesNotFound) Error

func (*DownloadClusterFilesNotFound) GetPayload

func (o *DownloadClusterFilesNotFound) GetPayload() *models.Error

type DownloadClusterFilesOK

type DownloadClusterFilesOK struct {
	Payload io.Writer
}

DownloadClusterFilesOK handles this case with default header values.

Success.

func NewDownloadClusterFilesOK

func NewDownloadClusterFilesOK(writer io.Writer) *DownloadClusterFilesOK

NewDownloadClusterFilesOK creates a DownloadClusterFilesOK with default headers values

func (*DownloadClusterFilesOK) Error

func (o *DownloadClusterFilesOK) Error() string

func (*DownloadClusterFilesOK) GetPayload

func (o *DownloadClusterFilesOK) GetPayload() io.Writer

type DownloadClusterFilesParams

type DownloadClusterFilesParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*FileName*/
	FileName string

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

DownloadClusterFilesParams contains all the parameters to send to the API endpoint for the download cluster files operation typically these are written to a http.Request

func NewDownloadClusterFilesParams

func NewDownloadClusterFilesParams() *DownloadClusterFilesParams

NewDownloadClusterFilesParams creates a new DownloadClusterFilesParams object with the default values initialized.

func NewDownloadClusterFilesParamsWithContext

func NewDownloadClusterFilesParamsWithContext(ctx context.Context) *DownloadClusterFilesParams

NewDownloadClusterFilesParamsWithContext creates a new DownloadClusterFilesParams object with the default values initialized, and the ability to set a context for a request

func NewDownloadClusterFilesParamsWithHTTPClient

func NewDownloadClusterFilesParamsWithHTTPClient(client *http.Client) *DownloadClusterFilesParams

NewDownloadClusterFilesParamsWithHTTPClient creates a new DownloadClusterFilesParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDownloadClusterFilesParamsWithTimeout

func NewDownloadClusterFilesParamsWithTimeout(timeout time.Duration) *DownloadClusterFilesParams

NewDownloadClusterFilesParamsWithTimeout creates a new DownloadClusterFilesParams object with the default values initialized, and the ability to set a timeout on a request

func (*DownloadClusterFilesParams) SetClusterID

func (o *DownloadClusterFilesParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the download cluster files params

func (*DownloadClusterFilesParams) SetContext

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

SetContext adds the context to the download cluster files params

func (*DownloadClusterFilesParams) SetFileName

func (o *DownloadClusterFilesParams) SetFileName(fileName string)

SetFileName adds the fileName to the download cluster files params

func (*DownloadClusterFilesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the download cluster files params

func (*DownloadClusterFilesParams) SetTimeout

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

SetTimeout adds the timeout to the download cluster files params

func (*DownloadClusterFilesParams) WithClusterID

WithClusterID adds the clusterID to the download cluster files params

func (*DownloadClusterFilesParams) WithContext

WithContext adds the context to the download cluster files params

func (*DownloadClusterFilesParams) WithFileName

WithFileName adds the fileName to the download cluster files params

func (*DownloadClusterFilesParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the download cluster files params

func (*DownloadClusterFilesParams) WithTimeout

WithTimeout adds the timeout to the download cluster files params

func (*DownloadClusterFilesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DownloadClusterFilesReader

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

DownloadClusterFilesReader is a Reader for the DownloadClusterFiles structure.

func (*DownloadClusterFilesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DownloadClusterISOBadRequest

type DownloadClusterISOBadRequest struct {
	Payload *models.Error
}

DownloadClusterISOBadRequest handles this case with default header values.

Error.

func NewDownloadClusterISOBadRequest

func NewDownloadClusterISOBadRequest() *DownloadClusterISOBadRequest

NewDownloadClusterISOBadRequest creates a DownloadClusterISOBadRequest with default headers values

func (*DownloadClusterISOBadRequest) Error

func (*DownloadClusterISOBadRequest) GetPayload

func (o *DownloadClusterISOBadRequest) GetPayload() *models.Error

type DownloadClusterISOInternalServerError

type DownloadClusterISOInternalServerError struct {
	Payload *models.Error
}

DownloadClusterISOInternalServerError handles this case with default header values.

Error.

func NewDownloadClusterISOInternalServerError

func NewDownloadClusterISOInternalServerError() *DownloadClusterISOInternalServerError

NewDownloadClusterISOInternalServerError creates a DownloadClusterISOInternalServerError with default headers values

func (*DownloadClusterISOInternalServerError) Error

func (*DownloadClusterISOInternalServerError) GetPayload

type DownloadClusterISONotFound

type DownloadClusterISONotFound struct {
	Payload *models.Error
}

DownloadClusterISONotFound handles this case with default header values.

Error.

func NewDownloadClusterISONotFound

func NewDownloadClusterISONotFound() *DownloadClusterISONotFound

NewDownloadClusterISONotFound creates a DownloadClusterISONotFound with default headers values

func (*DownloadClusterISONotFound) Error

func (*DownloadClusterISONotFound) GetPayload

func (o *DownloadClusterISONotFound) GetPayload() *models.Error

type DownloadClusterISOOK

type DownloadClusterISOOK struct {
	Payload io.Writer
}

DownloadClusterISOOK handles this case with default header values.

Success.

func NewDownloadClusterISOOK

func NewDownloadClusterISOOK(writer io.Writer) *DownloadClusterISOOK

NewDownloadClusterISOOK creates a DownloadClusterISOOK with default headers values

func (*DownloadClusterISOOK) Error

func (o *DownloadClusterISOOK) Error() string

func (*DownloadClusterISOOK) GetPayload

func (o *DownloadClusterISOOK) GetPayload() io.Writer

type DownloadClusterISOParams

type DownloadClusterISOParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

DownloadClusterISOParams contains all the parameters to send to the API endpoint for the download cluster i s o operation typically these are written to a http.Request

func NewDownloadClusterISOParams

func NewDownloadClusterISOParams() *DownloadClusterISOParams

NewDownloadClusterISOParams creates a new DownloadClusterISOParams object with the default values initialized.

func NewDownloadClusterISOParamsWithContext

func NewDownloadClusterISOParamsWithContext(ctx context.Context) *DownloadClusterISOParams

NewDownloadClusterISOParamsWithContext creates a new DownloadClusterISOParams object with the default values initialized, and the ability to set a context for a request

func NewDownloadClusterISOParamsWithHTTPClient

func NewDownloadClusterISOParamsWithHTTPClient(client *http.Client) *DownloadClusterISOParams

NewDownloadClusterISOParamsWithHTTPClient creates a new DownloadClusterISOParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDownloadClusterISOParamsWithTimeout

func NewDownloadClusterISOParamsWithTimeout(timeout time.Duration) *DownloadClusterISOParams

NewDownloadClusterISOParamsWithTimeout creates a new DownloadClusterISOParams object with the default values initialized, and the ability to set a timeout on a request

func (*DownloadClusterISOParams) SetClusterID

func (o *DownloadClusterISOParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the download cluster i s o params

func (*DownloadClusterISOParams) SetContext

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

SetContext adds the context to the download cluster i s o params

func (*DownloadClusterISOParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the download cluster i s o params

func (*DownloadClusterISOParams) SetTimeout

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

SetTimeout adds the timeout to the download cluster i s o params

func (*DownloadClusterISOParams) WithClusterID

func (o *DownloadClusterISOParams) WithClusterID(clusterID strfmt.UUID) *DownloadClusterISOParams

WithClusterID adds the clusterID to the download cluster i s o params

func (*DownloadClusterISOParams) WithContext

WithContext adds the context to the download cluster i s o params

func (*DownloadClusterISOParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the download cluster i s o params

func (*DownloadClusterISOParams) WithTimeout

WithTimeout adds the timeout to the download cluster i s o params

func (*DownloadClusterISOParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DownloadClusterISOReader

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

DownloadClusterISOReader is a Reader for the DownloadClusterISO structure.

func (*DownloadClusterISOReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DownloadClusterKubeconfigConflict

type DownloadClusterKubeconfigConflict struct {
	Payload *models.Error
}

DownloadClusterKubeconfigConflict handles this case with default header values.

Error.

func NewDownloadClusterKubeconfigConflict

func NewDownloadClusterKubeconfigConflict() *DownloadClusterKubeconfigConflict

NewDownloadClusterKubeconfigConflict creates a DownloadClusterKubeconfigConflict with default headers values

func (*DownloadClusterKubeconfigConflict) Error

func (*DownloadClusterKubeconfigConflict) GetPayload

type DownloadClusterKubeconfigInternalServerError

type DownloadClusterKubeconfigInternalServerError struct {
	Payload *models.Error
}

DownloadClusterKubeconfigInternalServerError handles this case with default header values.

Error.

func NewDownloadClusterKubeconfigInternalServerError

func NewDownloadClusterKubeconfigInternalServerError() *DownloadClusterKubeconfigInternalServerError

NewDownloadClusterKubeconfigInternalServerError creates a DownloadClusterKubeconfigInternalServerError with default headers values

func (*DownloadClusterKubeconfigInternalServerError) Error

func (*DownloadClusterKubeconfigInternalServerError) GetPayload

type DownloadClusterKubeconfigNotFound

type DownloadClusterKubeconfigNotFound struct {
	Payload *models.Error
}

DownloadClusterKubeconfigNotFound handles this case with default header values.

Error.

func NewDownloadClusterKubeconfigNotFound

func NewDownloadClusterKubeconfigNotFound() *DownloadClusterKubeconfigNotFound

NewDownloadClusterKubeconfigNotFound creates a DownloadClusterKubeconfigNotFound with default headers values

func (*DownloadClusterKubeconfigNotFound) Error

func (*DownloadClusterKubeconfigNotFound) GetPayload

type DownloadClusterKubeconfigOK

type DownloadClusterKubeconfigOK struct {
	Payload io.Writer
}

DownloadClusterKubeconfigOK handles this case with default header values.

Success.

func NewDownloadClusterKubeconfigOK

func NewDownloadClusterKubeconfigOK(writer io.Writer) *DownloadClusterKubeconfigOK

NewDownloadClusterKubeconfigOK creates a DownloadClusterKubeconfigOK with default headers values

func (*DownloadClusterKubeconfigOK) Error

func (*DownloadClusterKubeconfigOK) GetPayload

func (o *DownloadClusterKubeconfigOK) GetPayload() io.Writer

type DownloadClusterKubeconfigParams

type DownloadClusterKubeconfigParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

DownloadClusterKubeconfigParams contains all the parameters to send to the API endpoint for the download cluster kubeconfig operation typically these are written to a http.Request

func NewDownloadClusterKubeconfigParams

func NewDownloadClusterKubeconfigParams() *DownloadClusterKubeconfigParams

NewDownloadClusterKubeconfigParams creates a new DownloadClusterKubeconfigParams object with the default values initialized.

func NewDownloadClusterKubeconfigParamsWithContext

func NewDownloadClusterKubeconfigParamsWithContext(ctx context.Context) *DownloadClusterKubeconfigParams

NewDownloadClusterKubeconfigParamsWithContext creates a new DownloadClusterKubeconfigParams object with the default values initialized, and the ability to set a context for a request

func NewDownloadClusterKubeconfigParamsWithHTTPClient

func NewDownloadClusterKubeconfigParamsWithHTTPClient(client *http.Client) *DownloadClusterKubeconfigParams

NewDownloadClusterKubeconfigParamsWithHTTPClient creates a new DownloadClusterKubeconfigParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewDownloadClusterKubeconfigParamsWithTimeout

func NewDownloadClusterKubeconfigParamsWithTimeout(timeout time.Duration) *DownloadClusterKubeconfigParams

NewDownloadClusterKubeconfigParamsWithTimeout creates a new DownloadClusterKubeconfigParams object with the default values initialized, and the ability to set a timeout on a request

func (*DownloadClusterKubeconfigParams) SetClusterID

func (o *DownloadClusterKubeconfigParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) SetContext

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

SetContext adds the context to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) SetTimeout

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

SetTimeout adds the timeout to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) WithClusterID

WithClusterID adds the clusterID to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) WithContext

WithContext adds the context to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) WithTimeout

WithTimeout adds the timeout to the download cluster kubeconfig params

func (*DownloadClusterKubeconfigParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DownloadClusterKubeconfigReader

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

DownloadClusterKubeconfigReader is a Reader for the DownloadClusterKubeconfig structure.

func (*DownloadClusterKubeconfigReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type EnableHostConflict

type EnableHostConflict struct {
	Payload *models.Error
}

EnableHostConflict handles this case with default header values.

Error.

func NewEnableHostConflict

func NewEnableHostConflict() *EnableHostConflict

NewEnableHostConflict creates a EnableHostConflict with default headers values

func (*EnableHostConflict) Error

func (o *EnableHostConflict) Error() string

func (*EnableHostConflict) GetPayload

func (o *EnableHostConflict) GetPayload() *models.Error

type EnableHostInternalServerError

type EnableHostInternalServerError struct {
	Payload *models.Error
}

EnableHostInternalServerError handles this case with default header values.

Error.

func NewEnableHostInternalServerError

func NewEnableHostInternalServerError() *EnableHostInternalServerError

NewEnableHostInternalServerError creates a EnableHostInternalServerError with default headers values

func (*EnableHostInternalServerError) Error

func (*EnableHostInternalServerError) GetPayload

func (o *EnableHostInternalServerError) GetPayload() *models.Error

type EnableHostNotFound

type EnableHostNotFound struct {
	Payload *models.Error
}

EnableHostNotFound handles this case with default header values.

Error.

func NewEnableHostNotFound

func NewEnableHostNotFound() *EnableHostNotFound

NewEnableHostNotFound creates a EnableHostNotFound with default headers values

func (*EnableHostNotFound) Error

func (o *EnableHostNotFound) Error() string

func (*EnableHostNotFound) GetPayload

func (o *EnableHostNotFound) GetPayload() *models.Error

type EnableHostOK added in v1.0.5

type EnableHostOK struct {
	Payload *models.Host
}

EnableHostOK handles this case with default header values.

Success.

func NewEnableHostOK added in v1.0.5

func NewEnableHostOK() *EnableHostOK

NewEnableHostOK creates a EnableHostOK with default headers values

func (*EnableHostOK) Error added in v1.0.5

func (o *EnableHostOK) Error() string

func (*EnableHostOK) GetPayload added in v1.0.5

func (o *EnableHostOK) GetPayload() *models.Host

type EnableHostParams

type EnableHostParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID

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

EnableHostParams contains all the parameters to send to the API endpoint for the enable host operation typically these are written to a http.Request

func NewEnableHostParams

func NewEnableHostParams() *EnableHostParams

NewEnableHostParams creates a new EnableHostParams object with the default values initialized.

func NewEnableHostParamsWithContext

func NewEnableHostParamsWithContext(ctx context.Context) *EnableHostParams

NewEnableHostParamsWithContext creates a new EnableHostParams object with the default values initialized, and the ability to set a context for a request

func NewEnableHostParamsWithHTTPClient

func NewEnableHostParamsWithHTTPClient(client *http.Client) *EnableHostParams

NewEnableHostParamsWithHTTPClient creates a new EnableHostParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewEnableHostParamsWithTimeout

func NewEnableHostParamsWithTimeout(timeout time.Duration) *EnableHostParams

NewEnableHostParamsWithTimeout creates a new EnableHostParams object with the default values initialized, and the ability to set a timeout on a request

func (*EnableHostParams) SetClusterID

func (o *EnableHostParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the enable host params

func (*EnableHostParams) SetContext

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

SetContext adds the context to the enable host params

func (*EnableHostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the enable host params

func (*EnableHostParams) SetHostID

func (o *EnableHostParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the enable host params

func (*EnableHostParams) SetTimeout

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

SetTimeout adds the timeout to the enable host params

func (*EnableHostParams) WithClusterID

func (o *EnableHostParams) WithClusterID(clusterID strfmt.UUID) *EnableHostParams

WithClusterID adds the clusterID to the enable host params

func (*EnableHostParams) WithContext

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

WithContext adds the context to the enable host params

func (*EnableHostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the enable host params

func (*EnableHostParams) WithHostID

func (o *EnableHostParams) WithHostID(hostID strfmt.UUID) *EnableHostParams

WithHostID adds the hostID to the enable host params

func (*EnableHostParams) WithTimeout

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

WithTimeout adds the timeout to the enable host params

func (*EnableHostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type EnableHostReader

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

EnableHostReader is a Reader for the EnableHost structure.

func (*EnableHostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GenerateClusterISOBadRequest

type GenerateClusterISOBadRequest struct {
	Payload *models.Error
}

GenerateClusterISOBadRequest handles this case with default header values.

Error.

func NewGenerateClusterISOBadRequest

func NewGenerateClusterISOBadRequest() *GenerateClusterISOBadRequest

NewGenerateClusterISOBadRequest creates a GenerateClusterISOBadRequest with default headers values

func (*GenerateClusterISOBadRequest) Error

func (*GenerateClusterISOBadRequest) GetPayload

func (o *GenerateClusterISOBadRequest) GetPayload() *models.Error

type GenerateClusterISOConflict

type GenerateClusterISOConflict struct {
	Payload *models.Error
}

GenerateClusterISOConflict handles this case with default header values.

Error.

func NewGenerateClusterISOConflict

func NewGenerateClusterISOConflict() *GenerateClusterISOConflict

NewGenerateClusterISOConflict creates a GenerateClusterISOConflict with default headers values

func (*GenerateClusterISOConflict) Error

func (*GenerateClusterISOConflict) GetPayload added in v1.0.6

func (o *GenerateClusterISOConflict) GetPayload() *models.Error

type GenerateClusterISOCreated

type GenerateClusterISOCreated struct {
	Payload *models.Cluster
}

GenerateClusterISOCreated handles this case with default header values.

Success.

func NewGenerateClusterISOCreated

func NewGenerateClusterISOCreated() *GenerateClusterISOCreated

NewGenerateClusterISOCreated creates a GenerateClusterISOCreated with default headers values

func (*GenerateClusterISOCreated) Error

func (o *GenerateClusterISOCreated) Error() string

func (*GenerateClusterISOCreated) GetPayload

func (o *GenerateClusterISOCreated) GetPayload() *models.Cluster

type GenerateClusterISOInternalServerError

type GenerateClusterISOInternalServerError struct {
	Payload *models.Error
}

GenerateClusterISOInternalServerError handles this case with default header values.

Error.

func NewGenerateClusterISOInternalServerError

func NewGenerateClusterISOInternalServerError() *GenerateClusterISOInternalServerError

NewGenerateClusterISOInternalServerError creates a GenerateClusterISOInternalServerError with default headers values

func (*GenerateClusterISOInternalServerError) Error

func (*GenerateClusterISOInternalServerError) GetPayload

type GenerateClusterISONotFound

type GenerateClusterISONotFound struct {
	Payload *models.Error
}

GenerateClusterISONotFound handles this case with default header values.

Error.

func NewGenerateClusterISONotFound

func NewGenerateClusterISONotFound() *GenerateClusterISONotFound

NewGenerateClusterISONotFound creates a GenerateClusterISONotFound with default headers values

func (*GenerateClusterISONotFound) Error

func (*GenerateClusterISONotFound) GetPayload

func (o *GenerateClusterISONotFound) GetPayload() *models.Error

type GenerateClusterISOParams

type GenerateClusterISOParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*ImageCreateParams*/
	ImageCreateParams *models.ImageCreateParams

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

GenerateClusterISOParams contains all the parameters to send to the API endpoint for the generate cluster i s o operation typically these are written to a http.Request

func NewGenerateClusterISOParams

func NewGenerateClusterISOParams() *GenerateClusterISOParams

NewGenerateClusterISOParams creates a new GenerateClusterISOParams object with the default values initialized.

func NewGenerateClusterISOParamsWithContext

func NewGenerateClusterISOParamsWithContext(ctx context.Context) *GenerateClusterISOParams

NewGenerateClusterISOParamsWithContext creates a new GenerateClusterISOParams object with the default values initialized, and the ability to set a context for a request

func NewGenerateClusterISOParamsWithHTTPClient

func NewGenerateClusterISOParamsWithHTTPClient(client *http.Client) *GenerateClusterISOParams

NewGenerateClusterISOParamsWithHTTPClient creates a new GenerateClusterISOParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGenerateClusterISOParamsWithTimeout

func NewGenerateClusterISOParamsWithTimeout(timeout time.Duration) *GenerateClusterISOParams

NewGenerateClusterISOParamsWithTimeout creates a new GenerateClusterISOParams object with the default values initialized, and the ability to set a timeout on a request

func (*GenerateClusterISOParams) SetClusterID

func (o *GenerateClusterISOParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the generate cluster i s o params

func (*GenerateClusterISOParams) SetContext

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

SetContext adds the context to the generate cluster i s o params

func (*GenerateClusterISOParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the generate cluster i s o params

func (*GenerateClusterISOParams) SetImageCreateParams

func (o *GenerateClusterISOParams) SetImageCreateParams(imageCreateParams *models.ImageCreateParams)

SetImageCreateParams adds the imageCreateParams to the generate cluster i s o params

func (*GenerateClusterISOParams) SetTimeout

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

SetTimeout adds the timeout to the generate cluster i s o params

func (*GenerateClusterISOParams) WithClusterID

func (o *GenerateClusterISOParams) WithClusterID(clusterID strfmt.UUID) *GenerateClusterISOParams

WithClusterID adds the clusterID to the generate cluster i s o params

func (*GenerateClusterISOParams) WithContext

WithContext adds the context to the generate cluster i s o params

func (*GenerateClusterISOParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the generate cluster i s o params

func (*GenerateClusterISOParams) WithImageCreateParams

func (o *GenerateClusterISOParams) WithImageCreateParams(imageCreateParams *models.ImageCreateParams) *GenerateClusterISOParams

WithImageCreateParams adds the imageCreateParams to the generate cluster i s o params

func (*GenerateClusterISOParams) WithTimeout

WithTimeout adds the timeout to the generate cluster i s o params

func (*GenerateClusterISOParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GenerateClusterISOReader

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

GenerateClusterISOReader is a Reader for the GenerateClusterISO structure.

func (*GenerateClusterISOReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetClusterInternalServerError

type GetClusterInternalServerError struct {
	Payload *models.Error
}

GetClusterInternalServerError handles this case with default header values.

Error.

func NewGetClusterInternalServerError

func NewGetClusterInternalServerError() *GetClusterInternalServerError

NewGetClusterInternalServerError creates a GetClusterInternalServerError with default headers values

func (*GetClusterInternalServerError) Error

func (*GetClusterInternalServerError) GetPayload

func (o *GetClusterInternalServerError) GetPayload() *models.Error

type GetClusterNotFound

type GetClusterNotFound struct {
	Payload *models.Error
}

GetClusterNotFound handles this case with default header values.

Error.

func NewGetClusterNotFound

func NewGetClusterNotFound() *GetClusterNotFound

NewGetClusterNotFound creates a GetClusterNotFound with default headers values

func (*GetClusterNotFound) Error

func (o *GetClusterNotFound) Error() string

func (*GetClusterNotFound) GetPayload

func (o *GetClusterNotFound) GetPayload() *models.Error

type GetClusterOK

type GetClusterOK struct {
	Payload *models.Cluster
}

GetClusterOK handles this case with default header values.

Success.

func NewGetClusterOK

func NewGetClusterOK() *GetClusterOK

NewGetClusterOK creates a GetClusterOK with default headers values

func (*GetClusterOK) Error

func (o *GetClusterOK) Error() string

func (*GetClusterOK) GetPayload

func (o *GetClusterOK) GetPayload() *models.Cluster

type GetClusterParams

type GetClusterParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

GetClusterParams contains all the parameters to send to the API endpoint for the get cluster operation typically these are written to a http.Request

func NewGetClusterParams

func NewGetClusterParams() *GetClusterParams

NewGetClusterParams creates a new GetClusterParams object with the default values initialized.

func NewGetClusterParamsWithContext

func NewGetClusterParamsWithContext(ctx context.Context) *GetClusterParams

NewGetClusterParamsWithContext creates a new GetClusterParams object with the default values initialized, and the ability to set a context for a request

func NewGetClusterParamsWithHTTPClient

func NewGetClusterParamsWithHTTPClient(client *http.Client) *GetClusterParams

NewGetClusterParamsWithHTTPClient creates a new GetClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetClusterParamsWithTimeout

func NewGetClusterParamsWithTimeout(timeout time.Duration) *GetClusterParams

NewGetClusterParamsWithTimeout creates a new GetClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetClusterParams) SetClusterID

func (o *GetClusterParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the get cluster params

func (*GetClusterParams) SetContext

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

SetContext adds the context to the get cluster params

func (*GetClusterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get cluster params

func (*GetClusterParams) SetTimeout

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

SetTimeout adds the timeout to the get cluster params

func (*GetClusterParams) WithClusterID

func (o *GetClusterParams) WithClusterID(clusterID strfmt.UUID) *GetClusterParams

WithClusterID adds the clusterID to the get cluster params

func (*GetClusterParams) WithContext

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

WithContext adds the context to the get cluster params

func (*GetClusterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get cluster params

func (*GetClusterParams) WithTimeout

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

WithTimeout adds the timeout to the get cluster params

func (*GetClusterParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetClusterReader

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

GetClusterReader is a Reader for the GetCluster structure.

func (*GetClusterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetCredentialsConflict

type GetCredentialsConflict struct {
	Payload *models.Error
}

GetCredentialsConflict handles this case with default header values.

Error.

func NewGetCredentialsConflict

func NewGetCredentialsConflict() *GetCredentialsConflict

NewGetCredentialsConflict creates a GetCredentialsConflict with default headers values

func (*GetCredentialsConflict) Error

func (o *GetCredentialsConflict) Error() string

func (*GetCredentialsConflict) GetPayload

func (o *GetCredentialsConflict) GetPayload() *models.Error

type GetCredentialsInternalServerError

type GetCredentialsInternalServerError struct {
	Payload *models.Error
}

GetCredentialsInternalServerError handles this case with default header values.

Error.

func NewGetCredentialsInternalServerError

func NewGetCredentialsInternalServerError() *GetCredentialsInternalServerError

NewGetCredentialsInternalServerError creates a GetCredentialsInternalServerError with default headers values

func (*GetCredentialsInternalServerError) Error

func (*GetCredentialsInternalServerError) GetPayload

type GetCredentialsNotFound

type GetCredentialsNotFound struct {
	Payload *models.Error
}

GetCredentialsNotFound handles this case with default header values.

Error.

func NewGetCredentialsNotFound

func NewGetCredentialsNotFound() *GetCredentialsNotFound

NewGetCredentialsNotFound creates a GetCredentialsNotFound with default headers values

func (*GetCredentialsNotFound) Error

func (o *GetCredentialsNotFound) Error() string

func (*GetCredentialsNotFound) GetPayload

func (o *GetCredentialsNotFound) GetPayload() *models.Error

type GetCredentialsOK

type GetCredentialsOK struct {
	Payload *models.Credentials
}

GetCredentialsOK handles this case with default header values.

Success.

func NewGetCredentialsOK

func NewGetCredentialsOK() *GetCredentialsOK

NewGetCredentialsOK creates a GetCredentialsOK with default headers values

func (*GetCredentialsOK) Error

func (o *GetCredentialsOK) Error() string

func (*GetCredentialsOK) GetPayload

func (o *GetCredentialsOK) GetPayload() *models.Credentials

type GetCredentialsParams

type GetCredentialsParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

GetCredentialsParams contains all the parameters to send to the API endpoint for the get credentials operation typically these are written to a http.Request

func NewGetCredentialsParams

func NewGetCredentialsParams() *GetCredentialsParams

NewGetCredentialsParams creates a new GetCredentialsParams object with the default values initialized.

func NewGetCredentialsParamsWithContext

func NewGetCredentialsParamsWithContext(ctx context.Context) *GetCredentialsParams

NewGetCredentialsParamsWithContext creates a new GetCredentialsParams object with the default values initialized, and the ability to set a context for a request

func NewGetCredentialsParamsWithHTTPClient

func NewGetCredentialsParamsWithHTTPClient(client *http.Client) *GetCredentialsParams

NewGetCredentialsParamsWithHTTPClient creates a new GetCredentialsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetCredentialsParamsWithTimeout

func NewGetCredentialsParamsWithTimeout(timeout time.Duration) *GetCredentialsParams

NewGetCredentialsParamsWithTimeout creates a new GetCredentialsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetCredentialsParams) SetClusterID

func (o *GetCredentialsParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the get credentials params

func (*GetCredentialsParams) SetContext

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

SetContext adds the context to the get credentials params

func (*GetCredentialsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get credentials params

func (*GetCredentialsParams) SetTimeout

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

SetTimeout adds the timeout to the get credentials params

func (*GetCredentialsParams) WithClusterID

func (o *GetCredentialsParams) WithClusterID(clusterID strfmt.UUID) *GetCredentialsParams

WithClusterID adds the clusterID to the get credentials params

func (*GetCredentialsParams) WithContext

WithContext adds the context to the get credentials params

func (*GetCredentialsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get credentials params

func (*GetCredentialsParams) WithTimeout

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

WithTimeout adds the timeout to the get credentials params

func (*GetCredentialsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetCredentialsReader

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

GetCredentialsReader is a Reader for the GetCredentials structure.

func (*GetCredentialsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetFreeAddressesInternalServerError added in v1.0.4

type GetFreeAddressesInternalServerError struct {
	Payload *models.Error
}

GetFreeAddressesInternalServerError handles this case with default header values.

Error.

func NewGetFreeAddressesInternalServerError added in v1.0.4

func NewGetFreeAddressesInternalServerError() *GetFreeAddressesInternalServerError

NewGetFreeAddressesInternalServerError creates a GetFreeAddressesInternalServerError with default headers values

func (*GetFreeAddressesInternalServerError) Error added in v1.0.4

func (*GetFreeAddressesInternalServerError) GetPayload added in v1.0.4

type GetFreeAddressesNotFound added in v1.0.4

type GetFreeAddressesNotFound struct {
	Payload *models.Error
}

GetFreeAddressesNotFound handles this case with default header values.

Error.

func NewGetFreeAddressesNotFound added in v1.0.4

func NewGetFreeAddressesNotFound() *GetFreeAddressesNotFound

NewGetFreeAddressesNotFound creates a GetFreeAddressesNotFound with default headers values

func (*GetFreeAddressesNotFound) Error added in v1.0.4

func (o *GetFreeAddressesNotFound) Error() string

func (*GetFreeAddressesNotFound) GetPayload added in v1.0.4

func (o *GetFreeAddressesNotFound) GetPayload() *models.Error

type GetFreeAddressesOK added in v1.0.4

type GetFreeAddressesOK struct {
	Payload models.FreeAddressesList
}

GetFreeAddressesOK handles this case with default header values.

Success

func NewGetFreeAddressesOK added in v1.0.4

func NewGetFreeAddressesOK() *GetFreeAddressesOK

NewGetFreeAddressesOK creates a GetFreeAddressesOK with default headers values

func (*GetFreeAddressesOK) Error added in v1.0.4

func (o *GetFreeAddressesOK) Error() string

func (*GetFreeAddressesOK) GetPayload added in v1.0.4

type GetFreeAddressesParams added in v1.0.4

type GetFreeAddressesParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*Limit*/
	Limit *int64
	/*Network*/
	Network string
	/*Prefix*/
	Prefix *string

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

GetFreeAddressesParams contains all the parameters to send to the API endpoint for the get free addresses operation typically these are written to a http.Request

func NewGetFreeAddressesParams added in v1.0.4

func NewGetFreeAddressesParams() *GetFreeAddressesParams

NewGetFreeAddressesParams creates a new GetFreeAddressesParams object with the default values initialized.

func NewGetFreeAddressesParamsWithContext added in v1.0.4

func NewGetFreeAddressesParamsWithContext(ctx context.Context) *GetFreeAddressesParams

NewGetFreeAddressesParamsWithContext creates a new GetFreeAddressesParams object with the default values initialized, and the ability to set a context for a request

func NewGetFreeAddressesParamsWithHTTPClient added in v1.0.4

func NewGetFreeAddressesParamsWithHTTPClient(client *http.Client) *GetFreeAddressesParams

NewGetFreeAddressesParamsWithHTTPClient creates a new GetFreeAddressesParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetFreeAddressesParamsWithTimeout added in v1.0.4

func NewGetFreeAddressesParamsWithTimeout(timeout time.Duration) *GetFreeAddressesParams

NewGetFreeAddressesParamsWithTimeout creates a new GetFreeAddressesParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetFreeAddressesParams) SetClusterID added in v1.0.4

func (o *GetFreeAddressesParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the get free addresses params

func (*GetFreeAddressesParams) SetContext added in v1.0.4

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

SetContext adds the context to the get free addresses params

func (*GetFreeAddressesParams) SetHTTPClient added in v1.0.4

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

SetHTTPClient adds the HTTPClient to the get free addresses params

func (*GetFreeAddressesParams) SetLimit added in v1.0.4

func (o *GetFreeAddressesParams) SetLimit(limit *int64)

SetLimit adds the limit to the get free addresses params

func (*GetFreeAddressesParams) SetNetwork added in v1.0.4

func (o *GetFreeAddressesParams) SetNetwork(network string)

SetNetwork adds the network to the get free addresses params

func (*GetFreeAddressesParams) SetPrefix added in v1.0.4

func (o *GetFreeAddressesParams) SetPrefix(prefix *string)

SetPrefix adds the prefix to the get free addresses params

func (*GetFreeAddressesParams) SetTimeout added in v1.0.4

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

SetTimeout adds the timeout to the get free addresses params

func (*GetFreeAddressesParams) WithClusterID added in v1.0.4

func (o *GetFreeAddressesParams) WithClusterID(clusterID strfmt.UUID) *GetFreeAddressesParams

WithClusterID adds the clusterID to the get free addresses params

func (*GetFreeAddressesParams) WithContext added in v1.0.4

WithContext adds the context to the get free addresses params

func (*GetFreeAddressesParams) WithHTTPClient added in v1.0.4

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

WithHTTPClient adds the HTTPClient to the get free addresses params

func (*GetFreeAddressesParams) WithLimit added in v1.0.4

func (o *GetFreeAddressesParams) WithLimit(limit *int64) *GetFreeAddressesParams

WithLimit adds the limit to the get free addresses params

func (*GetFreeAddressesParams) WithNetwork added in v1.0.4

func (o *GetFreeAddressesParams) WithNetwork(network string) *GetFreeAddressesParams

WithNetwork adds the network to the get free addresses params

func (*GetFreeAddressesParams) WithPrefix added in v1.0.4

func (o *GetFreeAddressesParams) WithPrefix(prefix *string) *GetFreeAddressesParams

WithPrefix adds the prefix to the get free addresses params

func (*GetFreeAddressesParams) WithTimeout added in v1.0.4

WithTimeout adds the timeout to the get free addresses params

func (*GetFreeAddressesParams) WriteToRequest added in v1.0.4

WriteToRequest writes these params to a swagger request

type GetFreeAddressesReader added in v1.0.4

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

GetFreeAddressesReader is a Reader for the GetFreeAddresses structure.

func (*GetFreeAddressesReader) ReadResponse added in v1.0.4

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

ReadResponse reads a server response into the received o.

type GetHostInternalServerError

type GetHostInternalServerError struct {
	Payload *models.Error
}

GetHostInternalServerError handles this case with default header values.

Error.

func NewGetHostInternalServerError

func NewGetHostInternalServerError() *GetHostInternalServerError

NewGetHostInternalServerError creates a GetHostInternalServerError with default headers values

func (*GetHostInternalServerError) Error

func (*GetHostInternalServerError) GetPayload

func (o *GetHostInternalServerError) GetPayload() *models.Error

type GetHostNotFound

type GetHostNotFound struct {
	Payload *models.Error
}

GetHostNotFound handles this case with default header values.

Error.

func NewGetHostNotFound

func NewGetHostNotFound() *GetHostNotFound

NewGetHostNotFound creates a GetHostNotFound with default headers values

func (*GetHostNotFound) Error

func (o *GetHostNotFound) Error() string

func (*GetHostNotFound) GetPayload

func (o *GetHostNotFound) GetPayload() *models.Error

type GetHostOK

type GetHostOK struct {
	Payload *models.Host
}

GetHostOK handles this case with default header values.

Success.

func NewGetHostOK

func NewGetHostOK() *GetHostOK

NewGetHostOK creates a GetHostOK with default headers values

func (*GetHostOK) Error

func (o *GetHostOK) Error() string

func (*GetHostOK) GetPayload

func (o *GetHostOK) GetPayload() *models.Host

type GetHostParams

type GetHostParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID

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

GetHostParams contains all the parameters to send to the API endpoint for the get host operation typically these are written to a http.Request

func NewGetHostParams

func NewGetHostParams() *GetHostParams

NewGetHostParams creates a new GetHostParams object with the default values initialized.

func NewGetHostParamsWithContext

func NewGetHostParamsWithContext(ctx context.Context) *GetHostParams

NewGetHostParamsWithContext creates a new GetHostParams object with the default values initialized, and the ability to set a context for a request

func NewGetHostParamsWithHTTPClient

func NewGetHostParamsWithHTTPClient(client *http.Client) *GetHostParams

NewGetHostParamsWithHTTPClient creates a new GetHostParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetHostParamsWithTimeout

func NewGetHostParamsWithTimeout(timeout time.Duration) *GetHostParams

NewGetHostParamsWithTimeout creates a new GetHostParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetHostParams) SetClusterID

func (o *GetHostParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the get host params

func (*GetHostParams) SetContext

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

SetContext adds the context to the get host params

func (*GetHostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get host params

func (*GetHostParams) SetHostID

func (o *GetHostParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the get host params

func (*GetHostParams) SetTimeout

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

SetTimeout adds the timeout to the get host params

func (*GetHostParams) WithClusterID

func (o *GetHostParams) WithClusterID(clusterID strfmt.UUID) *GetHostParams

WithClusterID adds the clusterID to the get host params

func (*GetHostParams) WithContext

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

WithContext adds the context to the get host params

func (*GetHostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get host params

func (*GetHostParams) WithHostID

func (o *GetHostParams) WithHostID(hostID strfmt.UUID) *GetHostParams

WithHostID adds the hostID to the get host params

func (*GetHostParams) WithTimeout

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

WithTimeout adds the timeout to the get host params

func (*GetHostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetHostReader

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

GetHostReader is a Reader for the GetHost structure.

func (*GetHostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetNextStepsInternalServerError

type GetNextStepsInternalServerError struct {
	Payload *models.Error
}

GetNextStepsInternalServerError handles this case with default header values.

Error.

func NewGetNextStepsInternalServerError

func NewGetNextStepsInternalServerError() *GetNextStepsInternalServerError

NewGetNextStepsInternalServerError creates a GetNextStepsInternalServerError with default headers values

func (*GetNextStepsInternalServerError) Error

func (*GetNextStepsInternalServerError) GetPayload

func (o *GetNextStepsInternalServerError) GetPayload() *models.Error

type GetNextStepsNotFound

type GetNextStepsNotFound struct {
	Payload *models.Error
}

GetNextStepsNotFound handles this case with default header values.

Error.

func NewGetNextStepsNotFound

func NewGetNextStepsNotFound() *GetNextStepsNotFound

NewGetNextStepsNotFound creates a GetNextStepsNotFound with default headers values

func (*GetNextStepsNotFound) Error

func (o *GetNextStepsNotFound) Error() string

func (*GetNextStepsNotFound) GetPayload

func (o *GetNextStepsNotFound) GetPayload() *models.Error

type GetNextStepsOK

type GetNextStepsOK struct {
	Payload *models.Steps
}

GetNextStepsOK handles this case with default header values.

Success.

func NewGetNextStepsOK

func NewGetNextStepsOK() *GetNextStepsOK

NewGetNextStepsOK creates a GetNextStepsOK with default headers values

func (*GetNextStepsOK) Error

func (o *GetNextStepsOK) Error() string

func (*GetNextStepsOK) GetPayload

func (o *GetNextStepsOK) GetPayload() *models.Steps

type GetNextStepsParams

type GetNextStepsParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID

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

GetNextStepsParams contains all the parameters to send to the API endpoint for the get next steps operation typically these are written to a http.Request

func NewGetNextStepsParams

func NewGetNextStepsParams() *GetNextStepsParams

NewGetNextStepsParams creates a new GetNextStepsParams object with the default values initialized.

func NewGetNextStepsParamsWithContext

func NewGetNextStepsParamsWithContext(ctx context.Context) *GetNextStepsParams

NewGetNextStepsParamsWithContext creates a new GetNextStepsParams object with the default values initialized, and the ability to set a context for a request

func NewGetNextStepsParamsWithHTTPClient

func NewGetNextStepsParamsWithHTTPClient(client *http.Client) *GetNextStepsParams

NewGetNextStepsParamsWithHTTPClient creates a new GetNextStepsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewGetNextStepsParamsWithTimeout

func NewGetNextStepsParamsWithTimeout(timeout time.Duration) *GetNextStepsParams

NewGetNextStepsParamsWithTimeout creates a new GetNextStepsParams object with the default values initialized, and the ability to set a timeout on a request

func (*GetNextStepsParams) SetClusterID

func (o *GetNextStepsParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the get next steps params

func (*GetNextStepsParams) SetContext

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

SetContext adds the context to the get next steps params

func (*GetNextStepsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get next steps params

func (*GetNextStepsParams) SetHostID

func (o *GetNextStepsParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the get next steps params

func (*GetNextStepsParams) SetTimeout

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

SetTimeout adds the timeout to the get next steps params

func (*GetNextStepsParams) WithClusterID

func (o *GetNextStepsParams) WithClusterID(clusterID strfmt.UUID) *GetNextStepsParams

WithClusterID adds the clusterID to the get next steps params

func (*GetNextStepsParams) WithContext

WithContext adds the context to the get next steps params

func (*GetNextStepsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the get next steps params

func (*GetNextStepsParams) WithHostID

func (o *GetNextStepsParams) WithHostID(hostID strfmt.UUID) *GetNextStepsParams

WithHostID adds the hostID to the get next steps params

func (*GetNextStepsParams) WithTimeout

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

WithTimeout adds the timeout to the get next steps params

func (*GetNextStepsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type GetNextStepsReader

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

GetNextStepsReader is a Reader for the GetNextSteps structure.

func (*GetNextStepsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type InstallClusterAccepted

type InstallClusterAccepted struct {
	Payload *models.Cluster
}

InstallClusterAccepted handles this case with default header values.

Success.

func NewInstallClusterAccepted

func NewInstallClusterAccepted() *InstallClusterAccepted

NewInstallClusterAccepted creates a InstallClusterAccepted with default headers values

func (*InstallClusterAccepted) Error

func (o *InstallClusterAccepted) Error() string

func (*InstallClusterAccepted) GetPayload

func (o *InstallClusterAccepted) GetPayload() *models.Cluster

type InstallClusterBadRequest

type InstallClusterBadRequest struct {
	Payload *models.Error
}

InstallClusterBadRequest handles this case with default header values.

Error.

func NewInstallClusterBadRequest

func NewInstallClusterBadRequest() *InstallClusterBadRequest

NewInstallClusterBadRequest creates a InstallClusterBadRequest with default headers values

func (*InstallClusterBadRequest) Error

func (o *InstallClusterBadRequest) Error() string

func (*InstallClusterBadRequest) GetPayload

func (o *InstallClusterBadRequest) GetPayload() *models.Error

type InstallClusterConflict

type InstallClusterConflict struct {
	Payload *models.Error
}

InstallClusterConflict handles this case with default header values.

Error.

func NewInstallClusterConflict

func NewInstallClusterConflict() *InstallClusterConflict

NewInstallClusterConflict creates a InstallClusterConflict with default headers values

func (*InstallClusterConflict) Error

func (o *InstallClusterConflict) Error() string

func (*InstallClusterConflict) GetPayload

func (o *InstallClusterConflict) GetPayload() *models.Error

type InstallClusterInternalServerError

type InstallClusterInternalServerError struct {
	Payload *models.Error
}

InstallClusterInternalServerError handles this case with default header values.

Error.

func NewInstallClusterInternalServerError

func NewInstallClusterInternalServerError() *InstallClusterInternalServerError

NewInstallClusterInternalServerError creates a InstallClusterInternalServerError with default headers values

func (*InstallClusterInternalServerError) Error

func (*InstallClusterInternalServerError) GetPayload

type InstallClusterNotFound

type InstallClusterNotFound struct {
	Payload *models.Error
}

InstallClusterNotFound handles this case with default header values.

Error.

func NewInstallClusterNotFound

func NewInstallClusterNotFound() *InstallClusterNotFound

NewInstallClusterNotFound creates a InstallClusterNotFound with default headers values

func (*InstallClusterNotFound) Error

func (o *InstallClusterNotFound) Error() string

func (*InstallClusterNotFound) GetPayload

func (o *InstallClusterNotFound) GetPayload() *models.Error

type InstallClusterParams

type InstallClusterParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

InstallClusterParams contains all the parameters to send to the API endpoint for the install cluster operation typically these are written to a http.Request

func NewInstallClusterParams

func NewInstallClusterParams() *InstallClusterParams

NewInstallClusterParams creates a new InstallClusterParams object with the default values initialized.

func NewInstallClusterParamsWithContext

func NewInstallClusterParamsWithContext(ctx context.Context) *InstallClusterParams

NewInstallClusterParamsWithContext creates a new InstallClusterParams object with the default values initialized, and the ability to set a context for a request

func NewInstallClusterParamsWithHTTPClient

func NewInstallClusterParamsWithHTTPClient(client *http.Client) *InstallClusterParams

NewInstallClusterParamsWithHTTPClient creates a new InstallClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewInstallClusterParamsWithTimeout

func NewInstallClusterParamsWithTimeout(timeout time.Duration) *InstallClusterParams

NewInstallClusterParamsWithTimeout creates a new InstallClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*InstallClusterParams) SetClusterID

func (o *InstallClusterParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the install cluster params

func (*InstallClusterParams) SetContext

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

SetContext adds the context to the install cluster params

func (*InstallClusterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the install cluster params

func (*InstallClusterParams) SetTimeout

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

SetTimeout adds the timeout to the install cluster params

func (*InstallClusterParams) WithClusterID

func (o *InstallClusterParams) WithClusterID(clusterID strfmt.UUID) *InstallClusterParams

WithClusterID adds the clusterID to the install cluster params

func (*InstallClusterParams) WithContext

WithContext adds the context to the install cluster params

func (*InstallClusterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the install cluster params

func (*InstallClusterParams) WithTimeout

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

WithTimeout adds the timeout to the install cluster params

func (*InstallClusterParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type InstallClusterReader

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

InstallClusterReader is a Reader for the InstallCluster structure.

func (*InstallClusterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListClustersInternalServerError

type ListClustersInternalServerError struct {
	Payload *models.Error
}

ListClustersInternalServerError handles this case with default header values.

Error.

func NewListClustersInternalServerError

func NewListClustersInternalServerError() *ListClustersInternalServerError

NewListClustersInternalServerError creates a ListClustersInternalServerError with default headers values

func (*ListClustersInternalServerError) Error

func (*ListClustersInternalServerError) GetPayload

func (o *ListClustersInternalServerError) GetPayload() *models.Error

type ListClustersOK

type ListClustersOK struct {
	Payload models.ClusterList
}

ListClustersOK handles this case with default header values.

Success.

func NewListClustersOK

func NewListClustersOK() *ListClustersOK

NewListClustersOK creates a ListClustersOK with default headers values

func (*ListClustersOK) Error

func (o *ListClustersOK) Error() string

func (*ListClustersOK) GetPayload

func (o *ListClustersOK) GetPayload() models.ClusterList

type ListClustersParams

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

ListClustersParams contains all the parameters to send to the API endpoint for the list clusters operation typically these are written to a http.Request

func NewListClustersParams

func NewListClustersParams() *ListClustersParams

NewListClustersParams creates a new ListClustersParams object with the default values initialized.

func NewListClustersParamsWithContext

func NewListClustersParamsWithContext(ctx context.Context) *ListClustersParams

NewListClustersParamsWithContext creates a new ListClustersParams object with the default values initialized, and the ability to set a context for a request

func NewListClustersParamsWithHTTPClient

func NewListClustersParamsWithHTTPClient(client *http.Client) *ListClustersParams

NewListClustersParamsWithHTTPClient creates a new ListClustersParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewListClustersParamsWithTimeout

func NewListClustersParamsWithTimeout(timeout time.Duration) *ListClustersParams

NewListClustersParamsWithTimeout creates a new ListClustersParams object with the default values initialized, and the ability to set a timeout on a request

func (*ListClustersParams) SetContext

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

SetContext adds the context to the list clusters params

func (*ListClustersParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list clusters params

func (*ListClustersParams) SetTimeout

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

SetTimeout adds the timeout to the list clusters params

func (*ListClustersParams) WithContext

WithContext adds the context to the list clusters params

func (*ListClustersParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list clusters params

func (*ListClustersParams) WithTimeout

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

WithTimeout adds the timeout to the list clusters params

func (*ListClustersParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListClustersReader

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

ListClustersReader is a Reader for the ListClusters structure.

func (*ListClustersReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListHostsInternalServerError

type ListHostsInternalServerError struct {
	Payload *models.Error
}

ListHostsInternalServerError handles this case with default header values.

Error.

func NewListHostsInternalServerError

func NewListHostsInternalServerError() *ListHostsInternalServerError

NewListHostsInternalServerError creates a ListHostsInternalServerError with default headers values

func (*ListHostsInternalServerError) Error

func (*ListHostsInternalServerError) GetPayload

func (o *ListHostsInternalServerError) GetPayload() *models.Error

type ListHostsOK

type ListHostsOK struct {
	Payload models.HostList
}

ListHostsOK handles this case with default header values.

Success.

func NewListHostsOK

func NewListHostsOK() *ListHostsOK

NewListHostsOK creates a ListHostsOK with default headers values

func (*ListHostsOK) Error

func (o *ListHostsOK) Error() string

func (*ListHostsOK) GetPayload

func (o *ListHostsOK) GetPayload() models.HostList

type ListHostsParams

type ListHostsParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

ListHostsParams contains all the parameters to send to the API endpoint for the list hosts operation typically these are written to a http.Request

func NewListHostsParams

func NewListHostsParams() *ListHostsParams

NewListHostsParams creates a new ListHostsParams object with the default values initialized.

func NewListHostsParamsWithContext

func NewListHostsParamsWithContext(ctx context.Context) *ListHostsParams

NewListHostsParamsWithContext creates a new ListHostsParams object with the default values initialized, and the ability to set a context for a request

func NewListHostsParamsWithHTTPClient

func NewListHostsParamsWithHTTPClient(client *http.Client) *ListHostsParams

NewListHostsParamsWithHTTPClient creates a new ListHostsParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewListHostsParamsWithTimeout

func NewListHostsParamsWithTimeout(timeout time.Duration) *ListHostsParams

NewListHostsParamsWithTimeout creates a new ListHostsParams object with the default values initialized, and the ability to set a timeout on a request

func (*ListHostsParams) SetClusterID

func (o *ListHostsParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the list hosts params

func (*ListHostsParams) SetContext

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

SetContext adds the context to the list hosts params

func (*ListHostsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list hosts params

func (*ListHostsParams) SetTimeout

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

SetTimeout adds the timeout to the list hosts params

func (*ListHostsParams) WithClusterID

func (o *ListHostsParams) WithClusterID(clusterID strfmt.UUID) *ListHostsParams

WithClusterID adds the clusterID to the list hosts params

func (*ListHostsParams) WithContext

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

WithContext adds the context to the list hosts params

func (*ListHostsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the list hosts params

func (*ListHostsParams) WithTimeout

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

WithTimeout adds the timeout to the list hosts params

func (*ListHostsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ListHostsReader

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

ListHostsReader is a Reader for the ListHosts structure.

func (*ListHostsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PostStepReplyBadRequest

type PostStepReplyBadRequest struct {
	Payload *models.Error
}

PostStepReplyBadRequest handles this case with default header values.

Error.

func NewPostStepReplyBadRequest

func NewPostStepReplyBadRequest() *PostStepReplyBadRequest

NewPostStepReplyBadRequest creates a PostStepReplyBadRequest with default headers values

func (*PostStepReplyBadRequest) Error

func (o *PostStepReplyBadRequest) Error() string

func (*PostStepReplyBadRequest) GetPayload

func (o *PostStepReplyBadRequest) GetPayload() *models.Error

type PostStepReplyInternalServerError

type PostStepReplyInternalServerError struct {
	Payload *models.Error
}

PostStepReplyInternalServerError handles this case with default header values.

Error.

func NewPostStepReplyInternalServerError

func NewPostStepReplyInternalServerError() *PostStepReplyInternalServerError

NewPostStepReplyInternalServerError creates a PostStepReplyInternalServerError with default headers values

func (*PostStepReplyInternalServerError) Error

func (*PostStepReplyInternalServerError) GetPayload

type PostStepReplyNoContent

type PostStepReplyNoContent struct {
}

PostStepReplyNoContent handles this case with default header values.

Success.

func NewPostStepReplyNoContent

func NewPostStepReplyNoContent() *PostStepReplyNoContent

NewPostStepReplyNoContent creates a PostStepReplyNoContent with default headers values

func (*PostStepReplyNoContent) Error

func (o *PostStepReplyNoContent) Error() string

type PostStepReplyNotFound

type PostStepReplyNotFound struct {
	Payload *models.Error
}

PostStepReplyNotFound handles this case with default header values.

Error.

func NewPostStepReplyNotFound

func NewPostStepReplyNotFound() *PostStepReplyNotFound

NewPostStepReplyNotFound creates a PostStepReplyNotFound with default headers values

func (*PostStepReplyNotFound) Error

func (o *PostStepReplyNotFound) Error() string

func (*PostStepReplyNotFound) GetPayload

func (o *PostStepReplyNotFound) GetPayload() *models.Error

type PostStepReplyParams

type PostStepReplyParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID
	/*Reply*/
	Reply *models.StepReply

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

PostStepReplyParams contains all the parameters to send to the API endpoint for the post step reply operation typically these are written to a http.Request

func NewPostStepReplyParams

func NewPostStepReplyParams() *PostStepReplyParams

NewPostStepReplyParams creates a new PostStepReplyParams object with the default values initialized.

func NewPostStepReplyParamsWithContext

func NewPostStepReplyParamsWithContext(ctx context.Context) *PostStepReplyParams

NewPostStepReplyParamsWithContext creates a new PostStepReplyParams object with the default values initialized, and the ability to set a context for a request

func NewPostStepReplyParamsWithHTTPClient

func NewPostStepReplyParamsWithHTTPClient(client *http.Client) *PostStepReplyParams

NewPostStepReplyParamsWithHTTPClient creates a new PostStepReplyParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewPostStepReplyParamsWithTimeout

func NewPostStepReplyParamsWithTimeout(timeout time.Duration) *PostStepReplyParams

NewPostStepReplyParamsWithTimeout creates a new PostStepReplyParams object with the default values initialized, and the ability to set a timeout on a request

func (*PostStepReplyParams) SetClusterID

func (o *PostStepReplyParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the post step reply params

func (*PostStepReplyParams) SetContext

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

SetContext adds the context to the post step reply params

func (*PostStepReplyParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post step reply params

func (*PostStepReplyParams) SetHostID

func (o *PostStepReplyParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the post step reply params

func (*PostStepReplyParams) SetReply

func (o *PostStepReplyParams) SetReply(reply *models.StepReply)

SetReply adds the reply to the post step reply params

func (*PostStepReplyParams) SetTimeout

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

SetTimeout adds the timeout to the post step reply params

func (*PostStepReplyParams) WithClusterID

func (o *PostStepReplyParams) WithClusterID(clusterID strfmt.UUID) *PostStepReplyParams

WithClusterID adds the clusterID to the post step reply params

func (*PostStepReplyParams) WithContext

WithContext adds the context to the post step reply params

func (*PostStepReplyParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the post step reply params

func (*PostStepReplyParams) WithHostID

func (o *PostStepReplyParams) WithHostID(hostID strfmt.UUID) *PostStepReplyParams

WithHostID adds the hostID to the post step reply params

func (*PostStepReplyParams) WithReply

WithReply adds the reply to the post step reply params

func (*PostStepReplyParams) WithTimeout

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

WithTimeout adds the timeout to the post step reply params

func (*PostStepReplyParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type PostStepReplyReader

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

PostStepReplyReader is a Reader for the PostStepReply structure.

func (*PostStepReplyReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RegisterClusterBadRequest

type RegisterClusterBadRequest struct {
	Payload *models.Error
}

RegisterClusterBadRequest handles this case with default header values.

Error.

func NewRegisterClusterBadRequest

func NewRegisterClusterBadRequest() *RegisterClusterBadRequest

NewRegisterClusterBadRequest creates a RegisterClusterBadRequest with default headers values

func (*RegisterClusterBadRequest) Error

func (o *RegisterClusterBadRequest) Error() string

func (*RegisterClusterBadRequest) GetPayload

func (o *RegisterClusterBadRequest) GetPayload() *models.Error

type RegisterClusterCreated

type RegisterClusterCreated struct {
	Payload *models.Cluster
}

RegisterClusterCreated handles this case with default header values.

Success.

func NewRegisterClusterCreated

func NewRegisterClusterCreated() *RegisterClusterCreated

NewRegisterClusterCreated creates a RegisterClusterCreated with default headers values

func (*RegisterClusterCreated) Error

func (o *RegisterClusterCreated) Error() string

func (*RegisterClusterCreated) GetPayload

func (o *RegisterClusterCreated) GetPayload() *models.Cluster

type RegisterClusterInternalServerError

type RegisterClusterInternalServerError struct {
	Payload *models.Error
}

RegisterClusterInternalServerError handles this case with default header values.

Error.

func NewRegisterClusterInternalServerError

func NewRegisterClusterInternalServerError() *RegisterClusterInternalServerError

NewRegisterClusterInternalServerError creates a RegisterClusterInternalServerError with default headers values

func (*RegisterClusterInternalServerError) Error

func (*RegisterClusterInternalServerError) GetPayload

type RegisterClusterParams

type RegisterClusterParams struct {

	/*NewClusterParams*/
	NewClusterParams *models.ClusterCreateParams

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

RegisterClusterParams contains all the parameters to send to the API endpoint for the register cluster operation typically these are written to a http.Request

func NewRegisterClusterParams

func NewRegisterClusterParams() *RegisterClusterParams

NewRegisterClusterParams creates a new RegisterClusterParams object with the default values initialized.

func NewRegisterClusterParamsWithContext

func NewRegisterClusterParamsWithContext(ctx context.Context) *RegisterClusterParams

NewRegisterClusterParamsWithContext creates a new RegisterClusterParams object with the default values initialized, and the ability to set a context for a request

func NewRegisterClusterParamsWithHTTPClient

func NewRegisterClusterParamsWithHTTPClient(client *http.Client) *RegisterClusterParams

NewRegisterClusterParamsWithHTTPClient creates a new RegisterClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewRegisterClusterParamsWithTimeout

func NewRegisterClusterParamsWithTimeout(timeout time.Duration) *RegisterClusterParams

NewRegisterClusterParamsWithTimeout creates a new RegisterClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*RegisterClusterParams) SetContext

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

SetContext adds the context to the register cluster params

func (*RegisterClusterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the register cluster params

func (*RegisterClusterParams) SetNewClusterParams

func (o *RegisterClusterParams) SetNewClusterParams(newClusterParams *models.ClusterCreateParams)

SetNewClusterParams adds the newClusterParams to the register cluster params

func (*RegisterClusterParams) SetTimeout

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

SetTimeout adds the timeout to the register cluster params

func (*RegisterClusterParams) WithContext

WithContext adds the context to the register cluster params

func (*RegisterClusterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the register cluster params

func (*RegisterClusterParams) WithNewClusterParams

func (o *RegisterClusterParams) WithNewClusterParams(newClusterParams *models.ClusterCreateParams) *RegisterClusterParams

WithNewClusterParams adds the newClusterParams to the register cluster params

func (*RegisterClusterParams) WithTimeout

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

WithTimeout adds the timeout to the register cluster params

func (*RegisterClusterParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type RegisterClusterReader

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

RegisterClusterReader is a Reader for the RegisterCluster structure.

func (*RegisterClusterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type RegisterHostBadRequest

type RegisterHostBadRequest struct {
	Payload *models.Error
}

RegisterHostBadRequest handles this case with default header values.

Error.

func NewRegisterHostBadRequest

func NewRegisterHostBadRequest() *RegisterHostBadRequest

NewRegisterHostBadRequest creates a RegisterHostBadRequest with default headers values

func (*RegisterHostBadRequest) Error

func (o *RegisterHostBadRequest) Error() string

func (*RegisterHostBadRequest) GetPayload

func (o *RegisterHostBadRequest) GetPayload() *models.Error

type RegisterHostCreated

type RegisterHostCreated struct {
	Payload *models.Host
}

RegisterHostCreated handles this case with default header values.

Success.

func NewRegisterHostCreated

func NewRegisterHostCreated() *RegisterHostCreated

NewRegisterHostCreated creates a RegisterHostCreated with default headers values

func (*RegisterHostCreated) Error

func (o *RegisterHostCreated) Error() string

func (*RegisterHostCreated) GetPayload

func (o *RegisterHostCreated) GetPayload() *models.Host

type RegisterHostForbidden

type RegisterHostForbidden struct {
	Payload *models.Error
}

RegisterHostForbidden handles this case with default header values.

Error.

func NewRegisterHostForbidden

func NewRegisterHostForbidden() *RegisterHostForbidden

NewRegisterHostForbidden creates a RegisterHostForbidden with default headers values

func (*RegisterHostForbidden) Error

func (o *RegisterHostForbidden) Error() string

func (*RegisterHostForbidden) GetPayload

func (o *RegisterHostForbidden) GetPayload() *models.Error

type RegisterHostInternalServerError

type RegisterHostInternalServerError struct {
	Payload *models.Error
}

RegisterHostInternalServerError handles this case with default header values.

Error.

func NewRegisterHostInternalServerError

func NewRegisterHostInternalServerError() *RegisterHostInternalServerError

NewRegisterHostInternalServerError creates a RegisterHostInternalServerError with default headers values

func (*RegisterHostInternalServerError) Error

func (*RegisterHostInternalServerError) GetPayload

func (o *RegisterHostInternalServerError) GetPayload() *models.Error

type RegisterHostNotFound added in v1.0.7

type RegisterHostNotFound struct {
	Payload *models.Error
}

RegisterHostNotFound handles this case with default header values.

Error.

func NewRegisterHostNotFound added in v1.0.7

func NewRegisterHostNotFound() *RegisterHostNotFound

NewRegisterHostNotFound creates a RegisterHostNotFound with default headers values

func (*RegisterHostNotFound) Error added in v1.0.7

func (o *RegisterHostNotFound) Error() string

func (*RegisterHostNotFound) GetPayload added in v1.0.7

func (o *RegisterHostNotFound) GetPayload() *models.Error

type RegisterHostParams

type RegisterHostParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*NewHostParams*/
	NewHostParams *models.HostCreateParams

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

RegisterHostParams contains all the parameters to send to the API endpoint for the register host operation typically these are written to a http.Request

func NewRegisterHostParams

func NewRegisterHostParams() *RegisterHostParams

NewRegisterHostParams creates a new RegisterHostParams object with the default values initialized.

func NewRegisterHostParamsWithContext

func NewRegisterHostParamsWithContext(ctx context.Context) *RegisterHostParams

NewRegisterHostParamsWithContext creates a new RegisterHostParams object with the default values initialized, and the ability to set a context for a request

func NewRegisterHostParamsWithHTTPClient

func NewRegisterHostParamsWithHTTPClient(client *http.Client) *RegisterHostParams

NewRegisterHostParamsWithHTTPClient creates a new RegisterHostParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewRegisterHostParamsWithTimeout

func NewRegisterHostParamsWithTimeout(timeout time.Duration) *RegisterHostParams

NewRegisterHostParamsWithTimeout creates a new RegisterHostParams object with the default values initialized, and the ability to set a timeout on a request

func (*RegisterHostParams) SetClusterID

func (o *RegisterHostParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the register host params

func (*RegisterHostParams) SetContext

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

SetContext adds the context to the register host params

func (*RegisterHostParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the register host params

func (*RegisterHostParams) SetNewHostParams

func (o *RegisterHostParams) SetNewHostParams(newHostParams *models.HostCreateParams)

SetNewHostParams adds the newHostParams to the register host params

func (*RegisterHostParams) SetTimeout

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

SetTimeout adds the timeout to the register host params

func (*RegisterHostParams) WithClusterID

func (o *RegisterHostParams) WithClusterID(clusterID strfmt.UUID) *RegisterHostParams

WithClusterID adds the clusterID to the register host params

func (*RegisterHostParams) WithContext

WithContext adds the context to the register host params

func (*RegisterHostParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the register host params

func (*RegisterHostParams) WithNewHostParams

func (o *RegisterHostParams) WithNewHostParams(newHostParams *models.HostCreateParams) *RegisterHostParams

WithNewHostParams adds the newHostParams to the register host params

func (*RegisterHostParams) WithTimeout

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

WithTimeout adds the timeout to the register host params

func (*RegisterHostParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type RegisterHostReader

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

RegisterHostReader is a Reader for the RegisterHost structure.

func (*RegisterHostReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ResetClusterAccepted added in v1.0.4

type ResetClusterAccepted struct {
	Payload *models.Cluster
}

ResetClusterAccepted handles this case with default header values.

Success.

func NewResetClusterAccepted added in v1.0.4

func NewResetClusterAccepted() *ResetClusterAccepted

NewResetClusterAccepted creates a ResetClusterAccepted with default headers values

func (*ResetClusterAccepted) Error added in v1.0.4

func (o *ResetClusterAccepted) Error() string

func (*ResetClusterAccepted) GetPayload added in v1.0.4

func (o *ResetClusterAccepted) GetPayload() *models.Cluster

type ResetClusterConflict added in v1.0.4

type ResetClusterConflict struct {
	Payload *models.Error
}

ResetClusterConflict handles this case with default header values.

Error.

func NewResetClusterConflict added in v1.0.4

func NewResetClusterConflict() *ResetClusterConflict

NewResetClusterConflict creates a ResetClusterConflict with default headers values

func (*ResetClusterConflict) Error added in v1.0.4

func (o *ResetClusterConflict) Error() string

func (*ResetClusterConflict) GetPayload added in v1.0.4

func (o *ResetClusterConflict) GetPayload() *models.Error

type ResetClusterInternalServerError added in v1.0.4

type ResetClusterInternalServerError struct {
	Payload *models.Error
}

ResetClusterInternalServerError handles this case with default header values.

Error.

func NewResetClusterInternalServerError added in v1.0.4

func NewResetClusterInternalServerError() *ResetClusterInternalServerError

NewResetClusterInternalServerError creates a ResetClusterInternalServerError with default headers values

func (*ResetClusterInternalServerError) Error added in v1.0.4

func (*ResetClusterInternalServerError) GetPayload added in v1.0.4

func (o *ResetClusterInternalServerError) GetPayload() *models.Error

type ResetClusterNotFound added in v1.0.4

type ResetClusterNotFound struct {
	Payload *models.Error
}

ResetClusterNotFound handles this case with default header values.

Error.

func NewResetClusterNotFound added in v1.0.4

func NewResetClusterNotFound() *ResetClusterNotFound

NewResetClusterNotFound creates a ResetClusterNotFound with default headers values

func (*ResetClusterNotFound) Error added in v1.0.4

func (o *ResetClusterNotFound) Error() string

func (*ResetClusterNotFound) GetPayload added in v1.0.4

func (o *ResetClusterNotFound) GetPayload() *models.Error

type ResetClusterParams added in v1.0.4

type ResetClusterParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID

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

ResetClusterParams contains all the parameters to send to the API endpoint for the reset cluster operation typically these are written to a http.Request

func NewResetClusterParams added in v1.0.4

func NewResetClusterParams() *ResetClusterParams

NewResetClusterParams creates a new ResetClusterParams object with the default values initialized.

func NewResetClusterParamsWithContext added in v1.0.4

func NewResetClusterParamsWithContext(ctx context.Context) *ResetClusterParams

NewResetClusterParamsWithContext creates a new ResetClusterParams object with the default values initialized, and the ability to set a context for a request

func NewResetClusterParamsWithHTTPClient added in v1.0.4

func NewResetClusterParamsWithHTTPClient(client *http.Client) *ResetClusterParams

NewResetClusterParamsWithHTTPClient creates a new ResetClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewResetClusterParamsWithTimeout added in v1.0.4

func NewResetClusterParamsWithTimeout(timeout time.Duration) *ResetClusterParams

NewResetClusterParamsWithTimeout creates a new ResetClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*ResetClusterParams) SetClusterID added in v1.0.4

func (o *ResetClusterParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the reset cluster params

func (*ResetClusterParams) SetContext added in v1.0.4

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

SetContext adds the context to the reset cluster params

func (*ResetClusterParams) SetHTTPClient added in v1.0.4

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

SetHTTPClient adds the HTTPClient to the reset cluster params

func (*ResetClusterParams) SetTimeout added in v1.0.4

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

SetTimeout adds the timeout to the reset cluster params

func (*ResetClusterParams) WithClusterID added in v1.0.4

func (o *ResetClusterParams) WithClusterID(clusterID strfmt.UUID) *ResetClusterParams

WithClusterID adds the clusterID to the reset cluster params

func (*ResetClusterParams) WithContext added in v1.0.4

WithContext adds the context to the reset cluster params

func (*ResetClusterParams) WithHTTPClient added in v1.0.4

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

WithHTTPClient adds the HTTPClient to the reset cluster params

func (*ResetClusterParams) WithTimeout added in v1.0.4

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

WithTimeout adds the timeout to the reset cluster params

func (*ResetClusterParams) WriteToRequest added in v1.0.4

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

WriteToRequest writes these params to a swagger request

type ResetClusterReader added in v1.0.4

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

ResetClusterReader is a Reader for the ResetCluster structure.

func (*ResetClusterReader) ReadResponse added in v1.0.4

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

ReadResponse reads a server response into the received o.

type SetDebugStepInternalServerError

type SetDebugStepInternalServerError struct {
	Payload *models.Error
}

SetDebugStepInternalServerError handles this case with default header values.

Error.

func NewSetDebugStepInternalServerError

func NewSetDebugStepInternalServerError() *SetDebugStepInternalServerError

NewSetDebugStepInternalServerError creates a SetDebugStepInternalServerError with default headers values

func (*SetDebugStepInternalServerError) Error

func (*SetDebugStepInternalServerError) GetPayload

func (o *SetDebugStepInternalServerError) GetPayload() *models.Error

type SetDebugStepNoContent

type SetDebugStepNoContent struct {
}

SetDebugStepNoContent handles this case with default header values.

Success.

func NewSetDebugStepNoContent

func NewSetDebugStepNoContent() *SetDebugStepNoContent

NewSetDebugStepNoContent creates a SetDebugStepNoContent with default headers values

func (*SetDebugStepNoContent) Error

func (o *SetDebugStepNoContent) Error() string

type SetDebugStepNotFound

type SetDebugStepNotFound struct {
	Payload *models.Error
}

SetDebugStepNotFound handles this case with default header values.

Error.

func NewSetDebugStepNotFound

func NewSetDebugStepNotFound() *SetDebugStepNotFound

NewSetDebugStepNotFound creates a SetDebugStepNotFound with default headers values

func (*SetDebugStepNotFound) Error

func (o *SetDebugStepNotFound) Error() string

func (*SetDebugStepNotFound) GetPayload

func (o *SetDebugStepNotFound) GetPayload() *models.Error

type SetDebugStepParams

type SetDebugStepParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*HostID*/
	HostID strfmt.UUID
	/*Step*/
	Step *models.DebugStep

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

SetDebugStepParams contains all the parameters to send to the API endpoint for the set debug step operation typically these are written to a http.Request

func NewSetDebugStepParams

func NewSetDebugStepParams() *SetDebugStepParams

NewSetDebugStepParams creates a new SetDebugStepParams object with the default values initialized.

func NewSetDebugStepParamsWithContext

func NewSetDebugStepParamsWithContext(ctx context.Context) *SetDebugStepParams

NewSetDebugStepParamsWithContext creates a new SetDebugStepParams object with the default values initialized, and the ability to set a context for a request

func NewSetDebugStepParamsWithHTTPClient

func NewSetDebugStepParamsWithHTTPClient(client *http.Client) *SetDebugStepParams

NewSetDebugStepParamsWithHTTPClient creates a new SetDebugStepParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewSetDebugStepParamsWithTimeout

func NewSetDebugStepParamsWithTimeout(timeout time.Duration) *SetDebugStepParams

NewSetDebugStepParamsWithTimeout creates a new SetDebugStepParams object with the default values initialized, and the ability to set a timeout on a request

func (*SetDebugStepParams) SetClusterID

func (o *SetDebugStepParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the set debug step params

func (*SetDebugStepParams) SetContext

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

SetContext adds the context to the set debug step params

func (*SetDebugStepParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the set debug step params

func (*SetDebugStepParams) SetHostID

func (o *SetDebugStepParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the set debug step params

func (*SetDebugStepParams) SetStep

func (o *SetDebugStepParams) SetStep(step *models.DebugStep)

SetStep adds the step to the set debug step params

func (*SetDebugStepParams) SetTimeout

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

SetTimeout adds the timeout to the set debug step params

func (*SetDebugStepParams) WithClusterID

func (o *SetDebugStepParams) WithClusterID(clusterID strfmt.UUID) *SetDebugStepParams

WithClusterID adds the clusterID to the set debug step params

func (*SetDebugStepParams) WithContext

WithContext adds the context to the set debug step params

func (*SetDebugStepParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the set debug step params

func (*SetDebugStepParams) WithHostID

func (o *SetDebugStepParams) WithHostID(hostID strfmt.UUID) *SetDebugStepParams

WithHostID adds the hostID to the set debug step params

func (*SetDebugStepParams) WithStep

WithStep adds the step to the set debug step params

func (*SetDebugStepParams) WithTimeout

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

WithTimeout adds the timeout to the set debug step params

func (*SetDebugStepParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type SetDebugStepReader

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

SetDebugStepReader is a Reader for the SetDebugStep structure.

func (*SetDebugStepReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateClusterBadRequest

type UpdateClusterBadRequest struct {
	Payload *models.Error
}

UpdateClusterBadRequest handles this case with default header values.

Error.

func NewUpdateClusterBadRequest

func NewUpdateClusterBadRequest() *UpdateClusterBadRequest

NewUpdateClusterBadRequest creates a UpdateClusterBadRequest with default headers values

func (*UpdateClusterBadRequest) Error

func (o *UpdateClusterBadRequest) Error() string

func (*UpdateClusterBadRequest) GetPayload

func (o *UpdateClusterBadRequest) GetPayload() *models.Error

type UpdateClusterConflict

type UpdateClusterConflict struct {
	Payload *models.Error
}

UpdateClusterConflict handles this case with default header values.

Error.

func NewUpdateClusterConflict

func NewUpdateClusterConflict() *UpdateClusterConflict

NewUpdateClusterConflict creates a UpdateClusterConflict with default headers values

func (*UpdateClusterConflict) Error

func (o *UpdateClusterConflict) Error() string

func (*UpdateClusterConflict) GetPayload

func (o *UpdateClusterConflict) GetPayload() *models.Error

type UpdateClusterCreated

type UpdateClusterCreated struct {
	Payload *models.Cluster
}

UpdateClusterCreated handles this case with default header values.

Success.

func NewUpdateClusterCreated

func NewUpdateClusterCreated() *UpdateClusterCreated

NewUpdateClusterCreated creates a UpdateClusterCreated with default headers values

func (*UpdateClusterCreated) Error

func (o *UpdateClusterCreated) Error() string

func (*UpdateClusterCreated) GetPayload

func (o *UpdateClusterCreated) GetPayload() *models.Cluster

type UpdateClusterInternalServerError

type UpdateClusterInternalServerError struct {
	Payload *models.Error
}

UpdateClusterInternalServerError handles this case with default header values.

Error.

func NewUpdateClusterInternalServerError

func NewUpdateClusterInternalServerError() *UpdateClusterInternalServerError

NewUpdateClusterInternalServerError creates a UpdateClusterInternalServerError with default headers values

func (*UpdateClusterInternalServerError) Error

func (*UpdateClusterInternalServerError) GetPayload

type UpdateClusterNotFound

type UpdateClusterNotFound struct {
	Payload *models.Error
}

UpdateClusterNotFound handles this case with default header values.

Error.

func NewUpdateClusterNotFound

func NewUpdateClusterNotFound() *UpdateClusterNotFound

NewUpdateClusterNotFound creates a UpdateClusterNotFound with default headers values

func (*UpdateClusterNotFound) Error

func (o *UpdateClusterNotFound) Error() string

func (*UpdateClusterNotFound) GetPayload

func (o *UpdateClusterNotFound) GetPayload() *models.Error

type UpdateClusterParams

type UpdateClusterParams struct {

	/*ClusterUpdateParams*/
	ClusterUpdateParams *models.ClusterUpdateParams
	/*ClusterID*/
	ClusterID strfmt.UUID

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

UpdateClusterParams contains all the parameters to send to the API endpoint for the update cluster operation typically these are written to a http.Request

func NewUpdateClusterParams

func NewUpdateClusterParams() *UpdateClusterParams

NewUpdateClusterParams creates a new UpdateClusterParams object with the default values initialized.

func NewUpdateClusterParamsWithContext

func NewUpdateClusterParamsWithContext(ctx context.Context) *UpdateClusterParams

NewUpdateClusterParamsWithContext creates a new UpdateClusterParams object with the default values initialized, and the ability to set a context for a request

func NewUpdateClusterParamsWithHTTPClient

func NewUpdateClusterParamsWithHTTPClient(client *http.Client) *UpdateClusterParams

NewUpdateClusterParamsWithHTTPClient creates a new UpdateClusterParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewUpdateClusterParamsWithTimeout

func NewUpdateClusterParamsWithTimeout(timeout time.Duration) *UpdateClusterParams

NewUpdateClusterParamsWithTimeout creates a new UpdateClusterParams object with the default values initialized, and the ability to set a timeout on a request

func (*UpdateClusterParams) SetClusterID

func (o *UpdateClusterParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the update cluster params

func (*UpdateClusterParams) SetClusterUpdateParams

func (o *UpdateClusterParams) SetClusterUpdateParams(clusterUpdateParams *models.ClusterUpdateParams)

SetClusterUpdateParams adds the clusterUpdateParams to the update cluster params

func (*UpdateClusterParams) SetContext

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

SetContext adds the context to the update cluster params

func (*UpdateClusterParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update cluster params

func (*UpdateClusterParams) SetTimeout

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

SetTimeout adds the timeout to the update cluster params

func (*UpdateClusterParams) WithClusterID

func (o *UpdateClusterParams) WithClusterID(clusterID strfmt.UUID) *UpdateClusterParams

WithClusterID adds the clusterID to the update cluster params

func (*UpdateClusterParams) WithClusterUpdateParams

func (o *UpdateClusterParams) WithClusterUpdateParams(clusterUpdateParams *models.ClusterUpdateParams) *UpdateClusterParams

WithClusterUpdateParams adds the clusterUpdateParams to the update cluster params

func (*UpdateClusterParams) WithContext

WithContext adds the context to the update cluster params

func (*UpdateClusterParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the update cluster params

func (*UpdateClusterParams) WithTimeout

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

WithTimeout adds the timeout to the update cluster params

func (*UpdateClusterParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type UpdateClusterReader

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

UpdateClusterReader is a Reader for the UpdateCluster structure.

func (*UpdateClusterReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateHostInstallProgressInternalServerError added in v1.0.7

type UpdateHostInstallProgressInternalServerError struct {
	Payload *models.Error
}

UpdateHostInstallProgressInternalServerError handles this case with default header values.

Error.

func NewUpdateHostInstallProgressInternalServerError added in v1.0.7

func NewUpdateHostInstallProgressInternalServerError() *UpdateHostInstallProgressInternalServerError

NewUpdateHostInstallProgressInternalServerError creates a UpdateHostInstallProgressInternalServerError with default headers values

func (*UpdateHostInstallProgressInternalServerError) Error added in v1.0.7

func (*UpdateHostInstallProgressInternalServerError) GetPayload added in v1.0.7

type UpdateHostInstallProgressNotFound added in v1.0.7

type UpdateHostInstallProgressNotFound struct {
	Payload *models.Error
}

UpdateHostInstallProgressNotFound handles this case with default header values.

Error.

func NewUpdateHostInstallProgressNotFound added in v1.0.7

func NewUpdateHostInstallProgressNotFound() *UpdateHostInstallProgressNotFound

NewUpdateHostInstallProgressNotFound creates a UpdateHostInstallProgressNotFound with default headers values

func (*UpdateHostInstallProgressNotFound) Error added in v1.0.7

func (*UpdateHostInstallProgressNotFound) GetPayload added in v1.0.7

type UpdateHostInstallProgressOK

type UpdateHostInstallProgressOK struct {
}

UpdateHostInstallProgressOK handles this case with default header values.

Update install progress

func NewUpdateHostInstallProgressOK

func NewUpdateHostInstallProgressOK() *UpdateHostInstallProgressOK

NewUpdateHostInstallProgressOK creates a UpdateHostInstallProgressOK with default headers values

func (*UpdateHostInstallProgressOK) Error

type UpdateHostInstallProgressParams

type UpdateHostInstallProgressParams struct {

	/*ClusterID
	  The ID of the cluster to retrieve

	*/
	ClusterID strfmt.UUID
	/*HostProgress
	  New progress value

	*/
	HostProgress *models.HostProgress
	/*HostID
	  The ID of the host to retrieve

	*/
	HostID strfmt.UUID

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

UpdateHostInstallProgressParams contains all the parameters to send to the API endpoint for the update host install progress operation typically these are written to a http.Request

func NewUpdateHostInstallProgressParams

func NewUpdateHostInstallProgressParams() *UpdateHostInstallProgressParams

NewUpdateHostInstallProgressParams creates a new UpdateHostInstallProgressParams object with the default values initialized.

func NewUpdateHostInstallProgressParamsWithContext

func NewUpdateHostInstallProgressParamsWithContext(ctx context.Context) *UpdateHostInstallProgressParams

NewUpdateHostInstallProgressParamsWithContext creates a new UpdateHostInstallProgressParams object with the default values initialized, and the ability to set a context for a request

func NewUpdateHostInstallProgressParamsWithHTTPClient

func NewUpdateHostInstallProgressParamsWithHTTPClient(client *http.Client) *UpdateHostInstallProgressParams

NewUpdateHostInstallProgressParamsWithHTTPClient creates a new UpdateHostInstallProgressParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewUpdateHostInstallProgressParamsWithTimeout

func NewUpdateHostInstallProgressParamsWithTimeout(timeout time.Duration) *UpdateHostInstallProgressParams

NewUpdateHostInstallProgressParamsWithTimeout creates a new UpdateHostInstallProgressParams object with the default values initialized, and the ability to set a timeout on a request

func (*UpdateHostInstallProgressParams) SetClusterID

func (o *UpdateHostInstallProgressParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the update host install progress params

func (*UpdateHostInstallProgressParams) SetContext

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

SetContext adds the context to the update host install progress params

func (*UpdateHostInstallProgressParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update host install progress params

func (*UpdateHostInstallProgressParams) SetHostID

func (o *UpdateHostInstallProgressParams) SetHostID(hostID strfmt.UUID)

SetHostID adds the hostId to the update host install progress params

func (*UpdateHostInstallProgressParams) SetHostProgress added in v1.0.5

func (o *UpdateHostInstallProgressParams) SetHostProgress(hostProgress *models.HostProgress)

SetHostProgress adds the hostProgress to the update host install progress params

func (*UpdateHostInstallProgressParams) SetTimeout

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

SetTimeout adds the timeout to the update host install progress params

func (*UpdateHostInstallProgressParams) WithClusterID

WithClusterID adds the clusterID to the update host install progress params

func (*UpdateHostInstallProgressParams) WithContext

WithContext adds the context to the update host install progress params

func (*UpdateHostInstallProgressParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update host install progress params

func (*UpdateHostInstallProgressParams) WithHostID

WithHostID adds the hostID to the update host install progress params

func (*UpdateHostInstallProgressParams) WithHostProgress added in v1.0.5

WithHostProgress adds the hostProgress to the update host install progress params

func (*UpdateHostInstallProgressParams) WithTimeout

WithTimeout adds the timeout to the update host install progress params

func (*UpdateHostInstallProgressParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateHostInstallProgressReader

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

UpdateHostInstallProgressReader is a Reader for the UpdateHostInstallProgress structure.

func (*UpdateHostInstallProgressReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UploadClusterIngressCertBadRequest

type UploadClusterIngressCertBadRequest struct {
	Payload *models.Error
}

UploadClusterIngressCertBadRequest handles this case with default header values.

Error.

func NewUploadClusterIngressCertBadRequest

func NewUploadClusterIngressCertBadRequest() *UploadClusterIngressCertBadRequest

NewUploadClusterIngressCertBadRequest creates a UploadClusterIngressCertBadRequest with default headers values

func (*UploadClusterIngressCertBadRequest) Error

func (*UploadClusterIngressCertBadRequest) GetPayload

type UploadClusterIngressCertCreated

type UploadClusterIngressCertCreated struct {
}

UploadClusterIngressCertCreated handles this case with default header values.

Success.

func NewUploadClusterIngressCertCreated

func NewUploadClusterIngressCertCreated() *UploadClusterIngressCertCreated

NewUploadClusterIngressCertCreated creates a UploadClusterIngressCertCreated with default headers values

func (*UploadClusterIngressCertCreated) Error

type UploadClusterIngressCertInternalServerError

type UploadClusterIngressCertInternalServerError struct {
	Payload *models.Error
}

UploadClusterIngressCertInternalServerError handles this case with default header values.

Error.

func NewUploadClusterIngressCertInternalServerError

func NewUploadClusterIngressCertInternalServerError() *UploadClusterIngressCertInternalServerError

NewUploadClusterIngressCertInternalServerError creates a UploadClusterIngressCertInternalServerError with default headers values

func (*UploadClusterIngressCertInternalServerError) Error

func (*UploadClusterIngressCertInternalServerError) GetPayload

type UploadClusterIngressCertNotFound

type UploadClusterIngressCertNotFound struct {
	Payload *models.Error
}

UploadClusterIngressCertNotFound handles this case with default header values.

Error.

func NewUploadClusterIngressCertNotFound

func NewUploadClusterIngressCertNotFound() *UploadClusterIngressCertNotFound

NewUploadClusterIngressCertNotFound creates a UploadClusterIngressCertNotFound with default headers values

func (*UploadClusterIngressCertNotFound) Error

func (*UploadClusterIngressCertNotFound) GetPayload

type UploadClusterIngressCertParams

type UploadClusterIngressCertParams struct {

	/*ClusterID*/
	ClusterID strfmt.UUID
	/*IngressCertParams*/
	IngressCertParams models.IngressCertParams

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

UploadClusterIngressCertParams contains all the parameters to send to the API endpoint for the upload cluster ingress cert operation typically these are written to a http.Request

func NewUploadClusterIngressCertParams

func NewUploadClusterIngressCertParams() *UploadClusterIngressCertParams

NewUploadClusterIngressCertParams creates a new UploadClusterIngressCertParams object with the default values initialized.

func NewUploadClusterIngressCertParamsWithContext

func NewUploadClusterIngressCertParamsWithContext(ctx context.Context) *UploadClusterIngressCertParams

NewUploadClusterIngressCertParamsWithContext creates a new UploadClusterIngressCertParams object with the default values initialized, and the ability to set a context for a request

func NewUploadClusterIngressCertParamsWithHTTPClient

func NewUploadClusterIngressCertParamsWithHTTPClient(client *http.Client) *UploadClusterIngressCertParams

NewUploadClusterIngressCertParamsWithHTTPClient creates a new UploadClusterIngressCertParams object with the default values initialized, and the ability to set a custom HTTPClient for a request

func NewUploadClusterIngressCertParamsWithTimeout

func NewUploadClusterIngressCertParamsWithTimeout(timeout time.Duration) *UploadClusterIngressCertParams

NewUploadClusterIngressCertParamsWithTimeout creates a new UploadClusterIngressCertParams object with the default values initialized, and the ability to set a timeout on a request

func (*UploadClusterIngressCertParams) SetClusterID

func (o *UploadClusterIngressCertParams) SetClusterID(clusterID strfmt.UUID)

SetClusterID adds the clusterId to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) SetContext

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

SetContext adds the context to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) SetIngressCertParams

func (o *UploadClusterIngressCertParams) SetIngressCertParams(ingressCertParams models.IngressCertParams)

SetIngressCertParams adds the ingressCertParams to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) SetTimeout

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

SetTimeout adds the timeout to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WithClusterID

WithClusterID adds the clusterID to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WithContext

WithContext adds the context to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WithIngressCertParams

func (o *UploadClusterIngressCertParams) WithIngressCertParams(ingressCertParams models.IngressCertParams) *UploadClusterIngressCertParams

WithIngressCertParams adds the ingressCertParams to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WithTimeout

WithTimeout adds the timeout to the upload cluster ingress cert params

func (*UploadClusterIngressCertParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UploadClusterIngressCertReader

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

UploadClusterIngressCertReader is a Reader for the UploadClusterIngressCert structure.

func (*UploadClusterIngressCertReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Source Files

Jump to

Keyboard shortcuts

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