chart_versions

package
v0.1.50 Latest Latest
Warning

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

Go to latest
Published: Jun 7, 2023 License: BSD-3-Clause Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for chart versions API

func (*Client) GetAPIV2ChartVersions

func (a *Client) GetAPIV2ChartVersions(params *GetAPIV2ChartVersionsParams, opts ...ClientOption) (*GetAPIV2ChartVersionsOK, error)

GetAPIV2ChartVersions lists chart version entries

List existing ChartVersion entries, ordered by most recently updated.

func (*Client) GetAPIV2ChartVersionsSelector

func (a *Client) GetAPIV2ChartVersionsSelector(params *GetAPIV2ChartVersionsSelectorParams, opts ...ClientOption) (*GetAPIV2ChartVersionsSelectorOK, error)

GetAPIV2ChartVersionsSelector gets a chart version entry

Get an existing ChartVersion entry via one its "selectors": chart/version or numeric ID.

func (*Client) GetAPIV2ProceduresChartVersionsChildrenPathToParent added in v0.1.33

GetAPIV2ProceduresChartVersionsChildrenPathToParent gets a changelog between two chart versions

Get the path through parent references from a child ChartVersion (inclusive) to a parent ChartVersion (exclusive), if possible. Because parent references point from newer children to older parents, the newer ChartVersion should be the child. The result will always exclude the parent. If the child can't be connected to the parent, just the child will be returned with a 204 code.

func (*Client) GetAPIV2SelectorsChartVersionsSelector

func (a *Client) GetAPIV2SelectorsChartVersionsSelector(params *GetAPIV2SelectorsChartVersionsSelectorParams, opts ...ClientOption) (*GetAPIV2SelectorsChartVersionsSelectorOK, error)

GetAPIV2SelectorsChartVersionsSelector lists chart version selectors

Validate a given ChartVersion selector and provide any other selectors that would match the same ChartVersion.

func (*Client) PatchAPIV2ChartVersionsSelector added in v0.0.59

func (a *Client) PatchAPIV2ChartVersionsSelector(params *PatchAPIV2ChartVersionsSelectorParams, opts ...ClientOption) (*PatchAPIV2ChartVersionsSelectorOK, error)

PatchAPIV2ChartVersionsSelector edits a chart version entry

Edit an existing ChartVersion entry via one its "selectors": chart/version or numeric ID. Note that only mutable fields are available here, immutable fields can only be set using /create.

func (*Client) PostAPIV2ChartVersions

PostAPIV2ChartVersions creates a new chart version entry

Create a new ChartVersion entry. Note that fields are immutable after creation.

If the new entry is a duplicate of one already in the database, the database will not be altered and the call will return normally but with a 200 code.

func (*Client) PutAPIV2ChartVersionsSelector added in v0.1.2

PutAPIV2ChartVersionsSelector creates or edit a chart version entry

Create or edit a ChartVersion entry. Attempts to edit and will attempt to create upon an error.

If an edit was made or the creation process de-duplicates, this method will return normally with a 200.

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

ClientService is the interface for Client methods

func New

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

New creates a new chart versions API client.

type GetAPIV2ChartVersionsBadRequest

type GetAPIV2ChartVersionsBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewGetAPIV2ChartVersionsBadRequest

func NewGetAPIV2ChartVersionsBadRequest() *GetAPIV2ChartVersionsBadRequest

NewGetAPIV2ChartVersionsBadRequest creates a GetAPIV2ChartVersionsBadRequest with default headers values

func (*GetAPIV2ChartVersionsBadRequest) Error

func (*GetAPIV2ChartVersionsBadRequest) GetPayload

type GetAPIV2ChartVersionsConflict

type GetAPIV2ChartVersionsConflict struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsConflict describes a response with status code 409, with default header values.

Conflict

func NewGetAPIV2ChartVersionsConflict

func NewGetAPIV2ChartVersionsConflict() *GetAPIV2ChartVersionsConflict

NewGetAPIV2ChartVersionsConflict creates a GetAPIV2ChartVersionsConflict with default headers values

func (*GetAPIV2ChartVersionsConflict) Error

func (*GetAPIV2ChartVersionsConflict) GetPayload

type GetAPIV2ChartVersionsForbidden

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

Forbidden

func NewGetAPIV2ChartVersionsForbidden

func NewGetAPIV2ChartVersionsForbidden() *GetAPIV2ChartVersionsForbidden

NewGetAPIV2ChartVersionsForbidden creates a GetAPIV2ChartVersionsForbidden with default headers values

func (*GetAPIV2ChartVersionsForbidden) Error

func (*GetAPIV2ChartVersionsForbidden) GetPayload

type GetAPIV2ChartVersionsInternalServerError

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

Internal Server Error

func NewGetAPIV2ChartVersionsInternalServerError

func NewGetAPIV2ChartVersionsInternalServerError() *GetAPIV2ChartVersionsInternalServerError

NewGetAPIV2ChartVersionsInternalServerError creates a GetAPIV2ChartVersionsInternalServerError with default headers values

func (*GetAPIV2ChartVersionsInternalServerError) Error

func (*GetAPIV2ChartVersionsInternalServerError) GetPayload

type GetAPIV2ChartVersionsNotFound

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

Not Found

func NewGetAPIV2ChartVersionsNotFound

func NewGetAPIV2ChartVersionsNotFound() *GetAPIV2ChartVersionsNotFound

NewGetAPIV2ChartVersionsNotFound creates a GetAPIV2ChartVersionsNotFound with default headers values

func (*GetAPIV2ChartVersionsNotFound) Error

func (*GetAPIV2ChartVersionsNotFound) GetPayload

type GetAPIV2ChartVersionsOK

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

OK

func NewGetAPIV2ChartVersionsOK

func NewGetAPIV2ChartVersionsOK() *GetAPIV2ChartVersionsOK

NewGetAPIV2ChartVersionsOK creates a GetAPIV2ChartVersionsOK with default headers values

func (*GetAPIV2ChartVersionsOK) Error

func (o *GetAPIV2ChartVersionsOK) Error() string

func (*GetAPIV2ChartVersionsOK) GetPayload

type GetAPIV2ChartVersionsParams

