applications

package
v2.21.1 Latest Latest
Warning

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

Go to latest
Published: Sep 22, 2022 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for applications API

func (*Client) CreateApplicationInstallation

CreateApplicationInstallation Creates ApplicationInstallation into the given cluster

func (*Client) DeleteApplicationInstallation

func (a *Client) DeleteApplicationInstallation(params *DeleteApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteApplicationInstallationOK, error)

DeleteApplicationInstallation Deletes the given ApplicationInstallation

func (*Client) GetApplicationInstallation

func (a *Client) GetApplicationInstallation(params *GetApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationInstallationOK, error)

GetApplicationInstallation Gets the given ApplicationInstallation

func (*Client) ListApplicationDefinitions

func (a *Client) ListApplicationDefinitions(params *ListApplicationDefinitionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListApplicationDefinitionsOK, error)

ListApplicationDefinitions List ApplicationDefinitions which are available in the KKP installation

func (*Client) ListApplicationInstallations

func (a *Client) ListApplicationInstallations(params *ListApplicationInstallationsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListApplicationInstallationsOK, error)

ListApplicationInstallations List ApplicationInstallations which belong to the given cluster

func (*Client) SetTransport

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

SetTransport changes the transport on the client

func (*Client) UpdateApplicationInstallation

func (a *Client) UpdateApplicationInstallation(params *UpdateApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateApplicationInstallationOK, error)

