app_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 app versions API

func (*Client) GetAPIV2AppVersions

func (a *Client) GetAPIV2AppVersions(params *GetAPIV2AppVersionsParams, opts ...ClientOption) (*GetAPIV2AppVersionsOK, error)

GetAPIV2AppVersions lists app version entries

List existing AppVersion entries, ordered by most recently updated.

func (*Client) GetAPIV2AppVersionsSelector

func (a *Client) GetAPIV2AppVersionsSelector(params *GetAPIV2AppVersionsSelectorParams, opts ...ClientOption) (*GetAPIV2AppVersionsSelectorOK, error)

GetAPIV2AppVersionsSelector gets a app version entry

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

func (*Client) GetAPIV2ProceduresAppVersionsChildrenPathToParent added in v0.1.33

GetAPIV2ProceduresAppVersionsChildrenPathToParent gets a changelog between two app versions

Get the path through parent references from a child AppVersion (inclusive) to a parent AppVersion (exclusive), if possible. Because parent references point from newer children to older parents, the newer AppVersion 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) GetAPIV2SelectorsAppVersionsSelector

func (a *Client) GetAPIV2SelectorsAppVersionsSelector(params *GetAPIV2SelectorsAppVersionsSelectorParams, opts ...ClientOption) (*GetAPIV2SelectorsAppVersionsSelectorOK, error)

GetAPIV2SelectorsAppVersionsSelector lists app version selectors

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

func (*Client) PatchAPIV2AppVersionsSelector added in v0.0.59

func (a *Client) PatchAPIV2AppVersionsSelector(params *PatchAPIV2AppVersionsSelectorParams, opts ...ClientOption) (*PatchAPIV2AppVersionsSelectorOK, error)

PatchAPIV2AppVersionsSelector edits a app version entry

Edit an existing AppVersion 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) PostAPIV2AppVersions

PostAPIV2AppVersions creates a new app version entry

Create a new AppVersion 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) PutAPIV2AppVersionsSelector added in v0.1.2

PutAPIV2AppVersionsSelector creates or edit an app version entry

Create or edit an AppVersion 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 app versions API client.

type GetAPIV2AppVersionsBadRequest

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

Bad Request

func NewGetAPIV2AppVersionsBadRequest

func NewGetAPIV2AppVersionsBadRequest() *GetAPIV2AppVersionsBadRequest

NewGetAPIV2AppVersionsBadRequest creates a GetAPIV2AppVersionsBadRequest with default headers values

func (*GetAPIV2AppVersionsBadRequest) Error

func (*GetAPIV2AppVersionsBadRequest) GetPayload

type GetAPIV2AppVersionsConflict

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

Conflict

func NewGetAPIV2AppVersionsConflict

func NewGetAPIV2AppVersionsConflict() *GetAPIV2AppVersionsConflict

NewGetAPIV2AppVersionsConflict creates a GetAPIV2AppVersionsConflict with default headers values

func (*GetAPIV2AppVersionsConflict) Error

func (*GetAPIV2AppVersionsConflict) GetPayload

type GetAPIV2AppVersionsForbidden

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

Forbidden

func NewGetAPIV2AppVersionsForbidden

func NewGetAPIV2AppVersionsForbidden() *GetAPIV2AppVersionsForbidden

NewGetAPIV2AppVersionsForbidden creates a GetAPIV2AppVersionsForbidden with default headers values

func (*GetAPIV2AppVersionsForbidden) Error

func (*GetAPIV2AppVersionsForbidden) GetPayload

type GetAPIV2AppVersionsInternalServerError

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

Internal Server Error

func NewGetAPIV2AppVersionsInternalServerError

func NewGetAPIV2AppVersionsInternalServerError() *GetAPIV2AppVersionsInternalServerError

NewGetAPIV2AppVersionsInternalServerError creates a GetAPIV2AppVersionsInternalServerError with default headers values

func (*GetAPIV2AppVersionsInternalServerError) Error

func (*GetAPIV2AppVersionsInternalServerError) GetPayload

type GetAPIV2AppVersionsNotFound

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

Not Found

func NewGetAPIV2AppVersionsNotFound

func NewGetAPIV2AppVersionsNotFound() *GetAPIV2AppVersionsNotFound

NewGetAPIV2AppVersionsNotFound creates a GetAPIV2AppVersionsNotFound with default headers values

func (*GetAPIV2AppVersionsNotFound) Error

func (*GetAPIV2AppVersionsNotFound) GetPayload

type GetAPIV2AppVersionsOK

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

OK

func NewGetAPIV2AppVersionsOK

func NewGetAPIV2AppVersionsOK() *GetAPIV2AppVersionsOK

NewGetAPIV2AppVersionsOK creates a GetAPIV2AppVersionsOK with default headers values

func (*GetAPIV2AppVersionsOK) Error

func (o *GetAPIV2AppVersionsOK) Error() string

func (*GetAPIV2AppVersionsOK) GetPayload

type GetAPIV2AppVersionsParams