type GetAPIV2ChartVersionsParams struct {

	/* Chart.

	   Required when creating
	*/
	Chart *string

	/* ChartVersion.

	   Required when creating
	*/
	ChartVersion *string

	// CreatedAt.
	//
	// Format: date-time
	CreatedAt *strfmt.DateTime

	/* Description.

	   Generally the Git commit message
	*/
	Description *string

	// ID.
	ID *int64

	/* Limit.

	   An optional limit to the number of entries returned
	*/
	Limit *int64

	// ParentChartVersion.
	ParentChartVersion *string

	// UpdatedAt.
	//
	// Format: date-time
	UpdatedAt *strfmt.DateTime

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

GetAPIV2ChartVersionsParams contains all the parameters to send to the API endpoint

for the get API v2 chart versions operation.

Typically these are written to a http.Request.

func NewGetAPIV2ChartVersionsParams

func NewGetAPIV2ChartVersionsParams() *GetAPIV2ChartVersionsParams

NewGetAPIV2ChartVersionsParams creates a new GetAPIV2ChartVersionsParams 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 NewGetAPIV2ChartVersionsParamsWithContext

func NewGetAPIV2ChartVersionsParamsWithContext(ctx context.Context) *GetAPIV2ChartVersionsParams

NewGetAPIV2ChartVersionsParamsWithContext creates a new GetAPIV2ChartVersionsParams object with the ability to set a context for a request.

func NewGetAPIV2ChartVersionsParamsWithHTTPClient

func NewGetAPIV2ChartVersionsParamsWithHTTPClient(client *http.Client) *GetAPIV2ChartVersionsParams

NewGetAPIV2ChartVersionsParamsWithHTTPClient creates a new GetAPIV2ChartVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2ChartVersionsParamsWithTimeout

func NewGetAPIV2ChartVersionsParamsWithTimeout(timeout time.Duration) *GetAPIV2ChartVersionsParams

NewGetAPIV2ChartVersionsParamsWithTimeout creates a new GetAPIV2ChartVersionsParams object with the ability to set a timeout on a request.

func (*GetAPIV2ChartVersionsParams) SetChart

func (o *GetAPIV2ChartVersionsParams) SetChart(chart *string)

SetChart adds the chart to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetChartVersion

func (o *GetAPIV2ChartVersionsParams) SetChartVersion(chartVersion *string)

SetChartVersion adds the chartVersion to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetContext

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

SetContext adds the context to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetCreatedAt

func (o *GetAPIV2ChartVersionsParams) SetCreatedAt(createdAt *strfmt.DateTime)

SetCreatedAt adds the createdAt to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetDefaults

func (o *GetAPIV2ChartVersionsParams) SetDefaults()

SetDefaults hydrates default values in the get API v2 chart versions params (not the query body).

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

func (*GetAPIV2ChartVersionsParams) SetDescription added in v0.0.59

func (o *GetAPIV2ChartVersionsParams) SetDescription(description *string)

SetDescription adds the description to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetID

func (o *GetAPIV2ChartVersionsParams) SetID(id *int64)

SetID adds the id to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetLimit

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

SetLimit adds the limit to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetParentChartVersion added in v0.0.50

func (o *GetAPIV2ChartVersionsParams) SetParentChartVersion(parentChartVersion *string)

SetParentChartVersion adds the parentChartVersion to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetTimeout

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

SetTimeout adds the timeout to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) SetUpdatedAt

func (o *GetAPIV2ChartVersionsParams) SetUpdatedAt(updatedAt *strfmt.DateTime)

SetUpdatedAt adds the updatedAt to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithChart

WithChart adds the chart to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithChartVersion

func (o *GetAPIV2ChartVersionsParams) WithChartVersion(chartVersion *string) *GetAPIV2ChartVersionsParams

WithChartVersion adds the chartVersion to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithContext

WithContext adds the context to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithCreatedAt

WithCreatedAt adds the createdAt to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithDefaults

WithDefaults hydrates default values in the get API v2 chart versions params (not the query body).

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

func (*GetAPIV2ChartVersionsParams) WithDescription added in v0.0.59

func (o *GetAPIV2ChartVersionsParams) WithDescription(description *string) *GetAPIV2ChartVersionsParams

WithDescription adds the description to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithID

WithID adds the id to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithLimit

WithLimit adds the limit to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithParentChartVersion added in v0.0.50

func (o *GetAPIV2ChartVersionsParams) WithParentChartVersion(parentChartVersion *string) *GetAPIV2ChartVersionsParams

WithParentChartVersion adds the parentChartVersion to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithTimeout

WithTimeout adds the timeout to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WithUpdatedAt

WithUpdatedAt adds the updatedAt to the get API v2 chart versions params

