manifests

package
v4.0.3 Latest Latest
Warning

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

Go to latest
Published: Jun 26, 2024 License: Apache-2.0 Imports: 11 Imported by: 1

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 manifests API

func (*Client) ManifestAddLibpod deprecated

func (a *Client) ManifestAddLibpod(params *ManifestAddLibpodParams, opts ...ClientOption) (*ManifestAddLibpodOK, error)
ManifestAddLibpod adds image

Add an image to a manifest list

Deprecated: As of 4.0.0 use ManifestModifyLibpod instead

func (*Client) ManifestCreateLibpod

func (a *Client) ManifestCreateLibpod(params *ManifestCreateLibpodParams, opts ...ClientOption) (*ManifestCreateLibpodCreated, error)

ManifestCreateLibpod creates

Create a manifest list

func (*Client) ManifestDeleteLibpod

func (a *Client) ManifestDeleteLibpod(params *ManifestDeleteLibpodParams, opts ...ClientOption) (*ManifestDeleteLibpodOK, error)
ManifestDeleteLibpod deletes manifest list

Delete named manifest list

As of v4.0.0

func (*Client) ManifestExistsLibpod

func (a *Client) ManifestExistsLibpod(params *ManifestExistsLibpodParams, opts ...ClientOption) (*ManifestExistsLibpodNoContent, error)
ManifestExistsLibpod exists

Check if manifest list exists

Note: There is no contract that the manifest list will exist for a follow-on operation

func (*Client) ManifestInspectLibpod

func (a *Client) ManifestInspectLibpod(params *ManifestInspectLibpodParams, opts ...ClientOption) (*ManifestInspectLibpodOK, error)

ManifestInspectLibpod inspects

Display attributes of given manifest list

func (*Client) ManifestModifyLibpod

func (a *Client) ManifestModifyLibpod(params *ManifestModifyLibpodParams, opts ...ClientOption) (*ManifestModifyLibpodOK, error)
ManifestModifyLibpod modifies manifest list

Add/Remove an image(s) to a manifest list

Note: operations are not atomic when multiple Images are provided.

As of v4.0.0

func (*Client) ManifestPushLibpod

func (a *Client) ManifestPushLibpod(params *ManifestPushLibpodParams, opts ...ClientOption) (*ManifestPushLibpodOK, error)
ManifestPushLibpod pushes manifest list to registry

Push a manifest list or image index to the named registry

As of v4.0.0

func (*Client) ManifestPushV3Libpod deprecated

func (a *Client) ManifestPushV3Libpod(params *ManifestPushV3LibpodParams, opts ...ClientOption) (*ManifestPushV3LibpodOK, error)
ManifestPushV3Libpod pushes manifest to registry

Push a manifest list or image index to a registry

Deprecated: As of 4.0.0 use ManifestPushLibpod instead

func (*Client) SetTransport

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

SetTransport changes the transport on the client

type ClientOption

type ClientOption func(*runtime.ClientOperation)

ClientOption is the option for Client methods

type ClientService

type ClientService interface {
	ManifestAddLibpod(params *ManifestAddLibpodParams, opts ...ClientOption) (*ManifestAddLibpodOK, error)

	ManifestCreateLibpod(params *ManifestCreateLibpodParams, opts ...ClientOption) (*ManifestCreateLibpodCreated, error)

	ManifestDeleteLibpod(params *ManifestDeleteLibpodParams, opts ...ClientOption) (*ManifestDeleteLibpodOK, error)

	ManifestExistsLibpod(params *ManifestExistsLibpodParams, opts ...ClientOption) (*ManifestExistsLibpodNoContent, error)

	ManifestInspectLibpod(params *ManifestInspectLibpodParams, opts ...ClientOption) (*ManifestInspectLibpodOK, error)

	ManifestModifyLibpod(params *ManifestModifyLibpodParams, opts ...ClientOption) (*ManifestModifyLibpodOK, error)

	ManifestPushLibpod(params *ManifestPushLibpodParams, opts ...ClientOption) (*ManifestPushLibpodOK, error)

	ManifestPushV3Libpod(params *ManifestPushV3LibpodParams, opts ...ClientOption) (*ManifestPushV3LibpodOK, error)

	SetTransport(transport runtime.ClientTransport)
}

ClientService is the interface for Client methods

func New

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

New creates a new manifests API client.

type ManifestAddLibpodConflict

type ManifestAddLibpodConflict struct {
	Payload *ManifestAddLibpodConflictBody
}

ManifestAddLibpodConflict describes a response with status code 409, with default header values.

Bad parameter in request

func NewManifestAddLibpodConflict

func NewManifestAddLibpodConflict() *ManifestAddLibpodConflict

NewManifestAddLibpodConflict creates a ManifestAddLibpodConflict with default headers values

func (*ManifestAddLibpodConflict) Error

func (o *ManifestAddLibpodConflict) Error() string

func (*ManifestAddLibpodConflict) GetPayload

func (*ManifestAddLibpodConflict) IsClientError

func (o *ManifestAddLibpodConflict) IsClientError() bool

IsClientError returns true when this manifest add libpod conflict response has a 4xx status code

func (*ManifestAddLibpodConflict) IsCode

func (o *ManifestAddLibpodConflict) IsCode(code int) bool

IsCode returns true when this manifest add libpod conflict response a status code equal to that given

func (*ManifestAddLibpodConflict) IsRedirect

func (o *ManifestAddLibpodConflict) IsRedirect() bool

IsRedirect returns true when this manifest add libpod conflict response has a 3xx status code

func (*ManifestAddLibpodConflict) IsServerError

func (o *ManifestAddLibpodConflict) IsServerError() bool

IsServerError returns true when this manifest add libpod conflict response has a 5xx status code

func (*ManifestAddLibpodConflict) IsSuccess

func (o *ManifestAddLibpodConflict) IsSuccess() bool

IsSuccess returns true when this manifest add libpod conflict response has a 2xx status code

func (*ManifestAddLibpodConflict) String

func (o *ManifestAddLibpodConflict) String() string

type ManifestAddLibpodConflictBody

type ManifestAddLibpodConflictBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestAddLibpodConflictBody manifest add libpod conflict body swagger:model ManifestAddLibpodConflictBody

func (*ManifestAddLibpodConflictBody) ContextValidate

func (o *ManifestAddLibpodConflictBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest add libpod conflict body based on context it is used

func (*ManifestAddLibpodConflictBody) MarshalBinary

func (o *ManifestAddLibpodConflictBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestAddLibpodConflictBody) UnmarshalBinary

func (o *ManifestAddLibpodConflictBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestAddLibpodConflictBody) Validate

func (o *ManifestAddLibpodConflictBody) Validate(formats strfmt.Registry) error

Validate validates this manifest add libpod conflict body

type ManifestAddLibpodInternalServerError

type ManifestAddLibpodInternalServerError struct {
	Payload *ManifestAddLibpodInternalServerErrorBody
}

ManifestAddLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestAddLibpodInternalServerError

func NewManifestAddLibpodInternalServerError() *ManifestAddLibpodInternalServerError

NewManifestAddLibpodInternalServerError creates a ManifestAddLibpodInternalServerError with default headers values

func (*ManifestAddLibpodInternalServerError) Error

func (*ManifestAddLibpodInternalServerError) GetPayload

func (*ManifestAddLibpodInternalServerError) IsClientError

func (o *ManifestAddLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest add libpod internal server error response has a 4xx status code

func (*ManifestAddLibpodInternalServerError) IsCode

IsCode returns true when this manifest add libpod internal server error response a status code equal to that given

func (*ManifestAddLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest add libpod internal server error response has a 3xx status code

func (*ManifestAddLibpodInternalServerError) IsServerError

func (o *ManifestAddLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest add libpod internal server error response has a 5xx status code

func (*ManifestAddLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest add libpod internal server error response has a 2xx status code

func (*ManifestAddLibpodInternalServerError) String

type ManifestAddLibpodInternalServerErrorBody

type ManifestAddLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestAddLibpodInternalServerErrorBody manifest add libpod internal server error body swagger:model ManifestAddLibpodInternalServerErrorBody

func (*ManifestAddLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest add libpod internal server error body based on context it is used

func (*ManifestAddLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestAddLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestAddLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestAddLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestAddLibpodInternalServerErrorBody) Validate

Validate validates this manifest add libpod internal server error body

type ManifestAddLibpodNotFound

type ManifestAddLibpodNotFound struct {
	Payload *ManifestAddLibpodNotFoundBody
}

ManifestAddLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestAddLibpodNotFound

func NewManifestAddLibpodNotFound() *ManifestAddLibpodNotFound

NewManifestAddLibpodNotFound creates a ManifestAddLibpodNotFound with default headers values

func (*ManifestAddLibpodNotFound) Error

func (o *ManifestAddLibpodNotFound) Error() string

func (*ManifestAddLibpodNotFound) GetPayload

func (*ManifestAddLibpodNotFound) IsClientError

func (o *ManifestAddLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest add libpod not found response has a 4xx status code

func (*ManifestAddLibpodNotFound) IsCode

func (o *ManifestAddLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest add libpod not found response a status code equal to that given

func (*ManifestAddLibpodNotFound) IsRedirect

func (o *ManifestAddLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest add libpod not found response has a 3xx status code

func (*ManifestAddLibpodNotFound) IsServerError

func (o *ManifestAddLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest add libpod not found response has a 5xx status code

func (*ManifestAddLibpodNotFound) IsSuccess

func (o *ManifestAddLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest add libpod not found response has a 2xx status code

func (*ManifestAddLibpodNotFound) String

func (o *ManifestAddLibpodNotFound) String() string

type ManifestAddLibpodNotFoundBody

type ManifestAddLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestAddLibpodNotFoundBody manifest add libpod not found body swagger:model ManifestAddLibpodNotFoundBody

func (*ManifestAddLibpodNotFoundBody) ContextValidate

func (o *ManifestAddLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest add libpod not found body based on context it is used

func (*ManifestAddLibpodNotFoundBody) MarshalBinary

func (o *ManifestAddLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestAddLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestAddLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestAddLibpodNotFoundBody) Validate

func (o *ManifestAddLibpodNotFoundBody) Validate(formats strfmt.Registry) error

Validate validates this manifest add libpod not found body

type ManifestAddLibpodOK

type ManifestAddLibpodOK struct {
	Payload *models.IDResponse
}

ManifestAddLibpodOK describes a response with status code 200, with default header values.

ManifestAddLibpodOK manifest add libpod o k

func NewManifestAddLibpodOK

func NewManifestAddLibpodOK() *ManifestAddLibpodOK

NewManifestAddLibpodOK creates a ManifestAddLibpodOK with default headers values

func (*ManifestAddLibpodOK) Error

func (o *ManifestAddLibpodOK) Error() string

func (*ManifestAddLibpodOK) GetPayload

func (o *ManifestAddLibpodOK) GetPayload() *models.IDResponse

func (*ManifestAddLibpodOK) IsClientError

func (o *ManifestAddLibpodOK) IsClientError() bool

IsClientError returns true when this manifest add libpod o k response has a 4xx status code

func (*ManifestAddLibpodOK) IsCode

func (o *ManifestAddLibpodOK) IsCode(code int) bool

IsCode returns true when this manifest add libpod o k response a status code equal to that given

func (*ManifestAddLibpodOK) IsRedirect

func (o *ManifestAddLibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest add libpod o k response has a 3xx status code

func (*ManifestAddLibpodOK) IsServerError

func (o *ManifestAddLibpodOK) IsServerError() bool

IsServerError returns true when this manifest add libpod o k response has a 5xx status code

func (*ManifestAddLibpodOK) IsSuccess

func (o *ManifestAddLibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest add libpod o k response has a 2xx status code

func (*ManifestAddLibpodOK) String

func (o *ManifestAddLibpodOK) String() string

type ManifestAddLibpodParams

type ManifestAddLibpodParams struct {

	/* Name.

	   the name or ID of the manifest
	*/
	Name string

	/* Options.

	   options for creating a manifest
	*/
	Options *models.ManifestAddOptions

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

ManifestAddLibpodParams contains all the parameters to send to the API endpoint

for the manifest add libpod operation.

Typically these are written to a http.Request.

func NewManifestAddLibpodParams

func NewManifestAddLibpodParams() *ManifestAddLibpodParams

NewManifestAddLibpodParams creates a new ManifestAddLibpodParams 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 NewManifestAddLibpodParamsWithContext

func NewManifestAddLibpodParamsWithContext(ctx context.Context) *ManifestAddLibpodParams

NewManifestAddLibpodParamsWithContext creates a new ManifestAddLibpodParams object with the ability to set a context for a request.

func NewManifestAddLibpodParamsWithHTTPClient

func NewManifestAddLibpodParamsWithHTTPClient(client *http.Client) *ManifestAddLibpodParams

NewManifestAddLibpodParamsWithHTTPClient creates a new ManifestAddLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestAddLibpodParamsWithTimeout

func NewManifestAddLibpodParamsWithTimeout(timeout time.Duration) *ManifestAddLibpodParams

NewManifestAddLibpodParamsWithTimeout creates a new ManifestAddLibpodParams object with the ability to set a timeout on a request.

func (*ManifestAddLibpodParams) SetContext

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

SetContext adds the context to the manifest add libpod params

func (*ManifestAddLibpodParams) SetDefaults

func (o *ManifestAddLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest add libpod params (not the query body).

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

func (*ManifestAddLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest add libpod params

func (*ManifestAddLibpodParams) SetName

func (o *ManifestAddLibpodParams) SetName(name string)

SetName adds the name to the manifest add libpod params

func (*ManifestAddLibpodParams) SetOptions

func (o *ManifestAddLibpodParams) SetOptions(options *models.ManifestAddOptions)

SetOptions adds the options to the manifest add libpod params

func (*ManifestAddLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest add libpod params

func (*ManifestAddLibpodParams) WithContext

WithContext adds the context to the manifest add libpod params

func (*ManifestAddLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest add libpod params (not the query body).

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

func (*ManifestAddLibpodParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the manifest add libpod params

func (*ManifestAddLibpodParams) WithName

WithName adds the name to the manifest add libpod params

func (*ManifestAddLibpodParams) WithOptions

WithOptions adds the options to the manifest add libpod params

func (*ManifestAddLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest add libpod params

func (*ManifestAddLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestAddLibpodReader

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

ManifestAddLibpodReader is a Reader for the ManifestAddLibpod structure.

func (*ManifestAddLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestCreateLibpodBadRequest

type ManifestCreateLibpodBadRequest struct {
	Payload *ManifestCreateLibpodBadRequestBody
}

ManifestCreateLibpodBadRequest describes a response with status code 400, with default header values.

Bad parameter in request

func NewManifestCreateLibpodBadRequest

func NewManifestCreateLibpodBadRequest() *ManifestCreateLibpodBadRequest

NewManifestCreateLibpodBadRequest creates a ManifestCreateLibpodBadRequest with default headers values

func (*ManifestCreateLibpodBadRequest) Error

func (*ManifestCreateLibpodBadRequest) GetPayload

func (*ManifestCreateLibpodBadRequest) IsClientError

func (o *ManifestCreateLibpodBadRequest) IsClientError() bool

IsClientError returns true when this manifest create libpod bad request response has a 4xx status code

func (*ManifestCreateLibpodBadRequest) IsCode

func (o *ManifestCreateLibpodBadRequest) IsCode(code int) bool

IsCode returns true when this manifest create libpod bad request response a status code equal to that given

func (*ManifestCreateLibpodBadRequest) IsRedirect

func (o *ManifestCreateLibpodBadRequest) IsRedirect() bool

IsRedirect returns true when this manifest create libpod bad request response has a 3xx status code

func (*ManifestCreateLibpodBadRequest) IsServerError

func (o *ManifestCreateLibpodBadRequest) IsServerError() bool

IsServerError returns true when this manifest create libpod bad request response has a 5xx status code

func (*ManifestCreateLibpodBadRequest) IsSuccess

func (o *ManifestCreateLibpodBadRequest) IsSuccess() bool

IsSuccess returns true when this manifest create libpod bad request response has a 2xx status code

func (*ManifestCreateLibpodBadRequest) String

type ManifestCreateLibpodBadRequestBody

type ManifestCreateLibpodBadRequestBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestCreateLibpodBadRequestBody manifest create libpod bad request body swagger:model ManifestCreateLibpodBadRequestBody

func (*ManifestCreateLibpodBadRequestBody) ContextValidate

func (o *ManifestCreateLibpodBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest create libpod bad request body based on context it is used

func (*ManifestCreateLibpodBadRequestBody) MarshalBinary

func (o *ManifestCreateLibpodBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestCreateLibpodBadRequestBody) UnmarshalBinary

func (o *ManifestCreateLibpodBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestCreateLibpodBadRequestBody) Validate

Validate validates this manifest create libpod bad request body

type ManifestCreateLibpodCreated

type ManifestCreateLibpodCreated struct {
	Payload *models.IDResponse
}

ManifestCreateLibpodCreated describes a response with status code 201, with default header values.

ManifestCreateLibpodCreated manifest create libpod created

func NewManifestCreateLibpodCreated

func NewManifestCreateLibpodCreated() *ManifestCreateLibpodCreated

NewManifestCreateLibpodCreated creates a ManifestCreateLibpodCreated with default headers values

func (*ManifestCreateLibpodCreated) Error

func (*ManifestCreateLibpodCreated) GetPayload

func (*ManifestCreateLibpodCreated) IsClientError

func (o *ManifestCreateLibpodCreated) IsClientError() bool

IsClientError returns true when this manifest create libpod created response has a 4xx status code

func (*ManifestCreateLibpodCreated) IsCode

func (o *ManifestCreateLibpodCreated) IsCode(code int) bool

IsCode returns true when this manifest create libpod created response a status code equal to that given

func (*ManifestCreateLibpodCreated) IsRedirect

func (o *ManifestCreateLibpodCreated) IsRedirect() bool

IsRedirect returns true when this manifest create libpod created response has a 3xx status code

func (*ManifestCreateLibpodCreated) IsServerError

func (o *ManifestCreateLibpodCreated) IsServerError() bool

IsServerError returns true when this manifest create libpod created response has a 5xx status code

func (*ManifestCreateLibpodCreated) IsSuccess

func (o *ManifestCreateLibpodCreated) IsSuccess() bool

IsSuccess returns true when this manifest create libpod created response has a 2xx status code

func (*ManifestCreateLibpodCreated) String

func (o *ManifestCreateLibpodCreated) String() string

type ManifestCreateLibpodInternalServerError

type ManifestCreateLibpodInternalServerError struct {
	Payload *ManifestCreateLibpodInternalServerErrorBody
}

ManifestCreateLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestCreateLibpodInternalServerError

func NewManifestCreateLibpodInternalServerError() *ManifestCreateLibpodInternalServerError

NewManifestCreateLibpodInternalServerError creates a ManifestCreateLibpodInternalServerError with default headers values

func (*ManifestCreateLibpodInternalServerError) Error

func (*ManifestCreateLibpodInternalServerError) GetPayload

func (*ManifestCreateLibpodInternalServerError) IsClientError

func (o *ManifestCreateLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest create libpod internal server error response has a 4xx status code

func (*ManifestCreateLibpodInternalServerError) IsCode

IsCode returns true when this manifest create libpod internal server error response a status code equal to that given

func (*ManifestCreateLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest create libpod internal server error response has a 3xx status code

func (*ManifestCreateLibpodInternalServerError) IsServerError

func (o *ManifestCreateLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest create libpod internal server error response has a 5xx status code

func (*ManifestCreateLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest create libpod internal server error response has a 2xx status code

func (*ManifestCreateLibpodInternalServerError) String

type ManifestCreateLibpodInternalServerErrorBody

type ManifestCreateLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestCreateLibpodInternalServerErrorBody manifest create libpod internal server error body swagger:model ManifestCreateLibpodInternalServerErrorBody

func (*ManifestCreateLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest create libpod internal server error body based on context it is used

func (*ManifestCreateLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestCreateLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestCreateLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestCreateLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestCreateLibpodInternalServerErrorBody) Validate

Validate validates this manifest create libpod internal server error body

type ManifestCreateLibpodNotFound

type ManifestCreateLibpodNotFound struct {
	Payload *ManifestCreateLibpodNotFoundBody
}

ManifestCreateLibpodNotFound describes a response with status code 404, with default header values.

No such image

func NewManifestCreateLibpodNotFound

func NewManifestCreateLibpodNotFound() *ManifestCreateLibpodNotFound

NewManifestCreateLibpodNotFound creates a ManifestCreateLibpodNotFound with default headers values

func (*ManifestCreateLibpodNotFound) Error

func (*ManifestCreateLibpodNotFound) GetPayload

func (*ManifestCreateLibpodNotFound) IsClientError

func (o *ManifestCreateLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest create libpod not found response has a 4xx status code

func (*ManifestCreateLibpodNotFound) IsCode

func (o *ManifestCreateLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest create libpod not found response a status code equal to that given

func (*ManifestCreateLibpodNotFound) IsRedirect

func (o *ManifestCreateLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest create libpod not found response has a 3xx status code

func (*ManifestCreateLibpodNotFound) IsServerError

func (o *ManifestCreateLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest create libpod not found response has a 5xx status code

func (*ManifestCreateLibpodNotFound) IsSuccess

func (o *ManifestCreateLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest create libpod not found response has a 2xx status code

func (*ManifestCreateLibpodNotFound) String

type ManifestCreateLibpodNotFoundBody

type ManifestCreateLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestCreateLibpodNotFoundBody manifest create libpod not found body swagger:model ManifestCreateLibpodNotFoundBody

func (*ManifestCreateLibpodNotFoundBody) ContextValidate

func (o *ManifestCreateLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest create libpod not found body based on context it is used

func (*ManifestCreateLibpodNotFoundBody) MarshalBinary

func (o *ManifestCreateLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestCreateLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestCreateLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestCreateLibpodNotFoundBody) Validate

Validate validates this manifest create libpod not found body

type ManifestCreateLibpodParams

type ManifestCreateLibpodParams struct {

	/* All.

	   add all contents if given list
	*/
	All *bool

	/* Images.

	     One or more names of an image or a manifest list. Repeat parameter as needed.

	Support for multiple images, as of version 4.0.0
	Alias of `image` is support for compatibility with < 4.0.0
	Response status code is 200 with < 4.0.0 for compatibility

	*/
	Images string

	/* Name.

	   manifest list or index name to create
	*/
	Name string

	/* Options.

	   options for new manifest
	*/
	Options *models.ManifestModifyOptions

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

ManifestCreateLibpodParams contains all the parameters to send to the API endpoint

for the manifest create libpod operation.

Typically these are written to a http.Request.

func NewManifestCreateLibpodParams

func NewManifestCreateLibpodParams() *ManifestCreateLibpodParams

NewManifestCreateLibpodParams creates a new ManifestCreateLibpodParams 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 NewManifestCreateLibpodParamsWithContext

func NewManifestCreateLibpodParamsWithContext(ctx context.Context) *ManifestCreateLibpodParams

NewManifestCreateLibpodParamsWithContext creates a new ManifestCreateLibpodParams object with the ability to set a context for a request.

func NewManifestCreateLibpodParamsWithHTTPClient

func NewManifestCreateLibpodParamsWithHTTPClient(client *http.Client) *ManifestCreateLibpodParams

NewManifestCreateLibpodParamsWithHTTPClient creates a new ManifestCreateLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestCreateLibpodParamsWithTimeout

func NewManifestCreateLibpodParamsWithTimeout(timeout time.Duration) *ManifestCreateLibpodParams

NewManifestCreateLibpodParamsWithTimeout creates a new ManifestCreateLibpodParams object with the ability to set a timeout on a request.

func (*ManifestCreateLibpodParams) SetAll

func (o *ManifestCreateLibpodParams) SetAll(all *bool)

SetAll adds the all to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetContext

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

SetContext adds the context to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetDefaults

func (o *ManifestCreateLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest create libpod params (not the query body).

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

func (*ManifestCreateLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetImages

func (o *ManifestCreateLibpodParams) SetImages(images string)

SetImages adds the images to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetName

func (o *ManifestCreateLibpodParams) SetName(name string)

SetName adds the name to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetOptions

SetOptions adds the options to the manifest create libpod params

func (*ManifestCreateLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithAll

WithAll adds the all to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithContext

WithContext adds the context to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest create libpod params (not the query body).

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

func (*ManifestCreateLibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithImages

WithImages adds the images to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithName

WithName adds the name to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithOptions

WithOptions adds the options to the manifest create libpod params

func (*ManifestCreateLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest create libpod params

func (*ManifestCreateLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestCreateLibpodReader

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

ManifestCreateLibpodReader is a Reader for the ManifestCreateLibpod structure.

func (*ManifestCreateLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestDeleteLibpodInternalServerError

type ManifestDeleteLibpodInternalServerError struct {
	Payload *ManifestDeleteLibpodInternalServerErrorBody
}

ManifestDeleteLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestDeleteLibpodInternalServerError

func NewManifestDeleteLibpodInternalServerError() *ManifestDeleteLibpodInternalServerError

NewManifestDeleteLibpodInternalServerError creates a ManifestDeleteLibpodInternalServerError with default headers values

func (*ManifestDeleteLibpodInternalServerError) Error

func (*ManifestDeleteLibpodInternalServerError) GetPayload

func (*ManifestDeleteLibpodInternalServerError) IsClientError

func (o *ManifestDeleteLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest delete libpod internal server error response has a 4xx status code

func (*ManifestDeleteLibpodInternalServerError) IsCode

IsCode returns true when this manifest delete libpod internal server error response a status code equal to that given

func (*ManifestDeleteLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest delete libpod internal server error response has a 3xx status code

func (*ManifestDeleteLibpodInternalServerError) IsServerError

func (o *ManifestDeleteLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest delete libpod internal server error response has a 5xx status code

func (*ManifestDeleteLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest delete libpod internal server error response has a 2xx status code

func (*ManifestDeleteLibpodInternalServerError) String

type ManifestDeleteLibpodInternalServerErrorBody

type ManifestDeleteLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestDeleteLibpodInternalServerErrorBody manifest delete libpod internal server error body swagger:model ManifestDeleteLibpodInternalServerErrorBody

func (*ManifestDeleteLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest delete libpod internal server error body based on context it is used

func (*ManifestDeleteLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestDeleteLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestDeleteLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestDeleteLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestDeleteLibpodInternalServerErrorBody) Validate

Validate validates this manifest delete libpod internal server error body

type ManifestDeleteLibpodNotFound

type ManifestDeleteLibpodNotFound struct {
	Payload *ManifestDeleteLibpodNotFoundBody
}

ManifestDeleteLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestDeleteLibpodNotFound

func NewManifestDeleteLibpodNotFound() *ManifestDeleteLibpodNotFound

NewManifestDeleteLibpodNotFound creates a ManifestDeleteLibpodNotFound with default headers values

func (*ManifestDeleteLibpodNotFound) Error

func (*ManifestDeleteLibpodNotFound) GetPayload

func (*ManifestDeleteLibpodNotFound) IsClientError

func (o *ManifestDeleteLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest delete libpod not found response has a 4xx status code

func (*ManifestDeleteLibpodNotFound) IsCode

func (o *ManifestDeleteLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest delete libpod not found response a status code equal to that given

func (*ManifestDeleteLibpodNotFound) IsRedirect

func (o *ManifestDeleteLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest delete libpod not found response has a 3xx status code

func (*ManifestDeleteLibpodNotFound) IsServerError

func (o *ManifestDeleteLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest delete libpod not found response has a 5xx status code

func (*ManifestDeleteLibpodNotFound) IsSuccess

func (o *ManifestDeleteLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest delete libpod not found response has a 2xx status code

func (*ManifestDeleteLibpodNotFound) String

type ManifestDeleteLibpodNotFoundBody

type ManifestDeleteLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestDeleteLibpodNotFoundBody manifest delete libpod not found body swagger:model ManifestDeleteLibpodNotFoundBody

func (*ManifestDeleteLibpodNotFoundBody) ContextValidate

func (o *ManifestDeleteLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest delete libpod not found body based on context it is used

func (*ManifestDeleteLibpodNotFoundBody) MarshalBinary

func (o *ManifestDeleteLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestDeleteLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestDeleteLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestDeleteLibpodNotFoundBody) Validate

Validate validates this manifest delete libpod not found body

type ManifestDeleteLibpodOK

type ManifestDeleteLibpodOK struct {
	Payload *models.LibpodImagesRemoveReport
}

ManifestDeleteLibpodOK describes a response with status code 200, with default header values.

Remove response

func NewManifestDeleteLibpodOK

func NewManifestDeleteLibpodOK() *ManifestDeleteLibpodOK

NewManifestDeleteLibpodOK creates a ManifestDeleteLibpodOK with default headers values

func (*ManifestDeleteLibpodOK) Error

func (o *ManifestDeleteLibpodOK) Error() string

func (*ManifestDeleteLibpodOK) GetPayload

func (*ManifestDeleteLibpodOK) IsClientError

func (o *ManifestDeleteLibpodOK) IsClientError() bool

IsClientError returns true when this manifest delete libpod o k response has a 4xx status code

func (*ManifestDeleteLibpodOK) IsCode

func (o *ManifestDeleteLibpodOK) IsCode(code int) bool

IsCode returns true when this manifest delete libpod o k response a status code equal to that given

func (*ManifestDeleteLibpodOK) IsRedirect

func (o *ManifestDeleteLibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest delete libpod o k response has a 3xx status code

func (*ManifestDeleteLibpodOK) IsServerError

func (o *ManifestDeleteLibpodOK) IsServerError() bool

IsServerError returns true when this manifest delete libpod o k response has a 5xx status code

func (*ManifestDeleteLibpodOK) IsSuccess

func (o *ManifestDeleteLibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest delete libpod o k response has a 2xx status code

func (*ManifestDeleteLibpodOK) String

func (o *ManifestDeleteLibpodOK) String() string

type ManifestDeleteLibpodParams

type ManifestDeleteLibpodParams struct {

	/* Name.

	   The name or ID of the  list to be deleted
	*/
	Name string

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

ManifestDeleteLibpodParams contains all the parameters to send to the API endpoint

for the manifest delete libpod operation.

Typically these are written to a http.Request.

func NewManifestDeleteLibpodParams

func NewManifestDeleteLibpodParams() *ManifestDeleteLibpodParams

NewManifestDeleteLibpodParams creates a new ManifestDeleteLibpodParams 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 NewManifestDeleteLibpodParamsWithContext

func NewManifestDeleteLibpodParamsWithContext(ctx context.Context) *ManifestDeleteLibpodParams

NewManifestDeleteLibpodParamsWithContext creates a new ManifestDeleteLibpodParams object with the ability to set a context for a request.

func NewManifestDeleteLibpodParamsWithHTTPClient

func NewManifestDeleteLibpodParamsWithHTTPClient(client *http.Client) *ManifestDeleteLibpodParams

NewManifestDeleteLibpodParamsWithHTTPClient creates a new ManifestDeleteLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestDeleteLibpodParamsWithTimeout

func NewManifestDeleteLibpodParamsWithTimeout(timeout time.Duration) *ManifestDeleteLibpodParams

NewManifestDeleteLibpodParamsWithTimeout creates a new ManifestDeleteLibpodParams object with the ability to set a timeout on a request.

func (*ManifestDeleteLibpodParams) SetContext

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

SetContext adds the context to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) SetDefaults

func (o *ManifestDeleteLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest delete libpod params (not the query body).

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

func (*ManifestDeleteLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) SetName

func (o *ManifestDeleteLibpodParams) SetName(name string)

SetName adds the name to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) WithContext

WithContext adds the context to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest delete libpod params (not the query body).

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

func (*ManifestDeleteLibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) WithName

WithName adds the name to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest delete libpod params

func (*ManifestDeleteLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestDeleteLibpodReader

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

ManifestDeleteLibpodReader is a Reader for the ManifestDeleteLibpod structure.

func (*ManifestDeleteLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestExistsLibpodInternalServerError

type ManifestExistsLibpodInternalServerError struct {
	Payload *ManifestExistsLibpodInternalServerErrorBody
}

ManifestExistsLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestExistsLibpodInternalServerError

func NewManifestExistsLibpodInternalServerError() *ManifestExistsLibpodInternalServerError

NewManifestExistsLibpodInternalServerError creates a ManifestExistsLibpodInternalServerError with default headers values

func (*ManifestExistsLibpodInternalServerError) Error

func (*ManifestExistsLibpodInternalServerError) GetPayload

func (*ManifestExistsLibpodInternalServerError) IsClientError

func (o *ManifestExistsLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest exists libpod internal server error response has a 4xx status code

func (*ManifestExistsLibpodInternalServerError) IsCode

IsCode returns true when this manifest exists libpod internal server error response a status code equal to that given

func (*ManifestExistsLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest exists libpod internal server error response has a 3xx status code

func (*ManifestExistsLibpodInternalServerError) IsServerError

func (o *ManifestExistsLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest exists libpod internal server error response has a 5xx status code

func (*ManifestExistsLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest exists libpod internal server error response has a 2xx status code

func (*ManifestExistsLibpodInternalServerError) String

type ManifestExistsLibpodInternalServerErrorBody

type ManifestExistsLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestExistsLibpodInternalServerErrorBody manifest exists libpod internal server error body swagger:model ManifestExistsLibpodInternalServerErrorBody

func (*ManifestExistsLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest exists libpod internal server error body based on context it is used

func (*ManifestExistsLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestExistsLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestExistsLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestExistsLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestExistsLibpodInternalServerErrorBody) Validate

Validate validates this manifest exists libpod internal server error body

type ManifestExistsLibpodNoContent

type ManifestExistsLibpodNoContent struct {
}

ManifestExistsLibpodNoContent describes a response with status code 204, with default header values.

manifest list exists

func NewManifestExistsLibpodNoContent

func NewManifestExistsLibpodNoContent() *ManifestExistsLibpodNoContent

NewManifestExistsLibpodNoContent creates a ManifestExistsLibpodNoContent with default headers values

func (*ManifestExistsLibpodNoContent) Error

func (*ManifestExistsLibpodNoContent) IsClientError

func (o *ManifestExistsLibpodNoContent) IsClientError() bool

IsClientError returns true when this manifest exists libpod no content response has a 4xx status code

func (*ManifestExistsLibpodNoContent) IsCode

func (o *ManifestExistsLibpodNoContent) IsCode(code int) bool

IsCode returns true when this manifest exists libpod no content response a status code equal to that given

func (*ManifestExistsLibpodNoContent) IsRedirect

func (o *ManifestExistsLibpodNoContent) IsRedirect() bool

IsRedirect returns true when this manifest exists libpod no content response has a 3xx status code

func (*ManifestExistsLibpodNoContent) IsServerError

func (o *ManifestExistsLibpodNoContent) IsServerError() bool

IsServerError returns true when this manifest exists libpod no content response has a 5xx status code

func (*ManifestExistsLibpodNoContent) IsSuccess

func (o *ManifestExistsLibpodNoContent) IsSuccess() bool

IsSuccess returns true when this manifest exists libpod no content response has a 2xx status code

func (*ManifestExistsLibpodNoContent) String

type ManifestExistsLibpodNotFound

type ManifestExistsLibpodNotFound struct {
	Payload *ManifestExistsLibpodNotFoundBody
}

ManifestExistsLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestExistsLibpodNotFound

func NewManifestExistsLibpodNotFound() *ManifestExistsLibpodNotFound

NewManifestExistsLibpodNotFound creates a ManifestExistsLibpodNotFound with default headers values

func (*ManifestExistsLibpodNotFound) Error

func (*ManifestExistsLibpodNotFound) GetPayload

func (*ManifestExistsLibpodNotFound) IsClientError

func (o *ManifestExistsLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest exists libpod not found response has a 4xx status code

func (*ManifestExistsLibpodNotFound) IsCode

func (o *ManifestExistsLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest exists libpod not found response a status code equal to that given

func (*ManifestExistsLibpodNotFound) IsRedirect

func (o *ManifestExistsLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest exists libpod not found response has a 3xx status code

func (*ManifestExistsLibpodNotFound) IsServerError

func (o *ManifestExistsLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest exists libpod not found response has a 5xx status code

func (*ManifestExistsLibpodNotFound) IsSuccess

func (o *ManifestExistsLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest exists libpod not found response has a 2xx status code

func (*ManifestExistsLibpodNotFound) String

type ManifestExistsLibpodNotFoundBody

type ManifestExistsLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestExistsLibpodNotFoundBody manifest exists libpod not found body swagger:model ManifestExistsLibpodNotFoundBody

func (*ManifestExistsLibpodNotFoundBody) ContextValidate

func (o *ManifestExistsLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest exists libpod not found body based on context it is used

func (*ManifestExistsLibpodNotFoundBody) MarshalBinary

func (o *ManifestExistsLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestExistsLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestExistsLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestExistsLibpodNotFoundBody) Validate

Validate validates this manifest exists libpod not found body

type ManifestExistsLibpodParams

type ManifestExistsLibpodParams struct {

	/* Name.

	   the name or ID of the manifest list
	*/
	Name string

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

ManifestExistsLibpodParams contains all the parameters to send to the API endpoint

for the manifest exists libpod operation.

Typically these are written to a http.Request.

func NewManifestExistsLibpodParams

func NewManifestExistsLibpodParams() *ManifestExistsLibpodParams

NewManifestExistsLibpodParams creates a new ManifestExistsLibpodParams 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 NewManifestExistsLibpodParamsWithContext

func NewManifestExistsLibpodParamsWithContext(ctx context.Context) *ManifestExistsLibpodParams

NewManifestExistsLibpodParamsWithContext creates a new ManifestExistsLibpodParams object with the ability to set a context for a request.

func NewManifestExistsLibpodParamsWithHTTPClient

func NewManifestExistsLibpodParamsWithHTTPClient(client *http.Client) *ManifestExistsLibpodParams

NewManifestExistsLibpodParamsWithHTTPClient creates a new ManifestExistsLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestExistsLibpodParamsWithTimeout

func NewManifestExistsLibpodParamsWithTimeout(timeout time.Duration) *ManifestExistsLibpodParams

NewManifestExistsLibpodParamsWithTimeout creates a new ManifestExistsLibpodParams object with the ability to set a timeout on a request.

func (*ManifestExistsLibpodParams) SetContext

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

SetContext adds the context to the manifest exists libpod params

func (*ManifestExistsLibpodParams) SetDefaults

func (o *ManifestExistsLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest exists libpod params (not the query body).

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

func (*ManifestExistsLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest exists libpod params

func (*ManifestExistsLibpodParams) SetName

func (o *ManifestExistsLibpodParams) SetName(name string)

SetName adds the name to the manifest exists libpod params

func (*ManifestExistsLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest exists libpod params

func (*ManifestExistsLibpodParams) WithContext

WithContext adds the context to the manifest exists libpod params

func (*ManifestExistsLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest exists libpod params (not the query body).

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

func (*ManifestExistsLibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest exists libpod params

func (*ManifestExistsLibpodParams) WithName

WithName adds the name to the manifest exists libpod params

func (*ManifestExistsLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest exists libpod params

func (*ManifestExistsLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestExistsLibpodReader

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

ManifestExistsLibpodReader is a Reader for the ManifestExistsLibpod structure.

func (*ManifestExistsLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestInspectLibpodInternalServerError

type ManifestInspectLibpodInternalServerError struct {
	Payload *ManifestInspectLibpodInternalServerErrorBody
}

ManifestInspectLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestInspectLibpodInternalServerError

func NewManifestInspectLibpodInternalServerError() *ManifestInspectLibpodInternalServerError

NewManifestInspectLibpodInternalServerError creates a ManifestInspectLibpodInternalServerError with default headers values

func (*ManifestInspectLibpodInternalServerError) Error

func (*ManifestInspectLibpodInternalServerError) GetPayload

func (*ManifestInspectLibpodInternalServerError) IsClientError

IsClientError returns true when this manifest inspect libpod internal server error response has a 4xx status code

func (*ManifestInspectLibpodInternalServerError) IsCode

IsCode returns true when this manifest inspect libpod internal server error response a status code equal to that given

func (*ManifestInspectLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest inspect libpod internal server error response has a 3xx status code

func (*ManifestInspectLibpodInternalServerError) IsServerError

IsServerError returns true when this manifest inspect libpod internal server error response has a 5xx status code

func (*ManifestInspectLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest inspect libpod internal server error response has a 2xx status code

func (*ManifestInspectLibpodInternalServerError) String

type ManifestInspectLibpodInternalServerErrorBody

type ManifestInspectLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestInspectLibpodInternalServerErrorBody manifest inspect libpod internal server error body swagger:model ManifestInspectLibpodInternalServerErrorBody

func (*ManifestInspectLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest inspect libpod internal server error body based on context it is used

func (*ManifestInspectLibpodInternalServerErrorBody) MarshalBinary

MarshalBinary interface implementation

func (*ManifestInspectLibpodInternalServerErrorBody) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ManifestInspectLibpodInternalServerErrorBody) Validate

Validate validates this manifest inspect libpod internal server error body

type ManifestInspectLibpodNotFound

type ManifestInspectLibpodNotFound struct {
	Payload *ManifestInspectLibpodNotFoundBody
}

ManifestInspectLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestInspectLibpodNotFound

func NewManifestInspectLibpodNotFound() *ManifestInspectLibpodNotFound

NewManifestInspectLibpodNotFound creates a ManifestInspectLibpodNotFound with default headers values

func (*ManifestInspectLibpodNotFound) Error

func (*ManifestInspectLibpodNotFound) GetPayload

func (*ManifestInspectLibpodNotFound) IsClientError

func (o *ManifestInspectLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest inspect libpod not found response has a 4xx status code

func (*ManifestInspectLibpodNotFound) IsCode

func (o *ManifestInspectLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest inspect libpod not found response a status code equal to that given

func (*ManifestInspectLibpodNotFound) IsRedirect

func (o *ManifestInspectLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest inspect libpod not found response has a 3xx status code

func (*ManifestInspectLibpodNotFound) IsServerError

func (o *ManifestInspectLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest inspect libpod not found response has a 5xx status code

func (*ManifestInspectLibpodNotFound) IsSuccess

func (o *ManifestInspectLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest inspect libpod not found response has a 2xx status code

func (*ManifestInspectLibpodNotFound) String

type ManifestInspectLibpodNotFoundBody

type ManifestInspectLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestInspectLibpodNotFoundBody manifest inspect libpod not found body swagger:model ManifestInspectLibpodNotFoundBody

func (*ManifestInspectLibpodNotFoundBody) ContextValidate

func (o *ManifestInspectLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest inspect libpod not found body based on context it is used

func (*ManifestInspectLibpodNotFoundBody) MarshalBinary

func (o *ManifestInspectLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestInspectLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestInspectLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestInspectLibpodNotFoundBody) Validate

Validate validates this manifest inspect libpod not found body

type ManifestInspectLibpodOK

type ManifestInspectLibpodOK struct {
	Payload *models.Schema2List
}

ManifestInspectLibpodOK describes a response with status code 200, with default header values.

Inspect Manifest

func NewManifestInspectLibpodOK

func NewManifestInspectLibpodOK() *ManifestInspectLibpodOK

NewManifestInspectLibpodOK creates a ManifestInspectLibpodOK with default headers values

func (*ManifestInspectLibpodOK) Error

func (o *ManifestInspectLibpodOK) Error() string

func (*ManifestInspectLibpodOK) GetPayload

func (o *ManifestInspectLibpodOK) GetPayload() *models.Schema2List

func (*ManifestInspectLibpodOK) IsClientError

func (o *ManifestInspectLibpodOK) IsClientError() bool

IsClientError returns true when this manifest inspect libpod o k response has a 4xx status code

func (*ManifestInspectLibpodOK) IsCode

func (o *ManifestInspectLibpodOK) IsCode(code int) bool

IsCode returns true when this manifest inspect libpod o k response a status code equal to that given

func (*ManifestInspectLibpodOK) IsRedirect

func (o *ManifestInspectLibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest inspect libpod o k response has a 3xx status code

func (*ManifestInspectLibpodOK) IsServerError

func (o *ManifestInspectLibpodOK) IsServerError() bool

IsServerError returns true when this manifest inspect libpod o k response has a 5xx status code

func (*ManifestInspectLibpodOK) IsSuccess

func (o *ManifestInspectLibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest inspect libpod o k response has a 2xx status code

func (*ManifestInspectLibpodOK) String

func (o *ManifestInspectLibpodOK) String() string

type ManifestInspectLibpodParams

type ManifestInspectLibpodParams struct {

	/* Name.

	   the name or ID of the manifest list
	*/
	Name string

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

ManifestInspectLibpodParams contains all the parameters to send to the API endpoint

for the manifest inspect libpod operation.

Typically these are written to a http.Request.

func NewManifestInspectLibpodParams

func NewManifestInspectLibpodParams() *ManifestInspectLibpodParams

NewManifestInspectLibpodParams creates a new ManifestInspectLibpodParams 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 NewManifestInspectLibpodParamsWithContext

func NewManifestInspectLibpodParamsWithContext(ctx context.Context) *ManifestInspectLibpodParams

NewManifestInspectLibpodParamsWithContext creates a new ManifestInspectLibpodParams object with the ability to set a context for a request.

func NewManifestInspectLibpodParamsWithHTTPClient

func NewManifestInspectLibpodParamsWithHTTPClient(client *http.Client) *ManifestInspectLibpodParams

NewManifestInspectLibpodParamsWithHTTPClient creates a new ManifestInspectLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestInspectLibpodParamsWithTimeout

func NewManifestInspectLibpodParamsWithTimeout(timeout time.Duration) *ManifestInspectLibpodParams

NewManifestInspectLibpodParamsWithTimeout creates a new ManifestInspectLibpodParams object with the ability to set a timeout on a request.

func (*ManifestInspectLibpodParams) SetContext

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

SetContext adds the context to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) SetDefaults

func (o *ManifestInspectLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest inspect libpod params (not the query body).

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

func (*ManifestInspectLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) SetName

func (o *ManifestInspectLibpodParams) SetName(name string)

SetName adds the name to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) WithContext

WithContext adds the context to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest inspect libpod params (not the query body).

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

func (*ManifestInspectLibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) WithName

WithName adds the name to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest inspect libpod params

func (*ManifestInspectLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestInspectLibpodReader

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

ManifestInspectLibpodReader is a Reader for the ManifestInspectLibpod structure.

func (*ManifestInspectLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestModifyLibpodBadRequest

type ManifestModifyLibpodBadRequest struct {
	Payload *ManifestModifyLibpodBadRequestBody
}

ManifestModifyLibpodBadRequest describes a response with status code 400, with default header values.

Bad parameter in request

func NewManifestModifyLibpodBadRequest

func NewManifestModifyLibpodBadRequest() *ManifestModifyLibpodBadRequest

NewManifestModifyLibpodBadRequest creates a ManifestModifyLibpodBadRequest with default headers values

func (*ManifestModifyLibpodBadRequest) Error

func (*ManifestModifyLibpodBadRequest) GetPayload

func (*ManifestModifyLibpodBadRequest) IsClientError

func (o *ManifestModifyLibpodBadRequest) IsClientError() bool

IsClientError returns true when this manifest modify libpod bad request response has a 4xx status code

func (*ManifestModifyLibpodBadRequest) IsCode

func (o *ManifestModifyLibpodBadRequest) IsCode(code int) bool

IsCode returns true when this manifest modify libpod bad request response a status code equal to that given

func (*ManifestModifyLibpodBadRequest) IsRedirect

func (o *ManifestModifyLibpodBadRequest) IsRedirect() bool

IsRedirect returns true when this manifest modify libpod bad request response has a 3xx status code

func (*ManifestModifyLibpodBadRequest) IsServerError

func (o *ManifestModifyLibpodBadRequest) IsServerError() bool

IsServerError returns true when this manifest modify libpod bad request response has a 5xx status code

func (*ManifestModifyLibpodBadRequest) IsSuccess

func (o *ManifestModifyLibpodBadRequest) IsSuccess() bool

IsSuccess returns true when this manifest modify libpod bad request response has a 2xx status code

func (*ManifestModifyLibpodBadRequest) String

type ManifestModifyLibpodBadRequestBody

type ManifestModifyLibpodBadRequestBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestModifyLibpodBadRequestBody manifest modify libpod bad request body swagger:model ManifestModifyLibpodBadRequestBody

func (*ManifestModifyLibpodBadRequestBody) ContextValidate

func (o *ManifestModifyLibpodBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest modify libpod bad request body based on context it is used

func (*ManifestModifyLibpodBadRequestBody) MarshalBinary

func (o *ManifestModifyLibpodBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestModifyLibpodBadRequestBody) UnmarshalBinary

func (o *ManifestModifyLibpodBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestModifyLibpodBadRequestBody) Validate

Validate validates this manifest modify libpod bad request body

type ManifestModifyLibpodConflict

type ManifestModifyLibpodConflict struct {
	Payload *models.ManifestModifyReport
}

ManifestModifyLibpodConflict describes a response with status code 409, with default header values.

Operation had partial success, both Images and Errors may have members

func NewManifestModifyLibpodConflict

func NewManifestModifyLibpodConflict() *ManifestModifyLibpodConflict

NewManifestModifyLibpodConflict creates a ManifestModifyLibpodConflict with default headers values

func (*ManifestModifyLibpodConflict) Error

func (*ManifestModifyLibpodConflict) GetPayload

func (*ManifestModifyLibpodConflict) IsClientError

func (o *ManifestModifyLibpodConflict) IsClientError() bool

IsClientError returns true when this manifest modify libpod conflict response has a 4xx status code

func (*ManifestModifyLibpodConflict) IsCode

func (o *ManifestModifyLibpodConflict) IsCode(code int) bool

IsCode returns true when this manifest modify libpod conflict response a status code equal to that given

func (*ManifestModifyLibpodConflict) IsRedirect

func (o *ManifestModifyLibpodConflict) IsRedirect() bool

IsRedirect returns true when this manifest modify libpod conflict response has a 3xx status code

func (*ManifestModifyLibpodConflict) IsServerError

func (o *ManifestModifyLibpodConflict) IsServerError() bool

IsServerError returns true when this manifest modify libpod conflict response has a 5xx status code

func (*ManifestModifyLibpodConflict) IsSuccess

func (o *ManifestModifyLibpodConflict) IsSuccess() bool

IsSuccess returns true when this manifest modify libpod conflict response has a 2xx status code

func (*ManifestModifyLibpodConflict) String

type ManifestModifyLibpodInternalServerError

type ManifestModifyLibpodInternalServerError struct {
	Payload *ManifestModifyLibpodInternalServerErrorBody
}

ManifestModifyLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestModifyLibpodInternalServerError

func NewManifestModifyLibpodInternalServerError() *ManifestModifyLibpodInternalServerError

NewManifestModifyLibpodInternalServerError creates a ManifestModifyLibpodInternalServerError with default headers values

func (*ManifestModifyLibpodInternalServerError) Error

func (*ManifestModifyLibpodInternalServerError) GetPayload

func (*ManifestModifyLibpodInternalServerError) IsClientError

func (o *ManifestModifyLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest modify libpod internal server error response has a 4xx status code

func (*ManifestModifyLibpodInternalServerError) IsCode

IsCode returns true when this manifest modify libpod internal server error response a status code equal to that given

func (*ManifestModifyLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest modify libpod internal server error response has a 3xx status code

func (*ManifestModifyLibpodInternalServerError) IsServerError

func (o *ManifestModifyLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest modify libpod internal server error response has a 5xx status code

func (*ManifestModifyLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest modify libpod internal server error response has a 2xx status code

func (*ManifestModifyLibpodInternalServerError) String

type ManifestModifyLibpodInternalServerErrorBody

type ManifestModifyLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestModifyLibpodInternalServerErrorBody manifest modify libpod internal server error body swagger:model ManifestModifyLibpodInternalServerErrorBody

func (*ManifestModifyLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest modify libpod internal server error body based on context it is used

func (*ManifestModifyLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestModifyLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestModifyLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestModifyLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestModifyLibpodInternalServerErrorBody) Validate

Validate validates this manifest modify libpod internal server error body

type ManifestModifyLibpodNotFound

type ManifestModifyLibpodNotFound struct {
	Payload *ManifestModifyLibpodNotFoundBody
}

ManifestModifyLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestModifyLibpodNotFound

func NewManifestModifyLibpodNotFound() *ManifestModifyLibpodNotFound

NewManifestModifyLibpodNotFound creates a ManifestModifyLibpodNotFound with default headers values

func (*ManifestModifyLibpodNotFound) Error

func (*ManifestModifyLibpodNotFound) GetPayload

func (*ManifestModifyLibpodNotFound) IsClientError

func (o *ManifestModifyLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest modify libpod not found response has a 4xx status code

func (*ManifestModifyLibpodNotFound) IsCode

func (o *ManifestModifyLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest modify libpod not found response a status code equal to that given

func (*ManifestModifyLibpodNotFound) IsRedirect

func (o *ManifestModifyLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest modify libpod not found response has a 3xx status code

func (*ManifestModifyLibpodNotFound) IsServerError

func (o *ManifestModifyLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest modify libpod not found response has a 5xx status code

func (*ManifestModifyLibpodNotFound) IsSuccess

func (o *ManifestModifyLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest modify libpod not found response has a 2xx status code

func (*ManifestModifyLibpodNotFound) String

type ManifestModifyLibpodNotFoundBody

type ManifestModifyLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestModifyLibpodNotFoundBody manifest modify libpod not found body swagger:model ManifestModifyLibpodNotFoundBody

func (*ManifestModifyLibpodNotFoundBody) ContextValidate

func (o *ManifestModifyLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest modify libpod not found body based on context it is used

func (*ManifestModifyLibpodNotFoundBody) MarshalBinary

func (o *ManifestModifyLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestModifyLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestModifyLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestModifyLibpodNotFoundBody) Validate

Validate validates this manifest modify libpod not found body

type ManifestModifyLibpodOK

type ManifestModifyLibpodOK struct {
	Payload *models.ManifestModifyReport
}

ManifestModifyLibpodOK describes a response with status code 200, with default header values.

ManifestModifyLibpodOK manifest modify libpod o k

func NewManifestModifyLibpodOK

func NewManifestModifyLibpodOK() *ManifestModifyLibpodOK

NewManifestModifyLibpodOK creates a ManifestModifyLibpodOK with default headers values

func (*ManifestModifyLibpodOK) Error

func (o *ManifestModifyLibpodOK) Error() string

func (*ManifestModifyLibpodOK) GetPayload

func (*ManifestModifyLibpodOK) IsClientError

func (o *ManifestModifyLibpodOK) IsClientError() bool

IsClientError returns true when this manifest modify libpod o k response has a 4xx status code

func (*ManifestModifyLibpodOK) IsCode

func (o *ManifestModifyLibpodOK) IsCode(code int) bool

IsCode returns true when this manifest modify libpod o k response a status code equal to that given

func (*ManifestModifyLibpodOK) IsRedirect

func (o *ManifestModifyLibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest modify libpod o k response has a 3xx status code

func (*ManifestModifyLibpodOK) IsServerError

func (o *ManifestModifyLibpodOK) IsServerError() bool

IsServerError returns true when this manifest modify libpod o k response has a 5xx status code

func (*ManifestModifyLibpodOK) IsSuccess

func (o *ManifestModifyLibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest modify libpod o k response has a 2xx status code

func (*ManifestModifyLibpodOK) String

func (o *ManifestModifyLibpodOK) String() string

type ManifestModifyLibpodParams

type ManifestModifyLibpodParams struct {

	/* Name.

	   the name or ID of the manifest
	*/
	Name string

	/* Options.

	   options for mutating a manifest
	*/
	Options *models.ManifestModifyOptions

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

ManifestModifyLibpodParams contains all the parameters to send to the API endpoint

for the manifest modify libpod operation.

Typically these are written to a http.Request.

func NewManifestModifyLibpodParams

func NewManifestModifyLibpodParams() *ManifestModifyLibpodParams

NewManifestModifyLibpodParams creates a new ManifestModifyLibpodParams 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 NewManifestModifyLibpodParamsWithContext

func NewManifestModifyLibpodParamsWithContext(ctx context.Context) *ManifestModifyLibpodParams

NewManifestModifyLibpodParamsWithContext creates a new ManifestModifyLibpodParams object with the ability to set a context for a request.

func NewManifestModifyLibpodParamsWithHTTPClient

func NewManifestModifyLibpodParamsWithHTTPClient(client *http.Client) *ManifestModifyLibpodParams

NewManifestModifyLibpodParamsWithHTTPClient creates a new ManifestModifyLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestModifyLibpodParamsWithTimeout

func NewManifestModifyLibpodParamsWithTimeout(timeout time.Duration) *ManifestModifyLibpodParams

NewManifestModifyLibpodParamsWithTimeout creates a new ManifestModifyLibpodParams object with the ability to set a timeout on a request.

func (*ManifestModifyLibpodParams) SetContext

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

SetContext adds the context to the manifest modify libpod params

func (*ManifestModifyLibpodParams) SetDefaults

func (o *ManifestModifyLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest modify libpod params (not the query body).

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

func (*ManifestModifyLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest modify libpod params

func (*ManifestModifyLibpodParams) SetName

func (o *ManifestModifyLibpodParams) SetName(name string)

SetName adds the name to the manifest modify libpod params

func (*ManifestModifyLibpodParams) SetOptions

SetOptions adds the options to the manifest modify libpod params

func (*ManifestModifyLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WithContext

WithContext adds the context to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest modify libpod params (not the query body).

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

func (*ManifestModifyLibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WithName

WithName adds the name to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WithOptions

WithOptions adds the options to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest modify libpod params

func (*ManifestModifyLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestModifyLibpodReader

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

ManifestModifyLibpodReader is a Reader for the ManifestModifyLibpod structure.

func (*ManifestModifyLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestPushLibpodBadRequest

type ManifestPushLibpodBadRequest struct {
	Payload *ManifestPushLibpodBadRequestBody
}

ManifestPushLibpodBadRequest describes a response with status code 400, with default header values.

Bad parameter in request

func NewManifestPushLibpodBadRequest

func NewManifestPushLibpodBadRequest() *ManifestPushLibpodBadRequest

NewManifestPushLibpodBadRequest creates a ManifestPushLibpodBadRequest with default headers values

func (*ManifestPushLibpodBadRequest) Error

func (*ManifestPushLibpodBadRequest) GetPayload

func (*ManifestPushLibpodBadRequest) IsClientError

func (o *ManifestPushLibpodBadRequest) IsClientError() bool

IsClientError returns true when this manifest push libpod bad request response has a 4xx status code

func (*ManifestPushLibpodBadRequest) IsCode

func (o *ManifestPushLibpodBadRequest) IsCode(code int) bool

IsCode returns true when this manifest push libpod bad request response a status code equal to that given

func (*ManifestPushLibpodBadRequest) IsRedirect

func (o *ManifestPushLibpodBadRequest) IsRedirect() bool

IsRedirect returns true when this manifest push libpod bad request response has a 3xx status code

func (*ManifestPushLibpodBadRequest) IsServerError

func (o *ManifestPushLibpodBadRequest) IsServerError() bool

IsServerError returns true when this manifest push libpod bad request response has a 5xx status code

func (*ManifestPushLibpodBadRequest) IsSuccess

func (o *ManifestPushLibpodBadRequest) IsSuccess() bool

IsSuccess returns true when this manifest push libpod bad request response has a 2xx status code

func (*ManifestPushLibpodBadRequest) String

type ManifestPushLibpodBadRequestBody

type ManifestPushLibpodBadRequestBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushLibpodBadRequestBody manifest push libpod bad request body swagger:model ManifestPushLibpodBadRequestBody

func (*ManifestPushLibpodBadRequestBody) ContextValidate

func (o *ManifestPushLibpodBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest push libpod bad request body based on context it is used

func (*ManifestPushLibpodBadRequestBody) MarshalBinary

func (o *ManifestPushLibpodBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushLibpodBadRequestBody) UnmarshalBinary

func (o *ManifestPushLibpodBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushLibpodBadRequestBody) Validate

Validate validates this manifest push libpod bad request body

type ManifestPushLibpodInternalServerError

type ManifestPushLibpodInternalServerError struct {
	Payload *ManifestPushLibpodInternalServerErrorBody
}

ManifestPushLibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestPushLibpodInternalServerError

func NewManifestPushLibpodInternalServerError() *ManifestPushLibpodInternalServerError

NewManifestPushLibpodInternalServerError creates a ManifestPushLibpodInternalServerError with default headers values

func (*ManifestPushLibpodInternalServerError) Error

func (*ManifestPushLibpodInternalServerError) GetPayload

func (*ManifestPushLibpodInternalServerError) IsClientError

func (o *ManifestPushLibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest push libpod internal server error response has a 4xx status code

func (*ManifestPushLibpodInternalServerError) IsCode

IsCode returns true when this manifest push libpod internal server error response a status code equal to that given

func (*ManifestPushLibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest push libpod internal server error response has a 3xx status code

func (*ManifestPushLibpodInternalServerError) IsServerError

func (o *ManifestPushLibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest push libpod internal server error response has a 5xx status code

func (*ManifestPushLibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest push libpod internal server error response has a 2xx status code

func (*ManifestPushLibpodInternalServerError) String

type ManifestPushLibpodInternalServerErrorBody

type ManifestPushLibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushLibpodInternalServerErrorBody manifest push libpod internal server error body swagger:model ManifestPushLibpodInternalServerErrorBody

func (*ManifestPushLibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest push libpod internal server error body based on context it is used

func (*ManifestPushLibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestPushLibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushLibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestPushLibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushLibpodInternalServerErrorBody) Validate

Validate validates this manifest push libpod internal server error body

type ManifestPushLibpodNotFound

type ManifestPushLibpodNotFound struct {
	Payload *ManifestPushLibpodNotFoundBody
}

ManifestPushLibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestPushLibpodNotFound

func NewManifestPushLibpodNotFound() *ManifestPushLibpodNotFound

NewManifestPushLibpodNotFound creates a ManifestPushLibpodNotFound with default headers values

func (*ManifestPushLibpodNotFound) Error

func (*ManifestPushLibpodNotFound) GetPayload

func (*ManifestPushLibpodNotFound) IsClientError

func (o *ManifestPushLibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest push libpod not found response has a 4xx status code

func (*ManifestPushLibpodNotFound) IsCode

func (o *ManifestPushLibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest push libpod not found response a status code equal to that given

func (*ManifestPushLibpodNotFound) IsRedirect

func (o *ManifestPushLibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest push libpod not found response has a 3xx status code

func (*ManifestPushLibpodNotFound) IsServerError

func (o *ManifestPushLibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest push libpod not found response has a 5xx status code

func (*ManifestPushLibpodNotFound) IsSuccess

func (o *ManifestPushLibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest push libpod not found response has a 2xx status code

func (*ManifestPushLibpodNotFound) String

func (o *ManifestPushLibpodNotFound) String() string

type ManifestPushLibpodNotFoundBody

type ManifestPushLibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushLibpodNotFoundBody manifest push libpod not found body swagger:model ManifestPushLibpodNotFoundBody

func (*ManifestPushLibpodNotFoundBody) ContextValidate

func (o *ManifestPushLibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest push libpod not found body based on context it is used

func (*ManifestPushLibpodNotFoundBody) MarshalBinary

func (o *ManifestPushLibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushLibpodNotFoundBody) UnmarshalBinary

func (o *ManifestPushLibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushLibpodNotFoundBody) Validate

func (o *ManifestPushLibpodNotFoundBody) Validate(formats strfmt.Registry) error

Validate validates this manifest push libpod not found body

type ManifestPushLibpodOK

type ManifestPushLibpodOK struct {
	Payload *models.IDResponse
}

ManifestPushLibpodOK describes a response with status code 200, with default header values.

ManifestPushLibpodOK manifest push libpod o k

func NewManifestPushLibpodOK

func NewManifestPushLibpodOK() *ManifestPushLibpodOK

NewManifestPushLibpodOK creates a ManifestPushLibpodOK with default headers values

func (*ManifestPushLibpodOK) Error

func (o *ManifestPushLibpodOK) Error() string

func (*ManifestPushLibpodOK) GetPayload

func (o *ManifestPushLibpodOK) GetPayload() *models.IDResponse

func (*ManifestPushLibpodOK) IsClientError

func (o *ManifestPushLibpodOK) IsClientError() bool

IsClientError returns true when this manifest push libpod o k response has a 4xx status code

func (*ManifestPushLibpodOK) IsCode

func (o *ManifestPushLibpodOK) IsCode(code int) bool

IsCode returns true when this manifest push libpod o k response a status code equal to that given

func (*ManifestPushLibpodOK) IsRedirect

func (o *ManifestPushLibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest push libpod o k response has a 3xx status code

func (*ManifestPushLibpodOK) IsServerError

func (o *ManifestPushLibpodOK) IsServerError() bool

IsServerError returns true when this manifest push libpod o k response has a 5xx status code

func (*ManifestPushLibpodOK) IsSuccess

func (o *ManifestPushLibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest push libpod o k response has a 2xx status code

func (*ManifestPushLibpodOK) String

func (o *ManifestPushLibpodOK) String() string

type ManifestPushLibpodParams

type ManifestPushLibpodParams struct {

	/* All.

	   push all images
	*/
	All *bool

	/* Destination.

	   the registry for the manifest list
	*/
	Destination string

	/* Name.

	   the name or ID of the manifest list
	*/
	Name string

	/* TLSVerify.

	   skip TLS verification for registries
	*/
	TLSVerify *bool

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

ManifestPushLibpodParams contains all the parameters to send to the API endpoint

for the manifest push libpod operation.

Typically these are written to a http.Request.

func NewManifestPushLibpodParams

func NewManifestPushLibpodParams() *ManifestPushLibpodParams

NewManifestPushLibpodParams creates a new ManifestPushLibpodParams 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 NewManifestPushLibpodParamsWithContext

func NewManifestPushLibpodParamsWithContext(ctx context.Context) *ManifestPushLibpodParams

NewManifestPushLibpodParamsWithContext creates a new ManifestPushLibpodParams object with the ability to set a context for a request.

func NewManifestPushLibpodParamsWithHTTPClient

func NewManifestPushLibpodParamsWithHTTPClient(client *http.Client) *ManifestPushLibpodParams

NewManifestPushLibpodParamsWithHTTPClient creates a new ManifestPushLibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestPushLibpodParamsWithTimeout

func NewManifestPushLibpodParamsWithTimeout(timeout time.Duration) *ManifestPushLibpodParams

NewManifestPushLibpodParamsWithTimeout creates a new ManifestPushLibpodParams object with the ability to set a timeout on a request.

func (*ManifestPushLibpodParams) SetAll

func (o *ManifestPushLibpodParams) SetAll(all *bool)

SetAll adds the all to the manifest push libpod params

func (*ManifestPushLibpodParams) SetContext

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

SetContext adds the context to the manifest push libpod params

func (*ManifestPushLibpodParams) SetDefaults

func (o *ManifestPushLibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest push libpod params (not the query body).

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

func (*ManifestPushLibpodParams) SetDestination

func (o *ManifestPushLibpodParams) SetDestination(destination string)

SetDestination adds the destination to the manifest push libpod params

func (*ManifestPushLibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest push libpod params

func (*ManifestPushLibpodParams) SetName

func (o *ManifestPushLibpodParams) SetName(name string)

SetName adds the name to the manifest push libpod params

func (*ManifestPushLibpodParams) SetTLSVerify

func (o *ManifestPushLibpodParams) SetTLSVerify(tLSVerify *bool)

SetTLSVerify adds the tlsVerify to the manifest push libpod params

func (*ManifestPushLibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest push libpod params

func (*ManifestPushLibpodParams) WithAll

WithAll adds the all to the manifest push libpod params

func (*ManifestPushLibpodParams) WithContext

WithContext adds the context to the manifest push libpod params

func (*ManifestPushLibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest push libpod params (not the query body).

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

func (*ManifestPushLibpodParams) WithDestination

func (o *ManifestPushLibpodParams) WithDestination(destination string) *ManifestPushLibpodParams

WithDestination adds the destination to the manifest push libpod params

func (*ManifestPushLibpodParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the manifest push libpod params

func (*ManifestPushLibpodParams) WithName

WithName adds the name to the manifest push libpod params

func (*ManifestPushLibpodParams) WithTLSVerify

func (o *ManifestPushLibpodParams) WithTLSVerify(tLSVerify *bool) *ManifestPushLibpodParams

WithTLSVerify adds the tLSVerify to the manifest push libpod params

func (*ManifestPushLibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest push libpod params

func (*ManifestPushLibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestPushLibpodReader

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

ManifestPushLibpodReader is a Reader for the ManifestPushLibpod structure.

func (*ManifestPushLibpodReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ManifestPushV3LibpodBadRequest

type ManifestPushV3LibpodBadRequest struct {
	Payload *ManifestPushV3LibpodBadRequestBody
}

ManifestPushV3LibpodBadRequest describes a response with status code 400, with default header values.

Bad parameter in request

func NewManifestPushV3LibpodBadRequest

func NewManifestPushV3LibpodBadRequest() *ManifestPushV3LibpodBadRequest

NewManifestPushV3LibpodBadRequest creates a ManifestPushV3LibpodBadRequest with default headers values

func (*ManifestPushV3LibpodBadRequest) Error

func (*ManifestPushV3LibpodBadRequest) GetPayload

func (*ManifestPushV3LibpodBadRequest) IsClientError

func (o *ManifestPushV3LibpodBadRequest) IsClientError() bool

IsClientError returns true when this manifest push v3 libpod bad request response has a 4xx status code

func (*ManifestPushV3LibpodBadRequest) IsCode

func (o *ManifestPushV3LibpodBadRequest) IsCode(code int) bool

IsCode returns true when this manifest push v3 libpod bad request response a status code equal to that given

func (*ManifestPushV3LibpodBadRequest) IsRedirect

func (o *ManifestPushV3LibpodBadRequest) IsRedirect() bool

IsRedirect returns true when this manifest push v3 libpod bad request response has a 3xx status code

func (*ManifestPushV3LibpodBadRequest) IsServerError

func (o *ManifestPushV3LibpodBadRequest) IsServerError() bool

IsServerError returns true when this manifest push v3 libpod bad request response has a 5xx status code

func (*ManifestPushV3LibpodBadRequest) IsSuccess

func (o *ManifestPushV3LibpodBadRequest) IsSuccess() bool

IsSuccess returns true when this manifest push v3 libpod bad request response has a 2xx status code

func (*ManifestPushV3LibpodBadRequest) String

type ManifestPushV3LibpodBadRequestBody

type ManifestPushV3LibpodBadRequestBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushV3LibpodBadRequestBody manifest push v3 libpod bad request body swagger:model ManifestPushV3LibpodBadRequestBody

func (*ManifestPushV3LibpodBadRequestBody) ContextValidate

func (o *ManifestPushV3LibpodBadRequestBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest push v3 libpod bad request body based on context it is used

func (*ManifestPushV3LibpodBadRequestBody) MarshalBinary

func (o *ManifestPushV3LibpodBadRequestBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushV3LibpodBadRequestBody) UnmarshalBinary

func (o *ManifestPushV3LibpodBadRequestBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushV3LibpodBadRequestBody) Validate

Validate validates this manifest push v3 libpod bad request body

type ManifestPushV3LibpodInternalServerError

type ManifestPushV3LibpodInternalServerError struct {
	Payload *ManifestPushV3LibpodInternalServerErrorBody
}

ManifestPushV3LibpodInternalServerError describes a response with status code 500, with default header values.

Internal server error

func NewManifestPushV3LibpodInternalServerError

func NewManifestPushV3LibpodInternalServerError() *ManifestPushV3LibpodInternalServerError

NewManifestPushV3LibpodInternalServerError creates a ManifestPushV3LibpodInternalServerError with default headers values

func (*ManifestPushV3LibpodInternalServerError) Error

func (*ManifestPushV3LibpodInternalServerError) GetPayload

func (*ManifestPushV3LibpodInternalServerError) IsClientError

func (o *ManifestPushV3LibpodInternalServerError) IsClientError() bool

IsClientError returns true when this manifest push v3 libpod internal server error response has a 4xx status code

func (*ManifestPushV3LibpodInternalServerError) IsCode

IsCode returns true when this manifest push v3 libpod internal server error response a status code equal to that given

func (*ManifestPushV3LibpodInternalServerError) IsRedirect

IsRedirect returns true when this manifest push v3 libpod internal server error response has a 3xx status code

func (*ManifestPushV3LibpodInternalServerError) IsServerError

func (o *ManifestPushV3LibpodInternalServerError) IsServerError() bool

IsServerError returns true when this manifest push v3 libpod internal server error response has a 5xx status code

func (*ManifestPushV3LibpodInternalServerError) IsSuccess

IsSuccess returns true when this manifest push v3 libpod internal server error response has a 2xx status code

func (*ManifestPushV3LibpodInternalServerError) String

type ManifestPushV3LibpodInternalServerErrorBody

type ManifestPushV3LibpodInternalServerErrorBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushV3LibpodInternalServerErrorBody manifest push v3 libpod internal server error body swagger:model ManifestPushV3LibpodInternalServerErrorBody

func (*ManifestPushV3LibpodInternalServerErrorBody) ContextValidate

ContextValidate validates this manifest push v3 libpod internal server error body based on context it is used

func (*ManifestPushV3LibpodInternalServerErrorBody) MarshalBinary

func (o *ManifestPushV3LibpodInternalServerErrorBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushV3LibpodInternalServerErrorBody) UnmarshalBinary

func (o *ManifestPushV3LibpodInternalServerErrorBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushV3LibpodInternalServerErrorBody) Validate

Validate validates this manifest push v3 libpod internal server error body

type ManifestPushV3LibpodNotFound

type ManifestPushV3LibpodNotFound struct {
	Payload *ManifestPushV3LibpodNotFoundBody
}

ManifestPushV3LibpodNotFound describes a response with status code 404, with default header values.

No such manifest

func NewManifestPushV3LibpodNotFound

func NewManifestPushV3LibpodNotFound() *ManifestPushV3LibpodNotFound

NewManifestPushV3LibpodNotFound creates a ManifestPushV3LibpodNotFound with default headers values

func (*ManifestPushV3LibpodNotFound) Error

func (*ManifestPushV3LibpodNotFound) GetPayload

func (*ManifestPushV3LibpodNotFound) IsClientError

func (o *ManifestPushV3LibpodNotFound) IsClientError() bool

IsClientError returns true when this manifest push v3 libpod not found response has a 4xx status code

func (*ManifestPushV3LibpodNotFound) IsCode

func (o *ManifestPushV3LibpodNotFound) IsCode(code int) bool

IsCode returns true when this manifest push v3 libpod not found response a status code equal to that given

func (*ManifestPushV3LibpodNotFound) IsRedirect

func (o *ManifestPushV3LibpodNotFound) IsRedirect() bool

IsRedirect returns true when this manifest push v3 libpod not found response has a 3xx status code

func (*ManifestPushV3LibpodNotFound) IsServerError

func (o *ManifestPushV3LibpodNotFound) IsServerError() bool

IsServerError returns true when this manifest push v3 libpod not found response has a 5xx status code

func (*ManifestPushV3LibpodNotFound) IsSuccess

func (o *ManifestPushV3LibpodNotFound) IsSuccess() bool

IsSuccess returns true when this manifest push v3 libpod not found response has a 2xx status code

func (*ManifestPushV3LibpodNotFound) String

type ManifestPushV3LibpodNotFoundBody

type ManifestPushV3LibpodNotFoundBody struct {

	// API root cause formatted for automated parsing
	// Example: API root cause
	Because string `json:"cause,omitempty"`

	// human error message, formatted for a human to read
	// Example: human error message
	Message string `json:"message,omitempty"`

	// http response code
	ResponseCode int64 `json:"response,omitempty"`
}

ManifestPushV3LibpodNotFoundBody manifest push v3 libpod not found body swagger:model ManifestPushV3LibpodNotFoundBody

func (*ManifestPushV3LibpodNotFoundBody) ContextValidate

func (o *ManifestPushV3LibpodNotFoundBody) ContextValidate(ctx context.Context, formats strfmt.Registry) error

ContextValidate validates this manifest push v3 libpod not found body based on context it is used

func (*ManifestPushV3LibpodNotFoundBody) MarshalBinary

func (o *ManifestPushV3LibpodNotFoundBody) MarshalBinary() ([]byte, error)

MarshalBinary interface implementation

func (*ManifestPushV3LibpodNotFoundBody) UnmarshalBinary

func (o *ManifestPushV3LibpodNotFoundBody) UnmarshalBinary(b []byte) error

UnmarshalBinary interface implementation

func (*ManifestPushV3LibpodNotFoundBody) Validate

Validate validates this manifest push v3 libpod not found body

type ManifestPushV3LibpodOK

type ManifestPushV3LibpodOK struct {
	Payload *models.IDResponse
}

ManifestPushV3LibpodOK describes a response with status code 200, with default header values.

ManifestPushV3LibpodOK manifest push v3 libpod o k

func NewManifestPushV3LibpodOK

func NewManifestPushV3LibpodOK() *ManifestPushV3LibpodOK

NewManifestPushV3LibpodOK creates a ManifestPushV3LibpodOK with default headers values

func (*ManifestPushV3LibpodOK) Error

func (o *ManifestPushV3LibpodOK) Error() string

func (*ManifestPushV3LibpodOK) GetPayload

func (o *ManifestPushV3LibpodOK) GetPayload() *models.IDResponse

func (*ManifestPushV3LibpodOK) IsClientError

func (o *ManifestPushV3LibpodOK) IsClientError() bool

IsClientError returns true when this manifest push v3 libpod o k response has a 4xx status code

func (*ManifestPushV3LibpodOK) IsCode

func (o *ManifestPushV3LibpodOK) IsCode(code int) bool

IsCode returns true when this manifest push v3 libpod o k response a status code equal to that given

func (*ManifestPushV3LibpodOK) IsRedirect

func (o *ManifestPushV3LibpodOK) IsRedirect() bool

IsRedirect returns true when this manifest push v3 libpod o k response has a 3xx status code

func (*ManifestPushV3LibpodOK) IsServerError

func (o *ManifestPushV3LibpodOK) IsServerError() bool

IsServerError returns true when this manifest push v3 libpod o k response has a 5xx status code

func (*ManifestPushV3LibpodOK) IsSuccess

func (o *ManifestPushV3LibpodOK) IsSuccess() bool

IsSuccess returns true when this manifest push v3 libpod o k response has a 2xx status code

func (*ManifestPushV3LibpodOK) String

func (o *ManifestPushV3LibpodOK) String() string

type ManifestPushV3LibpodParams

type ManifestPushV3LibpodParams struct {

	/* All.

	   push all images
	*/
	All *bool

	/* Destination.

	   the destination for the manifest
	*/
	Destination string

	/* Name.

	   the name or ID of the manifest
	*/
	Name string

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

ManifestPushV3LibpodParams contains all the parameters to send to the API endpoint

for the manifest push v3 libpod operation.

Typically these are written to a http.Request.

func NewManifestPushV3LibpodParams

func NewManifestPushV3LibpodParams() *ManifestPushV3LibpodParams

NewManifestPushV3LibpodParams creates a new ManifestPushV3LibpodParams 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 NewManifestPushV3LibpodParamsWithContext

func NewManifestPushV3LibpodParamsWithContext(ctx context.Context) *ManifestPushV3LibpodParams

NewManifestPushV3LibpodParamsWithContext creates a new ManifestPushV3LibpodParams object with the ability to set a context for a request.

func NewManifestPushV3LibpodParamsWithHTTPClient

func NewManifestPushV3LibpodParamsWithHTTPClient(client *http.Client) *ManifestPushV3LibpodParams

NewManifestPushV3LibpodParamsWithHTTPClient creates a new ManifestPushV3LibpodParams object with the ability to set a custom HTTPClient for a request.

func NewManifestPushV3LibpodParamsWithTimeout

func NewManifestPushV3LibpodParamsWithTimeout(timeout time.Duration) *ManifestPushV3LibpodParams

NewManifestPushV3LibpodParamsWithTimeout creates a new ManifestPushV3LibpodParams object with the ability to set a timeout on a request.

func (*ManifestPushV3LibpodParams) SetAll

func (o *ManifestPushV3LibpodParams) SetAll(all *bool)

SetAll adds the all to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) SetContext

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

SetContext adds the context to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) SetDefaults

func (o *ManifestPushV3LibpodParams) SetDefaults()

SetDefaults hydrates default values in the manifest push v3 libpod params (not the query body).

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

func (*ManifestPushV3LibpodParams) SetDestination

func (o *ManifestPushV3LibpodParams) SetDestination(destination string)

SetDestination adds the destination to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) SetName

func (o *ManifestPushV3LibpodParams) SetName(name string)

SetName adds the name to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) SetTimeout

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

SetTimeout adds the timeout to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithAll

WithAll adds the all to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithContext

WithContext adds the context to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithDefaults

WithDefaults hydrates default values in the manifest push v3 libpod params (not the query body).

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

func (*ManifestPushV3LibpodParams) WithDestination

func (o *ManifestPushV3LibpodParams) WithDestination(destination string) *ManifestPushV3LibpodParams

WithDestination adds the destination to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithName

WithName adds the name to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WithTimeout

WithTimeout adds the timeout to the manifest push v3 libpod params

func (*ManifestPushV3LibpodParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ManifestPushV3LibpodReader

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

ManifestPushV3LibpodReader is a Reader for the ManifestPushV3Libpod structure.

func (*ManifestPushV3LibpodReader) ReadResponse

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