type GetAPIV2AppVersionsParams struct {

	/* AppVersion.

	   Required when creating
	*/
	AppVersion *string

	/* Chart.

	   Required when creating
	*/
	Chart *string

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

	/* Description.

	   Generally the Git commit message
	*/
	Description *string

	// GitBranch.
	GitBranch *string

	// GitCommit.
	GitCommit *string

	// ID.
	ID *int64

	/* Limit.

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

	// ParentAppVersion.
	ParentAppVersion *string

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

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

GetAPIV2AppVersionsParams contains all the parameters to send to the API endpoint

for the get API v2 app versions operation.

Typically these are written to a http.Request.

func NewGetAPIV2AppVersionsParams

func NewGetAPIV2AppVersionsParams() *GetAPIV2AppVersionsParams

NewGetAPIV2AppVersionsParams creates a new GetAPIV2AppVersionsParams 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 NewGetAPIV2AppVersionsParamsWithContext

func NewGetAPIV2AppVersionsParamsWithContext(ctx context.Context) *GetAPIV2AppVersionsParams

NewGetAPIV2AppVersionsParamsWithContext creates a new GetAPIV2AppVersionsParams object with the ability to set a context for a request.

func NewGetAPIV2AppVersionsParamsWithHTTPClient

func NewGetAPIV2AppVersionsParamsWithHTTPClient(client *http.Client) *GetAPIV2AppVersionsParams

NewGetAPIV2AppVersionsParamsWithHTTPClient creates a new GetAPIV2AppVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2AppVersionsParamsWithTimeout

func NewGetAPIV2AppVersionsParamsWithTimeout(timeout time.Duration) *GetAPIV2AppVersionsParams

NewGetAPIV2AppVersionsParamsWithTimeout creates a new GetAPIV2AppVersionsParams object with the ability to set a timeout on a request.

func (*GetAPIV2AppVersionsParams) SetAppVersion

func (o *GetAPIV2AppVersionsParams) SetAppVersion(appVersion *string)

SetAppVersion adds the appVersion to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) SetChart

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

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

func (*GetAPIV2AppVersionsParams) SetContext

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

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

func (*GetAPIV2AppVersionsParams) SetCreatedAt

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

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

func (*GetAPIV2AppVersionsParams) SetDefaults

func (o *GetAPIV2AppVersionsParams) SetDefaults()

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

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

func (*GetAPIV2AppVersionsParams) SetDescription added in v0.0.59

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

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

func (*GetAPIV2AppVersionsParams) SetGitBranch

func (o *GetAPIV2AppVersionsParams) SetGitBranch(gitBranch *string)

SetGitBranch adds the gitBranch to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) SetGitCommit

func (o *GetAPIV2AppVersionsParams) SetGitCommit(gitCommit *string)

SetGitCommit adds the gitCommit to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) SetHTTPClient

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

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

func (*GetAPIV2AppVersionsParams) SetID

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

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

func (*GetAPIV2AppVersionsParams) SetLimit

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

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

func (*GetAPIV2AppVersionsParams) SetParentAppVersion added in v0.0.50

func (o *GetAPIV2AppVersionsParams) SetParentAppVersion(parentAppVersion *string)

SetParentAppVersion adds the parentAppVersion to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) SetTimeout

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

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

func (*GetAPIV2AppVersionsParams) SetUpdatedAt

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

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

func (*GetAPIV2AppVersionsParams) WithAppVersion

func (o *GetAPIV2AppVersionsParams) WithAppVersion(appVersion *string) *GetAPIV2AppVersionsParams

WithAppVersion adds the appVersion to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) WithChart

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

func (*GetAPIV2AppVersionsParams) WithContext

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

func (*GetAPIV2AppVersionsParams) WithCreatedAt

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

func (*GetAPIV2AppVersionsParams) WithDefaults

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

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

func (*GetAPIV2AppVersionsParams) WithDescription added in v0.0.59

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

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

func (*GetAPIV2AppVersionsParams) WithGitBranch

func (o *GetAPIV2AppVersionsParams) WithGitBranch(gitBranch *string) *GetAPIV2AppVersionsParams

WithGitBranch adds the gitBranch to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) WithGitCommit

func (o *GetAPIV2AppVersionsParams) WithGitCommit(gitCommit *string) *GetAPIV2AppVersionsParams

WithGitCommit adds the gitCommit to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) WithHTTPClient

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

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

func (*GetAPIV2AppVersionsParams) WithID

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

func (*GetAPIV2AppVersionsParams) WithLimit

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

func (*GetAPIV2AppVersionsParams) WithParentAppVersion added in v0.0.50

func (o *GetAPIV2AppVersionsParams) WithParentAppVersion(parentAppVersion *string) *GetAPIV2AppVersionsParams

WithParentAppVersion adds the parentAppVersion to the get API v2 app versions params

func (*GetAPIV2AppVersionsParams) WithTimeout

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

func (*GetAPIV2AppVersionsParams) WithUpdatedAt

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

func (*GetAPIV2AppVersionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2AppVersionsProxyAuthenticationRequired

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

Proxy Authentication Required

func NewGetAPIV2AppVersionsProxyAuthenticationRequired

func NewGetAPIV2AppVersionsProxyAuthenticationRequired() *GetAPIV2AppVersionsProxyAuthenticationRequired

NewGetAPIV2AppVersionsProxyAuthenticationRequired creates a GetAPIV2AppVersionsProxyAuthenticationRequired with default headers values

func (*GetAPIV2AppVersionsProxyAuthenticationRequired) Error

func (*GetAPIV2AppVersionsProxyAuthenticationRequired) GetPayload

type GetAPIV2AppVersionsReader

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

GetAPIV2AppVersionsReader is a Reader for the GetAPIV2AppVersions structure.

func (*GetAPIV2AppVersionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV2AppVersionsSelectorBadRequest

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

Bad Request

func NewGetAPIV2AppVersionsSelectorBadRequest

func NewGetAPIV2AppVersionsSelectorBadRequest() *GetAPIV2AppVersionsSelectorBadRequest

NewGetAPIV2AppVersionsSelectorBadRequest creates a GetAPIV2AppVersionsSelectorBadRequest with default headers values

func (*GetAPIV2AppVersionsSelectorBadRequest) Error

func (*GetAPIV2AppVersionsSelectorBadRequest) GetPayload

type GetAPIV2AppVersionsSelectorConflict

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

Conflict

func NewGetAPIV2AppVersionsSelectorConflict

func NewGetAPIV2AppVersionsSelectorConflict() *GetAPIV2AppVersionsSelectorConflict

NewGetAPIV2AppVersionsSelectorConflict creates a GetAPIV2AppVersionsSelectorConflict with default headers values

func (*GetAPIV2AppVersionsSelectorConflict) Error

func (*GetAPIV2AppVersionsSelectorConflict) GetPayload

type GetAPIV2AppVersionsSelectorForbidden

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

Forbidden

func NewGetAPIV2AppVersionsSelectorForbidden

func NewGetAPIV2AppVersionsSelectorForbidden() *GetAPIV2AppVersionsSelectorForbidden

NewGetAPIV2AppVersionsSelectorForbidden creates a GetAPIV2AppVersionsSelectorForbidden with default headers values

func (*GetAPIV2AppVersionsSelectorForbidden) Error

func (*GetAPIV2AppVersionsSelectorForbidden) GetPayload

type GetAPIV2AppVersionsSelectorInternalServerError

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

Internal Server Error

func NewGetAPIV2AppVersionsSelectorInternalServerError

func NewGetAPIV2AppVersionsSelectorInternalServerError() *GetAPIV2AppVersionsSelectorInternalServerError

NewGetAPIV2AppVersionsSelectorInternalServerError creates a GetAPIV2AppVersionsSelectorInternalServerError with default headers values

func (*GetAPIV2AppVersionsSelectorInternalServerError) Error

func (*GetAPIV2AppVersionsSelectorInternalServerError) GetPayload

type GetAPIV2AppVersionsSelectorNotFound

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

Not Found

func NewGetAPIV2AppVersionsSelectorNotFound

func NewGetAPIV2AppVersionsSelectorNotFound() *GetAPIV2AppVersionsSelectorNotFound

NewGetAPIV2AppVersionsSelectorNotFound creates a GetAPIV2AppVersionsSelectorNotFound with default headers values

func (*GetAPIV2AppVersionsSelectorNotFound) Error

func (*GetAPIV2AppVersionsSelectorNotFound) GetPayload

type GetAPIV2AppVersionsSelectorOK

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

OK

func NewGetAPIV2AppVersionsSelectorOK

func NewGetAPIV2AppVersionsSelectorOK() *GetAPIV2AppVersionsSelectorOK

NewGetAPIV2AppVersionsSelectorOK creates a GetAPIV2AppVersionsSelectorOK with default headers values

func (*GetAPIV2AppVersionsSelectorOK) Error

func (*GetAPIV2AppVersionsSelectorOK) GetPayload

type GetAPIV2AppVersionsSelectorParams

type GetAPIV2AppVersionsSelectorParams struct {

	/* Selector.

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

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

GetAPIV2AppVersionsSelectorParams contains all the parameters to send to the API endpoint

for the get API v2 app versions selector operation.

Typically these are written to a http.Request.

func NewGetAPIV2AppVersionsSelectorParams

func NewGetAPIV2AppVersionsSelectorParams() *GetAPIV2AppVersionsSelectorParams

NewGetAPIV2AppVersionsSelectorParams creates a new GetAPIV2AppVersionsSelectorParams 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 NewGetAPIV2AppVersionsSelectorParamsWithContext

func NewGetAPIV2AppVersionsSelectorParamsWithContext(ctx context.Context) *GetAPIV2AppVersionsSelectorParams

NewGetAPIV2AppVersionsSelectorParamsWithContext creates a new GetAPIV2AppVersionsSelectorParams object with the ability to set a context for a request.

func NewGetAPIV2AppVersionsSelectorParamsWithHTTPClient

func NewGetAPIV2AppVersionsSelectorParamsWithHTTPClient(client *http.Client) *GetAPIV2AppVersionsSelectorParams

NewGetAPIV2AppVersionsSelectorParamsWithHTTPClient creates a new GetAPIV2AppVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2AppVersionsSelectorParamsWithTimeout

func NewGetAPIV2AppVersionsSelectorParamsWithTimeout(timeout time.Duration) *GetAPIV2AppVersionsSelectorParams

NewGetAPIV2AppVersionsSelectorParamsWithTimeout creates a new GetAPIV2AppVersionsSelectorParams object with the ability to set a timeout on a request.

func (*GetAPIV2AppVersionsSelectorParams) SetContext

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

func (*GetAPIV2AppVersionsSelectorParams) SetDefaults

func (o *GetAPIV2AppVersionsSelectorParams) SetDefaults()

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

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

func (*GetAPIV2AppVersionsSelectorParams) SetHTTPClient

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

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

func (*GetAPIV2AppVersionsSelectorParams) SetSelector

func (o *GetAPIV2AppVersionsSelectorParams) SetSelector(selector string)

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

func (*GetAPIV2AppVersionsSelectorParams) SetTimeout

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

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

func (*GetAPIV2AppVersionsSelectorParams) WithContext

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

func (*GetAPIV2AppVersionsSelectorParams) WithDefaults

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

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

func (*GetAPIV2AppVersionsSelectorParams) WithHTTPClient

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

func (*GetAPIV2AppVersionsSelectorParams) WithSelector

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

func (*GetAPIV2AppVersionsSelectorParams) WithTimeout

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

func (*GetAPIV2AppVersionsSelectorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2AppVersionsSelectorProxyAuthenticationRequired

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

Proxy Authentication Required

func NewGetAPIV2AppVersionsSelectorProxyAuthenticationRequired

func NewGetAPIV2AppVersionsSelectorProxyAuthenticationRequired() *GetAPIV2AppVersionsSelectorProxyAuthenticationRequired

NewGetAPIV2AppVersionsSelectorProxyAuthenticationRequired creates a GetAPIV2AppVersionsSelectorProxyAuthenticationRequired with default headers values

func (*GetAPIV2AppVersionsSelectorProxyAuthenticationRequired) Error

func (*GetAPIV2AppVersionsSelectorProxyAuthenticationRequired) GetPayload

type GetAPIV2AppVersionsSelectorReader

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

GetAPIV2AppVersionsSelectorReader is a Reader for the GetAPIV2AppVersionsSelector structure.

func (*GetAPIV2AppVersionsSelectorReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type GetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest added in v0.1.33

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

Bad Request

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest() *GetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentBadRequest) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentConflict added in v0.1.33

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

Conflict

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentConflict added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentConflict() *GetAPIV2ProceduresAppVersionsChildrenPathToParentConflict

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentConflict creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentConflict with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentConflict) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentConflict) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden added in v0.1.33

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

Forbidden

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden() *GetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentForbidden) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError added in v0.1.33

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

Internal Server Error

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError() *GetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentInternalServerError) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent added in v0.1.33

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

No Content

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent() *GetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentNoContent) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound added in v0.1.33

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

Not Found

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound() *GetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentNotFound) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentOK added in v0.1.33

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

OK

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentOK added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentOK() *GetAPIV2ProceduresAppVersionsChildrenPathToParentOK

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentOK creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentOK with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentOK) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentOK) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentParams added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentParams struct {

	/* Child.

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

	/* Parent.

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

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

GetAPIV2ProceduresAppVersionsChildrenPathToParentParams contains all the parameters to send to the API endpoint

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

Typically these are written to a http.Request.

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParams added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParams() *GetAPIV2ProceduresAppVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParams creates a new GetAPIV2ProceduresAppVersionsChildrenPathToParentParams 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 NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithContext added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithContext(ctx context.Context) *GetAPIV2ProceduresAppVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithContext creates a new GetAPIV2ProceduresAppVersionsChildrenPathToParentParams object with the ability to set a context for a request.

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithHTTPClient added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithHTTPClient(client *http.Client) *GetAPIV2ProceduresAppVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithHTTPClient creates a new GetAPIV2ProceduresAppVersionsChildrenPathToParentParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithTimeout added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithTimeout(timeout time.Duration) *GetAPIV2ProceduresAppVersionsChildrenPathToParentParams

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentParamsWithTimeout creates a new GetAPIV2ProceduresAppVersionsChildrenPathToParentParams object with the ability to set a timeout on a request.

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetChild added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetContext added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetDefaults added in v0.1.33

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

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetHTTPClient added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetParent added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) SetTimeout added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithChild added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithContext added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithDefaults added in v0.1.33

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

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithHTTPClient added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithParent added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WithTimeout added in v0.1.33

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

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentParams) WriteToRequest added in v0.1.33

WriteToRequest writes these params to a swagger request

type GetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired added in v0.1.33

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

Proxy Authentication Required

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired added in v0.1.33

func NewGetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired() *GetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired

NewGetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired creates a GetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired with default headers values

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired) Error added in v0.1.33

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentProxyAuthenticationRequired) GetPayload added in v0.1.33

type GetAPIV2ProceduresAppVersionsChildrenPathToParentReader added in v0.1.33

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

GetAPIV2ProceduresAppVersionsChildrenPathToParentReader is a Reader for the GetAPIV2ProceduresAppVersionsChildrenPathToParent structure.

func (*GetAPIV2ProceduresAppVersionsChildrenPathToParentReader) ReadResponse added in v0.1.33

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

ReadResponse reads a server response into the received o.

type GetAPIV2SelectorsAppVersionsSelectorBadRequest

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

Bad Request

func NewGetAPIV2SelectorsAppVersionsSelectorBadRequest

func NewGetAPIV2SelectorsAppVersionsSelectorBadRequest() *GetAPIV2SelectorsAppVersionsSelectorBadRequest

NewGetAPIV2SelectorsAppVersionsSelectorBadRequest creates a GetAPIV2SelectorsAppVersionsSelectorBadRequest with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorBadRequest) Error

func (*GetAPIV2SelectorsAppVersionsSelectorBadRequest) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorConflict

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

Conflict

func NewGetAPIV2SelectorsAppVersionsSelectorConflict

func NewGetAPIV2SelectorsAppVersionsSelectorConflict() *GetAPIV2SelectorsAppVersionsSelectorConflict

NewGetAPIV2SelectorsAppVersionsSelectorConflict creates a GetAPIV2SelectorsAppVersionsSelectorConflict with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorConflict) Error

func (*GetAPIV2SelectorsAppVersionsSelectorConflict) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorForbidden

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

Forbidden

func NewGetAPIV2SelectorsAppVersionsSelectorForbidden

func NewGetAPIV2SelectorsAppVersionsSelectorForbidden() *GetAPIV2SelectorsAppVersionsSelectorForbidden

NewGetAPIV2SelectorsAppVersionsSelectorForbidden creates a GetAPIV2SelectorsAppVersionsSelectorForbidden with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorForbidden) Error

func (*GetAPIV2SelectorsAppVersionsSelectorForbidden) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorInternalServerError

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

Internal Server Error

func NewGetAPIV2SelectorsAppVersionsSelectorInternalServerError

func NewGetAPIV2SelectorsAppVersionsSelectorInternalServerError() *GetAPIV2SelectorsAppVersionsSelectorInternalServerError

NewGetAPIV2SelectorsAppVersionsSelectorInternalServerError creates a GetAPIV2SelectorsAppVersionsSelectorInternalServerError with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorInternalServerError) Error

func (*GetAPIV2SelectorsAppVersionsSelectorInternalServerError) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorNotFound

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

Not Found

func NewGetAPIV2SelectorsAppVersionsSelectorNotFound

func NewGetAPIV2SelectorsAppVersionsSelectorNotFound() *GetAPIV2SelectorsAppVersionsSelectorNotFound

NewGetAPIV2SelectorsAppVersionsSelectorNotFound creates a GetAPIV2SelectorsAppVersionsSelectorNotFound with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorNotFound) Error

func (*GetAPIV2SelectorsAppVersionsSelectorNotFound) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorOK

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

OK

func NewGetAPIV2SelectorsAppVersionsSelectorOK

func NewGetAPIV2SelectorsAppVersionsSelectorOK() *GetAPIV2SelectorsAppVersionsSelectorOK

NewGetAPIV2SelectorsAppVersionsSelectorOK creates a GetAPIV2SelectorsAppVersionsSelectorOK with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorOK) Error

func (*GetAPIV2SelectorsAppVersionsSelectorOK) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorParams

type GetAPIV2SelectorsAppVersionsSelectorParams struct {

	/* Selector.

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

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

GetAPIV2SelectorsAppVersionsSelectorParams contains all the parameters to send to the API endpoint

for the get API v2 selectors app versions selector operation.

Typically these are written to a http.Request.

func NewGetAPIV2SelectorsAppVersionsSelectorParams

func NewGetAPIV2SelectorsAppVersionsSelectorParams() *GetAPIV2SelectorsAppVersionsSelectorParams

NewGetAPIV2SelectorsAppVersionsSelectorParams creates a new GetAPIV2SelectorsAppVersionsSelectorParams 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 NewGetAPIV2SelectorsAppVersionsSelectorParamsWithContext

func NewGetAPIV2SelectorsAppVersionsSelectorParamsWithContext(ctx context.Context) *GetAPIV2SelectorsAppVersionsSelectorParams

NewGetAPIV2SelectorsAppVersionsSelectorParamsWithContext creates a new GetAPIV2SelectorsAppVersionsSelectorParams object with the ability to set a context for a request.

func NewGetAPIV2SelectorsAppVersionsSelectorParamsWithHTTPClient

func NewGetAPIV2SelectorsAppVersionsSelectorParamsWithHTTPClient(client *http.Client) *GetAPIV2SelectorsAppVersionsSelectorParams

NewGetAPIV2SelectorsAppVersionsSelectorParamsWithHTTPClient creates a new GetAPIV2SelectorsAppVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewGetAPIV2SelectorsAppVersionsSelectorParamsWithTimeout

func NewGetAPIV2SelectorsAppVersionsSelectorParamsWithTimeout(timeout time.Duration) *GetAPIV2SelectorsAppVersionsSelectorParams

NewGetAPIV2SelectorsAppVersionsSelectorParamsWithTimeout creates a new GetAPIV2SelectorsAppVersionsSelectorParams object with the ability to set a timeout on a request.

func (*GetAPIV2SelectorsAppVersionsSelectorParams) SetContext

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) SetDefaults

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

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) SetHTTPClient

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

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) SetSelector

func (o *GetAPIV2SelectorsAppVersionsSelectorParams) SetSelector(selector string)

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) SetTimeout

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WithContext

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WithDefaults

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

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WithHTTPClient

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WithSelector

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WithTimeout

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

func (*GetAPIV2SelectorsAppVersionsSelectorParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type GetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired

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

Proxy Authentication Required

func NewGetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired

func NewGetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired() *GetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired

NewGetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired creates a GetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired with default headers values

func (*GetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired) Error

func (*GetAPIV2SelectorsAppVersionsSelectorProxyAuthenticationRequired) GetPayload

type GetAPIV2SelectorsAppVersionsSelectorReader

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

GetAPIV2SelectorsAppVersionsSelectorReader is a Reader for the GetAPIV2SelectorsAppVersionsSelector structure.

func (*GetAPIV2SelectorsAppVersionsSelectorReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PatchAPIV2AppVersionsSelectorBadRequest added in v0.0.59

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

Bad Request

func NewPatchAPIV2AppVersionsSelectorBadRequest added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorBadRequest() *PatchAPIV2AppVersionsSelectorBadRequest

NewPatchAPIV2AppVersionsSelectorBadRequest creates a PatchAPIV2AppVersionsSelectorBadRequest with default headers values

func (*PatchAPIV2AppVersionsSelectorBadRequest) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorBadRequest) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorConflict added in v0.0.59

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

Conflict

func NewPatchAPIV2AppVersionsSelectorConflict added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorConflict() *PatchAPIV2AppVersionsSelectorConflict

NewPatchAPIV2AppVersionsSelectorConflict creates a PatchAPIV2AppVersionsSelectorConflict with default headers values

func (*PatchAPIV2AppVersionsSelectorConflict) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorConflict) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorForbidden added in v0.0.59

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

Forbidden

func NewPatchAPIV2AppVersionsSelectorForbidden added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorForbidden() *PatchAPIV2AppVersionsSelectorForbidden

NewPatchAPIV2AppVersionsSelectorForbidden creates a PatchAPIV2AppVersionsSelectorForbidden with default headers values

func (*PatchAPIV2AppVersionsSelectorForbidden) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorForbidden) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorInternalServerError added in v0.0.59

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

Internal Server Error

func NewPatchAPIV2AppVersionsSelectorInternalServerError added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorInternalServerError() *PatchAPIV2AppVersionsSelectorInternalServerError

NewPatchAPIV2AppVersionsSelectorInternalServerError creates a PatchAPIV2AppVersionsSelectorInternalServerError with default headers values

func (*PatchAPIV2AppVersionsSelectorInternalServerError) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorInternalServerError) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorNotFound added in v0.0.59

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

Not Found

func NewPatchAPIV2AppVersionsSelectorNotFound added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorNotFound() *PatchAPIV2AppVersionsSelectorNotFound

NewPatchAPIV2AppVersionsSelectorNotFound creates a PatchAPIV2AppVersionsSelectorNotFound with default headers values

func (*PatchAPIV2AppVersionsSelectorNotFound) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorNotFound) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorOK added in v0.0.59

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

OK

func NewPatchAPIV2AppVersionsSelectorOK added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorOK() *PatchAPIV2AppVersionsSelectorOK

NewPatchAPIV2AppVersionsSelectorOK creates a PatchAPIV2AppVersionsSelectorOK with default headers values

func (*PatchAPIV2AppVersionsSelectorOK) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorOK) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorParams added in v0.0.59

type PatchAPIV2AppVersionsSelectorParams struct {

	/* AppVersion.

	   The edits to make to the AppVersion
	*/
	AppVersion *models.V2controllersEditableAppVersion

	/* Selector.

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

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

PatchAPIV2AppVersionsSelectorParams contains all the parameters to send to the API endpoint

for the patch API v2 app versions selector operation.

Typically these are written to a http.Request.

func NewPatchAPIV2AppVersionsSelectorParams added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorParams() *PatchAPIV2AppVersionsSelectorParams

NewPatchAPIV2AppVersionsSelectorParams creates a new PatchAPIV2AppVersionsSelectorParams 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 NewPatchAPIV2AppVersionsSelectorParamsWithContext added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorParamsWithContext(ctx context.Context) *PatchAPIV2AppVersionsSelectorParams

NewPatchAPIV2AppVersionsSelectorParamsWithContext creates a new PatchAPIV2AppVersionsSelectorParams object with the ability to set a context for a request.

func NewPatchAPIV2AppVersionsSelectorParamsWithHTTPClient added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorParamsWithHTTPClient(client *http.Client) *PatchAPIV2AppVersionsSelectorParams

NewPatchAPIV2AppVersionsSelectorParamsWithHTTPClient creates a new PatchAPIV2AppVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewPatchAPIV2AppVersionsSelectorParamsWithTimeout added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorParamsWithTimeout(timeout time.Duration) *PatchAPIV2AppVersionsSelectorParams

NewPatchAPIV2AppVersionsSelectorParamsWithTimeout creates a new PatchAPIV2AppVersionsSelectorParams object with the ability to set a timeout on a request.

func (*PatchAPIV2AppVersionsSelectorParams) SetAppVersion added in v0.0.59

SetAppVersion adds the appVersion to the patch API v2 app versions selector params

func (*PatchAPIV2AppVersionsSelectorParams) SetContext added in v0.0.59

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

func (*PatchAPIV2AppVersionsSelectorParams) SetDefaults added in v0.0.59

func (o *PatchAPIV2AppVersionsSelectorParams) SetDefaults()

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

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

func (*PatchAPIV2AppVersionsSelectorParams) SetHTTPClient added in v0.0.59

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

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

func (*PatchAPIV2AppVersionsSelectorParams) SetSelector added in v0.0.59

func (o *PatchAPIV2AppVersionsSelectorParams) SetSelector(selector string)

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

func (*PatchAPIV2AppVersionsSelectorParams) SetTimeout added in v0.0.59

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

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

func (*PatchAPIV2AppVersionsSelectorParams) WithAppVersion added in v0.0.59

WithAppVersion adds the appVersion to the patch API v2 app versions selector params

func (*PatchAPIV2AppVersionsSelectorParams) WithContext added in v0.0.59

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

func (*PatchAPIV2AppVersionsSelectorParams) WithDefaults added in v0.0.59

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

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

func (*PatchAPIV2AppVersionsSelectorParams) WithHTTPClient added in v0.0.59

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

func (*PatchAPIV2AppVersionsSelectorParams) WithSelector added in v0.0.59

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

func (*PatchAPIV2AppVersionsSelectorParams) WithTimeout added in v0.0.59

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

func (*PatchAPIV2AppVersionsSelectorParams) WriteToRequest added in v0.0.59

WriteToRequest writes these params to a swagger request

type PatchAPIV2AppVersionsSelectorProxyAuthenticationRequired added in v0.0.59

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

Proxy Authentication Required

func NewPatchAPIV2AppVersionsSelectorProxyAuthenticationRequired added in v0.0.59

func NewPatchAPIV2AppVersionsSelectorProxyAuthenticationRequired() *PatchAPIV2AppVersionsSelectorProxyAuthenticationRequired

NewPatchAPIV2AppVersionsSelectorProxyAuthenticationRequired creates a PatchAPIV2AppVersionsSelectorProxyAuthenticationRequired with default headers values

func (*PatchAPIV2AppVersionsSelectorProxyAuthenticationRequired) Error added in v0.0.59

func (*PatchAPIV2AppVersionsSelectorProxyAuthenticationRequired) GetPayload added in v0.0.59

type PatchAPIV2AppVersionsSelectorReader added in v0.0.59

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

PatchAPIV2AppVersionsSelectorReader is a Reader for the PatchAPIV2AppVersionsSelector structure.

func (*PatchAPIV2AppVersionsSelectorReader) ReadResponse added in v0.0.59

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

ReadResponse reads a server response into the received o.

type PostAPIV2AppVersionsBadRequest

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

Bad Request

func NewPostAPIV2AppVersionsBadRequest

func NewPostAPIV2AppVersionsBadRequest() *PostAPIV2AppVersionsBadRequest

NewPostAPIV2AppVersionsBadRequest creates a PostAPIV2AppVersionsBadRequest with default headers values

func (*PostAPIV2AppVersionsBadRequest) Error

func (*PostAPIV2AppVersionsBadRequest) GetPayload

type PostAPIV2AppVersionsConflict

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

Conflict

func NewPostAPIV2AppVersionsConflict

func NewPostAPIV2AppVersionsConflict() *PostAPIV2AppVersionsConflict

NewPostAPIV2AppVersionsConflict creates a PostAPIV2AppVersionsConflict with default headers values

func (*PostAPIV2AppVersionsConflict) Error

func (*PostAPIV2AppVersionsConflict) GetPayload

type PostAPIV2AppVersionsCreated added in v0.0.29

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

Created

func NewPostAPIV2AppVersionsCreated added in v0.0.29

func NewPostAPIV2AppVersionsCreated() *PostAPIV2AppVersionsCreated

NewPostAPIV2AppVersionsCreated creates a PostAPIV2AppVersionsCreated with default headers values

func (*PostAPIV2AppVersionsCreated) Error added in v0.0.29

func (*PostAPIV2AppVersionsCreated) GetPayload added in v0.0.29

type PostAPIV2AppVersionsForbidden

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

Forbidden

func NewPostAPIV2AppVersionsForbidden

func NewPostAPIV2AppVersionsForbidden() *PostAPIV2AppVersionsForbidden

NewPostAPIV2AppVersionsForbidden creates a PostAPIV2AppVersionsForbidden with default headers values

func (*PostAPIV2AppVersionsForbidden) Error

func (*PostAPIV2AppVersionsForbidden) GetPayload

type PostAPIV2AppVersionsInternalServerError

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

Internal Server Error

func NewPostAPIV2AppVersionsInternalServerError

func NewPostAPIV2AppVersionsInternalServerError() *PostAPIV2AppVersionsInternalServerError

NewPostAPIV2AppVersionsInternalServerError creates a PostAPIV2AppVersionsInternalServerError with default headers values

func (*PostAPIV2AppVersionsInternalServerError) Error

func (*PostAPIV2AppVersionsInternalServerError) GetPayload

type PostAPIV2AppVersionsNotFound

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

Not Found

func NewPostAPIV2AppVersionsNotFound

func NewPostAPIV2AppVersionsNotFound() *PostAPIV2AppVersionsNotFound

NewPostAPIV2AppVersionsNotFound creates a PostAPIV2AppVersionsNotFound with default headers values

func (*PostAPIV2AppVersionsNotFound) Error

func (*PostAPIV2AppVersionsNotFound) GetPayload

type PostAPIV2AppVersionsOK

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

OK

func NewPostAPIV2AppVersionsOK

func NewPostAPIV2AppVersionsOK() *PostAPIV2AppVersionsOK

NewPostAPIV2AppVersionsOK creates a PostAPIV2AppVersionsOK with default headers values

func (*PostAPIV2AppVersionsOK) Error

func (o *PostAPIV2AppVersionsOK) Error() string

func (*PostAPIV2AppVersionsOK) GetPayload

type PostAPIV2AppVersionsParams

type PostAPIV2AppVersionsParams struct {

	/* AppVersion.

	   The AppVersion to create
	*/
	AppVersion *models.V2controllersCreatableAppVersion

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

PostAPIV2AppVersionsParams contains all the parameters to send to the API endpoint

for the post API v2 app versions operation.

Typically these are written to a http.Request.

func NewPostAPIV2AppVersionsParams

func NewPostAPIV2AppVersionsParams() *PostAPIV2AppVersionsParams

NewPostAPIV2AppVersionsParams creates a new PostAPIV2AppVersionsParams 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 NewPostAPIV2AppVersionsParamsWithContext

func NewPostAPIV2AppVersionsParamsWithContext(ctx context.Context) *PostAPIV2AppVersionsParams

NewPostAPIV2AppVersionsParamsWithContext creates a new PostAPIV2AppVersionsParams object with the ability to set a context for a request.

func NewPostAPIV2AppVersionsParamsWithHTTPClient

func NewPostAPIV2AppVersionsParamsWithHTTPClient(client *http.Client) *PostAPIV2AppVersionsParams

NewPostAPIV2AppVersionsParamsWithHTTPClient creates a new PostAPIV2AppVersionsParams object with the ability to set a custom HTTPClient for a request.

func NewPostAPIV2AppVersionsParamsWithTimeout

func NewPostAPIV2AppVersionsParamsWithTimeout(timeout time.Duration) *PostAPIV2AppVersionsParams

NewPostAPIV2AppVersionsParamsWithTimeout creates a new PostAPIV2AppVersionsParams object with the ability to set a timeout on a request.

func (*PostAPIV2AppVersionsParams) SetAppVersion

SetAppVersion adds the appVersion to the post API v2 app versions params

func (*PostAPIV2AppVersionsParams) SetContext

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

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

func (*PostAPIV2AppVersionsParams) SetDefaults

func (o *PostAPIV2AppVersionsParams) SetDefaults()

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

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

func (*PostAPIV2AppVersionsParams) SetHTTPClient

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

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

func (*PostAPIV2AppVersionsParams) SetTimeout

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

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

func (*PostAPIV2AppVersionsParams) WithAppVersion

WithAppVersion adds the appVersion to the post API v2 app versions params

func (*PostAPIV2AppVersionsParams) WithContext

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

func (*PostAPIV2AppVersionsParams) WithDefaults

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

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

func (*PostAPIV2AppVersionsParams) WithHTTPClient

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

func (*PostAPIV2AppVersionsParams) WithTimeout

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

func (*PostAPIV2AppVersionsParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PostAPIV2AppVersionsProxyAuthenticationRequired

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

Proxy Authentication Required

func NewPostAPIV2AppVersionsProxyAuthenticationRequired

func NewPostAPIV2AppVersionsProxyAuthenticationRequired() *PostAPIV2AppVersionsProxyAuthenticationRequired

NewPostAPIV2AppVersionsProxyAuthenticationRequired creates a PostAPIV2AppVersionsProxyAuthenticationRequired with default headers values

func (*PostAPIV2AppVersionsProxyAuthenticationRequired) Error

func (*PostAPIV2AppVersionsProxyAuthenticationRequired) GetPayload

type PostAPIV2AppVersionsReader

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

PostAPIV2AppVersionsReader is a Reader for the PostAPIV2AppVersions structure.

func (*PostAPIV2AppVersionsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutAPIV2AppVersionsSelectorBadRequest added in v0.1.2

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

Bad Request

func NewPutAPIV2AppVersionsSelectorBadRequest added in v0.1.2

func NewPutAPIV2AppVersionsSelectorBadRequest() *PutAPIV2AppVersionsSelectorBadRequest

NewPutAPIV2AppVersionsSelectorBadRequest creates a PutAPIV2AppVersionsSelectorBadRequest with default headers values

func (*PutAPIV2AppVersionsSelectorBadRequest) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorBadRequest) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorConflict added in v0.1.2

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

Conflict

func NewPutAPIV2AppVersionsSelectorConflict added in v0.1.2

func NewPutAPIV2AppVersionsSelectorConflict() *PutAPIV2AppVersionsSelectorConflict

NewPutAPIV2AppVersionsSelectorConflict creates a PutAPIV2AppVersionsSelectorConflict with default headers values

func (*PutAPIV2AppVersionsSelectorConflict) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorConflict) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorCreated added in v0.1.2

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

Created

func NewPutAPIV2AppVersionsSelectorCreated added in v0.1.2

func NewPutAPIV2AppVersionsSelectorCreated() *PutAPIV2AppVersionsSelectorCreated

NewPutAPIV2AppVersionsSelectorCreated creates a PutAPIV2AppVersionsSelectorCreated with default headers values

func (*PutAPIV2AppVersionsSelectorCreated) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorCreated) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorForbidden added in v0.1.2

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