func (*GetAPIV2ChartVersionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2ChartVersionsProxyAuthenticationRequired

type GetAPIV2ChartVersionsProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewGetAPIV2ChartVersionsProxyAuthenticationRequired

func NewGetAPIV2ChartVersionsProxyAuthenticationRequired() *GetAPIV2ChartVersionsProxyAuthenticationRequired

NewGetAPIV2ChartVersionsProxyAuthenticationRequired creates a GetAPIV2ChartVersionsProxyAuthenticationRequired with default headers values

func (*GetAPIV2ChartVersionsProxyAuthenticationRequired) Error

func (*GetAPIV2ChartVersionsProxyAuthenticationRequired) GetPayload

type GetAPIV2ChartVersionsReader

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

GetAPIV2ChartVersionsReader is a Reader for the GetAPIV2ChartVersions structure.

func (*GetAPIV2ChartVersionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV2ChartVersionsSelectorBadRequest

type GetAPIV2ChartVersionsSelectorBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsSelectorBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewGetAPIV2ChartVersionsSelectorBadRequest

func NewGetAPIV2ChartVersionsSelectorBadRequest() *GetAPIV2ChartVersionsSelectorBadRequest

NewGetAPIV2ChartVersionsSelectorBadRequest creates a GetAPIV2ChartVersionsSelectorBadRequest with default headers values

func (*GetAPIV2ChartVersionsSelectorBadRequest) Error

func (*GetAPIV2ChartVersionsSelectorBadRequest) GetPayload

type GetAPIV2ChartVersionsSelectorConflict

type GetAPIV2ChartVersionsSelectorConflict struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsSelectorConflict describes a response with status code 409, with default header values.

Conflict

func NewGetAPIV2ChartVersionsSelectorConflict

func NewGetAPIV2ChartVersionsSelectorConflict() *GetAPIV2ChartVersionsSelectorConflict

NewGetAPIV2ChartVersionsSelectorConflict creates a GetAPIV2ChartVersionsSelectorConflict with default headers values

func (*GetAPIV2ChartVersionsSelectorConflict) Error

func (*GetAPIV2ChartVersionsSelectorConflict) GetPayload

type GetAPIV2ChartVersionsSelectorForbidden

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

Forbidden

func NewGetAPIV2ChartVersionsSelectorForbidden

func NewGetAPIV2ChartVersionsSelectorForbidden() *GetAPIV2ChartVersionsSelectorForbidden

NewGetAPIV2ChartVersionsSelectorForbidden creates a GetAPIV2ChartVersionsSelectorForbidden with default headers values

func (*GetAPIV2ChartVersionsSelectorForbidden) Error

func (*GetAPIV2ChartVersionsSelectorForbidden) GetPayload

type GetAPIV2ChartVersionsSelectorInternalServerError

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

Internal Server Error

func NewGetAPIV2ChartVersionsSelectorInternalServerError

func NewGetAPIV2ChartVersionsSelectorInternalServerError() *GetAPIV2ChartVersionsSelectorInternalServerError

NewGetAPIV2ChartVersionsSelectorInternalServerError creates a GetAPIV2ChartVersionsSelectorInternalServerError with default headers values

func (*GetAPIV2ChartVersionsSelectorInternalServerError) Error

func (*GetAPIV2ChartVersionsSelectorInternalServerError) GetPayload

type GetAPIV2ChartVersionsSelectorNotFound

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

Not Found

func NewGetAPIV2ChartVersionsSelectorNotFound

func NewGetAPIV2ChartVersionsSelectorNotFound() *GetAPIV2ChartVersionsSelectorNotFound

NewGetAPIV2ChartVersionsSelectorNotFound creates a GetAPIV2ChartVersionsSelectorNotFound with default headers values

func (*GetAPIV2ChartVersionsSelectorNotFound) Error

func (*GetAPIV2ChartVersionsSelectorNotFound) GetPayload

type GetAPIV2ChartVersionsSelectorOK

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

OK

func NewGetAPIV2ChartVersionsSelectorOK

func NewGetAPIV2ChartVersionsSelectorOK() *GetAPIV2ChartVersionsSelectorOK

NewGetAPIV2ChartVersionsSelectorOK creates a GetAPIV2ChartVersionsSelectorOK with default headers values

func (*GetAPIV2ChartVersionsSelectorOK) Error

func (*GetAPIV2ChartVersionsSelectorOK) GetPayload

type GetAPIV2ChartVersionsSelectorParams

type GetAPIV2ChartVersionsSelectorParams struct {

	/* Selector.

	   The ChartVersion to get's selector: chart/version or numeric ID
	*/
	Selector string

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

GetAPIV2ChartVersionsSelectorParams contains all the parameters to send to the API endpoint

for the get API v2 chart versions selector operation.

Typically these are written to a http.Request.

func NewGetAPIV2ChartVersionsSelectorParams

func NewGetAPIV2ChartVersionsSelectorParams() *GetAPIV2ChartVersionsSelectorParams

NewGetAPIV2ChartVersionsSelectorParams creates a new GetAPIV2ChartVersionsSelectorParams 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 NewGetAPIV2ChartVersionsSelectorParamsWithContext

func NewGetAPIV2ChartVersionsSelectorParamsWithContext(ctx context.Context) *GetAPIV2ChartVersionsSelectorParams

NewGetAPIV2ChartVersionsSelectorParamsWithContext creates a new GetAPIV2ChartVersionsSelectorParams object with the ability to set a context for a request.

func NewGetAPIV2ChartVersionsSelectorParamsWithHTTPClient

func NewGetAPIV2ChartVersionsSelectorParamsWithHTTPClient(client *http.Client) *GetAPIV2ChartVersionsSelectorParams

NewGetAPIV2ChartVersionsSelectorParamsWithHTTPClient creates a new GetAPIV2ChartVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2ChartVersionsSelectorParamsWithTimeout

func NewGetAPIV2ChartVersionsSelectorParamsWithTimeout(timeout time.Duration) *GetAPIV2ChartVersionsSelectorParams

NewGetAPIV2ChartVersionsSelectorParamsWithTimeout creates a new GetAPIV2ChartVersionsSelectorParams object with the ability to set a timeout on a request.

func (*GetAPIV2ChartVersionsSelectorParams) SetContext

SetContext adds the context to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) SetDefaults

func (o *GetAPIV2ChartVersionsSelectorParams) SetDefaults()

SetDefaults hydrates default values in the get API v2 chart versions selector params (not the query body).

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

func (*GetAPIV2ChartVersionsSelectorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) SetSelector

func (o *GetAPIV2ChartVersionsSelectorParams) SetSelector(selector string)

SetSelector adds the selector to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) SetTimeout

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

SetTimeout adds the timeout to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) WithContext

WithContext adds the context to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) WithDefaults

WithDefaults hydrates default values in the get API v2 chart versions selector params (not the query body).

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

func (*GetAPIV2ChartVersionsSelectorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) WithSelector

WithSelector adds the selector to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) WithTimeout

WithTimeout adds the timeout to the get API v2 chart versions selector params

func (*GetAPIV2ChartVersionsSelectorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired

type GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewGetAPIV2ChartVersionsSelectorProxyAuthenticationRequired

func NewGetAPIV2ChartVersionsSelectorProxyAuthenticationRequired() *GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired

NewGetAPIV2ChartVersionsSelectorProxyAuthenticationRequired creates a GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired with default headers values

func (*GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired) Error

func (*GetAPIV2ChartVersionsSelectorProxyAuthenticationRequired) GetPayload

type GetAPIV2ChartVersionsSelectorReader

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

GetAPIV2ChartVersionsSelectorReader is a Reader for the GetAPIV2ChartVersionsSelector structure.

func (*GetAPIV2ChartVersionsSelectorReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest() *GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentBadRequest) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict describes a response with status code 409, with default header values.

Conflict

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentConflict added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentConflict() *GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentConflict creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentConflict) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden added in v0.1.33

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

Forbidden

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden() *GetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentForbidden) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError added in v0.1.33

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

Internal Server Error

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError() *GetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentInternalServerError) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent struct {
	Payload []*models.V2controllersChartVersion
}
GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent describes a response with status code 204, with default header values.

No Content

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent() *GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentNoContent) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound added in v0.1.33

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