UpdateApplicationInstallation Updates the given ApplicationInstallation

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	CreateApplicationInstallation(params *CreateApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*CreateApplicationInstallationCreated, error)

	DeleteApplicationInstallation(params *DeleteApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*DeleteApplicationInstallationOK, error)

	GetApplicationInstallation(params *GetApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*GetApplicationInstallationOK, error)

	ListApplicationDefinitions(params *ListApplicationDefinitionsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListApplicationDefinitionsOK, error)

	ListApplicationInstallations(params *ListApplicationInstallationsParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*ListApplicationInstallationsOK, error)

	UpdateApplicationInstallation(params *UpdateApplicationInstallationParams, authInfo runtime.ClientAuthInfoWriter, opts ...ClientOption) (*UpdateApplicationInstallationOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

func New(transport runtime.ClientTransport, formats strfmt.Registry) ClientService

New creates a new applications API client.

type CreateApplicationInstallationCreated

type CreateApplicationInstallationCreated struct {
	Payload *models.ApplicationInstallation
}
CreateApplicationInstallationCreated describes a response with status code 201, with default header values.

ApplicationInstallation

func NewCreateApplicationInstallationCreated

func NewCreateApplicationInstallationCreated() *CreateApplicationInstallationCreated

NewCreateApplicationInstallationCreated creates a CreateApplicationInstallationCreated with default headers values

func (*CreateApplicationInstallationCreated) Error

func (*CreateApplicationInstallationCreated) GetPayload

type CreateApplicationInstallationDefault

type CreateApplicationInstallationDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
CreateApplicationInstallationDefault describes a response with status code -1, with default header values.

errorResponse

func NewCreateApplicationInstallationDefault

func NewCreateApplicationInstallationDefault(code int) *CreateApplicationInstallationDefault

NewCreateApplicationInstallationDefault creates a CreateApplicationInstallationDefault with default headers values

func (*CreateApplicationInstallationDefault) Code

Code gets the status code for the create application installation default response

func (*CreateApplicationInstallationDefault) Error

func (*CreateApplicationInstallationDefault) GetPayload

type CreateApplicationInstallationForbidden

type CreateApplicationInstallationForbidden struct {
}
CreateApplicationInstallationForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewCreateApplicationInstallationForbidden

func NewCreateApplicationInstallationForbidden() *CreateApplicationInstallationForbidden

NewCreateApplicationInstallationForbidden creates a CreateApplicationInstallationForbidden with default headers values

func (*CreateApplicationInstallationForbidden) Error

type CreateApplicationInstallationParams

type CreateApplicationInstallationParams struct {

	// Body.
	Body *models.ApplicationInstallationBody

	// ClusterID.
	ClusterID string

	// ProjectID.
	ProjectID string

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

CreateApplicationInstallationParams contains all the parameters to send to the API endpoint

for the create application installation operation.

Typically these are written to a http.Request.

func NewCreateApplicationInstallationParams

func NewCreateApplicationInstallationParams() *CreateApplicationInstallationParams

NewCreateApplicationInstallationParams creates a new CreateApplicationInstallationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewCreateApplicationInstallationParamsWithContext

func NewCreateApplicationInstallationParamsWithContext(ctx context.Context) *CreateApplicationInstallationParams

NewCreateApplicationInstallationParamsWithContext creates a new CreateApplicationInstallationParams object with the ability to set a context for a request.

func NewCreateApplicationInstallationParamsWithHTTPClient

func NewCreateApplicationInstallationParamsWithHTTPClient(client *http.Client) *CreateApplicationInstallationParams

NewCreateApplicationInstallationParamsWithHTTPClient creates a new CreateApplicationInstallationParams object with the ability to set a custom HTTPClient for a request.

func NewCreateApplicationInstallationParamsWithTimeout

func NewCreateApplicationInstallationParamsWithTimeout(timeout time.Duration) *CreateApplicationInstallationParams

NewCreateApplicationInstallationParamsWithTimeout creates a new CreateApplicationInstallationParams object with the ability to set a timeout on a request.

func (*CreateApplicationInstallationParams) SetBody

SetBody adds the body to the create application installation params

func (*CreateApplicationInstallationParams) SetClusterID

func (o *CreateApplicationInstallationParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the create application installation params

func (*CreateApplicationInstallationParams) SetContext

SetContext adds the context to the create application installation params

func (*CreateApplicationInstallationParams) SetDefaults

func (o *CreateApplicationInstallationParams) SetDefaults()

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

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

func (*CreateApplicationInstallationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the create application installation params

func (*CreateApplicationInstallationParams) SetProjectID

func (o *CreateApplicationInstallationParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the create application installation params

func (*CreateApplicationInstallationParams) SetTimeout

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

SetTimeout adds the timeout to the create application installation params

func (*CreateApplicationInstallationParams) WithBody

WithBody adds the body to the create application installation params

func (*CreateApplicationInstallationParams) WithClusterID

WithClusterID adds the clusterID to the create application installation params

func (*CreateApplicationInstallationParams) WithContext

WithContext adds the context to the create application installation params

func (*CreateApplicationInstallationParams) WithDefaults

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

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

func (*CreateApplicationInstallationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the create application installation params

func (*CreateApplicationInstallationParams) WithProjectID

WithProjectID adds the projectID to the create application installation params

func (*CreateApplicationInstallationParams) WithTimeout

WithTimeout adds the timeout to the create application installation params

func (*CreateApplicationInstallationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type CreateApplicationInstallationReader

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

CreateApplicationInstallationReader is a Reader for the CreateApplicationInstallation structure.

func (*CreateApplicationInstallationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type CreateApplicationInstallationUnauthorized

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

EmptyResponse is a empty response

func NewCreateApplicationInstallationUnauthorized

func NewCreateApplicationInstallationUnauthorized() *CreateApplicationInstallationUnauthorized

NewCreateApplicationInstallationUnauthorized creates a CreateApplicationInstallationUnauthorized with default headers values

func (*CreateApplicationInstallationUnauthorized) Error

type DeleteApplicationInstallationDefault

type DeleteApplicationInstallationDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
DeleteApplicationInstallationDefault describes a response with status code -1, with default header values.

errorResponse

func NewDeleteApplicationInstallationDefault

func NewDeleteApplicationInstallationDefault(code int) *DeleteApplicationInstallationDefault

NewDeleteApplicationInstallationDefault creates a DeleteApplicationInstallationDefault with default headers values

func (*DeleteApplicationInstallationDefault) Code

Code gets the status code for the delete application installation default response

func (*DeleteApplicationInstallationDefault) Error

func (*DeleteApplicationInstallationDefault) GetPayload

type DeleteApplicationInstallationForbidden

type DeleteApplicationInstallationForbidden struct {
}
DeleteApplicationInstallationForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewDeleteApplicationInstallationForbidden

func NewDeleteApplicationInstallationForbidden() *DeleteApplicationInstallationForbidden

NewDeleteApplicationInstallationForbidden creates a DeleteApplicationInstallationForbidden with default headers values

func (*DeleteApplicationInstallationForbidden) Error

type DeleteApplicationInstallationOK

type DeleteApplicationInstallationOK struct {
}
DeleteApplicationInstallationOK describes a response with status code 200, with default header values.

EmptyResponse is a empty response

func NewDeleteApplicationInstallationOK

func NewDeleteApplicationInstallationOK() *DeleteApplicationInstallationOK

NewDeleteApplicationInstallationOK creates a DeleteApplicationInstallationOK with default headers values

func (*DeleteApplicationInstallationOK) Error

type DeleteApplicationInstallationParams

type DeleteApplicationInstallationParams struct {

	// AppinstallName.
	ApplicationInstallationName string

	// ClusterID.
	ClusterID string

	// Namespace.
	Namespace string

	// ProjectID.
	ProjectID string

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

DeleteApplicationInstallationParams contains all the parameters to send to the API endpoint

for the delete application installation operation.

Typically these are written to a http.Request.

func NewDeleteApplicationInstallationParams

func NewDeleteApplicationInstallationParams() *DeleteApplicationInstallationParams

NewDeleteApplicationInstallationParams creates a new DeleteApplicationInstallationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewDeleteApplicationInstallationParamsWithContext

func NewDeleteApplicationInstallationParamsWithContext(ctx context.Context) *DeleteApplicationInstallationParams

NewDeleteApplicationInstallationParamsWithContext creates a new DeleteApplicationInstallationParams object with the ability to set a context for a request.

func NewDeleteApplicationInstallationParamsWithHTTPClient

func NewDeleteApplicationInstallationParamsWithHTTPClient(client *http.Client) *DeleteApplicationInstallationParams

NewDeleteApplicationInstallationParamsWithHTTPClient creates a new DeleteApplicationInstallationParams object with the ability to set a custom HTTPClient for a request.

func NewDeleteApplicationInstallationParamsWithTimeout

func NewDeleteApplicationInstallationParamsWithTimeout(timeout time.Duration) *DeleteApplicationInstallationParams

NewDeleteApplicationInstallationParamsWithTimeout creates a new DeleteApplicationInstallationParams object with the ability to set a timeout on a request.

func (*DeleteApplicationInstallationParams) SetApplicationInstallationName

func (o *DeleteApplicationInstallationParams) SetApplicationInstallationName(appinstallName string)

SetApplicationInstallationName adds the appinstallName to the delete application installation params

func (*DeleteApplicationInstallationParams) SetClusterID

func (o *DeleteApplicationInstallationParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the delete application installation params

func (*DeleteApplicationInstallationParams) SetContext

SetContext adds the context to the delete application installation params

func (*DeleteApplicationInstallationParams) SetDefaults

func (o *DeleteApplicationInstallationParams) SetDefaults()

SetDefaults hydrates default values in the delete application installation params (not the query body).

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

func (*DeleteApplicationInstallationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the delete application installation params

func (*DeleteApplicationInstallationParams) SetNamespace

func (o *DeleteApplicationInstallationParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the delete application installation params

func (*DeleteApplicationInstallationParams) SetProjectID

func (o *DeleteApplicationInstallationParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the delete application installation params

func (*DeleteApplicationInstallationParams) SetTimeout

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

SetTimeout adds the timeout to the delete application installation params

func (*DeleteApplicationInstallationParams) WithApplicationInstallationName

func (o *DeleteApplicationInstallationParams) WithApplicationInstallationName(appinstallName string) *DeleteApplicationInstallationParams

WithApplicationInstallationName adds the appinstallName to the delete application installation params

func (*DeleteApplicationInstallationParams) WithClusterID

WithClusterID adds the clusterID to the delete application installation params

func (*DeleteApplicationInstallationParams) WithContext

WithContext adds the context to the delete application installation params

func (*DeleteApplicationInstallationParams) WithDefaults

WithDefaults hydrates default values in the delete application installation params (not the query body).

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

func (*DeleteApplicationInstallationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the delete application installation params

func (*DeleteApplicationInstallationParams) WithNamespace

WithNamespace adds the namespace to the delete application installation params

func (*DeleteApplicationInstallationParams) WithProjectID

WithProjectID adds the projectID to the delete application installation params

func (*DeleteApplicationInstallationParams) WithTimeout

WithTimeout adds the timeout to the delete application installation params

func (*DeleteApplicationInstallationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type DeleteApplicationInstallationReader

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

DeleteApplicationInstallationReader is a Reader for the DeleteApplicationInstallation structure.

func (*DeleteApplicationInstallationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type DeleteApplicationInstallationUnauthorized

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

EmptyResponse is a empty response

func NewDeleteApplicationInstallationUnauthorized

func NewDeleteApplicationInstallationUnauthorized() *DeleteApplicationInstallationUnauthorized

NewDeleteApplicationInstallationUnauthorized creates a DeleteApplicationInstallationUnauthorized with default headers values

func (*DeleteApplicationInstallationUnauthorized) Error

type GetApplicationInstallationDefault

type GetApplicationInstallationDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
GetApplicationInstallationDefault describes a response with status code -1, with default header values.

errorResponse

func NewGetApplicationInstallationDefault

func NewGetApplicationInstallationDefault(code int) *GetApplicationInstallationDefault

NewGetApplicationInstallationDefault creates a GetApplicationInstallationDefault with default headers values

func (*GetApplicationInstallationDefault) Code

Code gets the status code for the get application installation default response

func (*GetApplicationInstallationDefault) Error

func (*GetApplicationInstallationDefault) GetPayload

type GetApplicationInstallationForbidden

type GetApplicationInstallationForbidden struct {
}
GetApplicationInstallationForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewGetApplicationInstallationForbidden

func NewGetApplicationInstallationForbidden() *GetApplicationInstallationForbidden

NewGetApplicationInstallationForbidden creates a GetApplicationInstallationForbidden with default headers values

func (*GetApplicationInstallationForbidden) Error

type GetApplicationInstallationOK

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

ApplicationInstallation

func NewGetApplicationInstallationOK

func NewGetApplicationInstallationOK() *GetApplicationInstallationOK

NewGetApplicationInstallationOK creates a GetApplicationInstallationOK with default headers values

func (*GetApplicationInstallationOK) Error

func (*GetApplicationInstallationOK) GetPayload

type GetApplicationInstallationParams

type GetApplicationInstallationParams struct {

	// AppinstallName.
	ApplicationInstallationName string

	// ClusterID.
	ClusterID string

	// Namespace.
	Namespace string

	// ProjectID.
	ProjectID string

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

GetApplicationInstallationParams contains all the parameters to send to the API endpoint

for the get application installation operation.

Typically these are written to a http.Request.

func NewGetApplicationInstallationParams

func NewGetApplicationInstallationParams() *GetApplicationInstallationParams

NewGetApplicationInstallationParams creates a new GetApplicationInstallationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewGetApplicationInstallationParamsWithContext

func NewGetApplicationInstallationParamsWithContext(ctx context.Context) *GetApplicationInstallationParams

NewGetApplicationInstallationParamsWithContext creates a new GetApplicationInstallationParams object with the ability to set a context for a request.

func NewGetApplicationInstallationParamsWithHTTPClient

func NewGetApplicationInstallationParamsWithHTTPClient(client *http.Client) *GetApplicationInstallationParams

NewGetApplicationInstallationParamsWithHTTPClient creates a new GetApplicationInstallationParams object with the ability to set a custom HTTPClient for a request.

func NewGetApplicationInstallationParamsWithTimeout

func NewGetApplicationInstallationParamsWithTimeout(timeout time.Duration) *GetApplicationInstallationParams

NewGetApplicationInstallationParamsWithTimeout creates a new GetApplicationInstallationParams object with the ability to set a timeout on a request.

func (*GetApplicationInstallationParams) SetApplicationInstallationName

func (o *GetApplicationInstallationParams) SetApplicationInstallationName(appinstallName string)

SetApplicationInstallationName adds the appinstallName to the get application installation params

func (*GetApplicationInstallationParams) SetClusterID

func (o *GetApplicationInstallationParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the get application installation params

func (*GetApplicationInstallationParams) SetContext

SetContext adds the context to the get application installation params

func (*GetApplicationInstallationParams) SetDefaults

func (o *GetApplicationInstallationParams) SetDefaults()

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

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

func (*GetApplicationInstallationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get application installation params

func (*GetApplicationInstallationParams) SetNamespace

func (o *GetApplicationInstallationParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the get application installation params

func (*GetApplicationInstallationParams) SetProjectID

func (o *GetApplicationInstallationParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the get application installation params

func (*GetApplicationInstallationParams) SetTimeout

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

SetTimeout adds the timeout to the get application installation params

func (*GetApplicationInstallationParams) WithApplicationInstallationName

func (o *GetApplicationInstallationParams) WithApplicationInstallationName(appinstallName string) *GetApplicationInstallationParams

WithApplicationInstallationName adds the appinstallName to the get application installation params

func (*GetApplicationInstallationParams) WithClusterID

WithClusterID adds the clusterID to the get application installation params

func (*GetApplicationInstallationParams) WithContext

WithContext adds the context to the get application installation params

func (*GetApplicationInstallationParams) WithDefaults

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

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

func (*GetApplicationInstallationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get application installation params

func (*GetApplicationInstallationParams) WithNamespace

WithNamespace adds the namespace to the get application installation params

func (*GetApplicationInstallationParams) WithProjectID

WithProjectID adds the projectID to the get application installation params

func (*GetApplicationInstallationParams) WithTimeout

WithTimeout adds the timeout to the get application installation params

func (*GetApplicationInstallationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetApplicationInstallationReader

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

GetApplicationInstallationReader is a Reader for the GetApplicationInstallation structure.

func (*GetApplicationInstallationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetApplicationInstallationUnauthorized

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

EmptyResponse is a empty response

func NewGetApplicationInstallationUnauthorized

func NewGetApplicationInstallationUnauthorized() *GetApplicationInstallationUnauthorized

NewGetApplicationInstallationUnauthorized creates a GetApplicationInstallationUnauthorized with default headers values

func (*GetApplicationInstallationUnauthorized) Error

type ListApplicationDefinitionsDefault

type ListApplicationDefinitionsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListApplicationDefinitionsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListApplicationDefinitionsDefault

func NewListApplicationDefinitionsDefault(code int) *ListApplicationDefinitionsDefault

NewListApplicationDefinitionsDefault creates a ListApplicationDefinitionsDefault with default headers values

func (*ListApplicationDefinitionsDefault) Code

Code gets the status code for the list application definitions default response

func (*ListApplicationDefinitionsDefault) Error

func (*ListApplicationDefinitionsDefault) GetPayload

type ListApplicationDefinitionsForbidden

type ListApplicationDefinitionsForbidden struct {
}
ListApplicationDefinitionsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListApplicationDefinitionsForbidden

func NewListApplicationDefinitionsForbidden() *ListApplicationDefinitionsForbidden

NewListApplicationDefinitionsForbidden creates a ListApplicationDefinitionsForbidden with default headers values

func (*ListApplicationDefinitionsForbidden) Error

type ListApplicationDefinitionsOK

type ListApplicationDefinitionsOK struct {
	Payload []*models.ApplicationDefinition
}
ListApplicationDefinitionsOK describes a response with status code 200, with default header values.

ApplicationDefinition

func NewListApplicationDefinitionsOK

func NewListApplicationDefinitionsOK() *ListApplicationDefinitionsOK

NewListApplicationDefinitionsOK creates a ListApplicationDefinitionsOK with default headers values

func (*ListApplicationDefinitionsOK) Error

func (*ListApplicationDefinitionsOK) GetPayload

type ListApplicationDefinitionsParams

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

ListApplicationDefinitionsParams contains all the parameters to send to the API endpoint

for the list application definitions operation.

Typically these are written to a http.Request.

func NewListApplicationDefinitionsParams

func NewListApplicationDefinitionsParams() *ListApplicationDefinitionsParams

NewListApplicationDefinitionsParams creates a new ListApplicationDefinitionsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListApplicationDefinitionsParamsWithContext

func NewListApplicationDefinitionsParamsWithContext(ctx context.Context) *ListApplicationDefinitionsParams

NewListApplicationDefinitionsParamsWithContext creates a new ListApplicationDefinitionsParams object with the ability to set a context for a request.

func NewListApplicationDefinitionsParamsWithHTTPClient

func NewListApplicationDefinitionsParamsWithHTTPClient(client *http.Client) *ListApplicationDefinitionsParams

NewListApplicationDefinitionsParamsWithHTTPClient creates a new ListApplicationDefinitionsParams object with the ability to set a custom HTTPClient for a request.

func NewListApplicationDefinitionsParamsWithTimeout

func NewListApplicationDefinitionsParamsWithTimeout(timeout time.Duration) *ListApplicationDefinitionsParams

NewListApplicationDefinitionsParamsWithTimeout creates a new ListApplicationDefinitionsParams object with the ability to set a timeout on a request.

func (*ListApplicationDefinitionsParams) SetContext

SetContext adds the context to the list application definitions params

func (*ListApplicationDefinitionsParams) SetDefaults

func (o *ListApplicationDefinitionsParams) SetDefaults()

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

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

func (*ListApplicationDefinitionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list application definitions params

func (*ListApplicationDefinitionsParams) SetTimeout

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

SetTimeout adds the timeout to the list application definitions params

func (*ListApplicationDefinitionsParams) WithContext

WithContext adds the context to the list application definitions params

func (*ListApplicationDefinitionsParams) WithDefaults

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

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

func (*ListApplicationDefinitionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list application definitions params

func (*ListApplicationDefinitionsParams) WithTimeout

WithTimeout adds the timeout to the list application definitions params

func (*ListApplicationDefinitionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListApplicationDefinitionsReader

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

ListApplicationDefinitionsReader is a Reader for the ListApplicationDefinitions structure.

func (*ListApplicationDefinitionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListApplicationDefinitionsUnauthorized

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

EmptyResponse is a empty response

func NewListApplicationDefinitionsUnauthorized

func NewListApplicationDefinitionsUnauthorized() *ListApplicationDefinitionsUnauthorized

NewListApplicationDefinitionsUnauthorized creates a ListApplicationDefinitionsUnauthorized with default headers values

func (*ListApplicationDefinitionsUnauthorized) Error

type ListApplicationInstallationsDefault

type ListApplicationInstallationsDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
ListApplicationInstallationsDefault describes a response with status code -1, with default header values.

errorResponse

func NewListApplicationInstallationsDefault

func NewListApplicationInstallationsDefault(code int) *ListApplicationInstallationsDefault

NewListApplicationInstallationsDefault creates a ListApplicationInstallationsDefault with default headers values

func (*ListApplicationInstallationsDefault) Code

Code gets the status code for the list application installations default response

func (*ListApplicationInstallationsDefault) Error

func (*ListApplicationInstallationsDefault) GetPayload

type ListApplicationInstallationsForbidden

type ListApplicationInstallationsForbidden struct {
}
ListApplicationInstallationsForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewListApplicationInstallationsForbidden

func NewListApplicationInstallationsForbidden() *ListApplicationInstallationsForbidden

NewListApplicationInstallationsForbidden creates a ListApplicationInstallationsForbidden with default headers values

func (*ListApplicationInstallationsForbidden) Error

type ListApplicationInstallationsOK

type ListApplicationInstallationsOK struct {
	Payload []*models.ApplicationInstallation
}
ListApplicationInstallationsOK describes a response with status code 200, with default header values.

ApplicationInstallation

func NewListApplicationInstallationsOK

func NewListApplicationInstallationsOK() *ListApplicationInstallationsOK

NewListApplicationInstallationsOK creates a ListApplicationInstallationsOK with default headers values

func (*ListApplicationInstallationsOK) Error

func (*ListApplicationInstallationsOK) GetPayload

type ListApplicationInstallationsParams

type ListApplicationInstallationsParams struct {

	// ClusterID.
	ClusterID string

	// ProjectID.
	ProjectID string

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

ListApplicationInstallationsParams contains all the parameters to send to the API endpoint

for the list application installations operation.

Typically these are written to a http.Request.

func NewListApplicationInstallationsParams

func NewListApplicationInstallationsParams() *ListApplicationInstallationsParams

NewListApplicationInstallationsParams creates a new ListApplicationInstallationsParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewListApplicationInstallationsParamsWithContext

func NewListApplicationInstallationsParamsWithContext(ctx context.Context) *ListApplicationInstallationsParams

NewListApplicationInstallationsParamsWithContext creates a new ListApplicationInstallationsParams object with the ability to set a context for a request.

func NewListApplicationInstallationsParamsWithHTTPClient

func NewListApplicationInstallationsParamsWithHTTPClient(client *http.Client) *ListApplicationInstallationsParams

NewListApplicationInstallationsParamsWithHTTPClient creates a new ListApplicationInstallationsParams object with the ability to set a custom HTTPClient for a request.

func NewListApplicationInstallationsParamsWithTimeout

func NewListApplicationInstallationsParamsWithTimeout(timeout time.Duration) *ListApplicationInstallationsParams

NewListApplicationInstallationsParamsWithTimeout creates a new ListApplicationInstallationsParams object with the ability to set a timeout on a request.

func (*ListApplicationInstallationsParams) SetClusterID

func (o *ListApplicationInstallationsParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the list application installations params

func (*ListApplicationInstallationsParams) SetContext

SetContext adds the context to the list application installations params

func (*ListApplicationInstallationsParams) SetDefaults

func (o *ListApplicationInstallationsParams) SetDefaults()

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

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

func (*ListApplicationInstallationsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the list application installations params

func (*ListApplicationInstallationsParams) SetProjectID

func (o *ListApplicationInstallationsParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the list application installations params

func (*ListApplicationInstallationsParams) SetTimeout

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

SetTimeout adds the timeout to the list application installations params

func (*ListApplicationInstallationsParams) WithClusterID

WithClusterID adds the clusterID to the list application installations params

func (*ListApplicationInstallationsParams) WithContext

WithContext adds the context to the list application installations params

func (*ListApplicationInstallationsParams) WithDefaults

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

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

func (*ListApplicationInstallationsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the list application installations params

func (*ListApplicationInstallationsParams) WithProjectID

WithProjectID adds the projectID to the list application installations params

func (*ListApplicationInstallationsParams) WithTimeout

WithTimeout adds the timeout to the list application installations params

func (*ListApplicationInstallationsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ListApplicationInstallationsReader

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

ListApplicationInstallationsReader is a Reader for the ListApplicationInstallations structure.

func (*ListApplicationInstallationsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ListApplicationInstallationsUnauthorized

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

EmptyResponse is a empty response

func NewListApplicationInstallationsUnauthorized

func NewListApplicationInstallationsUnauthorized() *ListApplicationInstallationsUnauthorized

NewListApplicationInstallationsUnauthorized creates a ListApplicationInstallationsUnauthorized with default headers values

func (*ListApplicationInstallationsUnauthorized) Error

type UpdateApplicationInstallationDefault

type UpdateApplicationInstallationDefault struct {
	Payload *models.ErrorResponse
	// contains filtered or unexported fields
}
UpdateApplicationInstallationDefault describes a response with status code -1, with default header values.

errorResponse

func NewUpdateApplicationInstallationDefault

func NewUpdateApplicationInstallationDefault(code int) *UpdateApplicationInstallationDefault

NewUpdateApplicationInstallationDefault creates a UpdateApplicationInstallationDefault with default headers values

func (*UpdateApplicationInstallationDefault) Code

Code gets the status code for the update application installation default response

func (*UpdateApplicationInstallationDefault) Error

func (*UpdateApplicationInstallationDefault) GetPayload

type UpdateApplicationInstallationForbidden

type UpdateApplicationInstallationForbidden struct {
}
UpdateApplicationInstallationForbidden describes a response with status code 403, with default header values.

EmptyResponse is a empty response

func NewUpdateApplicationInstallationForbidden

func NewUpdateApplicationInstallationForbidden() *UpdateApplicationInstallationForbidden

NewUpdateApplicationInstallationForbidden creates a UpdateApplicationInstallationForbidden with default headers values

func (*UpdateApplicationInstallationForbidden) Error

type UpdateApplicationInstallationOK

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

ApplicationInstallation

func NewUpdateApplicationInstallationOK

func NewUpdateApplicationInstallationOK() *UpdateApplicationInstallationOK

NewUpdateApplicationInstallationOK creates a UpdateApplicationInstallationOK with default headers values

func (*UpdateApplicationInstallationOK) Error

func (*UpdateApplicationInstallationOK) GetPayload

type UpdateApplicationInstallationParams

type UpdateApplicationInstallationParams struct {

	// Body.
	Body *models.ApplicationInstallationBody

	// AppinstallName.
	ApplicationInstallationName string

	// ClusterID.
	ClusterID string

	// Namespace.
	Namespace string

	// ProjectID.
	ProjectID string

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

UpdateApplicationInstallationParams contains all the parameters to send to the API endpoint

for the update application installation operation.

Typically these are written to a http.Request.

func NewUpdateApplicationInstallationParams

func NewUpdateApplicationInstallationParams() *UpdateApplicationInstallationParams

NewUpdateApplicationInstallationParams creates a new UpdateApplicationInstallationParams object, with the default timeout for this client.

Default values are not hydrated, since defaults are normally applied by the API server side.

To enforce default values in parameter, use SetDefaults or WithDefaults.

func NewUpdateApplicationInstallationParamsWithContext

func NewUpdateApplicationInstallationParamsWithContext(ctx context.Context) *UpdateApplicationInstallationParams

NewUpdateApplicationInstallationParamsWithContext creates a new UpdateApplicationInstallationParams object with the ability to set a context for a request.

func NewUpdateApplicationInstallationParamsWithHTTPClient

func NewUpdateApplicationInstallationParamsWithHTTPClient(client *http.Client) *UpdateApplicationInstallationParams

NewUpdateApplicationInstallationParamsWithHTTPClient creates a new UpdateApplicationInstallationParams object with the ability to set a custom HTTPClient for a request.

func NewUpdateApplicationInstallationParamsWithTimeout

func NewUpdateApplicationInstallationParamsWithTimeout(timeout time.Duration) *UpdateApplicationInstallationParams

NewUpdateApplicationInstallationParamsWithTimeout creates a new UpdateApplicationInstallationParams object with the ability to set a timeout on a request.

func (*UpdateApplicationInstallationParams) SetApplicationInstallationName

func (o *UpdateApplicationInstallationParams) SetApplicationInstallationName(appinstallName string)

SetApplicationInstallationName adds the appinstallName to the update application installation params

func (*UpdateApplicationInstallationParams) SetBody

SetBody adds the body to the update application installation params

func (*UpdateApplicationInstallationParams) SetClusterID

func (o *UpdateApplicationInstallationParams) SetClusterID(clusterID string)

SetClusterID adds the clusterId to the update application installation params

func (*UpdateApplicationInstallationParams) SetContext

SetContext adds the context to the update application installation params

func (*UpdateApplicationInstallationParams) SetDefaults

func (o *UpdateApplicationInstallationParams) SetDefaults()

SetDefaults hydrates default values in the update application installation params (not the query body).

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

func (*UpdateApplicationInstallationParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the update application installation params

func (*UpdateApplicationInstallationParams) SetNamespace

func (o *UpdateApplicationInstallationParams) SetNamespace(namespace string)

SetNamespace adds the namespace to the update application installation params

func (*UpdateApplicationInstallationParams) SetProjectID

func (o *UpdateApplicationInstallationParams) SetProjectID(projectID string)

SetProjectID adds the projectId to the update application installation params

func (*UpdateApplicationInstallationParams) SetTimeout

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

SetTimeout adds the timeout to the update application installation params

func (*UpdateApplicationInstallationParams) WithApplicationInstallationName

func (o *UpdateApplicationInstallationParams) WithApplicationInstallationName(appinstallName string) *UpdateApplicationInstallationParams

WithApplicationInstallationName adds the appinstallName to the update application installation params

func (*UpdateApplicationInstallationParams) WithBody

WithBody adds the body to the update application installation params

func (*UpdateApplicationInstallationParams) WithClusterID

WithClusterID adds the clusterID to the update application installation params

func (*UpdateApplicationInstallationParams) WithContext

WithContext adds the context to the update application installation params

func (*UpdateApplicationInstallationParams) WithDefaults

WithDefaults hydrates default values in the update application installation params (not the query body).

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

func (*UpdateApplicationInstallationParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the update application installation params

func (*UpdateApplicationInstallationParams) WithNamespace

WithNamespace adds the namespace to the update application installation params

func (*UpdateApplicationInstallationParams) WithProjectID

WithProjectID adds the projectID to the update application installation params

func (*UpdateApplicationInstallationParams) WithTimeout

WithTimeout adds the timeout to the update application installation params

func (*UpdateApplicationInstallationParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type UpdateApplicationInstallationReader

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

UpdateApplicationInstallationReader is a Reader for the UpdateApplicationInstallation structure.

func (*UpdateApplicationInstallationReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type UpdateApplicationInstallationUnauthorized

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

EmptyResponse is a empty response

func NewUpdateApplicationInstallationUnauthorized

func NewUpdateApplicationInstallationUnauthorized() *UpdateApplicationInstallationUnauthorized

NewUpdateApplicationInstallationUnauthorized creates a UpdateApplicationInstallationUnauthorized with default headers values

func (*UpdateApplicationInstallationUnauthorized) Error

Jump to

Keyboard shortcuts

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