Forbidden

func NewPutAPIV2AppVersionsSelectorForbidden added in v0.1.2

func NewPutAPIV2AppVersionsSelectorForbidden() *PutAPIV2AppVersionsSelectorForbidden

NewPutAPIV2AppVersionsSelectorForbidden creates a PutAPIV2AppVersionsSelectorForbidden with default headers values

func (*PutAPIV2AppVersionsSelectorForbidden) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorForbidden) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorInternalServerError added in v0.1.2

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

Internal Server Error

func NewPutAPIV2AppVersionsSelectorInternalServerError added in v0.1.2

func NewPutAPIV2AppVersionsSelectorInternalServerError() *PutAPIV2AppVersionsSelectorInternalServerError

NewPutAPIV2AppVersionsSelectorInternalServerError creates a PutAPIV2AppVersionsSelectorInternalServerError with default headers values

func (*PutAPIV2AppVersionsSelectorInternalServerError) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorInternalServerError) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorNotFound added in v0.1.2

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

Not Found

func NewPutAPIV2AppVersionsSelectorNotFound added in v0.1.2

func NewPutAPIV2AppVersionsSelectorNotFound() *PutAPIV2AppVersionsSelectorNotFound

NewPutAPIV2AppVersionsSelectorNotFound creates a PutAPIV2AppVersionsSelectorNotFound with default headers values