Not Found

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound() *GetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentNotFound) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentOK added in v0.1.33

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

OK

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentOK added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentOK() *GetAPIV2ProceduresChartVersionsChildrenPathToParentOK

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentOK creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentOK with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentOK) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentOK) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentParams added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentParams struct {

	/* Child.

	   The selector of the newer ChartVersion for the changelog
	*/
	Child string

	/* Parent.

	   The selector of the older ChartVersion for the changelog
	*/
	Parent string

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

GetAPIV2ProceduresChartVersionsChildrenPathToParentParams contains all the parameters to send to the API endpoint

for the get API v2 procedures chart versions children path to parent operation.

Typically these are written to a http.Request.

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParams added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParams() *GetAPIV2ProceduresChartVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParams creates a new GetAPIV2ProceduresChartVersionsChildrenPathToParentParams 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 NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithContext added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithContext(ctx context.Context) *GetAPIV2ProceduresChartVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithContext creates a new GetAPIV2ProceduresChartVersionsChildrenPathToParentParams object with the ability to set a context for a request.

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithHTTPClient added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithHTTPClient(client *http.Client) *GetAPIV2ProceduresChartVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithHTTPClient creates a new GetAPIV2ProceduresChartVersionsChildrenPathToParentParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithTimeout added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithTimeout(timeout time.Duration) *GetAPIV2ProceduresChartVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentParamsWithTimeout creates a new GetAPIV2ProceduresChartVersionsChildrenPathToParentParams object with the ability to set a timeout on a request.

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetChild added in v0.1.33

SetChild adds the child to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetContext added in v0.1.33

SetContext adds the context to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetDefaults added in v0.1.33

SetDefaults hydrates default values in the get API v2 procedures chart versions children path to parent params (not the query body).

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

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetHTTPClient added in v0.1.33

SetHTTPClient adds the HTTPClient to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetParent added in v0.1.33

SetParent adds the parent to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) SetTimeout added in v0.1.33

SetTimeout adds the timeout to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithChild added in v0.1.33

WithChild adds the child to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithContext added in v0.1.33

WithContext adds the context to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithDefaults added in v0.1.33

WithDefaults hydrates default values in the get API v2 procedures chart versions children path to parent params (not the query body).

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

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithHTTPClient added in v0.1.33

WithHTTPClient adds the HTTPClient to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithParent added in v0.1.33

WithParent adds the parent to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WithTimeout added in v0.1.33

WithTimeout adds the timeout to the get API v2 procedures chart versions children path to parent params

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentParams) WriteToRequest added in v0.1.33

WriteToRequest writes these params to a swagger request

type GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired added in v0.1.33

func NewGetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired() *GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired

NewGetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired creates a GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired with default headers values

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired) Error added in v0.1.33

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentProxyAuthenticationRequired) GetPayload added in v0.1.33

type GetAPIV2ProceduresChartVersionsChildrenPathToParentReader added in v0.1.33

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

GetAPIV2ProceduresChartVersionsChildrenPathToParentReader is a Reader for the GetAPIV2ProceduresChartVersionsChildrenPathToParent structure.

func (*GetAPIV2ProceduresChartVersionsChildrenPathToParentReader) ReadResponse added in v0.1.33

ReadResponse reads a server response into the received o.

type GetAPIV2SelectorsChartVersionsSelectorBadRequest

type GetAPIV2SelectorsChartVersionsSelectorBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2SelectorsChartVersionsSelectorBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewGetAPIV2SelectorsChartVersionsSelectorBadRequest

func NewGetAPIV2SelectorsChartVersionsSelectorBadRequest() *GetAPIV2SelectorsChartVersionsSelectorBadRequest

NewGetAPIV2SelectorsChartVersionsSelectorBadRequest creates a GetAPIV2SelectorsChartVersionsSelectorBadRequest with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorBadRequest) Error

func (*GetAPIV2SelectorsChartVersionsSelectorBadRequest) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorConflict

type GetAPIV2SelectorsChartVersionsSelectorConflict struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2SelectorsChartVersionsSelectorConflict describes a response with status code 409, with default header values.

Conflict

func NewGetAPIV2SelectorsChartVersionsSelectorConflict

func NewGetAPIV2SelectorsChartVersionsSelectorConflict() *GetAPIV2SelectorsChartVersionsSelectorConflict

NewGetAPIV2SelectorsChartVersionsSelectorConflict creates a GetAPIV2SelectorsChartVersionsSelectorConflict with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorConflict) Error

func (*GetAPIV2SelectorsChartVersionsSelectorConflict) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorForbidden

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

Forbidden

func NewGetAPIV2SelectorsChartVersionsSelectorForbidden

func NewGetAPIV2SelectorsChartVersionsSelectorForbidden() *GetAPIV2SelectorsChartVersionsSelectorForbidden

NewGetAPIV2SelectorsChartVersionsSelectorForbidden creates a GetAPIV2SelectorsChartVersionsSelectorForbidden with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorForbidden) Error

func (*GetAPIV2SelectorsChartVersionsSelectorForbidden) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorInternalServerError

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

Internal Server Error

func NewGetAPIV2SelectorsChartVersionsSelectorInternalServerError

func NewGetAPIV2SelectorsChartVersionsSelectorInternalServerError() *GetAPIV2SelectorsChartVersionsSelectorInternalServerError

NewGetAPIV2SelectorsChartVersionsSelectorInternalServerError creates a GetAPIV2SelectorsChartVersionsSelectorInternalServerError with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorInternalServerError) Error

func (*GetAPIV2SelectorsChartVersionsSelectorInternalServerError) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorNotFound

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

Not Found

func NewGetAPIV2SelectorsChartVersionsSelectorNotFound

func NewGetAPIV2SelectorsChartVersionsSelectorNotFound() *GetAPIV2SelectorsChartVersionsSelectorNotFound

NewGetAPIV2SelectorsChartVersionsSelectorNotFound creates a GetAPIV2SelectorsChartVersionsSelectorNotFound with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorNotFound) Error

func (*GetAPIV2SelectorsChartVersionsSelectorNotFound) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorOK

type GetAPIV2SelectorsChartVersionsSelectorOK struct {
	Payload []string
}
GetAPIV2SelectorsChartVersionsSelectorOK describes a response with status code 200, with default header values.

OK