func (*PutAPIV2AppVersionsSelectorNotFound) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorNotFound) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorOK added in v0.1.2

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

OK

func NewPutAPIV2AppVersionsSelectorOK added in v0.1.2

func NewPutAPIV2AppVersionsSelectorOK() *PutAPIV2AppVersionsSelectorOK

NewPutAPIV2AppVersionsSelectorOK creates a PutAPIV2AppVersionsSelectorOK with default headers values

func (*PutAPIV2AppVersionsSelectorOK) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorOK) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorParams added in v0.1.2

type PutAPIV2AppVersionsSelectorParams struct {

	/* AppVersion.

	   The AppVersion to upsert
	*/
	AppVersion *models.V2controllersCreatableAppVersion

	/* Selector.

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

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

PutAPIV2AppVersionsSelectorParams contains all the parameters to send to the API endpoint

for the put API v2 app versions selector operation.

Typically these are written to a http.Request.

func NewPutAPIV2AppVersionsSelectorParams added in v0.1.2

func NewPutAPIV2AppVersionsSelectorParams() *PutAPIV2AppVersionsSelectorParams

NewPutAPIV2AppVersionsSelectorParams creates a new PutAPIV2AppVersionsSelectorParams 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 NewPutAPIV2AppVersionsSelectorParamsWithContext added in v0.1.2

func NewPutAPIV2AppVersionsSelectorParamsWithContext(ctx context.Context) *PutAPIV2AppVersionsSelectorParams

NewPutAPIV2AppVersionsSelectorParamsWithContext creates a new PutAPIV2AppVersionsSelectorParams object with the ability to set a context for a request.

func NewPutAPIV2AppVersionsSelectorParamsWithHTTPClient added in v0.1.2

func NewPutAPIV2AppVersionsSelectorParamsWithHTTPClient(client *http.Client) *PutAPIV2AppVersionsSelectorParams

NewPutAPIV2AppVersionsSelectorParamsWithHTTPClient creates a new PutAPIV2AppVersionsSelectorParams object with the ability to set a custom HTTPClient for a request.

func NewPutAPIV2AppVersionsSelectorParamsWithTimeout added in v0.1.2

func NewPutAPIV2AppVersionsSelectorParamsWithTimeout(timeout time.Duration) *PutAPIV2AppVersionsSelectorParams

NewPutAPIV2AppVersionsSelectorParamsWithTimeout creates a new PutAPIV2AppVersionsSelectorParams object with the ability to set a timeout on a request.

func (*PutAPIV2AppVersionsSelectorParams) SetAppVersion added in v0.1.2

SetAppVersion adds the appVersion to the put API v2 app versions selector params

func (*PutAPIV2AppVersionsSelectorParams) SetContext added in v0.1.2

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

func (*PutAPIV2AppVersionsSelectorParams) SetDefaults added in v0.1.2

func (o *PutAPIV2AppVersionsSelectorParams) SetDefaults()

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

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

func (*PutAPIV2AppVersionsSelectorParams) SetHTTPClient added in v0.1.2

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

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

func (*PutAPIV2AppVersionsSelectorParams) SetSelector added in v0.1.2

func (o *PutAPIV2AppVersionsSelectorParams) SetSelector(selector string)

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

func (*PutAPIV2AppVersionsSelectorParams) SetTimeout added in v0.1.2

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

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

func (*PutAPIV2AppVersionsSelectorParams) WithAppVersion added in v0.1.2

WithAppVersion adds the appVersion to the put API v2 app versions selector params

func (*PutAPIV2AppVersionsSelectorParams) WithContext added in v0.1.2

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

func (*PutAPIV2AppVersionsSelectorParams) WithDefaults added in v0.1.2

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

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

func (*PutAPIV2AppVersionsSelectorParams) WithHTTPClient added in v0.1.2

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

func (*PutAPIV2AppVersionsSelectorParams) WithSelector added in v0.1.2

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

func (*PutAPIV2AppVersionsSelectorParams) WithTimeout added in v0.1.2

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

func (*PutAPIV2AppVersionsSelectorParams) WriteToRequest added in v0.1.2

WriteToRequest writes these params to a swagger request

type PutAPIV2AppVersionsSelectorProxyAuthenticationRequired added in v0.1.2

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

Proxy Authentication Required

func NewPutAPIV2AppVersionsSelectorProxyAuthenticationRequired added in v0.1.2

func NewPutAPIV2AppVersionsSelectorProxyAuthenticationRequired() *PutAPIV2AppVersionsSelectorProxyAuthenticationRequired

NewPutAPIV2AppVersionsSelectorProxyAuthenticationRequired creates a PutAPIV2AppVersionsSelectorProxyAuthenticationRequired with default headers values

func (*PutAPIV2AppVersionsSelectorProxyAuthenticationRequired) Error added in v0.1.2

func (*PutAPIV2AppVersionsSelectorProxyAuthenticationRequired) GetPayload added in v0.1.2

type PutAPIV2AppVersionsSelectorReader added in v0.1.2

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

PutAPIV2AppVersionsSelectorReader is a Reader for the PutAPIV2AppVersionsSelector structure.

func (*PutAPIV2AppVersionsSelectorReader) ReadResponse added in v0.1.2

func (o *PutAPIV2AppVersionsSelectorReader) 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