func NewGetAPIV2SelectorsChartVersionsSelectorOK

func NewGetAPIV2SelectorsChartVersionsSelectorOK() *GetAPIV2SelectorsChartVersionsSelectorOK

NewGetAPIV2SelectorsChartVersionsSelectorOK creates a GetAPIV2SelectorsChartVersionsSelectorOK with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorOK) Error

func (*GetAPIV2SelectorsChartVersionsSelectorOK) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorParams

type GetAPIV2SelectorsChartVersionsSelectorParams struct {

	/* Selector.

	   The selector of the ChartVersion to list other selectors for
	*/
	Selector string

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

GetAPIV2SelectorsChartVersionsSelectorParams contains all the parameters to send to the API endpoint

for the get API v2 selectors chart versions selector operation.

Typically these are written to a http.Request.

func NewGetAPIV2SelectorsChartVersionsSelectorParams

func NewGetAPIV2SelectorsChartVersionsSelectorParams() *GetAPIV2SelectorsChartVersionsSelectorParams

NewGetAPIV2SelectorsChartVersionsSelectorParams creates a new GetAPIV2SelectorsChartVersionsSelectorParams 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 NewGetAPIV2SelectorsChartVersionsSelectorParamsWithContext

func NewGetAPIV2SelectorsChartVersionsSelectorParamsWithContext(ctx context.Context) *GetAPIV2SelectorsChartVersionsSelectorParams

NewGetAPIV2SelectorsChartVersionsSelectorParamsWithContext creates a new GetAPIV2SelectorsChartVersionsSelectorParams object with the ability to set a context for a request.

func NewGetAPIV2SelectorsChartVersionsSelectorParamsWithHTTPClient

func NewGetAPIV2SelectorsChartVersionsSelectorParamsWithHTTPClient(client *http.Client) *GetAPIV2SelectorsChartVersionsSelectorParams

NewGetAPIV2SelectorsChartVersionsSelectorParamsWithHTTPClient creates a new GetAPIV2SelectorsChartVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2SelectorsChartVersionsSelectorParamsWithTimeout

func NewGetAPIV2SelectorsChartVersionsSelectorParamsWithTimeout(timeout time.Duration) *GetAPIV2SelectorsChartVersionsSelectorParams

NewGetAPIV2SelectorsChartVersionsSelectorParamsWithTimeout creates a new GetAPIV2SelectorsChartVersionsSelectorParams object with the ability to set a timeout on a request.

func (*GetAPIV2SelectorsChartVersionsSelectorParams) SetContext

SetContext adds the context to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) SetDefaults

SetDefaults hydrates default values in the get API v2 selectors chart versions selector params (not the query body).

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

func (*GetAPIV2SelectorsChartVersionsSelectorParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) SetSelector

func (o *GetAPIV2SelectorsChartVersionsSelectorParams) SetSelector(selector string)

SetSelector adds the selector to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) SetTimeout

SetTimeout adds the timeout to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WithContext

WithContext adds the context to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WithDefaults

WithDefaults hydrates default values in the get API v2 selectors chart versions selector params (not the query body).

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

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WithSelector

WithSelector adds the selector to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WithTimeout

WithTimeout adds the timeout to the get API v2 selectors chart versions selector params

func (*GetAPIV2SelectorsChartVersionsSelectorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired

type GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewGetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired

func NewGetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired() *GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired

NewGetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired creates a GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired with default headers values

func (*GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired) Error

func (*GetAPIV2SelectorsChartVersionsSelectorProxyAuthenticationRequired) GetPayload

type GetAPIV2SelectorsChartVersionsSelectorReader

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

GetAPIV2SelectorsChartVersionsSelectorReader is a Reader for the GetAPIV2SelectorsChartVersionsSelector structure.

func (*GetAPIV2SelectorsChartVersionsSelectorReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchAPIV2ChartVersionsSelectorBadRequest added in v0.0.59

type PatchAPIV2ChartVersionsSelectorBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
PatchAPIV2ChartVersionsSelectorBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewPatchAPIV2ChartVersionsSelectorBadRequest added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorBadRequest() *PatchAPIV2ChartVersionsSelectorBadRequest

NewPatchAPIV2ChartVersionsSelectorBadRequest creates a PatchAPIV2ChartVersionsSelectorBadRequest with default headers values

func (*PatchAPIV2ChartVersionsSelectorBadRequest) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorBadRequest) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorConflict added in v0.0.59

type PatchAPIV2ChartVersionsSelectorConflict struct {
	Payload *models.ErrorsErrorResponse
}
PatchAPIV2ChartVersionsSelectorConflict describes a response with status code 409, with default header values.

Conflict

func NewPatchAPIV2ChartVersionsSelectorConflict added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorConflict() *PatchAPIV2ChartVersionsSelectorConflict

NewPatchAPIV2ChartVersionsSelectorConflict creates a PatchAPIV2ChartVersionsSelectorConflict with default headers values

func (*PatchAPIV2ChartVersionsSelectorConflict) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorConflict) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorForbidden added in v0.0.59

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

Forbidden

func NewPatchAPIV2ChartVersionsSelectorForbidden added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorForbidden() *PatchAPIV2ChartVersionsSelectorForbidden

NewPatchAPIV2ChartVersionsSelectorForbidden creates a PatchAPIV2ChartVersionsSelectorForbidden with default headers values

func (*PatchAPIV2ChartVersionsSelectorForbidden) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorForbidden) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorInternalServerError added in v0.0.59

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

Internal Server Error

func NewPatchAPIV2ChartVersionsSelectorInternalServerError added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorInternalServerError() *PatchAPIV2ChartVersionsSelectorInternalServerError

NewPatchAPIV2ChartVersionsSelectorInternalServerError creates a PatchAPIV2ChartVersionsSelectorInternalServerError with default headers values

func (*PatchAPIV2ChartVersionsSelectorInternalServerError) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorInternalServerError) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorNotFound added in v0.0.59

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

Not Found

func NewPatchAPIV2ChartVersionsSelectorNotFound added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorNotFound() *PatchAPIV2ChartVersionsSelectorNotFound

NewPatchAPIV2ChartVersionsSelectorNotFound creates a PatchAPIV2ChartVersionsSelectorNotFound with default headers values

func (*PatchAPIV2ChartVersionsSelectorNotFound) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorNotFound) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorOK added in v0.0.59

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

OK

func NewPatchAPIV2ChartVersionsSelectorOK added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorOK() *PatchAPIV2ChartVersionsSelectorOK

NewPatchAPIV2ChartVersionsSelectorOK creates a PatchAPIV2ChartVersionsSelectorOK with default headers values

func (*PatchAPIV2ChartVersionsSelectorOK) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorOK) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorParams added in v0.0.59

type PatchAPIV2ChartVersionsSelectorParams struct {

	/* ChartVersion.

	   The edits to make to the ChartVersion
	*/
	ChartVersion *models.V2controllersEditableChartVersion

	/* Selector.

	   The ChartVersion to edit's selector: chart/version or numeric ID
	*/
	Selector string

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

PatchAPIV2ChartVersionsSelectorParams contains all the parameters to send to the API endpoint

for the patch API v2 chart versions selector operation.

Typically these are written to a http.Request.

func NewPatchAPIV2ChartVersionsSelectorParams added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorParams() *PatchAPIV2ChartVersionsSelectorParams

NewPatchAPIV2ChartVersionsSelectorParams creates a new PatchAPIV2ChartVersionsSelectorParams 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 NewPatchAPIV2ChartVersionsSelectorParamsWithContext added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorParamsWithContext(ctx context.Context) *PatchAPIV2ChartVersionsSelectorParams

NewPatchAPIV2ChartVersionsSelectorParamsWithContext creates a new PatchAPIV2ChartVersionsSelectorParams object with the ability to set a context for a request.

func NewPatchAPIV2ChartVersionsSelectorParamsWithHTTPClient added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorParamsWithHTTPClient(client *http.Client) *PatchAPIV2ChartVersionsSelectorParams

NewPatchAPIV2ChartVersionsSelectorParamsWithHTTPClient creates a new PatchAPIV2ChartVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewPatchAPIV2ChartVersionsSelectorParamsWithTimeout added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorParamsWithTimeout(timeout time.Duration) *PatchAPIV2ChartVersionsSelectorParams

NewPatchAPIV2ChartVersionsSelectorParamsWithTimeout creates a new PatchAPIV2ChartVersionsSelectorParams object with the ability to set a timeout on a request.

func (*PatchAPIV2ChartVersionsSelectorParams) SetChartVersion added in v0.0.59

SetChartVersion adds the chartVersion to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) SetContext added in v0.0.59

SetContext adds the context to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) SetDefaults added in v0.0.59

func (o *PatchAPIV2ChartVersionsSelectorParams) SetDefaults()

SetDefaults hydrates default values in the patch API v2 chart versions selector params (not the query body).

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

func (*PatchAPIV2ChartVersionsSelectorParams) SetHTTPClient added in v0.0.59

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

SetHTTPClient adds the HTTPClient to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) SetSelector added in v0.0.59

func (o *PatchAPIV2ChartVersionsSelectorParams) SetSelector(selector string)

SetSelector adds the selector to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) SetTimeout added in v0.0.59

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

SetTimeout adds the timeout to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WithChartVersion added in v0.0.59

WithChartVersion adds the chartVersion to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WithContext added in v0.0.59

WithContext adds the context to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WithDefaults added in v0.0.59

WithDefaults hydrates default values in the patch API v2 chart versions selector params (not the query body).

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

func (*PatchAPIV2ChartVersionsSelectorParams) WithHTTPClient added in v0.0.59

WithHTTPClient adds the HTTPClient to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WithSelector added in v0.0.59

WithSelector adds the selector to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WithTimeout added in v0.0.59

WithTimeout adds the timeout to the patch API v2 chart versions selector params

func (*PatchAPIV2ChartVersionsSelectorParams) WriteToRequest added in v0.0.59

WriteToRequest writes these params to a swagger request

type PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired added in v0.0.59

type PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewPatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired added in v0.0.59

func NewPatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired() *PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired

NewPatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired creates a PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired with default headers values

func (*PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired) Error added in v0.0.59

func (*PatchAPIV2ChartVersionsSelectorProxyAuthenticationRequired) GetPayload added in v0.0.59

type PatchAPIV2ChartVersionsSelectorReader added in v0.0.59

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

PatchAPIV2ChartVersionsSelectorReader is a Reader for the PatchAPIV2ChartVersionsSelector structure.

func (*PatchAPIV2ChartVersionsSelectorReader) ReadResponse added in v0.0.59

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

ReadResponse reads a server response into the received o.

type PostAPIV2ChartVersionsBadRequest

type PostAPIV2ChartVersionsBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
PostAPIV2ChartVersionsBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewPostAPIV2ChartVersionsBadRequest

func NewPostAPIV2ChartVersionsBadRequest() *PostAPIV2ChartVersionsBadRequest

NewPostAPIV2ChartVersionsBadRequest creates a PostAPIV2ChartVersionsBadRequest with default headers values

func (*PostAPIV2ChartVersionsBadRequest) Error

func (*PostAPIV2ChartVersionsBadRequest) GetPayload

type PostAPIV2ChartVersionsConflict

type PostAPIV2ChartVersionsConflict struct {
	Payload *models.ErrorsErrorResponse
}
PostAPIV2ChartVersionsConflict describes a response with status code 409, with default header values.

Conflict

func NewPostAPIV2ChartVersionsConflict

func NewPostAPIV2ChartVersionsConflict() *PostAPIV2ChartVersionsConflict

NewPostAPIV2ChartVersionsConflict creates a PostAPIV2ChartVersionsConflict with default headers values

func (*PostAPIV2ChartVersionsConflict) Error

func (*PostAPIV2ChartVersionsConflict) GetPayload

type PostAPIV2ChartVersionsCreated added in v0.0.29

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

Created

func NewPostAPIV2ChartVersionsCreated added in v0.0.29

func NewPostAPIV2ChartVersionsCreated() *PostAPIV2ChartVersionsCreated

NewPostAPIV2ChartVersionsCreated creates a PostAPIV2ChartVersionsCreated with default headers values

func (*PostAPIV2ChartVersionsCreated) Error added in v0.0.29

func (*PostAPIV2ChartVersionsCreated) GetPayload added in v0.0.29

type PostAPIV2ChartVersionsForbidden

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

Forbidden

func NewPostAPIV2ChartVersionsForbidden

func NewPostAPIV2ChartVersionsForbidden() *PostAPIV2ChartVersionsForbidden

NewPostAPIV2ChartVersionsForbidden creates a PostAPIV2ChartVersionsForbidden with default headers values

func (*PostAPIV2ChartVersionsForbidden) Error

func (*PostAPIV2ChartVersionsForbidden) GetPayload

type PostAPIV2ChartVersionsInternalServerError

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

Internal Server Error

func NewPostAPIV2ChartVersionsInternalServerError

func NewPostAPIV2ChartVersionsInternalServerError() *PostAPIV2ChartVersionsInternalServerError

NewPostAPIV2ChartVersionsInternalServerError creates a PostAPIV2ChartVersionsInternalServerError with default headers values

func (*PostAPIV2ChartVersionsInternalServerError) Error

func (*PostAPIV2ChartVersionsInternalServerError) GetPayload

type PostAPIV2ChartVersionsNotFound

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

Not Found

func NewPostAPIV2ChartVersionsNotFound

func NewPostAPIV2ChartVersionsNotFound() *PostAPIV2ChartVersionsNotFound

NewPostAPIV2ChartVersionsNotFound creates a PostAPIV2ChartVersionsNotFound with default headers values

func (*PostAPIV2ChartVersionsNotFound) Error

func (*PostAPIV2ChartVersionsNotFound) GetPayload

type PostAPIV2ChartVersionsOK

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

OK

func NewPostAPIV2ChartVersionsOK

func NewPostAPIV2ChartVersionsOK() *PostAPIV2ChartVersionsOK

NewPostAPIV2ChartVersionsOK creates a PostAPIV2ChartVersionsOK with default headers values

func (*PostAPIV2ChartVersionsOK) Error

func (o *PostAPIV2ChartVersionsOK) Error() string

func (*PostAPIV2ChartVersionsOK) GetPayload

type PostAPIV2ChartVersionsParams

type PostAPIV2ChartVersionsParams struct {

	/* ChartVersion.

	   The ChartVersion to create
	*/
	ChartVersion *models.V2controllersCreatableChartVersion

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

PostAPIV2ChartVersionsParams contains all the parameters to send to the API endpoint

for the post API v2 chart versions operation.

Typically these are written to a http.Request.

func NewPostAPIV2ChartVersionsParams

func NewPostAPIV2ChartVersionsParams() *PostAPIV2ChartVersionsParams

NewPostAPIV2ChartVersionsParams creates a new PostAPIV2ChartVersionsParams 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 NewPostAPIV2ChartVersionsParamsWithContext

func NewPostAPIV2ChartVersionsParamsWithContext(ctx context.Context) *PostAPIV2ChartVersionsParams

NewPostAPIV2ChartVersionsParamsWithContext creates a new PostAPIV2ChartVersionsParams object with the ability to set a context for a request.

func NewPostAPIV2ChartVersionsParamsWithHTTPClient

func NewPostAPIV2ChartVersionsParamsWithHTTPClient(client *http.Client) *PostAPIV2ChartVersionsParams

NewPostAPIV2ChartVersionsParamsWithHTTPClient creates a new PostAPIV2ChartVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewPostAPIV2ChartVersionsParamsWithTimeout

func NewPostAPIV2ChartVersionsParamsWithTimeout(timeout time.Duration) *PostAPIV2ChartVersionsParams

NewPostAPIV2ChartVersionsParamsWithTimeout creates a new PostAPIV2ChartVersionsParams object with the ability to set a timeout on a request.

func (*PostAPIV2ChartVersionsParams) SetChartVersion

SetChartVersion adds the chartVersion to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) SetContext

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

SetContext adds the context to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) SetDefaults

func (o *PostAPIV2ChartVersionsParams) SetDefaults()

SetDefaults hydrates default values in the post API v2 chart versions params (not the query body).

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

func (*PostAPIV2ChartVersionsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) SetTimeout

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

SetTimeout adds the timeout to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) WithChartVersion

WithChartVersion adds the chartVersion to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) WithContext

WithContext adds the context to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) WithDefaults

WithDefaults hydrates default values in the post API v2 chart versions params (not the query body).

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

func (*PostAPIV2ChartVersionsParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) WithTimeout

WithTimeout adds the timeout to the post API v2 chart versions params

func (*PostAPIV2ChartVersionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAPIV2ChartVersionsProxyAuthenticationRequired

type PostAPIV2ChartVersionsProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
PostAPIV2ChartVersionsProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewPostAPIV2ChartVersionsProxyAuthenticationRequired

func NewPostAPIV2ChartVersionsProxyAuthenticationRequired() *PostAPIV2ChartVersionsProxyAuthenticationRequired

NewPostAPIV2ChartVersionsProxyAuthenticationRequired creates a PostAPIV2ChartVersionsProxyAuthenticationRequired with default headers values

func (*PostAPIV2ChartVersionsProxyAuthenticationRequired) Error

func (*PostAPIV2ChartVersionsProxyAuthenticationRequired) GetPayload

type PostAPIV2ChartVersionsReader

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

PostAPIV2ChartVersionsReader is a Reader for the PostAPIV2ChartVersions structure.

func (*PostAPIV2ChartVersionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutAPIV2ChartVersionsSelectorBadRequest added in v0.1.2

type PutAPIV2ChartVersionsSelectorBadRequest struct {
	Payload *models.ErrorsErrorResponse
}
PutAPIV2ChartVersionsSelectorBadRequest describes a response with status code 400, with default header values.

Bad Request

func NewPutAPIV2ChartVersionsSelectorBadRequest added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorBadRequest() *PutAPIV2ChartVersionsSelectorBadRequest

NewPutAPIV2ChartVersionsSelectorBadRequest creates a PutAPIV2ChartVersionsSelectorBadRequest with default headers values

func (*PutAPIV2ChartVersionsSelectorBadRequest) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorBadRequest) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorConflict added in v0.1.2

type PutAPIV2ChartVersionsSelectorConflict struct {
	Payload *models.ErrorsErrorResponse
}
PutAPIV2ChartVersionsSelectorConflict describes a response with status code 409, with default header values.

Conflict

func NewPutAPIV2ChartVersionsSelectorConflict added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorConflict() *PutAPIV2ChartVersionsSelectorConflict

NewPutAPIV2ChartVersionsSelectorConflict creates a PutAPIV2ChartVersionsSelectorConflict with default headers values

func (*PutAPIV2ChartVersionsSelectorConflict) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorConflict) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorCreated added in v0.1.2

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

Created

func NewPutAPIV2ChartVersionsSelectorCreated added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorCreated() *PutAPIV2ChartVersionsSelectorCreated

NewPutAPIV2ChartVersionsSelectorCreated creates a PutAPIV2ChartVersionsSelectorCreated with default headers values

func (*PutAPIV2ChartVersionsSelectorCreated) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorCreated) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorForbidden added in v0.1.2

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

Forbidden

func NewPutAPIV2ChartVersionsSelectorForbidden added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorForbidden() *PutAPIV2ChartVersionsSelectorForbidden

NewPutAPIV2ChartVersionsSelectorForbidden creates a PutAPIV2ChartVersionsSelectorForbidden with default headers values

func (*PutAPIV2ChartVersionsSelectorForbidden) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorForbidden) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorInternalServerError added in v0.1.2

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

Internal Server Error

func NewPutAPIV2ChartVersionsSelectorInternalServerError added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorInternalServerError() *PutAPIV2ChartVersionsSelectorInternalServerError

NewPutAPIV2ChartVersionsSelectorInternalServerError creates a PutAPIV2ChartVersionsSelectorInternalServerError with default headers values

func (*PutAPIV2ChartVersionsSelectorInternalServerError) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorInternalServerError) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorNotFound added in v0.1.2

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

Not Found

func NewPutAPIV2ChartVersionsSelectorNotFound added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorNotFound() *PutAPIV2ChartVersionsSelectorNotFound

NewPutAPIV2ChartVersionsSelectorNotFound creates a PutAPIV2ChartVersionsSelectorNotFound with default headers values

func (*PutAPIV2ChartVersionsSelectorNotFound) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorNotFound) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorOK added in v0.1.2

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

OK

func NewPutAPIV2ChartVersionsSelectorOK added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorOK() *PutAPIV2ChartVersionsSelectorOK

NewPutAPIV2ChartVersionsSelectorOK creates a PutAPIV2ChartVersionsSelectorOK with default headers values

func (*PutAPIV2ChartVersionsSelectorOK) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorOK) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorParams added in v0.1.2

type PutAPIV2ChartVersionsSelectorParams struct {

	/* ChartVersion.

	   The ChartVersion to upsert
	*/
	ChartVersion *models.V2controllersCreatableChartVersion

	/* Selector.

	   The ChartVersion to upsert's selector: chart/version or numeric ID
	*/
	Selector string

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

PutAPIV2ChartVersionsSelectorParams contains all the parameters to send to the API endpoint

for the put API v2 chart versions selector operation.

Typically these are written to a http.Request.

func NewPutAPIV2ChartVersionsSelectorParams added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorParams() *PutAPIV2ChartVersionsSelectorParams

NewPutAPIV2ChartVersionsSelectorParams creates a new PutAPIV2ChartVersionsSelectorParams 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 NewPutAPIV2ChartVersionsSelectorParamsWithContext added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorParamsWithContext(ctx context.Context) *PutAPIV2ChartVersionsSelectorParams

NewPutAPIV2ChartVersionsSelectorParamsWithContext creates a new PutAPIV2ChartVersionsSelectorParams object with the ability to set a context for a request.

func NewPutAPIV2ChartVersionsSelectorParamsWithHTTPClient added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorParamsWithHTTPClient(client *http.Client) *PutAPIV2ChartVersionsSelectorParams

NewPutAPIV2ChartVersionsSelectorParamsWithHTTPClient creates a new PutAPIV2ChartVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewPutAPIV2ChartVersionsSelectorParamsWithTimeout added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorParamsWithTimeout(timeout time.Duration) *PutAPIV2ChartVersionsSelectorParams

NewPutAPIV2ChartVersionsSelectorParamsWithTimeout creates a new PutAPIV2ChartVersionsSelectorParams object with the ability to set a timeout on a request.

func (*PutAPIV2ChartVersionsSelectorParams) SetChartVersion added in v0.1.2

SetChartVersion adds the chartVersion to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) SetContext added in v0.1.2

SetContext adds the context to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) SetDefaults added in v0.1.2

func (o *PutAPIV2ChartVersionsSelectorParams) SetDefaults()

SetDefaults hydrates default values in the put API v2 chart versions selector params (not the query body).

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

func (*PutAPIV2ChartVersionsSelectorParams) SetHTTPClient added in v0.1.2

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

SetHTTPClient adds the HTTPClient to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) SetSelector added in v0.1.2

func (o *PutAPIV2ChartVersionsSelectorParams) SetSelector(selector string)

SetSelector adds the selector to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) SetTimeout added in v0.1.2

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

SetTimeout adds the timeout to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WithChartVersion added in v0.1.2

WithChartVersion adds the chartVersion to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WithContext added in v0.1.2

WithContext adds the context to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WithDefaults added in v0.1.2

WithDefaults hydrates default values in the put API v2 chart versions selector params (not the query body).

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

func (*PutAPIV2ChartVersionsSelectorParams) WithHTTPClient added in v0.1.2

WithHTTPClient adds the HTTPClient to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WithSelector added in v0.1.2

WithSelector adds the selector to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WithTimeout added in v0.1.2

WithTimeout adds the timeout to the put API v2 chart versions selector params

func (*PutAPIV2ChartVersionsSelectorParams) WriteToRequest added in v0.1.2

WriteToRequest writes these params to a swagger request

type PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired added in v0.1.2

type PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired struct {
	Payload *models.ErrorsErrorResponse
}
PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired describes a response with status code 407, with default header values.

Proxy Authentication Required

func NewPutAPIV2ChartVersionsSelectorProxyAuthenticationRequired added in v0.1.2

func NewPutAPIV2ChartVersionsSelectorProxyAuthenticationRequired() *PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired

NewPutAPIV2ChartVersionsSelectorProxyAuthenticationRequired creates a PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired with default headers values

func (*PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired) Error added in v0.1.2

func (*PutAPIV2ChartVersionsSelectorProxyAuthenticationRequired) GetPayload added in v0.1.2

type PutAPIV2ChartVersionsSelectorReader added in v0.1.2

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

PutAPIV2ChartVersionsSelectorReader is a Reader for the PutAPIV2ChartVersionsSelector structure.

func (*PutAPIV2ChartVersionsSelectorReader) ReadResponse added in v0.1.2

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

ReadResponse reads a server response into the received o.

Jump to

Keyboard shortcuts

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