container

package
v0.0.0-...-8251c7d Latest Latest
Warning

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

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

Documentation

Index

Constants

View Source
const (

	// ContainerInspectOKBodyStateStatusCreated captures enum value "created"
	ContainerInspectOKBodyStateStatusCreated string = "created"

	// ContainerInspectOKBodyStateStatusRunning captures enum value "running"
	ContainerInspectOKBodyStateStatusRunning string = "running"

	// ContainerInspectOKBodyStateStatusPaused captures enum value "paused"
	ContainerInspectOKBodyStateStatusPaused string = "paused"

	// ContainerInspectOKBodyStateStatusRestarting captures enum value "restarting"
	ContainerInspectOKBodyStateStatusRestarting string = "restarting"

	// ContainerInspectOKBodyStateStatusRemoving captures enum value "removing"
	ContainerInspectOKBodyStateStatusRemoving string = "removing"

	// ContainerInspectOKBodyStateStatusExited captures enum value "exited"
	ContainerInspectOKBodyStateStatusExited string = "exited"

	// ContainerInspectOKBodyStateStatusDead captures enum value "dead"
	ContainerInspectOKBodyStateStatusDead string = "dead"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type Client

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

Client for container API

func (*Client) ContainerArchive

func (a *Client) ContainerArchive(params *ContainerArchiveParams, opts ...ClientOption) (*ContainerArchiveOK, error)

ContainerArchive gets an archive of a filesystem resource in a container

Get a tar archive of a resource in the filesystem of container id.

func (*Client) ContainerArchiveInfo

func (a *Client) ContainerArchiveInfo(params *ContainerArchiveInfoParams, opts ...ClientOption) (*ContainerArchiveInfoOK, error)

ContainerArchiveInfo gets information about files in a container

A response header `X-Docker-Container-Path-Stat` is return containing a base64 - encoded JSON object with some filesystem header information about the path.

func (*Client) ContainerAttach

func (a *Client) ContainerAttach(params *ContainerAttachParams, opts ...ClientOption) (*ContainerAttachOK, error)
ContainerAttach attaches to a container

Attach to a container to read its output or send it input. You can attach to the same container multiple times and you can reattach to containers that have been detached.

Either the `stream` or `logs` parameter must be `true` for this endpoint to do anything.

See [the documentation for the `docker attach` command](https://docs.docker.com/engine/reference/commandline/attach/) for more details.

### Hijacking

This endpoint hijacks the HTTP connection to transport `stdin`, `stdout`, and `stderr` on the same socket.

This is the response from the daemon for an attach request:

``` HTTP/1.1 200 OK Content-Type: application/vnd.docker.raw-stream

[STREAM] ```

After the headers and two new lines, the TCP connection can now be used for raw, bidirectional communication between the client and server.

To hint potential proxies about connection hijacking, the Docker client can also optionally send connection upgrade headers.

For example, the client sends this request to upgrade the connection:

``` POST /containers/16253994b7c4/attach?stream=1&stdout=1 HTTP/1.1 Upgrade: tcp Connection: Upgrade ```

The Docker daemon will respond with a `101 UPGRADED` response, and will similarly follow with the raw stream:

``` HTTP/1.1 101 UPGRADED Content-Type: application/vnd.docker.raw-stream Connection: Upgrade Upgrade: tcp

[STREAM] ```

### Stream format

When the TTY setting is disabled in [`POST /containers/create`](#operation/ContainerCreate), the stream over the hijacked connected is multiplexed to separate out `stdout` and `stderr`. The stream consists of a series of frames, each containing a header and a payload.

The header contains the information which the stream writes (`stdout` or `stderr`). It also contains the size of the associated frame encoded in the last four bytes (`uint32`).

It is encoded on the first eight bytes like this:

```go header := [8]byte{STREAM_TYPE, 0, 0, 0, SIZE1, SIZE2, SIZE3, SIZE4} ```

`STREAM_TYPE` can be:

- 0: `stdin` (is written on `stdout`) - 1: `stdout` - 2: `stderr`

`SIZE1, SIZE2, SIZE3, SIZE4` are the four bytes of the `uint32` size encoded as big endian.

Following the header is the payload, which is the specified number of bytes of `STREAM_TYPE`.

The simplest way to implement this protocol is the following:

1. Read 8 bytes. 2. Choose `stdout` or `stderr` depending on the first byte. 3. Extract the frame size from the last four bytes. 4. Read the extracted size and output it on the correct output. 5. Goto 1.

### Stream format when using a TTY

When the TTY setting is enabled in [`POST /containers/create`](#operation/ContainerCreate), the stream is not multiplexed. The data exchanged over the hijacked connection is simply the raw data from the process PTY and client's `stdin`.

func (*Client) ContainerAttachWebsocket

func (a *Client) ContainerAttachWebsocket(params *ContainerAttachWebsocketParams, opts ...ClientOption) (*ContainerAttachWebsocketOK, error)

ContainerAttachWebsocket attaches to a container via a websocket

func (*Client) ContainerChanges

func (a *Client) ContainerChanges(params *ContainerChangesParams, opts ...ClientOption) (*ContainerChangesOK, error)
ContainerChanges gets changes on a container s filesystem

Returns which files in a container's filesystem have been added, deleted,

or modified. The `Kind` of modification can be one of:

- `0`: Modified - `1`: Added - `2`: Deleted

func (*Client) ContainerCreate

func (a *Client) ContainerCreate(params *ContainerCreateParams, opts ...ClientOption) (*ContainerCreateCreated, error)

ContainerCreate creates a container

func (*Client) ContainerDelete

func (a *Client) ContainerDelete(params *ContainerDeleteParams, opts ...ClientOption) (*ContainerDeleteNoContent, error)

ContainerDelete removes a container

func (*Client) ContainerExport

func (a *Client) ContainerExport(params *ContainerExportParams, opts ...ClientOption) (*ContainerExportOK, error)

ContainerExport exports a container

Export the contents of a container as a tarball.

func (*Client) ContainerInspect

func (a *Client) ContainerInspect(params *ContainerInspectParams, opts ...ClientOption) (*ContainerInspectOK, error)

ContainerInspect inspects a container

Return low-level information about a container.

func (*Client) ContainerKill

func (a *Client) ContainerKill(params *ContainerKillParams, opts ...ClientOption) (*ContainerKillNoContent, error)

ContainerKill kills a container

Send a POSIX signal to a container, defaulting to killing to the container.

func (*Client) ContainerList

func (a *Client) ContainerList(params *ContainerListParams, opts ...ClientOption) (*ContainerListOK, error)
ContainerList lists containers

Returns a list of containers. For details on the format, see [the inspect endpoint](#operation/ContainerInspect).

Note that it uses a different, smaller representation of a container than inspecting a single container. For example, the list of linked containers is not propagated .

func (*Client) ContainerLogs

func (a *Client) ContainerLogs(params *ContainerLogsParams, writer io.Writer, opts ...ClientOption) (*ContainerLogsOK, error)
ContainerLogs gets container logs

Get `stdout` and `stderr` logs from a container.

Note: This endpoint works only for containers with the `json-file` or `journald` logging driver.

func (*Client) ContainerPause

func (a *Client) ContainerPause(params *ContainerPauseParams, opts ...ClientOption) (*ContainerPauseNoContent, error)
ContainerPause pauses a container

Use the freezer cgroup to suspend all processes in a container.

Traditionally, when suspending a process the `SIGSTOP` signal is used, which is observable by the process being suspended. With the freezer cgroup the process is unaware, and unable to capture, that it is being suspended, and subsequently resumed.

func (*Client) ContainerPrune

func (a *Client) ContainerPrune(params *ContainerPruneParams, opts ...ClientOption) (*ContainerPruneOK, error)

ContainerPrune deletes stopped containers

func (*Client) ContainerRename

func (a *Client) ContainerRename(params *ContainerRenameParams, opts ...ClientOption) (*ContainerRenameNoContent, error)

ContainerRename renames a container

func (*Client) ContainerResize

func (a *Client) ContainerResize(params *ContainerResizeParams, opts ...ClientOption) (*ContainerResizeOK, error)

ContainerResize resizes a container t t y

Resize the TTY for a container.

func (*Client) ContainerRestart

func (a *Client) ContainerRestart(params *ContainerRestartParams, opts ...ClientOption) (*ContainerRestartNoContent, error)

ContainerRestart restarts a container

func (*Client) ContainerStart

func (a *Client) ContainerStart(params *ContainerStartParams, opts ...ClientOption) (*ContainerStartNoContent, error)

ContainerStart starts a container

func (*Client) ContainerStats

func (a *Client) ContainerStats(params *ContainerStatsParams, opts ...ClientOption) (*ContainerStatsOK, error)
ContainerStats gets container stats based on resource usage

This endpoint returns a live stream of a container’s resource usage

statistics.

The `precpu_stats` is the CPU statistic of the *previous* read, and is used to calculate the CPU usage percentage. It is not an exact copy of the `cpu_stats` field.

If either `precpu_stats.online_cpus` or `cpu_stats.online_cpus` is nil then for compatibility with older daemons the length of the corresponding `cpu_usage.percpu_usage` array should be used.

func (*Client) ContainerStop

func (a *Client) ContainerStop(params *ContainerStopParams, opts ...ClientOption) (*ContainerStopNoContent, error)

ContainerStop stops a container

func (*Client) ContainerTop

func (a *Client) ContainerTop(params *ContainerTopParams, opts ...ClientOption) (*ContainerTopOK, error)

ContainerTop lists processes running inside a container

On Unix systems, this is done by running the `ps` command. This endpoint is not supported on Windows.

func (*Client) ContainerUnpause

func (a *Client) ContainerUnpause(params *ContainerUnpauseParams, opts ...ClientOption) (*ContainerUnpauseNoContent, error)

ContainerUnpause unpauses a container

Resume a container which has been paused.

func (*Client) ContainerUpdate

func (a *Client) ContainerUpdate(params *ContainerUpdateParams, opts ...ClientOption) (*ContainerUpdateOK, error)

ContainerUpdate updates a container

Change various configuration options of a container without having to recreate it.

func (*Client) ContainerWait

func (a *Client) ContainerWait(params *ContainerWaitParams, opts ...ClientOption) (*ContainerWaitOK, error)

ContainerWait waits for a container

Block until a container stops, then returns the exit code.

func (*Client) PutContainerArchive

func (a *Client) PutContainerArchive(params *PutContainerArchiveParams, opts ...ClientOption) (*PutContainerArchiveOK, error)

PutContainerArchive extracts an archive of files or folders to a directory in a container

Upload a tar archive to be extracted to a path in the filesystem of container id.

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 {
	ContainerArchive(params *ContainerArchiveParams, opts ...ClientOption) (*ContainerArchiveOK, error)

	ContainerArchiveInfo(params *ContainerArchiveInfoParams, opts ...ClientOption) (*ContainerArchiveInfoOK, error)

	ContainerAttach(params *ContainerAttachParams, opts ...ClientOption) (*ContainerAttachOK, error)

	ContainerAttachWebsocket(params *ContainerAttachWebsocketParams, opts ...ClientOption) (*ContainerAttachWebsocketOK, error)

	ContainerChanges(params *ContainerChangesParams, opts ...ClientOption) (*ContainerChangesOK, error)

	ContainerCreate(params *ContainerCreateParams, opts ...ClientOption) (*ContainerCreateCreated, error)

	ContainerDelete(params *ContainerDeleteParams, opts ...ClientOption) (*ContainerDeleteNoContent, error)

	ContainerExport(params *ContainerExportParams, opts ...ClientOption) (*ContainerExportOK, error)

	ContainerInspect(params *ContainerInspectParams, opts ...ClientOption) (*ContainerInspectOK, error)

	ContainerKill(params *ContainerKillParams, opts ...ClientOption) (*ContainerKillNoContent, error)

	ContainerList(params *ContainerListParams, opts ...ClientOption) (*ContainerListOK, error)

	ContainerLogs(params *ContainerLogsParams, writer io.Writer, opts ...ClientOption) (*ContainerLogsOK, error)

	ContainerPause(params *ContainerPauseParams, opts ...ClientOption) (*ContainerPauseNoContent, error)

	ContainerPrune(params *ContainerPruneParams, opts ...ClientOption) (*ContainerPruneOK, error)

	ContainerRename(params *ContainerRenameParams, opts ...ClientOption) (*ContainerRenameNoContent, error)

	ContainerResize(params *ContainerResizeParams, opts ...ClientOption) (*ContainerResizeOK, error)

	ContainerRestart(params *ContainerRestartParams, opts ...ClientOption) (*ContainerRestartNoContent, error)

	ContainerStart(params *ContainerStartParams, opts ...ClientOption) (*ContainerStartNoContent, error)

	ContainerStats(params *ContainerStatsParams, opts ...ClientOption) (*ContainerStatsOK, error)

	ContainerStop(params *ContainerStopParams, opts ...ClientOption) (*ContainerStopNoContent, error)

	ContainerTop(params *ContainerTopParams, opts ...ClientOption) (*ContainerTopOK, error)

	ContainerUnpause(params *ContainerUnpauseParams, opts ...ClientOption) (*ContainerUnpauseNoContent, error)

	ContainerUpdate(params *ContainerUpdateParams, opts ...ClientOption) (*ContainerUpdateOK, error)

	ContainerWait(params *ContainerWaitParams, opts ...ClientOption) (*ContainerWaitOK, error)

	PutContainerArchive(params *PutContainerArchiveParams, opts ...ClientOption) (*PutContainerArchiveOK, 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 container API client.

type ContainerArchiveBadRequest

type ContainerArchiveBadRequest struct {
	Payload *ContainerArchiveBadRequestBody
}
ContainerArchiveBadRequest describes a response with status code 400, with default header values.

Bad parameter

func NewContainerArchiveBadRequest

func NewContainerArchiveBadRequest() *ContainerArchiveBadRequest

NewContainerArchiveBadRequest creates a ContainerArchiveBadRequest with default headers values

func (*ContainerArchiveBadRequest) Error

func (*ContainerArchiveBadRequest) GetPayload

func (*ContainerArchiveBadRequest) IsClientError

func (o *ContainerArchiveBadRequest) IsClientError() bool

IsClientError returns true when this container archive bad request response has a 4xx status code

func (*ContainerArchiveBadRequest) IsCode

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

IsCode returns true when this container archive bad request response a status code equal to that given

func (*ContainerArchiveBadRequest) IsRedirect

func (o *ContainerArchiveBadRequest) IsRedirect() bool

IsRedirect returns true when this container archive bad request response has a 3xx status code

func (*ContainerArchiveBadRequest) IsServerError

func (o *ContainerArchiveBadRequest) IsServerError() bool

IsServerError returns true when this container archive bad request response has a 5xx status code

func (*ContainerArchiveBadRequest) IsSuccess

func (o *ContainerArchiveBadRequest) IsSuccess() bool

IsSuccess returns true when this container archive bad request response has a 2xx status code

func (*ContainerArchiveBadRequest) String

func (o *ContainerArchiveBadRequest) String() string

type ContainerArchiveBadRequestBody

type ContainerArchiveBadRequestBody struct {
	models.ErrorResponse

	// The error message. Either "must specify path parameter" (path cannot be empty) or "not a directory" (path was asserted to be a directory but exists as a file).
	Message string `json:"message,omitempty"`
}

ContainerArchiveBadRequestBody container archive bad request body swagger:model ContainerArchiveBadRequestBody

func (*ContainerArchiveBadRequestBody) ContextValidate

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

ContextValidate validate this container archive bad request body based on the context it is used

func (*ContainerArchiveBadRequestBody) MarshalBinary

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

MarshalBinary interface implementation

func (ContainerArchiveBadRequestBody) MarshalJSON

func (o ContainerArchiveBadRequestBody) MarshalJSON() ([]byte, error)

MarshalJSON marshals this object to a JSON structure

func (*ContainerArchiveBadRequestBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerArchiveBadRequestBody) UnmarshalJSON

func (o *ContainerArchiveBadRequestBody) UnmarshalJSON(raw []byte) error

UnmarshalJSON unmarshals this object from a JSON structure

func (*ContainerArchiveBadRequestBody) Validate

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

Validate validates this container archive bad request body

type ContainerArchiveInfoBadRequest

type ContainerArchiveInfoBadRequest struct {
	Payload *ContainerArchiveInfoBadRequestBody
}
ContainerArchiveInfoBadRequest describes a response with status code 400, with default header values.

Bad parameter

func NewContainerArchiveInfoBadRequest

func NewContainerArchiveInfoBadRequest() *ContainerArchiveInfoBadRequest

NewContainerArchiveInfoBadRequest creates a ContainerArchiveInfoBadRequest with default headers values

func (*ContainerArchiveInfoBadRequest) Error

func (*ContainerArchiveInfoBadRequest) GetPayload

func (*ContainerArchiveInfoBadRequest) IsClientError

func (o *ContainerArchiveInfoBadRequest) IsClientError() bool

IsClientError returns true when this container archive info bad request response has a 4xx status code

func (*ContainerArchiveInfoBadRequest) IsCode

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

IsCode returns true when this container archive info bad request response a status code equal to that given

func (*ContainerArchiveInfoBadRequest) IsRedirect

func (o *ContainerArchiveInfoBadRequest) IsRedirect() bool

IsRedirect returns true when this container archive info bad request response has a 3xx status code

func (*ContainerArchiveInfoBadRequest) IsServerError

func (o *ContainerArchiveInfoBadRequest) IsServerError() bool

IsServerError returns true when this container archive info bad request response has a 5xx status code

func (*ContainerArchiveInfoBadRequest) IsSuccess

func (o *ContainerArchiveInfoBadRequest) IsSuccess() bool

IsSuccess returns true when this container archive info bad request response has a 2xx status code

func (*ContainerArchiveInfoBadRequest) String

type ContainerArchiveInfoBadRequestBody

type ContainerArchiveInfoBadRequestBody struct {
	models.ErrorResponse

	// The error message. Either "must specify path parameter" (path cannot be empty) or "not a directory" (path was asserted to be a directory but exists as a file).
	Message string `json:"message,omitempty"`
}

ContainerArchiveInfoBadRequestBody container archive info bad request body swagger:model ContainerArchiveInfoBadRequestBody

func (*ContainerArchiveInfoBadRequestBody) ContextValidate

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

ContextValidate validate this container archive info bad request body based on the context it is used

func (*ContainerArchiveInfoBadRequestBody) MarshalBinary

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

MarshalBinary interface implementation

func (ContainerArchiveInfoBadRequestBody) MarshalJSON

func (o ContainerArchiveInfoBadRequestBody) MarshalJSON() ([]byte, error)

MarshalJSON marshals this object to a JSON structure

func (*ContainerArchiveInfoBadRequestBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerArchiveInfoBadRequestBody) UnmarshalJSON

func (o *ContainerArchiveInfoBadRequestBody) UnmarshalJSON(raw []byte) error

UnmarshalJSON unmarshals this object from a JSON structure

func (*ContainerArchiveInfoBadRequestBody) Validate

Validate validates this container archive info bad request body

type ContainerArchiveInfoInternalServerError

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

Server error

func NewContainerArchiveInfoInternalServerError

func NewContainerArchiveInfoInternalServerError() *ContainerArchiveInfoInternalServerError

NewContainerArchiveInfoInternalServerError creates a ContainerArchiveInfoInternalServerError with default headers values

func (*ContainerArchiveInfoInternalServerError) Error

func (*ContainerArchiveInfoInternalServerError) GetPayload

func (*ContainerArchiveInfoInternalServerError) IsClientError

func (o *ContainerArchiveInfoInternalServerError) IsClientError() bool

IsClientError returns true when this container archive info internal server error response has a 4xx status code

func (*ContainerArchiveInfoInternalServerError) IsCode

IsCode returns true when this container archive info internal server error response a status code equal to that given

func (*ContainerArchiveInfoInternalServerError) IsRedirect

IsRedirect returns true when this container archive info internal server error response has a 3xx status code

func (*ContainerArchiveInfoInternalServerError) IsServerError

func (o *ContainerArchiveInfoInternalServerError) IsServerError() bool

IsServerError returns true when this container archive info internal server error response has a 5xx status code

func (*ContainerArchiveInfoInternalServerError) IsSuccess

IsSuccess returns true when this container archive info internal server error response has a 2xx status code

func (*ContainerArchiveInfoInternalServerError) String

type ContainerArchiveInfoNotFound

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

Container or path does not exist

func NewContainerArchiveInfoNotFound

func NewContainerArchiveInfoNotFound() *ContainerArchiveInfoNotFound

NewContainerArchiveInfoNotFound creates a ContainerArchiveInfoNotFound with default headers values

func (*ContainerArchiveInfoNotFound) Error

func (*ContainerArchiveInfoNotFound) GetPayload

func (*ContainerArchiveInfoNotFound) IsClientError

func (o *ContainerArchiveInfoNotFound) IsClientError() bool

IsClientError returns true when this container archive info not found response has a 4xx status code

func (*ContainerArchiveInfoNotFound) IsCode

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

IsCode returns true when this container archive info not found response a status code equal to that given

func (*ContainerArchiveInfoNotFound) IsRedirect

func (o *ContainerArchiveInfoNotFound) IsRedirect() bool

IsRedirect returns true when this container archive info not found response has a 3xx status code

func (*ContainerArchiveInfoNotFound) IsServerError

func (o *ContainerArchiveInfoNotFound) IsServerError() bool

IsServerError returns true when this container archive info not found response has a 5xx status code

func (*ContainerArchiveInfoNotFound) IsSuccess

func (o *ContainerArchiveInfoNotFound) IsSuccess() bool

IsSuccess returns true when this container archive info not found response has a 2xx status code

func (*ContainerArchiveInfoNotFound) String

type ContainerArchiveInfoOK

type ContainerArchiveInfoOK struct {

	/* A base64 - encoded JSON object with some filesystem header information about the path
	 */
	XDockerContainerPathStat string
}
ContainerArchiveInfoOK describes a response with status code 200, with default header values.

no error

func NewContainerArchiveInfoOK

func NewContainerArchiveInfoOK() *ContainerArchiveInfoOK

NewContainerArchiveInfoOK creates a ContainerArchiveInfoOK with default headers values

func (*ContainerArchiveInfoOK) Error

func (o *ContainerArchiveInfoOK) Error() string

func (*ContainerArchiveInfoOK) IsClientError

func (o *ContainerArchiveInfoOK) IsClientError() bool

IsClientError returns true when this container archive info o k response has a 4xx status code

func (*ContainerArchiveInfoOK) IsCode

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

IsCode returns true when this container archive info o k response a status code equal to that given

func (*ContainerArchiveInfoOK) IsRedirect

func (o *ContainerArchiveInfoOK) IsRedirect() bool

IsRedirect returns true when this container archive info o k response has a 3xx status code

func (*ContainerArchiveInfoOK) IsServerError

func (o *ContainerArchiveInfoOK) IsServerError() bool

IsServerError returns true when this container archive info o k response has a 5xx status code

func (*ContainerArchiveInfoOK) IsSuccess

func (o *ContainerArchiveInfoOK) IsSuccess() bool

IsSuccess returns true when this container archive info o k response has a 2xx status code

func (*ContainerArchiveInfoOK) String

func (o *ContainerArchiveInfoOK) String() string

type ContainerArchiveInfoParams

type ContainerArchiveInfoParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Path.

	   Resource in the container’s filesystem to archive.
	*/
	Path string

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

ContainerArchiveInfoParams contains all the parameters to send to the API endpoint

for the container archive info operation.

Typically these are written to a http.Request.

func NewContainerArchiveInfoParams

func NewContainerArchiveInfoParams() *ContainerArchiveInfoParams

NewContainerArchiveInfoParams creates a new ContainerArchiveInfoParams 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 NewContainerArchiveInfoParamsWithContext

func NewContainerArchiveInfoParamsWithContext(ctx context.Context) *ContainerArchiveInfoParams

NewContainerArchiveInfoParamsWithContext creates a new ContainerArchiveInfoParams object with the ability to set a context for a request.

func NewContainerArchiveInfoParamsWithHTTPClient

func NewContainerArchiveInfoParamsWithHTTPClient(client *http.Client) *ContainerArchiveInfoParams

NewContainerArchiveInfoParamsWithHTTPClient creates a new ContainerArchiveInfoParams object with the ability to set a custom HTTPClient for a request.

func NewContainerArchiveInfoParamsWithTimeout

func NewContainerArchiveInfoParamsWithTimeout(timeout time.Duration) *ContainerArchiveInfoParams

NewContainerArchiveInfoParamsWithTimeout creates a new ContainerArchiveInfoParams object with the ability to set a timeout on a request.

func (*ContainerArchiveInfoParams) SetContext

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

SetContext adds the context to the container archive info params

func (*ContainerArchiveInfoParams) SetDefaults

func (o *ContainerArchiveInfoParams) SetDefaults()

SetDefaults hydrates default values in the container archive info params (not the query body).

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

func (*ContainerArchiveInfoParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container archive info params

func (*ContainerArchiveInfoParams) SetID

func (o *ContainerArchiveInfoParams) SetID(id string)

SetID adds the id to the container archive info params

func (*ContainerArchiveInfoParams) SetPath

func (o *ContainerArchiveInfoParams) SetPath(path string)

SetPath adds the path to the container archive info params

func (*ContainerArchiveInfoParams) SetTimeout

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

SetTimeout adds the timeout to the container archive info params

func (*ContainerArchiveInfoParams) WithContext

WithContext adds the context to the container archive info params

func (*ContainerArchiveInfoParams) WithDefaults

WithDefaults hydrates default values in the container archive info params (not the query body).

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

func (*ContainerArchiveInfoParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the container archive info params

func (*ContainerArchiveInfoParams) WithID

WithID adds the id to the container archive info params

func (*ContainerArchiveInfoParams) WithPath

WithPath adds the path to the container archive info params

func (*ContainerArchiveInfoParams) WithTimeout

WithTimeout adds the timeout to the container archive info params

func (*ContainerArchiveInfoParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerArchiveInfoReader

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

ContainerArchiveInfoReader is a Reader for the ContainerArchiveInfo structure.

func (*ContainerArchiveInfoReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerArchiveInternalServerError

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

server error

func NewContainerArchiveInternalServerError

func NewContainerArchiveInternalServerError() *ContainerArchiveInternalServerError

NewContainerArchiveInternalServerError creates a ContainerArchiveInternalServerError with default headers values

func (*ContainerArchiveInternalServerError) Error

func (*ContainerArchiveInternalServerError) GetPayload

func (*ContainerArchiveInternalServerError) IsClientError

func (o *ContainerArchiveInternalServerError) IsClientError() bool

IsClientError returns true when this container archive internal server error response has a 4xx status code

func (*ContainerArchiveInternalServerError) IsCode

IsCode returns true when this container archive internal server error response a status code equal to that given

func (*ContainerArchiveInternalServerError) IsRedirect

func (o *ContainerArchiveInternalServerError) IsRedirect() bool

IsRedirect returns true when this container archive internal server error response has a 3xx status code

func (*ContainerArchiveInternalServerError) IsServerError

func (o *ContainerArchiveInternalServerError) IsServerError() bool

IsServerError returns true when this container archive internal server error response has a 5xx status code

func (*ContainerArchiveInternalServerError) IsSuccess

IsSuccess returns true when this container archive internal server error response has a 2xx status code

func (*ContainerArchiveInternalServerError) String

type ContainerArchiveNotFound

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

Container or path does not exist

func NewContainerArchiveNotFound

func NewContainerArchiveNotFound() *ContainerArchiveNotFound

NewContainerArchiveNotFound creates a ContainerArchiveNotFound with default headers values

func (*ContainerArchiveNotFound) Error

func (o *ContainerArchiveNotFound) Error() string

func (*ContainerArchiveNotFound) GetPayload

func (*ContainerArchiveNotFound) IsClientError

func (o *ContainerArchiveNotFound) IsClientError() bool

IsClientError returns true when this container archive not found response has a 4xx status code

func (*ContainerArchiveNotFound) IsCode

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

IsCode returns true when this container archive not found response a status code equal to that given

func (*ContainerArchiveNotFound) IsRedirect

func (o *ContainerArchiveNotFound) IsRedirect() bool

IsRedirect returns true when this container archive not found response has a 3xx status code

func (*ContainerArchiveNotFound) IsServerError

func (o *ContainerArchiveNotFound) IsServerError() bool

IsServerError returns true when this container archive not found response has a 5xx status code

func (*ContainerArchiveNotFound) IsSuccess

func (o *ContainerArchiveNotFound) IsSuccess() bool

IsSuccess returns true when this container archive not found response has a 2xx status code

func (*ContainerArchiveNotFound) String

func (o *ContainerArchiveNotFound) String() string

type ContainerArchiveOK

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

no error

func NewContainerArchiveOK

func NewContainerArchiveOK() *ContainerArchiveOK

NewContainerArchiveOK creates a ContainerArchiveOK with default headers values

func (*ContainerArchiveOK) Error

func (o *ContainerArchiveOK) Error() string

func (*ContainerArchiveOK) IsClientError

func (o *ContainerArchiveOK) IsClientError() bool

IsClientError returns true when this container archive o k response has a 4xx status code

func (*ContainerArchiveOK) IsCode

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

IsCode returns true when this container archive o k response a status code equal to that given

func (*ContainerArchiveOK) IsRedirect

func (o *ContainerArchiveOK) IsRedirect() bool

IsRedirect returns true when this container archive o k response has a 3xx status code

func (*ContainerArchiveOK) IsServerError

func (o *ContainerArchiveOK) IsServerError() bool

IsServerError returns true when this container archive o k response has a 5xx status code

func (*ContainerArchiveOK) IsSuccess

func (o *ContainerArchiveOK) IsSuccess() bool

IsSuccess returns true when this container archive o k response has a 2xx status code

func (*ContainerArchiveOK) String

func (o *ContainerArchiveOK) String() string

type ContainerArchiveParams

type ContainerArchiveParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Path.

	   Resource in the container’s filesystem to archive.
	*/
	Path string

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

ContainerArchiveParams contains all the parameters to send to the API endpoint

for the container archive operation.

Typically these are written to a http.Request.

func NewContainerArchiveParams

func NewContainerArchiveParams() *ContainerArchiveParams

NewContainerArchiveParams creates a new ContainerArchiveParams 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 NewContainerArchiveParamsWithContext

func NewContainerArchiveParamsWithContext(ctx context.Context) *ContainerArchiveParams

NewContainerArchiveParamsWithContext creates a new ContainerArchiveParams object with the ability to set a context for a request.

func NewContainerArchiveParamsWithHTTPClient

func NewContainerArchiveParamsWithHTTPClient(client *http.Client) *ContainerArchiveParams

NewContainerArchiveParamsWithHTTPClient creates a new ContainerArchiveParams object with the ability to set a custom HTTPClient for a request.

func NewContainerArchiveParamsWithTimeout

func NewContainerArchiveParamsWithTimeout(timeout time.Duration) *ContainerArchiveParams

NewContainerArchiveParamsWithTimeout creates a new ContainerArchiveParams object with the ability to set a timeout on a request.

func (*ContainerArchiveParams) SetContext

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

SetContext adds the context to the container archive params

func (*ContainerArchiveParams) SetDefaults

func (o *ContainerArchiveParams) SetDefaults()

SetDefaults hydrates default values in the container archive params (not the query body).

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

func (*ContainerArchiveParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container archive params

func (*ContainerArchiveParams) SetID

func (o *ContainerArchiveParams) SetID(id string)

SetID adds the id to the container archive params

func (*ContainerArchiveParams) SetPath

func (o *ContainerArchiveParams) SetPath(path string)

SetPath adds the path to the container archive params

func (*ContainerArchiveParams) SetTimeout

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

SetTimeout adds the timeout to the container archive params

func (*ContainerArchiveParams) WithContext

WithContext adds the context to the container archive params

func (*ContainerArchiveParams) WithDefaults

WithDefaults hydrates default values in the container archive params (not the query body).

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

func (*ContainerArchiveParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container archive params

func (*ContainerArchiveParams) WithID

WithID adds the id to the container archive params

func (*ContainerArchiveParams) WithPath

WithPath adds the path to the container archive params

func (*ContainerArchiveParams) WithTimeout

WithTimeout adds the timeout to the container archive params

func (*ContainerArchiveParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerArchiveReader

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

ContainerArchiveReader is a Reader for the ContainerArchive structure.

func (*ContainerArchiveReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerAttachBadRequest

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

bad parameter

func NewContainerAttachBadRequest

func NewContainerAttachBadRequest() *ContainerAttachBadRequest

NewContainerAttachBadRequest creates a ContainerAttachBadRequest with default headers values

func (*ContainerAttachBadRequest) Error

func (o *ContainerAttachBadRequest) Error() string

func (*ContainerAttachBadRequest) GetPayload

func (*ContainerAttachBadRequest) IsClientError

func (o *ContainerAttachBadRequest) IsClientError() bool

IsClientError returns true when this container attach bad request response has a 4xx status code

func (*ContainerAttachBadRequest) IsCode

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

IsCode returns true when this container attach bad request response a status code equal to that given

func (*ContainerAttachBadRequest) IsRedirect

func (o *ContainerAttachBadRequest) IsRedirect() bool

IsRedirect returns true when this container attach bad request response has a 3xx status code

func (*ContainerAttachBadRequest) IsServerError

func (o *ContainerAttachBadRequest) IsServerError() bool

IsServerError returns true when this container attach bad request response has a 5xx status code

func (*ContainerAttachBadRequest) IsSuccess

func (o *ContainerAttachBadRequest) IsSuccess() bool

IsSuccess returns true when this container attach bad request response has a 2xx status code

func (*ContainerAttachBadRequest) String

func (o *ContainerAttachBadRequest) String() string

type ContainerAttachInternalServerError

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

server error

func NewContainerAttachInternalServerError

func NewContainerAttachInternalServerError() *ContainerAttachInternalServerError

NewContainerAttachInternalServerError creates a ContainerAttachInternalServerError with default headers values

func (*ContainerAttachInternalServerError) Error

func (*ContainerAttachInternalServerError) GetPayload

func (*ContainerAttachInternalServerError) IsClientError

func (o *ContainerAttachInternalServerError) IsClientError() bool

IsClientError returns true when this container attach internal server error response has a 4xx status code

func (*ContainerAttachInternalServerError) IsCode

IsCode returns true when this container attach internal server error response a status code equal to that given

func (*ContainerAttachInternalServerError) IsRedirect

func (o *ContainerAttachInternalServerError) IsRedirect() bool

IsRedirect returns true when this container attach internal server error response has a 3xx status code

func (*ContainerAttachInternalServerError) IsServerError

func (o *ContainerAttachInternalServerError) IsServerError() bool

IsServerError returns true when this container attach internal server error response has a 5xx status code

func (*ContainerAttachInternalServerError) IsSuccess

IsSuccess returns true when this container attach internal server error response has a 2xx status code

func (*ContainerAttachInternalServerError) String

type ContainerAttachNotFound

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

no such container

func NewContainerAttachNotFound

func NewContainerAttachNotFound() *ContainerAttachNotFound

NewContainerAttachNotFound creates a ContainerAttachNotFound with default headers values

func (*ContainerAttachNotFound) Error

func (o *ContainerAttachNotFound) Error() string

func (*ContainerAttachNotFound) GetPayload

func (o *ContainerAttachNotFound) GetPayload() *models.ErrorResponse

func (*ContainerAttachNotFound) IsClientError

func (o *ContainerAttachNotFound) IsClientError() bool

IsClientError returns true when this container attach not found response has a 4xx status code

func (*ContainerAttachNotFound) IsCode

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

IsCode returns true when this container attach not found response a status code equal to that given

func (*ContainerAttachNotFound) IsRedirect

func (o *ContainerAttachNotFound) IsRedirect() bool

IsRedirect returns true when this container attach not found response has a 3xx status code

func (*ContainerAttachNotFound) IsServerError

func (o *ContainerAttachNotFound) IsServerError() bool

IsServerError returns true when this container attach not found response has a 5xx status code

func (*ContainerAttachNotFound) IsSuccess

func (o *ContainerAttachNotFound) IsSuccess() bool

IsSuccess returns true when this container attach not found response has a 2xx status code

func (*ContainerAttachNotFound) String

func (o *ContainerAttachNotFound) String() string

type ContainerAttachOK

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

no error, no upgrade header found

func NewContainerAttachOK

func NewContainerAttachOK() *ContainerAttachOK

NewContainerAttachOK creates a ContainerAttachOK with default headers values

func (*ContainerAttachOK) Error

func (o *ContainerAttachOK) Error() string

func (*ContainerAttachOK) IsClientError

func (o *ContainerAttachOK) IsClientError() bool

IsClientError returns true when this container attach o k response has a 4xx status code

func (*ContainerAttachOK) IsCode

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

IsCode returns true when this container attach o k response a status code equal to that given

func (*ContainerAttachOK) IsRedirect

func (o *ContainerAttachOK) IsRedirect() bool

IsRedirect returns true when this container attach o k response has a 3xx status code

func (*ContainerAttachOK) IsServerError

func (o *ContainerAttachOK) IsServerError() bool

IsServerError returns true when this container attach o k response has a 5xx status code

func (*ContainerAttachOK) IsSuccess

func (o *ContainerAttachOK) IsSuccess() bool

IsSuccess returns true when this container attach o k response has a 2xx status code

func (*ContainerAttachOK) String

func (o *ContainerAttachOK) String() string

type ContainerAttachParams

type ContainerAttachParams struct {

	/* DetachKeys.

	   Override the key sequence for detaching a container.Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z`, `@`, `^`, `[`, `,` or `_`.
	*/
	DetachKeys *string

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Logs.

	     Replay previous logs from the container.

	This is useful for attaching to a container that has started and you want to output everything since the container started.

	If `stream` is also enabled, once all the previous output has been returned, it will seamlessly transition into streaming current output.

	*/
	Logs *bool

	/* Stderr.

	   Attach to `stderr`
	*/
	Stderr *bool

	/* Stdin.

	   Attach to `stdin`
	*/
	Stdin *bool

	/* Stdout.

	   Attach to `stdout`
	*/
	Stdout *bool

	/* Stream.

	   Stream attached streams from the time the request was made onwards
	*/
	Stream *bool

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

ContainerAttachParams contains all the parameters to send to the API endpoint

for the container attach operation.

Typically these are written to a http.Request.

func NewContainerAttachParams

func NewContainerAttachParams() *ContainerAttachParams

NewContainerAttachParams creates a new ContainerAttachParams 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 NewContainerAttachParamsWithContext

func NewContainerAttachParamsWithContext(ctx context.Context) *ContainerAttachParams

NewContainerAttachParamsWithContext creates a new ContainerAttachParams object with the ability to set a context for a request.

func NewContainerAttachParamsWithHTTPClient

func NewContainerAttachParamsWithHTTPClient(client *http.Client) *ContainerAttachParams

NewContainerAttachParamsWithHTTPClient creates a new ContainerAttachParams object with the ability to set a custom HTTPClient for a request.

func NewContainerAttachParamsWithTimeout

func NewContainerAttachParamsWithTimeout(timeout time.Duration) *ContainerAttachParams

NewContainerAttachParamsWithTimeout creates a new ContainerAttachParams object with the ability to set a timeout on a request.

func (*ContainerAttachParams) SetContext

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

SetContext adds the context to the container attach params

func (*ContainerAttachParams) SetDefaults

func (o *ContainerAttachParams) SetDefaults()

SetDefaults hydrates default values in the container attach params (not the query body).

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

func (*ContainerAttachParams) SetDetachKeys

func (o *ContainerAttachParams) SetDetachKeys(detachKeys *string)

SetDetachKeys adds the detachKeys to the container attach params

func (*ContainerAttachParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container attach params

func (*ContainerAttachParams) SetID

func (o *ContainerAttachParams) SetID(id string)

SetID adds the id to the container attach params

func (*ContainerAttachParams) SetLogs

func (o *ContainerAttachParams) SetLogs(logs *bool)

SetLogs adds the logs to the container attach params

func (*ContainerAttachParams) SetStderr

func (o *ContainerAttachParams) SetStderr(stderr *bool)

SetStderr adds the stderr to the container attach params

func (*ContainerAttachParams) SetStdin

func (o *ContainerAttachParams) SetStdin(stdin *bool)

SetStdin adds the stdin to the container attach params

func (*ContainerAttachParams) SetStdout

func (o *ContainerAttachParams) SetStdout(stdout *bool)

SetStdout adds the stdout to the container attach params

func (*ContainerAttachParams) SetStream

func (o *ContainerAttachParams) SetStream(stream *bool)

SetStream adds the stream to the container attach params

func (*ContainerAttachParams) SetTimeout

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

SetTimeout adds the timeout to the container attach params

func (*ContainerAttachParams) WithContext

WithContext adds the context to the container attach params

func (*ContainerAttachParams) WithDefaults

func (o *ContainerAttachParams) WithDefaults() *ContainerAttachParams

WithDefaults hydrates default values in the container attach params (not the query body).

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

func (*ContainerAttachParams) WithDetachKeys

func (o *ContainerAttachParams) WithDetachKeys(detachKeys *string) *ContainerAttachParams

WithDetachKeys adds the detachKeys to the container attach params

func (*ContainerAttachParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container attach params

func (*ContainerAttachParams) WithID

WithID adds the id to the container attach params

func (*ContainerAttachParams) WithLogs

func (o *ContainerAttachParams) WithLogs(logs *bool) *ContainerAttachParams

WithLogs adds the logs to the container attach params

func (*ContainerAttachParams) WithStderr

func (o *ContainerAttachParams) WithStderr(stderr *bool) *ContainerAttachParams

WithStderr adds the stderr to the container attach params

func (*ContainerAttachParams) WithStdin

func (o *ContainerAttachParams) WithStdin(stdin *bool) *ContainerAttachParams

WithStdin adds the stdin to the container attach params

func (*ContainerAttachParams) WithStdout

func (o *ContainerAttachParams) WithStdout(stdout *bool) *ContainerAttachParams

WithStdout adds the stdout to the container attach params

func (*ContainerAttachParams) WithStream

func (o *ContainerAttachParams) WithStream(stream *bool) *ContainerAttachParams

WithStream adds the stream to the container attach params

func (*ContainerAttachParams) WithTimeout

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

WithTimeout adds the timeout to the container attach params

func (*ContainerAttachParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerAttachReader

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

ContainerAttachReader is a Reader for the ContainerAttach structure.

func (*ContainerAttachReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerAttachSwitchingProtocols

type ContainerAttachSwitchingProtocols struct {
}
ContainerAttachSwitchingProtocols describes a response with status code 101, with default header values.

no error, hints proxy about hijacking

func NewContainerAttachSwitchingProtocols

func NewContainerAttachSwitchingProtocols() *ContainerAttachSwitchingProtocols

NewContainerAttachSwitchingProtocols creates a ContainerAttachSwitchingProtocols with default headers values

func (*ContainerAttachSwitchingProtocols) Error

func (*ContainerAttachSwitchingProtocols) IsClientError

func (o *ContainerAttachSwitchingProtocols) IsClientError() bool

IsClientError returns true when this container attach switching protocols response has a 4xx status code

func (*ContainerAttachSwitchingProtocols) IsCode

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

IsCode returns true when this container attach switching protocols response a status code equal to that given

func (*ContainerAttachSwitchingProtocols) IsRedirect

func (o *ContainerAttachSwitchingProtocols) IsRedirect() bool

IsRedirect returns true when this container attach switching protocols response has a 3xx status code

func (*ContainerAttachSwitchingProtocols) IsServerError

func (o *ContainerAttachSwitchingProtocols) IsServerError() bool

IsServerError returns true when this container attach switching protocols response has a 5xx status code

func (*ContainerAttachSwitchingProtocols) IsSuccess

func (o *ContainerAttachSwitchingProtocols) IsSuccess() bool

IsSuccess returns true when this container attach switching protocols response has a 2xx status code

func (*ContainerAttachSwitchingProtocols) String

type ContainerAttachWebsocketBadRequest

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

bad parameter

func NewContainerAttachWebsocketBadRequest

func NewContainerAttachWebsocketBadRequest() *ContainerAttachWebsocketBadRequest

NewContainerAttachWebsocketBadRequest creates a ContainerAttachWebsocketBadRequest with default headers values

func (*ContainerAttachWebsocketBadRequest) Error

func (*ContainerAttachWebsocketBadRequest) GetPayload

func (*ContainerAttachWebsocketBadRequest) IsClientError

func (o *ContainerAttachWebsocketBadRequest) IsClientError() bool

IsClientError returns true when this container attach websocket bad request response has a 4xx status code

func (*ContainerAttachWebsocketBadRequest) IsCode

IsCode returns true when this container attach websocket bad request response a status code equal to that given

func (*ContainerAttachWebsocketBadRequest) IsRedirect

func (o *ContainerAttachWebsocketBadRequest) IsRedirect() bool

IsRedirect returns true when this container attach websocket bad request response has a 3xx status code

func (*ContainerAttachWebsocketBadRequest) IsServerError

func (o *ContainerAttachWebsocketBadRequest) IsServerError() bool

IsServerError returns true when this container attach websocket bad request response has a 5xx status code

func (*ContainerAttachWebsocketBadRequest) IsSuccess

IsSuccess returns true when this container attach websocket bad request response has a 2xx status code

func (*ContainerAttachWebsocketBadRequest) String

type ContainerAttachWebsocketInternalServerError

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

server error

func NewContainerAttachWebsocketInternalServerError

func NewContainerAttachWebsocketInternalServerError() *ContainerAttachWebsocketInternalServerError

NewContainerAttachWebsocketInternalServerError creates a ContainerAttachWebsocketInternalServerError with default headers values

func (*ContainerAttachWebsocketInternalServerError) Error

func (*ContainerAttachWebsocketInternalServerError) GetPayload

func (*ContainerAttachWebsocketInternalServerError) IsClientError

IsClientError returns true when this container attach websocket internal server error response has a 4xx status code

func (*ContainerAttachWebsocketInternalServerError) IsCode

IsCode returns true when this container attach websocket internal server error response a status code equal to that given

func (*ContainerAttachWebsocketInternalServerError) IsRedirect

IsRedirect returns true when this container attach websocket internal server error response has a 3xx status code

func (*ContainerAttachWebsocketInternalServerError) IsServerError

IsServerError returns true when this container attach websocket internal server error response has a 5xx status code

func (*ContainerAttachWebsocketInternalServerError) IsSuccess

IsSuccess returns true when this container attach websocket internal server error response has a 2xx status code

func (*ContainerAttachWebsocketInternalServerError) String

type ContainerAttachWebsocketNotFound

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

no such container

func NewContainerAttachWebsocketNotFound

func NewContainerAttachWebsocketNotFound() *ContainerAttachWebsocketNotFound

NewContainerAttachWebsocketNotFound creates a ContainerAttachWebsocketNotFound with default headers values

func (*ContainerAttachWebsocketNotFound) Error

func (*ContainerAttachWebsocketNotFound) GetPayload

func (*ContainerAttachWebsocketNotFound) IsClientError

func (o *ContainerAttachWebsocketNotFound) IsClientError() bool

IsClientError returns true when this container attach websocket not found response has a 4xx status code

func (*ContainerAttachWebsocketNotFound) IsCode

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

IsCode returns true when this container attach websocket not found response a status code equal to that given

func (*ContainerAttachWebsocketNotFound) IsRedirect

func (o *ContainerAttachWebsocketNotFound) IsRedirect() bool

IsRedirect returns true when this container attach websocket not found response has a 3xx status code

func (*ContainerAttachWebsocketNotFound) IsServerError

func (o *ContainerAttachWebsocketNotFound) IsServerError() bool

IsServerError returns true when this container attach websocket not found response has a 5xx status code

func (*ContainerAttachWebsocketNotFound) IsSuccess

func (o *ContainerAttachWebsocketNotFound) IsSuccess() bool

IsSuccess returns true when this container attach websocket not found response has a 2xx status code

func (*ContainerAttachWebsocketNotFound) String

type ContainerAttachWebsocketOK

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

no error, no upgrade header found

func NewContainerAttachWebsocketOK

func NewContainerAttachWebsocketOK() *ContainerAttachWebsocketOK

NewContainerAttachWebsocketOK creates a ContainerAttachWebsocketOK with default headers values

func (*ContainerAttachWebsocketOK) Error

func (*ContainerAttachWebsocketOK) IsClientError

func (o *ContainerAttachWebsocketOK) IsClientError() bool

IsClientError returns true when this container attach websocket o k response has a 4xx status code

func (*ContainerAttachWebsocketOK) IsCode

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

IsCode returns true when this container attach websocket o k response a status code equal to that given

func (*ContainerAttachWebsocketOK) IsRedirect

func (o *ContainerAttachWebsocketOK) IsRedirect() bool

IsRedirect returns true when this container attach websocket o k response has a 3xx status code

func (*ContainerAttachWebsocketOK) IsServerError

func (o *ContainerAttachWebsocketOK) IsServerError() bool

IsServerError returns true when this container attach websocket o k response has a 5xx status code

func (*ContainerAttachWebsocketOK) IsSuccess

func (o *ContainerAttachWebsocketOK) IsSuccess() bool

IsSuccess returns true when this container attach websocket o k response has a 2xx status code

func (*ContainerAttachWebsocketOK) String

func (o *ContainerAttachWebsocketOK) String() string

type ContainerAttachWebsocketParams

type ContainerAttachWebsocketParams struct {

	/* DetachKeys.

	   Override the key sequence for detaching a container.Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z`, `@`, `^`, `[`, `,`, or `_`.
	*/
	DetachKeys *string

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Logs.

	   Return logs
	*/
	Logs *bool

	/* Stderr.

	   Attach to `stderr`
	*/
	Stderr *bool

	/* Stdin.

	   Attach to `stdin`
	*/
	Stdin *bool

	/* Stdout.

	   Attach to `stdout`
	*/
	Stdout *bool

	/* Stream.

	   Return stream
	*/
	Stream *bool

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

ContainerAttachWebsocketParams contains all the parameters to send to the API endpoint

for the container attach websocket operation.

Typically these are written to a http.Request.

func NewContainerAttachWebsocketParams

func NewContainerAttachWebsocketParams() *ContainerAttachWebsocketParams

NewContainerAttachWebsocketParams creates a new ContainerAttachWebsocketParams 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 NewContainerAttachWebsocketParamsWithContext

func NewContainerAttachWebsocketParamsWithContext(ctx context.Context) *ContainerAttachWebsocketParams

NewContainerAttachWebsocketParamsWithContext creates a new ContainerAttachWebsocketParams object with the ability to set a context for a request.

func NewContainerAttachWebsocketParamsWithHTTPClient

func NewContainerAttachWebsocketParamsWithHTTPClient(client *http.Client) *ContainerAttachWebsocketParams

NewContainerAttachWebsocketParamsWithHTTPClient creates a new ContainerAttachWebsocketParams object with the ability to set a custom HTTPClient for a request.

func NewContainerAttachWebsocketParamsWithTimeout

func NewContainerAttachWebsocketParamsWithTimeout(timeout time.Duration) *ContainerAttachWebsocketParams

NewContainerAttachWebsocketParamsWithTimeout creates a new ContainerAttachWebsocketParams object with the ability to set a timeout on a request.

func (*ContainerAttachWebsocketParams) SetContext

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

SetContext adds the context to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetDefaults

func (o *ContainerAttachWebsocketParams) SetDefaults()

SetDefaults hydrates default values in the container attach websocket params (not the query body).

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

func (*ContainerAttachWebsocketParams) SetDetachKeys

func (o *ContainerAttachWebsocketParams) SetDetachKeys(detachKeys *string)

SetDetachKeys adds the detachKeys to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetID

SetID adds the id to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetLogs

func (o *ContainerAttachWebsocketParams) SetLogs(logs *bool)

SetLogs adds the logs to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetStderr

func (o *ContainerAttachWebsocketParams) SetStderr(stderr *bool)

SetStderr adds the stderr to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetStdin

func (o *ContainerAttachWebsocketParams) SetStdin(stdin *bool)

SetStdin adds the stdin to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetStdout

func (o *ContainerAttachWebsocketParams) SetStdout(stdout *bool)

SetStdout adds the stdout to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetStream

func (o *ContainerAttachWebsocketParams) SetStream(stream *bool)

SetStream adds the stream to the container attach websocket params

func (*ContainerAttachWebsocketParams) SetTimeout

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

SetTimeout adds the timeout to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithContext

WithContext adds the context to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithDefaults

WithDefaults hydrates default values in the container attach websocket params (not the query body).

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

func (*ContainerAttachWebsocketParams) WithDetachKeys

WithDetachKeys adds the detachKeys to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithHTTPClient

WithHTTPClient adds the HTTPClient to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithID

WithID adds the id to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithLogs

WithLogs adds the logs to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithStderr

WithStderr adds the stderr to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithStdin

WithStdin adds the stdin to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithStdout

WithStdout adds the stdout to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithStream

WithStream adds the stream to the container attach websocket params

func (*ContainerAttachWebsocketParams) WithTimeout

WithTimeout adds the timeout to the container attach websocket params

func (*ContainerAttachWebsocketParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerAttachWebsocketReader

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

ContainerAttachWebsocketReader is a Reader for the ContainerAttachWebsocket structure.

func (*ContainerAttachWebsocketReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerAttachWebsocketSwitchingProtocols

type ContainerAttachWebsocketSwitchingProtocols struct {
}
ContainerAttachWebsocketSwitchingProtocols describes a response with status code 101, with default header values.

no error, hints proxy about hijacking

func NewContainerAttachWebsocketSwitchingProtocols

func NewContainerAttachWebsocketSwitchingProtocols() *ContainerAttachWebsocketSwitchingProtocols

NewContainerAttachWebsocketSwitchingProtocols creates a ContainerAttachWebsocketSwitchingProtocols with default headers values

func (*ContainerAttachWebsocketSwitchingProtocols) Error

func (*ContainerAttachWebsocketSwitchingProtocols) IsClientError

IsClientError returns true when this container attach websocket switching protocols response has a 4xx status code

func (*ContainerAttachWebsocketSwitchingProtocols) IsCode

IsCode returns true when this container attach websocket switching protocols response a status code equal to that given

func (*ContainerAttachWebsocketSwitchingProtocols) IsRedirect

IsRedirect returns true when this container attach websocket switching protocols response has a 3xx status code

func (*ContainerAttachWebsocketSwitchingProtocols) IsServerError

IsServerError returns true when this container attach websocket switching protocols response has a 5xx status code

func (*ContainerAttachWebsocketSwitchingProtocols) IsSuccess

IsSuccess returns true when this container attach websocket switching protocols response has a 2xx status code

func (*ContainerAttachWebsocketSwitchingProtocols) String

type ContainerChangeResponseItem

type ContainerChangeResponseItem struct {

	// Kind of change
	// Required: true
	// Enum: [0 1 2]
	Kind uint8 `json:"Kind"`

	// Path to file that has changed
	// Required: true
	Path string `json:"Path"`
}

ContainerChangeResponseItem ContainerChangeResponseItem // // change item in response to ContainerChanges operation swagger:model ContainerChangeResponseItem

func (*ContainerChangeResponseItem) ContextValidate

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

ContextValidate validates this container change response item based on context it is used

func (*ContainerChangeResponseItem) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerChangeResponseItem) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerChangeResponseItem) Validate

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

Validate validates this container change response item

type ContainerChangesInternalServerError

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

server error

func NewContainerChangesInternalServerError

func NewContainerChangesInternalServerError() *ContainerChangesInternalServerError

NewContainerChangesInternalServerError creates a ContainerChangesInternalServerError with default headers values

func (*ContainerChangesInternalServerError) Error

func (*ContainerChangesInternalServerError) GetPayload

func (*ContainerChangesInternalServerError) IsClientError

func (o *ContainerChangesInternalServerError) IsClientError() bool

IsClientError returns true when this container changes internal server error response has a 4xx status code

func (*ContainerChangesInternalServerError) IsCode

IsCode returns true when this container changes internal server error response a status code equal to that given

func (*ContainerChangesInternalServerError) IsRedirect

func (o *ContainerChangesInternalServerError) IsRedirect() bool

IsRedirect returns true when this container changes internal server error response has a 3xx status code

func (*ContainerChangesInternalServerError) IsServerError

func (o *ContainerChangesInternalServerError) IsServerError() bool

IsServerError returns true when this container changes internal server error response has a 5xx status code

func (*ContainerChangesInternalServerError) IsSuccess

IsSuccess returns true when this container changes internal server error response has a 2xx status code

func (*ContainerChangesInternalServerError) String

type ContainerChangesNotFound

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

no such container

func NewContainerChangesNotFound

func NewContainerChangesNotFound() *ContainerChangesNotFound

NewContainerChangesNotFound creates a ContainerChangesNotFound with default headers values

func (*ContainerChangesNotFound) Error

func (o *ContainerChangesNotFound) Error() string

func (*ContainerChangesNotFound) GetPayload

func (*ContainerChangesNotFound) IsClientError

func (o *ContainerChangesNotFound) IsClientError() bool

IsClientError returns true when this container changes not found response has a 4xx status code

func (*ContainerChangesNotFound) IsCode

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

IsCode returns true when this container changes not found response a status code equal to that given

func (*ContainerChangesNotFound) IsRedirect

func (o *ContainerChangesNotFound) IsRedirect() bool

IsRedirect returns true when this container changes not found response has a 3xx status code

func (*ContainerChangesNotFound) IsServerError

func (o *ContainerChangesNotFound) IsServerError() bool

IsServerError returns true when this container changes not found response has a 5xx status code

func (*ContainerChangesNotFound) IsSuccess

func (o *ContainerChangesNotFound) IsSuccess() bool

IsSuccess returns true when this container changes not found response has a 2xx status code

func (*ContainerChangesNotFound) String

func (o *ContainerChangesNotFound) String() string

type ContainerChangesOK

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

The list of changes

func NewContainerChangesOK

func NewContainerChangesOK() *ContainerChangesOK

NewContainerChangesOK creates a ContainerChangesOK with default headers values

func (*ContainerChangesOK) Error

func (o *ContainerChangesOK) Error() string

func (*ContainerChangesOK) GetPayload

func (*ContainerChangesOK) IsClientError

func (o *ContainerChangesOK) IsClientError() bool

IsClientError returns true when this container changes o k response has a 4xx status code

func (*ContainerChangesOK) IsCode

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

IsCode returns true when this container changes o k response a status code equal to that given

func (*ContainerChangesOK) IsRedirect

func (o *ContainerChangesOK) IsRedirect() bool

IsRedirect returns true when this container changes o k response has a 3xx status code

func (*ContainerChangesOK) IsServerError

func (o *ContainerChangesOK) IsServerError() bool

IsServerError returns true when this container changes o k response has a 5xx status code

func (*ContainerChangesOK) IsSuccess

func (o *ContainerChangesOK) IsSuccess() bool

IsSuccess returns true when this container changes o k response has a 2xx status code

func (*ContainerChangesOK) String

func (o *ContainerChangesOK) String() string

type ContainerChangesParams

type ContainerChangesParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerChangesParams contains all the parameters to send to the API endpoint

for the container changes operation.

Typically these are written to a http.Request.

func NewContainerChangesParams

func NewContainerChangesParams() *ContainerChangesParams

NewContainerChangesParams creates a new ContainerChangesParams 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 NewContainerChangesParamsWithContext

func NewContainerChangesParamsWithContext(ctx context.Context) *ContainerChangesParams

NewContainerChangesParamsWithContext creates a new ContainerChangesParams object with the ability to set a context for a request.

func NewContainerChangesParamsWithHTTPClient

func NewContainerChangesParamsWithHTTPClient(client *http.Client) *ContainerChangesParams

NewContainerChangesParamsWithHTTPClient creates a new ContainerChangesParams object with the ability to set a custom HTTPClient for a request.

func NewContainerChangesParamsWithTimeout

func NewContainerChangesParamsWithTimeout(timeout time.Duration) *ContainerChangesParams

NewContainerChangesParamsWithTimeout creates a new ContainerChangesParams object with the ability to set a timeout on a request.

func (*ContainerChangesParams) SetContext

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

SetContext adds the context to the container changes params

func (*ContainerChangesParams) SetDefaults

func (o *ContainerChangesParams) SetDefaults()

SetDefaults hydrates default values in the container changes params (not the query body).

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

func (*ContainerChangesParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container changes params

func (*ContainerChangesParams) SetID

func (o *ContainerChangesParams) SetID(id string)

SetID adds the id to the container changes params

func (*ContainerChangesParams) SetTimeout

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

SetTimeout adds the timeout to the container changes params

func (*ContainerChangesParams) WithContext

WithContext adds the context to the container changes params

func (*ContainerChangesParams) WithDefaults

WithDefaults hydrates default values in the container changes params (not the query body).

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

func (*ContainerChangesParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container changes params

func (*ContainerChangesParams) WithID

WithID adds the id to the container changes params

func (*ContainerChangesParams) WithTimeout

WithTimeout adds the timeout to the container changes params

func (*ContainerChangesParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerChangesReader

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

ContainerChangesReader is a Reader for the ContainerChanges structure.

func (*ContainerChangesReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerCreateBadRequest

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

bad parameter

func NewContainerCreateBadRequest

func NewContainerCreateBadRequest() *ContainerCreateBadRequest

NewContainerCreateBadRequest creates a ContainerCreateBadRequest with default headers values

func (*ContainerCreateBadRequest) Error

func (o *ContainerCreateBadRequest) Error() string

func (*ContainerCreateBadRequest) GetPayload

func (*ContainerCreateBadRequest) IsClientError

func (o *ContainerCreateBadRequest) IsClientError() bool

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

func (*ContainerCreateBadRequest) IsCode

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

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

func (*ContainerCreateBadRequest) IsRedirect

func (o *ContainerCreateBadRequest) IsRedirect() bool

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

func (*ContainerCreateBadRequest) IsServerError

func (o *ContainerCreateBadRequest) IsServerError() bool

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

func (*ContainerCreateBadRequest) IsSuccess

func (o *ContainerCreateBadRequest) IsSuccess() bool

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

func (*ContainerCreateBadRequest) String

func (o *ContainerCreateBadRequest) String() string

type ContainerCreateBody

type ContainerCreateBody struct {
	models.ContainerConfig

	// host config
	HostConfig *models.HostConfig `json:"HostConfig,omitempty"`

	// networking config
	NetworkingConfig *ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig `json:"NetworkingConfig,omitempty"`
}

ContainerCreateBody container create body // Example: {"AttachStderr":true,"AttachStdin":false,"AttachStdout":true,"Cmd":["date"],"Domainname":"","Entrypoint":"","Env":["FOO=bar","BAZ=quux"],"ExposedPorts":{"22/tcp":{}},"HostConfig":{"AutoRemove":true,"Binds":["/tmp:/tmp"],"BlkioDeviceReadBps":[{}],"BlkioDeviceReadIOps":[{}],"BlkioDeviceWriteBps":[{}],"BlkioDeviceWriteIOps":[{}],"BlkioWeight":300,"BlkioWeightDevice":[{}],"CapAdd":["NET_ADMIN"],"CapDrop":["MKNOD"],"CgroupParent":"","CpuPercent":80,"CpuPeriod":100000,"CpuQuota":50000,"CpuRealtimePeriod":1000000,"CpuRealtimeRuntime":10000,"CpuShares":512,"CpusetCpus":"0,1","CpusetMems":"0,1","Devices":[],"Dns":["8.8.8.8"],"DnsOptions":[""],"DnsSearch":[""],"GroupAdd":["newgroup"],"KernelMemory":0,"Links":["redis3:redis"],"LogConfig":{"Config":{},"Type":"json-file"},"MaximumIOBps":0,"MaximumIOps":0,"Memory":0,"MemoryReservation":0,"MemorySwap":0,"MemorySwappiness":60,"NanoCPUs":500000,"NetworkMode":"bridge","OomKillDisable":false,"OomScoreAdj":500,"PidMode":"","PidsLimit":0,"PortBindings":{"22/tcp":[{"HostPort":"11022"}]},"Privileged":false,"PublishAllPorts":false,"ReadonlyRootfs":false,"RestartPolicy":{"MaximumRetryCount":0,"Name":""},"SecurityOpt":[],"ShmSize":67108864,"StorageOpt":{},"Ulimits":[{}],"VolumeDriver":"","VolumesFrom":["parent","other:ro"]},"Hostname":"","Image":"ubuntu","Labels":{"com.example.license":"GPL","com.example.vendor":"Acme","com.example.version":"1.0"},"MacAddress":"12:34:56:78:9a:bc","NetworkDisabled":false,"NetworkingConfig":{"EndpointsConfig":{"isolated_nw":{"Aliases":["server_x","server_y"],"IPAMConfig":{"IPv4Address":"172.20.30.33","IPv6Address":"2001:db8:abcd::3033","LinkLocalIPs":["169.254.34.68","fe80::3468"]},"Links":["container_1","container_2"]}}},"OpenStdin":false,"StdinOnce":false,"StopSignal":"SIGTERM","StopTimeout":10,"Tty":false,"User":"","Volumes":{"/volumes/data":{}},"WorkingDir":""} swagger:model ContainerCreateBody

func (*ContainerCreateBody) ContextValidate

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

ContextValidate validate this container create body based on the context it is used

func (*ContainerCreateBody) MarshalBinary

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

MarshalBinary interface implementation

func (ContainerCreateBody) MarshalJSON

func (o ContainerCreateBody) MarshalJSON() ([]byte, error)

MarshalJSON marshals this object to a JSON structure

func (*ContainerCreateBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerCreateBody) UnmarshalJSON

func (o *ContainerCreateBody) UnmarshalJSON(raw []byte) error

UnmarshalJSON unmarshals this object from a JSON structure

func (*ContainerCreateBody) Validate

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

Validate validates this container create body

type ContainerCreateConflict

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

conflict

func NewContainerCreateConflict

func NewContainerCreateConflict() *ContainerCreateConflict

NewContainerCreateConflict creates a ContainerCreateConflict with default headers values

func (*ContainerCreateConflict) Error

func (o *ContainerCreateConflict) Error() string

func (*ContainerCreateConflict) GetPayload

func (o *ContainerCreateConflict) GetPayload() *models.ErrorResponse

func (*ContainerCreateConflict) IsClientError

func (o *ContainerCreateConflict) IsClientError() bool

IsClientError returns true when this container create conflict response has a 4xx status code

func (*ContainerCreateConflict) IsCode

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

IsCode returns true when this container create conflict response a status code equal to that given

func (*ContainerCreateConflict) IsRedirect

func (o *ContainerCreateConflict) IsRedirect() bool

IsRedirect returns true when this container create conflict response has a 3xx status code

func (*ContainerCreateConflict) IsServerError

func (o *ContainerCreateConflict) IsServerError() bool

IsServerError returns true when this container create conflict response has a 5xx status code

func (*ContainerCreateConflict) IsSuccess

func (o *ContainerCreateConflict) IsSuccess() bool

IsSuccess returns true when this container create conflict response has a 2xx status code

func (*ContainerCreateConflict) String

func (o *ContainerCreateConflict) String() string

type ContainerCreateCreated

type ContainerCreateCreated struct {
	Payload *ContainerCreateCreatedBody
}
ContainerCreateCreated describes a response with status code 201, with default header values.

Container created successfully

func NewContainerCreateCreated

func NewContainerCreateCreated() *ContainerCreateCreated

NewContainerCreateCreated creates a ContainerCreateCreated with default headers values

func (*ContainerCreateCreated) Error

func (o *ContainerCreateCreated) Error() string

func (*ContainerCreateCreated) GetPayload

func (*ContainerCreateCreated) IsClientError

func (o *ContainerCreateCreated) IsClientError() bool

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

func (*ContainerCreateCreated) IsCode

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

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

func (*ContainerCreateCreated) IsRedirect

func (o *ContainerCreateCreated) IsRedirect() bool

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

func (*ContainerCreateCreated) IsServerError

func (o *ContainerCreateCreated) IsServerError() bool

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

func (*ContainerCreateCreated) IsSuccess

func (o *ContainerCreateCreated) IsSuccess() bool

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

func (*ContainerCreateCreated) String

func (o *ContainerCreateCreated) String() string

type ContainerCreateCreatedBody

type ContainerCreateCreatedBody struct {

	// The ID of the created container
	// Required: true
	ID string `json:"Id"`

	// Warnings encountered when creating the container
	// Required: true
	Warnings []string `json:"Warnings"`
}

ContainerCreateCreatedBody ContainerCreateResponse // // OK response to ContainerCreate operation swagger:model ContainerCreateCreatedBody

func (*ContainerCreateCreatedBody) ContextValidate

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

ContextValidate validates this container create created body based on context it is used

func (*ContainerCreateCreatedBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerCreateCreatedBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerCreateCreatedBody) Validate

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

Validate validates this container create created body

type ContainerCreateInternalServerError

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

server error

func NewContainerCreateInternalServerError

func NewContainerCreateInternalServerError() *ContainerCreateInternalServerError

NewContainerCreateInternalServerError creates a ContainerCreateInternalServerError with default headers values

func (*ContainerCreateInternalServerError) Error

func (*ContainerCreateInternalServerError) GetPayload

func (*ContainerCreateInternalServerError) IsClientError

func (o *ContainerCreateInternalServerError) IsClientError() bool

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

func (*ContainerCreateInternalServerError) IsCode

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

func (*ContainerCreateInternalServerError) IsRedirect

func (o *ContainerCreateInternalServerError) IsRedirect() bool

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

func (*ContainerCreateInternalServerError) IsServerError

func (o *ContainerCreateInternalServerError) IsServerError() bool

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

func (*ContainerCreateInternalServerError) IsSuccess

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

func (*ContainerCreateInternalServerError) String

type ContainerCreateNotFound

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

no such container

func NewContainerCreateNotFound

func NewContainerCreateNotFound() *ContainerCreateNotFound

NewContainerCreateNotFound creates a ContainerCreateNotFound with default headers values

func (*ContainerCreateNotFound) Error

func (o *ContainerCreateNotFound) Error() string

func (*ContainerCreateNotFound) GetPayload

func (o *ContainerCreateNotFound) GetPayload() *models.ErrorResponse

func (*ContainerCreateNotFound) IsClientError

func (o *ContainerCreateNotFound) IsClientError() bool

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

func (*ContainerCreateNotFound) IsCode

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

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

func (*ContainerCreateNotFound) IsRedirect

func (o *ContainerCreateNotFound) IsRedirect() bool

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

func (*ContainerCreateNotFound) IsServerError

func (o *ContainerCreateNotFound) IsServerError() bool

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

func (*ContainerCreateNotFound) IsSuccess

func (o *ContainerCreateNotFound) IsSuccess() bool

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

func (*ContainerCreateNotFound) String

func (o *ContainerCreateNotFound) String() string

type ContainerCreateParams

type ContainerCreateParams struct {

	/* Body.

	   Container to create
	*/
	Body ContainerCreateBody

	/* Name.

	   Assign the specified name to the container. Must match `/?[a-zA-Z0-9][a-zA-Z0-9_.-]+`.
	*/
	Name *string

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

ContainerCreateParams contains all the parameters to send to the API endpoint

for the container create operation.

Typically these are written to a http.Request.

func NewContainerCreateParams

func NewContainerCreateParams() *ContainerCreateParams

NewContainerCreateParams creates a new ContainerCreateParams 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 NewContainerCreateParamsWithContext

func NewContainerCreateParamsWithContext(ctx context.Context) *ContainerCreateParams

NewContainerCreateParamsWithContext creates a new ContainerCreateParams object with the ability to set a context for a request.

func NewContainerCreateParamsWithHTTPClient

func NewContainerCreateParamsWithHTTPClient(client *http.Client) *ContainerCreateParams

NewContainerCreateParamsWithHTTPClient creates a new ContainerCreateParams object with the ability to set a custom HTTPClient for a request.

func NewContainerCreateParamsWithTimeout

func NewContainerCreateParamsWithTimeout(timeout time.Duration) *ContainerCreateParams

NewContainerCreateParamsWithTimeout creates a new ContainerCreateParams object with the ability to set a timeout on a request.

func (*ContainerCreateParams) SetBody

func (o *ContainerCreateParams) SetBody(body ContainerCreateBody)

SetBody adds the body to the container create params

func (*ContainerCreateParams) SetContext

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

SetContext adds the context to the container create params

func (*ContainerCreateParams) SetDefaults

func (o *ContainerCreateParams) SetDefaults()

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

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

func (*ContainerCreateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container create params

func (*ContainerCreateParams) SetName

func (o *ContainerCreateParams) SetName(name *string)

SetName adds the name to the container create params

func (*ContainerCreateParams) SetTimeout

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

SetTimeout adds the timeout to the container create params

func (*ContainerCreateParams) WithBody

WithBody adds the body to the container create params

func (*ContainerCreateParams) WithContext

WithContext adds the context to the container create params

func (*ContainerCreateParams) WithDefaults

func (o *ContainerCreateParams) WithDefaults() *ContainerCreateParams

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

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

func (*ContainerCreateParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container create params

func (*ContainerCreateParams) WithName

WithName adds the name to the container create params

func (*ContainerCreateParams) WithTimeout

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

WithTimeout adds the timeout to the container create params

func (*ContainerCreateParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig

type ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig struct {

	// A mapping of network name to endpoint configuration for that network.
	EndpointsConfig map[string]models.EndpointSettings `json:"EndpointsConfig,omitempty"`
}

ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig This container's networking configuration. swagger:model ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig

func (*ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig) ContextValidate

ContextValidate validate this container create params body container create params body a o1 networking config based on the context it is used

func (*ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig) MarshalBinary

MarshalBinary interface implementation

func (*ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig) UnmarshalBinary

UnmarshalBinary interface implementation

func (*ContainerCreateParamsBodyContainerCreateParamsBodyAO1NetworkingConfig) Validate

Validate validates this container create params body container create params body a o1 networking config

type ContainerCreateReader

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

ContainerCreateReader is a Reader for the ContainerCreate structure.

func (*ContainerCreateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerDeleteBadRequest

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

bad parameter

func NewContainerDeleteBadRequest

func NewContainerDeleteBadRequest() *ContainerDeleteBadRequest

NewContainerDeleteBadRequest creates a ContainerDeleteBadRequest with default headers values

func (*ContainerDeleteBadRequest) Error

func (o *ContainerDeleteBadRequest) Error() string

func (*ContainerDeleteBadRequest) GetPayload

func (*ContainerDeleteBadRequest) IsClientError

func (o *ContainerDeleteBadRequest) IsClientError() bool

IsClientError returns true when this container delete bad request response has a 4xx status code

func (*ContainerDeleteBadRequest) IsCode

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

IsCode returns true when this container delete bad request response a status code equal to that given

func (*ContainerDeleteBadRequest) IsRedirect

func (o *ContainerDeleteBadRequest) IsRedirect() bool

IsRedirect returns true when this container delete bad request response has a 3xx status code

func (*ContainerDeleteBadRequest) IsServerError

func (o *ContainerDeleteBadRequest) IsServerError() bool

IsServerError returns true when this container delete bad request response has a 5xx status code

func (*ContainerDeleteBadRequest) IsSuccess

func (o *ContainerDeleteBadRequest) IsSuccess() bool

IsSuccess returns true when this container delete bad request response has a 2xx status code

func (*ContainerDeleteBadRequest) String

func (o *ContainerDeleteBadRequest) String() string

type ContainerDeleteConflict

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

conflict

func NewContainerDeleteConflict

func NewContainerDeleteConflict() *ContainerDeleteConflict

NewContainerDeleteConflict creates a ContainerDeleteConflict with default headers values

func (*ContainerDeleteConflict) Error

func (o *ContainerDeleteConflict) Error() string

func (*ContainerDeleteConflict) GetPayload

func (o *ContainerDeleteConflict) GetPayload() *models.ErrorResponse

func (*ContainerDeleteConflict) IsClientError

func (o *ContainerDeleteConflict) IsClientError() bool

IsClientError returns true when this container delete conflict response has a 4xx status code

func (*ContainerDeleteConflict) IsCode

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

IsCode returns true when this container delete conflict response a status code equal to that given

func (*ContainerDeleteConflict) IsRedirect

func (o *ContainerDeleteConflict) IsRedirect() bool

IsRedirect returns true when this container delete conflict response has a 3xx status code

func (*ContainerDeleteConflict) IsServerError

func (o *ContainerDeleteConflict) IsServerError() bool

IsServerError returns true when this container delete conflict response has a 5xx status code

func (*ContainerDeleteConflict) IsSuccess

func (o *ContainerDeleteConflict) IsSuccess() bool

IsSuccess returns true when this container delete conflict response has a 2xx status code

func (*ContainerDeleteConflict) String

func (o *ContainerDeleteConflict) String() string

type ContainerDeleteInternalServerError

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

server error

func NewContainerDeleteInternalServerError

func NewContainerDeleteInternalServerError() *ContainerDeleteInternalServerError

NewContainerDeleteInternalServerError creates a ContainerDeleteInternalServerError with default headers values

func (*ContainerDeleteInternalServerError) Error

func (*ContainerDeleteInternalServerError) GetPayload

func (*ContainerDeleteInternalServerError) IsClientError

func (o *ContainerDeleteInternalServerError) IsClientError() bool

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

func (*ContainerDeleteInternalServerError) IsCode

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

func (*ContainerDeleteInternalServerError) IsRedirect

func (o *ContainerDeleteInternalServerError) IsRedirect() bool

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

func (*ContainerDeleteInternalServerError) IsServerError

func (o *ContainerDeleteInternalServerError) IsServerError() bool

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

func (*ContainerDeleteInternalServerError) IsSuccess

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

func (*ContainerDeleteInternalServerError) String

type ContainerDeleteNoContent

type ContainerDeleteNoContent struct {
}
ContainerDeleteNoContent describes a response with status code 204, with default header values.

no error

func NewContainerDeleteNoContent

func NewContainerDeleteNoContent() *ContainerDeleteNoContent

NewContainerDeleteNoContent creates a ContainerDeleteNoContent with default headers values

func (*ContainerDeleteNoContent) Error

func (o *ContainerDeleteNoContent) Error() string

func (*ContainerDeleteNoContent) IsClientError

func (o *ContainerDeleteNoContent) IsClientError() bool

IsClientError returns true when this container delete no content response has a 4xx status code

func (*ContainerDeleteNoContent) IsCode

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

IsCode returns true when this container delete no content response a status code equal to that given

func (*ContainerDeleteNoContent) IsRedirect

func (o *ContainerDeleteNoContent) IsRedirect() bool

IsRedirect returns true when this container delete no content response has a 3xx status code

func (*ContainerDeleteNoContent) IsServerError

func (o *ContainerDeleteNoContent) IsServerError() bool

IsServerError returns true when this container delete no content response has a 5xx status code

func (*ContainerDeleteNoContent) IsSuccess

func (o *ContainerDeleteNoContent) IsSuccess() bool

IsSuccess returns true when this container delete no content response has a 2xx status code

func (*ContainerDeleteNoContent) String

func (o *ContainerDeleteNoContent) String() string

type ContainerDeleteNotFound

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

no such container

func NewContainerDeleteNotFound

func NewContainerDeleteNotFound() *ContainerDeleteNotFound

NewContainerDeleteNotFound creates a ContainerDeleteNotFound with default headers values

func (*ContainerDeleteNotFound) Error

func (o *ContainerDeleteNotFound) Error() string

func (*ContainerDeleteNotFound) GetPayload

func (o *ContainerDeleteNotFound) GetPayload() *models.ErrorResponse

func (*ContainerDeleteNotFound) IsClientError

func (o *ContainerDeleteNotFound) IsClientError() bool

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

func (*ContainerDeleteNotFound) IsCode

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

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

func (*ContainerDeleteNotFound) IsRedirect

func (o *ContainerDeleteNotFound) IsRedirect() bool

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

func (*ContainerDeleteNotFound) IsServerError

func (o *ContainerDeleteNotFound) IsServerError() bool

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

func (*ContainerDeleteNotFound) IsSuccess

func (o *ContainerDeleteNotFound) IsSuccess() bool

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

func (*ContainerDeleteNotFound) String

func (o *ContainerDeleteNotFound) String() string

type ContainerDeleteParams

type ContainerDeleteParams struct {

	/* Force.

	   If the container is running, kill it before removing it.
	*/
	Force *bool

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Link.

	   Remove the specified link associated with the container.
	*/
	Link *bool

	/* V.

	   Remove the volumes associated with the container.
	*/
	V *bool

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

ContainerDeleteParams contains all the parameters to send to the API endpoint

for the container delete operation.

Typically these are written to a http.Request.

func NewContainerDeleteParams

func NewContainerDeleteParams() *ContainerDeleteParams

NewContainerDeleteParams creates a new ContainerDeleteParams 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 NewContainerDeleteParamsWithContext

func NewContainerDeleteParamsWithContext(ctx context.Context) *ContainerDeleteParams

NewContainerDeleteParamsWithContext creates a new ContainerDeleteParams object with the ability to set a context for a request.

func NewContainerDeleteParamsWithHTTPClient

func NewContainerDeleteParamsWithHTTPClient(client *http.Client) *ContainerDeleteParams

NewContainerDeleteParamsWithHTTPClient creates a new ContainerDeleteParams object with the ability to set a custom HTTPClient for a request.

func NewContainerDeleteParamsWithTimeout

func NewContainerDeleteParamsWithTimeout(timeout time.Duration) *ContainerDeleteParams

NewContainerDeleteParamsWithTimeout creates a new ContainerDeleteParams object with the ability to set a timeout on a request.

func (*ContainerDeleteParams) SetContext

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

SetContext adds the context to the container delete params

func (*ContainerDeleteParams) SetDefaults

func (o *ContainerDeleteParams) SetDefaults()

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

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

func (*ContainerDeleteParams) SetForce

func (o *ContainerDeleteParams) SetForce(force *bool)

SetForce adds the force to the container delete params

func (*ContainerDeleteParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container delete params

func (*ContainerDeleteParams) SetID

func (o *ContainerDeleteParams) SetID(id string)

SetID adds the id to the container delete params

func (o *ContainerDeleteParams) SetLink(link *bool)

SetLink adds the link to the container delete params

func (*ContainerDeleteParams) SetTimeout

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

SetTimeout adds the timeout to the container delete params

func (*ContainerDeleteParams) SetV

func (o *ContainerDeleteParams) SetV(v *bool)

SetV adds the v to the container delete params

func (*ContainerDeleteParams) WithContext

WithContext adds the context to the container delete params

func (*ContainerDeleteParams) WithDefaults

func (o *ContainerDeleteParams) WithDefaults() *ContainerDeleteParams

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

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

func (*ContainerDeleteParams) WithForce

func (o *ContainerDeleteParams) WithForce(force *bool) *ContainerDeleteParams

WithForce adds the force to the container delete params

func (*ContainerDeleteParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container delete params

func (*ContainerDeleteParams) WithID

WithID adds the id to the container delete params

func (o *ContainerDeleteParams) WithLink(link *bool) *ContainerDeleteParams

WithLink adds the link to the container delete params

func (*ContainerDeleteParams) WithTimeout

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

WithTimeout adds the timeout to the container delete params

func (*ContainerDeleteParams) WithV

WithV adds the v to the container delete params

func (*ContainerDeleteParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerDeleteReader

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

ContainerDeleteReader is a Reader for the ContainerDelete structure.

func (*ContainerDeleteReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerExportInternalServerError

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

server error

func NewContainerExportInternalServerError

func NewContainerExportInternalServerError() *ContainerExportInternalServerError

NewContainerExportInternalServerError creates a ContainerExportInternalServerError with default headers values

func (*ContainerExportInternalServerError) Error

func (*ContainerExportInternalServerError) GetPayload

func (*ContainerExportInternalServerError) IsClientError

func (o *ContainerExportInternalServerError) IsClientError() bool

IsClientError returns true when this container export internal server error response has a 4xx status code

func (*ContainerExportInternalServerError) IsCode

IsCode returns true when this container export internal server error response a status code equal to that given

func (*ContainerExportInternalServerError) IsRedirect

func (o *ContainerExportInternalServerError) IsRedirect() bool

IsRedirect returns true when this container export internal server error response has a 3xx status code

func (*ContainerExportInternalServerError) IsServerError

func (o *ContainerExportInternalServerError) IsServerError() bool

IsServerError returns true when this container export internal server error response has a 5xx status code

func (*ContainerExportInternalServerError) IsSuccess

IsSuccess returns true when this container export internal server error response has a 2xx status code

func (*ContainerExportInternalServerError) String

type ContainerExportNotFound

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

no such container

func NewContainerExportNotFound

func NewContainerExportNotFound() *ContainerExportNotFound

NewContainerExportNotFound creates a ContainerExportNotFound with default headers values

func (*ContainerExportNotFound) Error

func (o *ContainerExportNotFound) Error() string

func (*ContainerExportNotFound) GetPayload

func (o *ContainerExportNotFound) GetPayload() *models.ErrorResponse

func (*ContainerExportNotFound) IsClientError

func (o *ContainerExportNotFound) IsClientError() bool

IsClientError returns true when this container export not found response has a 4xx status code

func (*ContainerExportNotFound) IsCode

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

IsCode returns true when this container export not found response a status code equal to that given

func (*ContainerExportNotFound) IsRedirect

func (o *ContainerExportNotFound) IsRedirect() bool

IsRedirect returns true when this container export not found response has a 3xx status code

func (*ContainerExportNotFound) IsServerError

func (o *ContainerExportNotFound) IsServerError() bool

IsServerError returns true when this container export not found response has a 5xx status code

func (*ContainerExportNotFound) IsSuccess

func (o *ContainerExportNotFound) IsSuccess() bool

IsSuccess returns true when this container export not found response has a 2xx status code

func (*ContainerExportNotFound) String

func (o *ContainerExportNotFound) String() string

type ContainerExportOK

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

no error

func NewContainerExportOK

func NewContainerExportOK() *ContainerExportOK

NewContainerExportOK creates a ContainerExportOK with default headers values

func (*ContainerExportOK) Error

func (o *ContainerExportOK) Error() string

func (*ContainerExportOK) IsClientError

func (o *ContainerExportOK) IsClientError() bool

IsClientError returns true when this container export o k response has a 4xx status code

func (*ContainerExportOK) IsCode

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

IsCode returns true when this container export o k response a status code equal to that given

func (*ContainerExportOK) IsRedirect

func (o *ContainerExportOK) IsRedirect() bool

IsRedirect returns true when this container export o k response has a 3xx status code

func (*ContainerExportOK) IsServerError

func (o *ContainerExportOK) IsServerError() bool

IsServerError returns true when this container export o k response has a 5xx status code

func (*ContainerExportOK) IsSuccess

func (o *ContainerExportOK) IsSuccess() bool

IsSuccess returns true when this container export o k response has a 2xx status code

func (*ContainerExportOK) String

func (o *ContainerExportOK) String() string

type ContainerExportParams

type ContainerExportParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerExportParams contains all the parameters to send to the API endpoint

for the container export operation.

Typically these are written to a http.Request.

func NewContainerExportParams

func NewContainerExportParams() *ContainerExportParams

NewContainerExportParams creates a new ContainerExportParams 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 NewContainerExportParamsWithContext

func NewContainerExportParamsWithContext(ctx context.Context) *ContainerExportParams

NewContainerExportParamsWithContext creates a new ContainerExportParams object with the ability to set a context for a request.

func NewContainerExportParamsWithHTTPClient

func NewContainerExportParamsWithHTTPClient(client *http.Client) *ContainerExportParams

NewContainerExportParamsWithHTTPClient creates a new ContainerExportParams object with the ability to set a custom HTTPClient for a request.

func NewContainerExportParamsWithTimeout

func NewContainerExportParamsWithTimeout(timeout time.Duration) *ContainerExportParams

NewContainerExportParamsWithTimeout creates a new ContainerExportParams object with the ability to set a timeout on a request.

func (*ContainerExportParams) SetContext

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

SetContext adds the context to the container export params

func (*ContainerExportParams) SetDefaults

func (o *ContainerExportParams) SetDefaults()

SetDefaults hydrates default values in the container export params (not the query body).

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

func (*ContainerExportParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container export params

func (*ContainerExportParams) SetID

func (o *ContainerExportParams) SetID(id string)

SetID adds the id to the container export params

func (*ContainerExportParams) SetTimeout

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

SetTimeout adds the timeout to the container export params

func (*ContainerExportParams) WithContext

WithContext adds the context to the container export params

func (*ContainerExportParams) WithDefaults

func (o *ContainerExportParams) WithDefaults() *ContainerExportParams

WithDefaults hydrates default values in the container export params (not the query body).

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

func (*ContainerExportParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container export params

func (*ContainerExportParams) WithID

WithID adds the id to the container export params

func (*ContainerExportParams) WithTimeout

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

WithTimeout adds the timeout to the container export params

func (*ContainerExportParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerExportReader

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

ContainerExportReader is a Reader for the ContainerExport structure.

func (*ContainerExportReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerInspectInternalServerError

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

server error

func NewContainerInspectInternalServerError

func NewContainerInspectInternalServerError() *ContainerInspectInternalServerError

NewContainerInspectInternalServerError creates a ContainerInspectInternalServerError with default headers values

func (*ContainerInspectInternalServerError) Error

func (*ContainerInspectInternalServerError) GetPayload

func (*ContainerInspectInternalServerError) IsClientError

func (o *ContainerInspectInternalServerError) IsClientError() bool

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

func (*ContainerInspectInternalServerError) IsCode

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

func (*ContainerInspectInternalServerError) IsRedirect

func (o *ContainerInspectInternalServerError) IsRedirect() bool

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

func (*ContainerInspectInternalServerError) IsServerError

func (o *ContainerInspectInternalServerError) IsServerError() bool

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

func (*ContainerInspectInternalServerError) IsSuccess

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

func (*ContainerInspectInternalServerError) String

type ContainerInspectNotFound

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

no such container

func NewContainerInspectNotFound

func NewContainerInspectNotFound() *ContainerInspectNotFound

NewContainerInspectNotFound creates a ContainerInspectNotFound with default headers values

func (*ContainerInspectNotFound) Error

func (o *ContainerInspectNotFound) Error() string

func (*ContainerInspectNotFound) GetPayload

func (*ContainerInspectNotFound) IsClientError

func (o *ContainerInspectNotFound) IsClientError() bool

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

func (*ContainerInspectNotFound) IsCode

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

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

func (*ContainerInspectNotFound) IsRedirect

func (o *ContainerInspectNotFound) IsRedirect() bool

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

func (*ContainerInspectNotFound) IsServerError

func (o *ContainerInspectNotFound) IsServerError() bool

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

func (*ContainerInspectNotFound) IsSuccess

func (o *ContainerInspectNotFound) IsSuccess() bool

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

func (*ContainerInspectNotFound) String

func (o *ContainerInspectNotFound) String() string

type ContainerInspectOK

type ContainerInspectOK struct {
	Payload *ContainerInspectOKBody
}
ContainerInspectOK describes a response with status code 200, with default header values.

no error

func NewContainerInspectOK

func NewContainerInspectOK() *ContainerInspectOK

NewContainerInspectOK creates a ContainerInspectOK with default headers values

func (*ContainerInspectOK) Error

func (o *ContainerInspectOK) Error() string

func (*ContainerInspectOK) GetPayload

func (o *ContainerInspectOK) GetPayload() *ContainerInspectOKBody

func (*ContainerInspectOK) IsClientError

func (o *ContainerInspectOK) IsClientError() bool

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

func (*ContainerInspectOK) IsCode

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

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

func (*ContainerInspectOK) IsRedirect

func (o *ContainerInspectOK) IsRedirect() bool

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

func (*ContainerInspectOK) IsServerError

func (o *ContainerInspectOK) IsServerError() bool

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

func (*ContainerInspectOK) IsSuccess

func (o *ContainerInspectOK) IsSuccess() bool

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

func (*ContainerInspectOK) String

func (o *ContainerInspectOK) String() string

type ContainerInspectOKBody

type ContainerInspectOKBody struct {

	// app armor profile
	AppArmorProfile string `json:"AppArmorProfile,omitempty"`

	// The arguments to the command being run
	Args []string `json:"Args"`

	// config
	Config *models.ContainerConfig `json:"Config,omitempty"`

	// The time the container was created
	Created string `json:"Created,omitempty"`

	// driver
	Driver string `json:"Driver,omitempty"`

	// IDs of exec instances that are running in the container.
	ExecIDs []string `json:"ExecIDs"`

	// graph driver
	GraphDriver *models.GraphDriverData `json:"GraphDriver,omitempty"`

	// host config
	HostConfig *models.HostConfig `json:"HostConfig,omitempty"`

	// hostname path
	HostnamePath string `json:"HostnamePath,omitempty"`

	// hosts path
	HostsPath string `json:"HostsPath,omitempty"`

	// The ID of the container
	ID string `json:"Id,omitempty"`

	// The container's image
	Image string `json:"Image,omitempty"`

	// log path
	LogPath string `json:"LogPath,omitempty"`

	// mount label
	MountLabel string `json:"MountLabel,omitempty"`

	// mounts
	Mounts []*models.MountPoint `json:"Mounts"`

	// name
	Name string `json:"Name,omitempty"`

	// network settings
	NetworkSettings *models.NetworkSettings `json:"NetworkSettings,omitempty"`

	// TODO
	Node interface{} `json:"Node,omitempty"`

	// The path to the command being run
	Path string `json:"Path,omitempty"`

	// platform
	Platform string `json:"Platform,omitempty"`

	// process label
	ProcessLabel string `json:"ProcessLabel,omitempty"`

	// resolv conf path
	ResolvConfPath string `json:"ResolvConfPath,omitempty"`

	// restart count
	RestartCount int64 `json:"RestartCount,omitempty"`

	// The total size of all the files in this container.
	SizeRootFs int64 `json:"SizeRootFs,omitempty"`

	// The size of files that have been created or changed by this container.
	SizeRw int64 `json:"SizeRw,omitempty"`

	// state
	State *ContainerInspectOKBodyState `json:"State,omitempty"`
}

ContainerInspectOKBody ContainerInspectResponse swagger:model ContainerInspectOKBody

func (*ContainerInspectOKBody) ContextValidate

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

ContextValidate validate this container inspect o k body based on the context it is used

func (*ContainerInspectOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerInspectOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerInspectOKBody) Validate

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

Validate validates this container inspect o k body

type ContainerInspectOKBodyState

type ContainerInspectOKBodyState struct {

	// dead
	Dead bool `json:"Dead,omitempty"`

	// error
	Error string `json:"Error,omitempty"`

	// The last exit code of this container
	ExitCode int64 `json:"ExitCode,omitempty"`

	// The time when this container last exited.
	FinishedAt string `json:"FinishedAt,omitempty"`

	// Whether this container has been killed because it ran out of memory.
	OOMKilled bool `json:"OOMKilled,omitempty"`

	// Whether this container is paused.
	Paused bool `json:"Paused,omitempty"`

	// The process ID of this container
	Pid int64 `json:"Pid,omitempty"`

	// Whether this container is restarting.
	Restarting bool `json:"Restarting,omitempty"`

	// Whether this container is running.
	//
	// Note that a running container can be _paused_. The `Running` and `Paused`
	// booleans are not mutually exclusive:
	//
	// When pausing a container (on Linux), the freezer cgroup is used to suspend
	// all processes in the container. Freezing the process requires the process to
	// be running. As a result, paused containers are both `Running` _and_ `Paused`.
	//
	// Use the `Status` field instead to determine if a container's state is "running".
	//
	Running bool `json:"Running,omitempty"`

	// The time when this container was last started.
	StartedAt string `json:"StartedAt,omitempty"`

	// The status of the container. For example, `"running"` or `"exited"`.
	//
	// Enum: [created running paused restarting removing exited dead]
	Status string `json:"Status,omitempty"`
}

ContainerInspectOKBodyState The state of the container. swagger:model ContainerInspectOKBodyState

func (*ContainerInspectOKBodyState) ContextValidate

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

ContextValidate validates this container inspect o k body state based on context it is used

func (*ContainerInspectOKBodyState) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerInspectOKBodyState) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerInspectOKBodyState) Validate

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

Validate validates this container inspect o k body state

type ContainerInspectParams

type ContainerInspectParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Size.

	   Return the size of container as fields `SizeRw` and `SizeRootFs`
	*/
	Size *bool

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

ContainerInspectParams contains all the parameters to send to the API endpoint

for the container inspect operation.

Typically these are written to a http.Request.

func NewContainerInspectParams

func NewContainerInspectParams() *ContainerInspectParams

NewContainerInspectParams creates a new ContainerInspectParams 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 NewContainerInspectParamsWithContext

func NewContainerInspectParamsWithContext(ctx context.Context) *ContainerInspectParams

NewContainerInspectParamsWithContext creates a new ContainerInspectParams object with the ability to set a context for a request.

func NewContainerInspectParamsWithHTTPClient

func NewContainerInspectParamsWithHTTPClient(client *http.Client) *ContainerInspectParams

NewContainerInspectParamsWithHTTPClient creates a new ContainerInspectParams object with the ability to set a custom HTTPClient for a request.

func NewContainerInspectParamsWithTimeout

func NewContainerInspectParamsWithTimeout(timeout time.Duration) *ContainerInspectParams

NewContainerInspectParamsWithTimeout creates a new ContainerInspectParams object with the ability to set a timeout on a request.

func (*ContainerInspectParams) SetContext

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

SetContext adds the context to the container inspect params

func (*ContainerInspectParams) SetDefaults

func (o *ContainerInspectParams) SetDefaults()

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

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

func (*ContainerInspectParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container inspect params

func (*ContainerInspectParams) SetID

func (o *ContainerInspectParams) SetID(id string)

SetID adds the id to the container inspect params

func (*ContainerInspectParams) SetSize

func (o *ContainerInspectParams) SetSize(size *bool)

SetSize adds the size to the container inspect params

func (*ContainerInspectParams) SetTimeout

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

SetTimeout adds the timeout to the container inspect params

func (*ContainerInspectParams) WithContext

WithContext adds the context to the container inspect params

func (*ContainerInspectParams) WithDefaults

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

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

func (*ContainerInspectParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container inspect params

func (*ContainerInspectParams) WithID

WithID adds the id to the container inspect params

func (*ContainerInspectParams) WithSize

WithSize adds the size to the container inspect params

func (*ContainerInspectParams) WithTimeout

WithTimeout adds the timeout to the container inspect params

func (*ContainerInspectParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerInspectReader

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

ContainerInspectReader is a Reader for the ContainerInspect structure.

func (*ContainerInspectReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerKillConflict

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

container is not running

func NewContainerKillConflict

func NewContainerKillConflict() *ContainerKillConflict

NewContainerKillConflict creates a ContainerKillConflict with default headers values

func (*ContainerKillConflict) Error

func (o *ContainerKillConflict) Error() string

func (*ContainerKillConflict) GetPayload

func (o *ContainerKillConflict) GetPayload() *models.ErrorResponse

func (*ContainerKillConflict) IsClientError

func (o *ContainerKillConflict) IsClientError() bool

IsClientError returns true when this container kill conflict response has a 4xx status code

func (*ContainerKillConflict) IsCode

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

IsCode returns true when this container kill conflict response a status code equal to that given

func (*ContainerKillConflict) IsRedirect

func (o *ContainerKillConflict) IsRedirect() bool

IsRedirect returns true when this container kill conflict response has a 3xx status code

func (*ContainerKillConflict) IsServerError

func (o *ContainerKillConflict) IsServerError() bool

IsServerError returns true when this container kill conflict response has a 5xx status code

func (*ContainerKillConflict) IsSuccess

func (o *ContainerKillConflict) IsSuccess() bool

IsSuccess returns true when this container kill conflict response has a 2xx status code

func (*ContainerKillConflict) String

func (o *ContainerKillConflict) String() string

type ContainerKillInternalServerError

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

server error

func NewContainerKillInternalServerError

func NewContainerKillInternalServerError() *ContainerKillInternalServerError

NewContainerKillInternalServerError creates a ContainerKillInternalServerError with default headers values

func (*ContainerKillInternalServerError) Error

func (*ContainerKillInternalServerError) GetPayload

func (*ContainerKillInternalServerError) IsClientError

func (o *ContainerKillInternalServerError) IsClientError() bool

IsClientError returns true when this container kill internal server error response has a 4xx status code

func (*ContainerKillInternalServerError) IsCode

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

IsCode returns true when this container kill internal server error response a status code equal to that given

func (*ContainerKillInternalServerError) IsRedirect

func (o *ContainerKillInternalServerError) IsRedirect() bool

IsRedirect returns true when this container kill internal server error response has a 3xx status code

func (*ContainerKillInternalServerError) IsServerError

func (o *ContainerKillInternalServerError) IsServerError() bool

IsServerError returns true when this container kill internal server error response has a 5xx status code

func (*ContainerKillInternalServerError) IsSuccess

func (o *ContainerKillInternalServerError) IsSuccess() bool

IsSuccess returns true when this container kill internal server error response has a 2xx status code

func (*ContainerKillInternalServerError) String

type ContainerKillNoContent

type ContainerKillNoContent struct {
}
ContainerKillNoContent describes a response with status code 204, with default header values.

no error

func NewContainerKillNoContent

func NewContainerKillNoContent() *ContainerKillNoContent

NewContainerKillNoContent creates a ContainerKillNoContent with default headers values

func (*ContainerKillNoContent) Error

func (o *ContainerKillNoContent) Error() string

func (*ContainerKillNoContent) IsClientError

func (o *ContainerKillNoContent) IsClientError() bool

IsClientError returns true when this container kill no content response has a 4xx status code

func (*ContainerKillNoContent) IsCode

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

IsCode returns true when this container kill no content response a status code equal to that given

func (*ContainerKillNoContent) IsRedirect

func (o *ContainerKillNoContent) IsRedirect() bool

IsRedirect returns true when this container kill no content response has a 3xx status code

func (*ContainerKillNoContent) IsServerError

func (o *ContainerKillNoContent) IsServerError() bool

IsServerError returns true when this container kill no content response has a 5xx status code

func (*ContainerKillNoContent) IsSuccess

func (o *ContainerKillNoContent) IsSuccess() bool

IsSuccess returns true when this container kill no content response has a 2xx status code

func (*ContainerKillNoContent) String

func (o *ContainerKillNoContent) String() string

type ContainerKillNotFound

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

no such container

func NewContainerKillNotFound

func NewContainerKillNotFound() *ContainerKillNotFound

NewContainerKillNotFound creates a ContainerKillNotFound with default headers values

func (*ContainerKillNotFound) Error

func (o *ContainerKillNotFound) Error() string

func (*ContainerKillNotFound) GetPayload

func (o *ContainerKillNotFound) GetPayload() *models.ErrorResponse

func (*ContainerKillNotFound) IsClientError

func (o *ContainerKillNotFound) IsClientError() bool

IsClientError returns true when this container kill not found response has a 4xx status code

func (*ContainerKillNotFound) IsCode

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

IsCode returns true when this container kill not found response a status code equal to that given

func (*ContainerKillNotFound) IsRedirect

func (o *ContainerKillNotFound) IsRedirect() bool

IsRedirect returns true when this container kill not found response has a 3xx status code

func (*ContainerKillNotFound) IsServerError

func (o *ContainerKillNotFound) IsServerError() bool

IsServerError returns true when this container kill not found response has a 5xx status code

func (*ContainerKillNotFound) IsSuccess

func (o *ContainerKillNotFound) IsSuccess() bool

IsSuccess returns true when this container kill not found response has a 2xx status code

func (*ContainerKillNotFound) String

func (o *ContainerKillNotFound) String() string

type ContainerKillParams

type ContainerKillParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Signal.

	   Signal to send to the container as an integer or string (e.g. `SIGINT`)

	   Default: "SIGKILL"
	*/
	Signal *string

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

ContainerKillParams contains all the parameters to send to the API endpoint

for the container kill operation.

Typically these are written to a http.Request.

func NewContainerKillParams

func NewContainerKillParams() *ContainerKillParams

NewContainerKillParams creates a new ContainerKillParams 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 NewContainerKillParamsWithContext

func NewContainerKillParamsWithContext(ctx context.Context) *ContainerKillParams

NewContainerKillParamsWithContext creates a new ContainerKillParams object with the ability to set a context for a request.

func NewContainerKillParamsWithHTTPClient

func NewContainerKillParamsWithHTTPClient(client *http.Client) *ContainerKillParams

NewContainerKillParamsWithHTTPClient creates a new ContainerKillParams object with the ability to set a custom HTTPClient for a request.

func NewContainerKillParamsWithTimeout

func NewContainerKillParamsWithTimeout(timeout time.Duration) *ContainerKillParams

NewContainerKillParamsWithTimeout creates a new ContainerKillParams object with the ability to set a timeout on a request.

func (*ContainerKillParams) SetContext

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

SetContext adds the context to the container kill params

func (*ContainerKillParams) SetDefaults

func (o *ContainerKillParams) SetDefaults()

SetDefaults hydrates default values in the container kill params (not the query body).

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

func (*ContainerKillParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container kill params

func (*ContainerKillParams) SetID

func (o *ContainerKillParams) SetID(id string)

SetID adds the id to the container kill params

func (*ContainerKillParams) SetSignal

func (o *ContainerKillParams) SetSignal(signal *string)

SetSignal adds the signal to the container kill params

func (*ContainerKillParams) SetTimeout

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

SetTimeout adds the timeout to the container kill params

func (*ContainerKillParams) WithContext

WithContext adds the context to the container kill params

func (*ContainerKillParams) WithDefaults

func (o *ContainerKillParams) WithDefaults() *ContainerKillParams

WithDefaults hydrates default values in the container kill params (not the query body).

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

func (*ContainerKillParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container kill params

func (*ContainerKillParams) WithID

WithID adds the id to the container kill params

func (*ContainerKillParams) WithSignal

func (o *ContainerKillParams) WithSignal(signal *string) *ContainerKillParams

WithSignal adds the signal to the container kill params

func (*ContainerKillParams) WithTimeout

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

WithTimeout adds the timeout to the container kill params

func (*ContainerKillParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerKillReader

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

ContainerKillReader is a Reader for the ContainerKill structure.

func (*ContainerKillReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerListBadRequest

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

bad parameter

func NewContainerListBadRequest

func NewContainerListBadRequest() *ContainerListBadRequest

NewContainerListBadRequest creates a ContainerListBadRequest with default headers values

func (*ContainerListBadRequest) Error

func (o *ContainerListBadRequest) Error() string

func (*ContainerListBadRequest) GetPayload

func (o *ContainerListBadRequest) GetPayload() *models.ErrorResponse

func (*ContainerListBadRequest) IsClientError

func (o *ContainerListBadRequest) IsClientError() bool

IsClientError returns true when this container list bad request response has a 4xx status code

func (*ContainerListBadRequest) IsCode

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

IsCode returns true when this container list bad request response a status code equal to that given

func (*ContainerListBadRequest) IsRedirect

func (o *ContainerListBadRequest) IsRedirect() bool

IsRedirect returns true when this container list bad request response has a 3xx status code

func (*ContainerListBadRequest) IsServerError

func (o *ContainerListBadRequest) IsServerError() bool

IsServerError returns true when this container list bad request response has a 5xx status code

func (*ContainerListBadRequest) IsSuccess

func (o *ContainerListBadRequest) IsSuccess() bool

IsSuccess returns true when this container list bad request response has a 2xx status code

func (*ContainerListBadRequest) String

func (o *ContainerListBadRequest) String() string

type ContainerListInternalServerError

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

server error

func NewContainerListInternalServerError

func NewContainerListInternalServerError() *ContainerListInternalServerError

NewContainerListInternalServerError creates a ContainerListInternalServerError with default headers values

func (*ContainerListInternalServerError) Error

func (*ContainerListInternalServerError) GetPayload

func (*ContainerListInternalServerError) IsClientError

func (o *ContainerListInternalServerError) IsClientError() bool

IsClientError returns true when this container list internal server error response has a 4xx status code

func (*ContainerListInternalServerError) IsCode

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

IsCode returns true when this container list internal server error response a status code equal to that given

func (*ContainerListInternalServerError) IsRedirect

func (o *ContainerListInternalServerError) IsRedirect() bool

IsRedirect returns true when this container list internal server error response has a 3xx status code

func (*ContainerListInternalServerError) IsServerError

func (o *ContainerListInternalServerError) IsServerError() bool

IsServerError returns true when this container list internal server error response has a 5xx status code

func (*ContainerListInternalServerError) IsSuccess

func (o *ContainerListInternalServerError) IsSuccess() bool

IsSuccess returns true when this container list internal server error response has a 2xx status code

func (*ContainerListInternalServerError) String

type ContainerListOK

type ContainerListOK struct {
	Payload models.ContainerSummary
}
ContainerListOK describes a response with status code 200, with default header values.

no error

func NewContainerListOK

func NewContainerListOK() *ContainerListOK

NewContainerListOK creates a ContainerListOK with default headers values

func (*ContainerListOK) Error

func (o *ContainerListOK) Error() string

func (*ContainerListOK) GetPayload

func (o *ContainerListOK) GetPayload() models.ContainerSummary

func (*ContainerListOK) IsClientError

func (o *ContainerListOK) IsClientError() bool

IsClientError returns true when this container list o k response has a 4xx status code

func (*ContainerListOK) IsCode

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

IsCode returns true when this container list o k response a status code equal to that given

func (*ContainerListOK) IsRedirect

func (o *ContainerListOK) IsRedirect() bool

IsRedirect returns true when this container list o k response has a 3xx status code

func (*ContainerListOK) IsServerError

func (o *ContainerListOK) IsServerError() bool

IsServerError returns true when this container list o k response has a 5xx status code

func (*ContainerListOK) IsSuccess

func (o *ContainerListOK) IsSuccess() bool

IsSuccess returns true when this container list o k response has a 2xx status code

func (*ContainerListOK) String

func (o *ContainerListOK) String() string

type ContainerListParams

type ContainerListParams struct {

	/* All.

	   Return all containers. By default, only running containers are shown
	*/
	All *bool

	/* Filters.

	     Filters to process on the container list, encoded as JSON (a `map[string][]string`). For example, `{"status": ["paused"]}` will only return paused containers. Available filters:

	- `ancestor`=(`<image-name>[:<tag>]`, `<image id>`, or `<image@digest>`)
	- `before`=(`<container id>` or `<container name>`)
	- `expose`=(`<port>[/<proto>]`|`<startport-endport>/[<proto>]`)
	- `exited=<int>` containers with exit code of `<int>`
	- `health`=(`starting`|`healthy`|`unhealthy`|`none`)
	- `id=<ID>` a container's ID
	- `isolation=`(`default`|`process`|`hyperv`) (Windows daemon only)
	- `is-task=`(`true`|`false`)
	- `label=key` or `label="key=value"` of a container label
	- `name=<name>` a container's name
	- `network`=(`<network id>` or `<network name>`)
	- `publish`=(`<port>[/<proto>]`|`<startport-endport>/[<proto>]`)
	- `since`=(`<container id>` or `<container name>`)
	- `status=`(`created`|`restarting`|`running`|`removing`|`paused`|`exited`|`dead`)
	- `volume`=(`<volume name>` or `<mount point destination>`)

	*/
	Filters *string

	/* Limit.

	   Return this number of most recently created containers, including non-running ones.
	*/
	Limit *int64

	/* Size.

	   Return the size of container as fields `SizeRw` and `SizeRootFs`.
	*/
	Size *bool

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

ContainerListParams contains all the parameters to send to the API endpoint

for the container list operation.

Typically these are written to a http.Request.

func NewContainerListParams

func NewContainerListParams() *ContainerListParams

NewContainerListParams creates a new ContainerListParams 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 NewContainerListParamsWithContext

func NewContainerListParamsWithContext(ctx context.Context) *ContainerListParams

NewContainerListParamsWithContext creates a new ContainerListParams object with the ability to set a context for a request.

func NewContainerListParamsWithHTTPClient

func NewContainerListParamsWithHTTPClient(client *http.Client) *ContainerListParams

NewContainerListParamsWithHTTPClient creates a new ContainerListParams object with the ability to set a custom HTTPClient for a request.

func NewContainerListParamsWithTimeout

func NewContainerListParamsWithTimeout(timeout time.Duration) *ContainerListParams

NewContainerListParamsWithTimeout creates a new ContainerListParams object with the ability to set a timeout on a request.

func (*ContainerListParams) SetAll

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

SetAll adds the all to the container list params

func (*ContainerListParams) SetContext

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

SetContext adds the context to the container list params

func (*ContainerListParams) SetDefaults

func (o *ContainerListParams) SetDefaults()

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

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

func (*ContainerListParams) SetFilters

func (o *ContainerListParams) SetFilters(filters *string)

SetFilters adds the filters to the container list params

func (*ContainerListParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container list params

func (*ContainerListParams) SetLimit

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

SetLimit adds the limit to the container list params

func (*ContainerListParams) SetSize

func (o *ContainerListParams) SetSize(size *bool)

SetSize adds the size to the container list params

func (*ContainerListParams) SetTimeout

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

SetTimeout adds the timeout to the container list params

func (*ContainerListParams) WithAll

func (o *ContainerListParams) WithAll(all *bool) *ContainerListParams

WithAll adds the all to the container list params

func (*ContainerListParams) WithContext

WithContext adds the context to the container list params

func (*ContainerListParams) WithDefaults

func (o *ContainerListParams) WithDefaults() *ContainerListParams

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

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

func (*ContainerListParams) WithFilters

func (o *ContainerListParams) WithFilters(filters *string) *ContainerListParams

WithFilters adds the filters to the container list params

func (*ContainerListParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container list params

func (*ContainerListParams) WithLimit

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

WithLimit adds the limit to the container list params

func (*ContainerListParams) WithSize

func (o *ContainerListParams) WithSize(size *bool) *ContainerListParams

WithSize adds the size to the container list params

func (*ContainerListParams) WithTimeout

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

WithTimeout adds the timeout to the container list params

func (*ContainerListParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerListReader

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

ContainerListReader is a Reader for the ContainerList structure.

func (*ContainerListReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerLogsInternalServerError

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

server error

func NewContainerLogsInternalServerError

func NewContainerLogsInternalServerError() *ContainerLogsInternalServerError

NewContainerLogsInternalServerError creates a ContainerLogsInternalServerError with default headers values

func (*ContainerLogsInternalServerError) Error

func (*ContainerLogsInternalServerError) GetPayload

func (*ContainerLogsInternalServerError) IsClientError

func (o *ContainerLogsInternalServerError) IsClientError() bool

IsClientError returns true when this container logs internal server error response has a 4xx status code

func (*ContainerLogsInternalServerError) IsCode

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

IsCode returns true when this container logs internal server error response a status code equal to that given

func (*ContainerLogsInternalServerError) IsRedirect

func (o *ContainerLogsInternalServerError) IsRedirect() bool

IsRedirect returns true when this container logs internal server error response has a 3xx status code

func (*ContainerLogsInternalServerError) IsServerError

func (o *ContainerLogsInternalServerError) IsServerError() bool

IsServerError returns true when this container logs internal server error response has a 5xx status code

func (*ContainerLogsInternalServerError) IsSuccess

func (o *ContainerLogsInternalServerError) IsSuccess() bool

IsSuccess returns true when this container logs internal server error response has a 2xx status code

func (*ContainerLogsInternalServerError) String

type ContainerLogsNotFound

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

no such container

func NewContainerLogsNotFound

func NewContainerLogsNotFound() *ContainerLogsNotFound

NewContainerLogsNotFound creates a ContainerLogsNotFound with default headers values

func (*ContainerLogsNotFound) Error

func (o *ContainerLogsNotFound) Error() string

func (*ContainerLogsNotFound) GetPayload

func (o *ContainerLogsNotFound) GetPayload() *models.ErrorResponse

func (*ContainerLogsNotFound) IsClientError

func (o *ContainerLogsNotFound) IsClientError() bool

IsClientError returns true when this container logs not found response has a 4xx status code

func (*ContainerLogsNotFound) IsCode

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

IsCode returns true when this container logs not found response a status code equal to that given

func (*ContainerLogsNotFound) IsRedirect

func (o *ContainerLogsNotFound) IsRedirect() bool

IsRedirect returns true when this container logs not found response has a 3xx status code

func (*ContainerLogsNotFound) IsServerError

func (o *ContainerLogsNotFound) IsServerError() bool

IsServerError returns true when this container logs not found response has a 5xx status code

func (*ContainerLogsNotFound) IsSuccess

func (o *ContainerLogsNotFound) IsSuccess() bool

IsSuccess returns true when this container logs not found response has a 2xx status code

func (*ContainerLogsNotFound) String

func (o *ContainerLogsNotFound) String() string

type ContainerLogsOK

type ContainerLogsOK struct {
	Payload io.Writer
}
ContainerLogsOK describes a response with status code 200, with default header values.

logs returned as a stream in response body.

For the stream format, [see the documentation for the attach endpoint](#operation/ContainerAttach). Note that unlike the attach endpoint, the logs endpoint does not upgrade the connection and does not set Content-Type.

func NewContainerLogsOK

func NewContainerLogsOK(writer io.Writer) *ContainerLogsOK

NewContainerLogsOK creates a ContainerLogsOK with default headers values

func (*ContainerLogsOK) Error

func (o *ContainerLogsOK) Error() string

func (*ContainerLogsOK) GetPayload

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

func (*ContainerLogsOK) IsClientError

func (o *ContainerLogsOK) IsClientError() bool

IsClientError returns true when this container logs o k response has a 4xx status code

func (*ContainerLogsOK) IsCode

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

IsCode returns true when this container logs o k response a status code equal to that given

func (*ContainerLogsOK) IsRedirect

func (o *ContainerLogsOK) IsRedirect() bool

IsRedirect returns true when this container logs o k response has a 3xx status code

func (*ContainerLogsOK) IsServerError

func (o *ContainerLogsOK) IsServerError() bool

IsServerError returns true when this container logs o k response has a 5xx status code

func (*ContainerLogsOK) IsSuccess

func (o *ContainerLogsOK) IsSuccess() bool

IsSuccess returns true when this container logs o k response has a 2xx status code

func (*ContainerLogsOK) String

func (o *ContainerLogsOK) String() string

type ContainerLogsParams

type ContainerLogsParams struct {

	/* Follow.

	   Keep connection after returning logs.
	*/
	Follow *bool

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Since.

	   Only return logs since this time, as a UNIX timestamp
	*/
	Since *int64

	/* Stderr.

	   Return logs from `stderr`
	*/
	Stderr *bool

	/* Stdout.

	   Return logs from `stdout`
	*/
	Stdout *bool

	/* Tail.

	   Only return this number of log lines from the end of the logs. Specify as an integer or `all` to output all log lines.

	   Default: "all"
	*/
	Tail *string

	/* Timestamps.

	   Add timestamps to every log line
	*/
	Timestamps *bool

	/* Until.

	   Only return logs before this time, as a UNIX timestamp
	*/
	Until *int64

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

ContainerLogsParams contains all the parameters to send to the API endpoint

for the container logs operation.

Typically these are written to a http.Request.

func NewContainerLogsParams

func NewContainerLogsParams() *ContainerLogsParams

NewContainerLogsParams creates a new ContainerLogsParams 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 NewContainerLogsParamsWithContext

func NewContainerLogsParamsWithContext(ctx context.Context) *ContainerLogsParams

NewContainerLogsParamsWithContext creates a new ContainerLogsParams object with the ability to set a context for a request.

func NewContainerLogsParamsWithHTTPClient

func NewContainerLogsParamsWithHTTPClient(client *http.Client) *ContainerLogsParams

NewContainerLogsParamsWithHTTPClient creates a new ContainerLogsParams object with the ability to set a custom HTTPClient for a request.

func NewContainerLogsParamsWithTimeout

func NewContainerLogsParamsWithTimeout(timeout time.Duration) *ContainerLogsParams

NewContainerLogsParamsWithTimeout creates a new ContainerLogsParams object with the ability to set a timeout on a request.

func (*ContainerLogsParams) SetContext

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

SetContext adds the context to the container logs params

func (*ContainerLogsParams) SetDefaults

func (o *ContainerLogsParams) SetDefaults()

SetDefaults hydrates default values in the container logs params (not the query body).

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

func (*ContainerLogsParams) SetFollow

func (o *ContainerLogsParams) SetFollow(follow *bool)

SetFollow adds the follow to the container logs params

func (*ContainerLogsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container logs params

func (*ContainerLogsParams) SetID

func (o *ContainerLogsParams) SetID(id string)

SetID adds the id to the container logs params

func (*ContainerLogsParams) SetSince

func (o *ContainerLogsParams) SetSince(since *int64)

SetSince adds the since to the container logs params

func (*ContainerLogsParams) SetStderr

func (o *ContainerLogsParams) SetStderr(stderr *bool)

SetStderr adds the stderr to the container logs params

func (*ContainerLogsParams) SetStdout

func (o *ContainerLogsParams) SetStdout(stdout *bool)

SetStdout adds the stdout to the container logs params

func (*ContainerLogsParams) SetTail

func (o *ContainerLogsParams) SetTail(tail *string)

SetTail adds the tail to the container logs params

func (*ContainerLogsParams) SetTimeout

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

SetTimeout adds the timeout to the container logs params

func (*ContainerLogsParams) SetTimestamps

func (o *ContainerLogsParams) SetTimestamps(timestamps *bool)

SetTimestamps adds the timestamps to the container logs params

func (*ContainerLogsParams) SetUntil

func (o *ContainerLogsParams) SetUntil(until *int64)

SetUntil adds the until to the container logs params

func (*ContainerLogsParams) WithContext

WithContext adds the context to the container logs params

func (*ContainerLogsParams) WithDefaults

func (o *ContainerLogsParams) WithDefaults() *ContainerLogsParams

WithDefaults hydrates default values in the container logs params (not the query body).

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

func (*ContainerLogsParams) WithFollow

func (o *ContainerLogsParams) WithFollow(follow *bool) *ContainerLogsParams

WithFollow adds the follow to the container logs params

func (*ContainerLogsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container logs params

func (*ContainerLogsParams) WithID

WithID adds the id to the container logs params

func (*ContainerLogsParams) WithSince

func (o *ContainerLogsParams) WithSince(since *int64) *ContainerLogsParams

WithSince adds the since to the container logs params

func (*ContainerLogsParams) WithStderr

func (o *ContainerLogsParams) WithStderr(stderr *bool) *ContainerLogsParams

WithStderr adds the stderr to the container logs params

func (*ContainerLogsParams) WithStdout

func (o *ContainerLogsParams) WithStdout(stdout *bool) *ContainerLogsParams

WithStdout adds the stdout to the container logs params

func (*ContainerLogsParams) WithTail

func (o *ContainerLogsParams) WithTail(tail *string) *ContainerLogsParams

WithTail adds the tail to the container logs params

func (*ContainerLogsParams) WithTimeout

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

WithTimeout adds the timeout to the container logs params

func (*ContainerLogsParams) WithTimestamps

func (o *ContainerLogsParams) WithTimestamps(timestamps *bool) *ContainerLogsParams

WithTimestamps adds the timestamps to the container logs params

func (*ContainerLogsParams) WithUntil

func (o *ContainerLogsParams) WithUntil(until *int64) *ContainerLogsParams

WithUntil adds the until to the container logs params

func (*ContainerLogsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerLogsReader

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

ContainerLogsReader is a Reader for the ContainerLogs structure.

func (*ContainerLogsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerPauseInternalServerError

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

server error

func NewContainerPauseInternalServerError

func NewContainerPauseInternalServerError() *ContainerPauseInternalServerError

NewContainerPauseInternalServerError creates a ContainerPauseInternalServerError with default headers values

func (*ContainerPauseInternalServerError) Error

func (*ContainerPauseInternalServerError) GetPayload

func (*ContainerPauseInternalServerError) IsClientError

func (o *ContainerPauseInternalServerError) IsClientError() bool

IsClientError returns true when this container pause internal server error response has a 4xx status code

func (*ContainerPauseInternalServerError) IsCode

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

IsCode returns true when this container pause internal server error response a status code equal to that given

func (*ContainerPauseInternalServerError) IsRedirect

func (o *ContainerPauseInternalServerError) IsRedirect() bool

IsRedirect returns true when this container pause internal server error response has a 3xx status code

func (*ContainerPauseInternalServerError) IsServerError

func (o *ContainerPauseInternalServerError) IsServerError() bool

IsServerError returns true when this container pause internal server error response has a 5xx status code

func (*ContainerPauseInternalServerError) IsSuccess

func (o *ContainerPauseInternalServerError) IsSuccess() bool

IsSuccess returns true when this container pause internal server error response has a 2xx status code

func (*ContainerPauseInternalServerError) String

type ContainerPauseNoContent

type ContainerPauseNoContent struct {
}
ContainerPauseNoContent describes a response with status code 204, with default header values.

no error

func NewContainerPauseNoContent

func NewContainerPauseNoContent() *ContainerPauseNoContent

NewContainerPauseNoContent creates a ContainerPauseNoContent with default headers values

func (*ContainerPauseNoContent) Error

func (o *ContainerPauseNoContent) Error() string

func (*ContainerPauseNoContent) IsClientError

func (o *ContainerPauseNoContent) IsClientError() bool

IsClientError returns true when this container pause no content response has a 4xx status code

func (*ContainerPauseNoContent) IsCode

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

IsCode returns true when this container pause no content response a status code equal to that given

func (*ContainerPauseNoContent) IsRedirect

func (o *ContainerPauseNoContent) IsRedirect() bool

IsRedirect returns true when this container pause no content response has a 3xx status code

func (*ContainerPauseNoContent) IsServerError

func (o *ContainerPauseNoContent) IsServerError() bool

IsServerError returns true when this container pause no content response has a 5xx status code

func (*ContainerPauseNoContent) IsSuccess

func (o *ContainerPauseNoContent) IsSuccess() bool

IsSuccess returns true when this container pause no content response has a 2xx status code

func (*ContainerPauseNoContent) String

func (o *ContainerPauseNoContent) String() string

type ContainerPauseNotFound

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

no such container

func NewContainerPauseNotFound

func NewContainerPauseNotFound() *ContainerPauseNotFound

NewContainerPauseNotFound creates a ContainerPauseNotFound with default headers values

func (*ContainerPauseNotFound) Error

func (o *ContainerPauseNotFound) Error() string

func (*ContainerPauseNotFound) GetPayload

func (o *ContainerPauseNotFound) GetPayload() *models.ErrorResponse

func (*ContainerPauseNotFound) IsClientError

func (o *ContainerPauseNotFound) IsClientError() bool

IsClientError returns true when this container pause not found response has a 4xx status code

func (*ContainerPauseNotFound) IsCode

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

IsCode returns true when this container pause not found response a status code equal to that given

func (*ContainerPauseNotFound) IsRedirect

func (o *ContainerPauseNotFound) IsRedirect() bool

IsRedirect returns true when this container pause not found response has a 3xx status code

func (*ContainerPauseNotFound) IsServerError

func (o *ContainerPauseNotFound) IsServerError() bool

IsServerError returns true when this container pause not found response has a 5xx status code

func (*ContainerPauseNotFound) IsSuccess

func (o *ContainerPauseNotFound) IsSuccess() bool

IsSuccess returns true when this container pause not found response has a 2xx status code

func (*ContainerPauseNotFound) String

func (o *ContainerPauseNotFound) String() string

type ContainerPauseParams

type ContainerPauseParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerPauseParams contains all the parameters to send to the API endpoint

for the container pause operation.

Typically these are written to a http.Request.

func NewContainerPauseParams

func NewContainerPauseParams() *ContainerPauseParams

NewContainerPauseParams creates a new ContainerPauseParams 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 NewContainerPauseParamsWithContext

func NewContainerPauseParamsWithContext(ctx context.Context) *ContainerPauseParams

NewContainerPauseParamsWithContext creates a new ContainerPauseParams object with the ability to set a context for a request.

func NewContainerPauseParamsWithHTTPClient

func NewContainerPauseParamsWithHTTPClient(client *http.Client) *ContainerPauseParams

NewContainerPauseParamsWithHTTPClient creates a new ContainerPauseParams object with the ability to set a custom HTTPClient for a request.

func NewContainerPauseParamsWithTimeout

func NewContainerPauseParamsWithTimeout(timeout time.Duration) *ContainerPauseParams

NewContainerPauseParamsWithTimeout creates a new ContainerPauseParams object with the ability to set a timeout on a request.

func (*ContainerPauseParams) SetContext

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

SetContext adds the context to the container pause params

func (*ContainerPauseParams) SetDefaults

func (o *ContainerPauseParams) SetDefaults()

SetDefaults hydrates default values in the container pause params (not the query body).

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

func (*ContainerPauseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container pause params

func (*ContainerPauseParams) SetID

func (o *ContainerPauseParams) SetID(id string)

SetID adds the id to the container pause params

func (*ContainerPauseParams) SetTimeout

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

SetTimeout adds the timeout to the container pause params

func (*ContainerPauseParams) WithContext

WithContext adds the context to the container pause params

func (*ContainerPauseParams) WithDefaults

func (o *ContainerPauseParams) WithDefaults() *ContainerPauseParams

WithDefaults hydrates default values in the container pause params (not the query body).

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

func (*ContainerPauseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container pause params

func (*ContainerPauseParams) WithID

WithID adds the id to the container pause params

func (*ContainerPauseParams) WithTimeout

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

WithTimeout adds the timeout to the container pause params

func (*ContainerPauseParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerPauseReader

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

ContainerPauseReader is a Reader for the ContainerPause structure.

func (*ContainerPauseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerPruneInternalServerError

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

Server error

func NewContainerPruneInternalServerError

func NewContainerPruneInternalServerError() *ContainerPruneInternalServerError

NewContainerPruneInternalServerError creates a ContainerPruneInternalServerError with default headers values

func (*ContainerPruneInternalServerError) Error

func (*ContainerPruneInternalServerError) GetPayload

func (*ContainerPruneInternalServerError) IsClientError

func (o *ContainerPruneInternalServerError) IsClientError() bool

IsClientError returns true when this container prune internal server error response has a 4xx status code

func (*ContainerPruneInternalServerError) IsCode

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

IsCode returns true when this container prune internal server error response a status code equal to that given

func (*ContainerPruneInternalServerError) IsRedirect

func (o *ContainerPruneInternalServerError) IsRedirect() bool

IsRedirect returns true when this container prune internal server error response has a 3xx status code

func (*ContainerPruneInternalServerError) IsServerError

func (o *ContainerPruneInternalServerError) IsServerError() bool

IsServerError returns true when this container prune internal server error response has a 5xx status code

func (*ContainerPruneInternalServerError) IsSuccess

func (o *ContainerPruneInternalServerError) IsSuccess() bool

IsSuccess returns true when this container prune internal server error response has a 2xx status code

func (*ContainerPruneInternalServerError) String

type ContainerPruneOK

type ContainerPruneOK struct {
	Payload *ContainerPruneOKBody
}
ContainerPruneOK describes a response with status code 200, with default header values.

No error

func NewContainerPruneOK

func NewContainerPruneOK() *ContainerPruneOK

NewContainerPruneOK creates a ContainerPruneOK with default headers values

func (*ContainerPruneOK) Error

func (o *ContainerPruneOK) Error() string

func (*ContainerPruneOK) GetPayload

func (o *ContainerPruneOK) GetPayload() *ContainerPruneOKBody

func (*ContainerPruneOK) IsClientError

func (o *ContainerPruneOK) IsClientError() bool

IsClientError returns true when this container prune o k response has a 4xx status code

func (*ContainerPruneOK) IsCode

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

IsCode returns true when this container prune o k response a status code equal to that given

func (*ContainerPruneOK) IsRedirect

func (o *ContainerPruneOK) IsRedirect() bool

IsRedirect returns true when this container prune o k response has a 3xx status code

func (*ContainerPruneOK) IsServerError

func (o *ContainerPruneOK) IsServerError() bool

IsServerError returns true when this container prune o k response has a 5xx status code

func (*ContainerPruneOK) IsSuccess

func (o *ContainerPruneOK) IsSuccess() bool

IsSuccess returns true when this container prune o k response has a 2xx status code

func (*ContainerPruneOK) String

func (o *ContainerPruneOK) String() string

type ContainerPruneOKBody

type ContainerPruneOKBody struct {

	// Container IDs that were deleted
	ContainersDeleted []string `json:"ContainersDeleted"`

	// Disk space reclaimed in bytes
	SpaceReclaimed int64 `json:"SpaceReclaimed,omitempty"`
}

ContainerPruneOKBody ContainerPruneResponse swagger:model ContainerPruneOKBody

func (*ContainerPruneOKBody) ContextValidate

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

ContextValidate validates this container prune o k body based on context it is used

func (*ContainerPruneOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerPruneOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerPruneOKBody) Validate

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

Validate validates this container prune o k body

type ContainerPruneParams

type ContainerPruneParams struct {

	/* Filters.

	     Filters to process on the prune list, encoded as JSON (a `map[string][]string`).

	Available filters:
	- `until=<timestamp>` Prune containers created before this timestamp. The `<timestamp>` can be Unix timestamps, date formatted timestamps, or Go duration strings (e.g. `10m`, `1h30m`) computed relative to the daemon machine’s time.
	- `label` (`label=<key>`, `label=<key>=<value>`, `label!=<key>`, or `label!=<key>=<value>`) Prune containers with (or without, in case `label!=...` is used) the specified labels.

	*/
	Filters *string

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

ContainerPruneParams contains all the parameters to send to the API endpoint

for the container prune operation.

Typically these are written to a http.Request.

func NewContainerPruneParams

func NewContainerPruneParams() *ContainerPruneParams

NewContainerPruneParams creates a new ContainerPruneParams 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 NewContainerPruneParamsWithContext

func NewContainerPruneParamsWithContext(ctx context.Context) *ContainerPruneParams

NewContainerPruneParamsWithContext creates a new ContainerPruneParams object with the ability to set a context for a request.

func NewContainerPruneParamsWithHTTPClient

func NewContainerPruneParamsWithHTTPClient(client *http.Client) *ContainerPruneParams

NewContainerPruneParamsWithHTTPClient creates a new ContainerPruneParams object with the ability to set a custom HTTPClient for a request.

func NewContainerPruneParamsWithTimeout

func NewContainerPruneParamsWithTimeout(timeout time.Duration) *ContainerPruneParams

NewContainerPruneParamsWithTimeout creates a new ContainerPruneParams object with the ability to set a timeout on a request.

func (*ContainerPruneParams) SetContext

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

SetContext adds the context to the container prune params

func (*ContainerPruneParams) SetDefaults

func (o *ContainerPruneParams) SetDefaults()

SetDefaults hydrates default values in the container prune params (not the query body).

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

func (*ContainerPruneParams) SetFilters

func (o *ContainerPruneParams) SetFilters(filters *string)

SetFilters adds the filters to the container prune params

func (*ContainerPruneParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container prune params

func (*ContainerPruneParams) SetTimeout

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

SetTimeout adds the timeout to the container prune params

func (*ContainerPruneParams) WithContext

WithContext adds the context to the container prune params

func (*ContainerPruneParams) WithDefaults

func (o *ContainerPruneParams) WithDefaults() *ContainerPruneParams

WithDefaults hydrates default values in the container prune params (not the query body).

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

func (*ContainerPruneParams) WithFilters

func (o *ContainerPruneParams) WithFilters(filters *string) *ContainerPruneParams

WithFilters adds the filters to the container prune params

func (*ContainerPruneParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container prune params

func (*ContainerPruneParams) WithTimeout

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

WithTimeout adds the timeout to the container prune params

func (*ContainerPruneParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerPruneReader

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

ContainerPruneReader is a Reader for the ContainerPrune structure.

func (*ContainerPruneReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerRenameConflict

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

name already in use

func NewContainerRenameConflict

func NewContainerRenameConflict() *ContainerRenameConflict

NewContainerRenameConflict creates a ContainerRenameConflict with default headers values

func (*ContainerRenameConflict) Error

func (o *ContainerRenameConflict) Error() string

func (*ContainerRenameConflict) GetPayload

func (o *ContainerRenameConflict) GetPayload() *models.ErrorResponse

func (*ContainerRenameConflict) IsClientError

func (o *ContainerRenameConflict) IsClientError() bool

IsClientError returns true when this container rename conflict response has a 4xx status code

func (*ContainerRenameConflict) IsCode

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

IsCode returns true when this container rename conflict response a status code equal to that given

func (*ContainerRenameConflict) IsRedirect

func (o *ContainerRenameConflict) IsRedirect() bool

IsRedirect returns true when this container rename conflict response has a 3xx status code

func (*ContainerRenameConflict) IsServerError

func (o *ContainerRenameConflict) IsServerError() bool

IsServerError returns true when this container rename conflict response has a 5xx status code

func (*ContainerRenameConflict) IsSuccess

func (o *ContainerRenameConflict) IsSuccess() bool

IsSuccess returns true when this container rename conflict response has a 2xx status code

func (*ContainerRenameConflict) String

func (o *ContainerRenameConflict) String() string

type ContainerRenameInternalServerError

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

server error

func NewContainerRenameInternalServerError

func NewContainerRenameInternalServerError() *ContainerRenameInternalServerError

NewContainerRenameInternalServerError creates a ContainerRenameInternalServerError with default headers values

func (*ContainerRenameInternalServerError) Error

func (*ContainerRenameInternalServerError) GetPayload

func (*ContainerRenameInternalServerError) IsClientError

func (o *ContainerRenameInternalServerError) IsClientError() bool

IsClientError returns true when this container rename internal server error response has a 4xx status code

func (*ContainerRenameInternalServerError) IsCode

IsCode returns true when this container rename internal server error response a status code equal to that given

func (*ContainerRenameInternalServerError) IsRedirect

func (o *ContainerRenameInternalServerError) IsRedirect() bool

IsRedirect returns true when this container rename internal server error response has a 3xx status code

func (*ContainerRenameInternalServerError) IsServerError

func (o *ContainerRenameInternalServerError) IsServerError() bool

IsServerError returns true when this container rename internal server error response has a 5xx status code

func (*ContainerRenameInternalServerError) IsSuccess

IsSuccess returns true when this container rename internal server error response has a 2xx status code

func (*ContainerRenameInternalServerError) String

type ContainerRenameNoContent

type ContainerRenameNoContent struct {
}
ContainerRenameNoContent describes a response with status code 204, with default header values.

no error

func NewContainerRenameNoContent

func NewContainerRenameNoContent() *ContainerRenameNoContent

NewContainerRenameNoContent creates a ContainerRenameNoContent with default headers values

func (*ContainerRenameNoContent) Error

func (o *ContainerRenameNoContent) Error() string

func (*ContainerRenameNoContent) IsClientError

func (o *ContainerRenameNoContent) IsClientError() bool

IsClientError returns true when this container rename no content response has a 4xx status code

func (*ContainerRenameNoContent) IsCode

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

IsCode returns true when this container rename no content response a status code equal to that given

func (*ContainerRenameNoContent) IsRedirect

func (o *ContainerRenameNoContent) IsRedirect() bool

IsRedirect returns true when this container rename no content response has a 3xx status code

func (*ContainerRenameNoContent) IsServerError

func (o *ContainerRenameNoContent) IsServerError() bool

IsServerError returns true when this container rename no content response has a 5xx status code

func (*ContainerRenameNoContent) IsSuccess

func (o *ContainerRenameNoContent) IsSuccess() bool

IsSuccess returns true when this container rename no content response has a 2xx status code

func (*ContainerRenameNoContent) String

func (o *ContainerRenameNoContent) String() string

type ContainerRenameNotFound

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

no such container

func NewContainerRenameNotFound

func NewContainerRenameNotFound() *ContainerRenameNotFound

NewContainerRenameNotFound creates a ContainerRenameNotFound with default headers values

func (*ContainerRenameNotFound) Error

func (o *ContainerRenameNotFound) Error() string

func (*ContainerRenameNotFound) GetPayload

func (o *ContainerRenameNotFound) GetPayload() *models.ErrorResponse

func (*ContainerRenameNotFound) IsClientError

func (o *ContainerRenameNotFound) IsClientError() bool

IsClientError returns true when this container rename not found response has a 4xx status code

func (*ContainerRenameNotFound) IsCode

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

IsCode returns true when this container rename not found response a status code equal to that given

func (*ContainerRenameNotFound) IsRedirect

func (o *ContainerRenameNotFound) IsRedirect() bool

IsRedirect returns true when this container rename not found response has a 3xx status code

func (*ContainerRenameNotFound) IsServerError

func (o *ContainerRenameNotFound) IsServerError() bool

IsServerError returns true when this container rename not found response has a 5xx status code

func (*ContainerRenameNotFound) IsSuccess

func (o *ContainerRenameNotFound) IsSuccess() bool

IsSuccess returns true when this container rename not found response has a 2xx status code

func (*ContainerRenameNotFound) String

func (o *ContainerRenameNotFound) String() string

type ContainerRenameParams

type ContainerRenameParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Name.

	   New name for the container
	*/
	Name string

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

ContainerRenameParams contains all the parameters to send to the API endpoint

for the container rename operation.

Typically these are written to a http.Request.

func NewContainerRenameParams

func NewContainerRenameParams() *ContainerRenameParams

NewContainerRenameParams creates a new ContainerRenameParams 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 NewContainerRenameParamsWithContext

func NewContainerRenameParamsWithContext(ctx context.Context) *ContainerRenameParams

NewContainerRenameParamsWithContext creates a new ContainerRenameParams object with the ability to set a context for a request.

func NewContainerRenameParamsWithHTTPClient

func NewContainerRenameParamsWithHTTPClient(client *http.Client) *ContainerRenameParams

NewContainerRenameParamsWithHTTPClient creates a new ContainerRenameParams object with the ability to set a custom HTTPClient for a request.

func NewContainerRenameParamsWithTimeout

func NewContainerRenameParamsWithTimeout(timeout time.Duration) *ContainerRenameParams

NewContainerRenameParamsWithTimeout creates a new ContainerRenameParams object with the ability to set a timeout on a request.

func (*ContainerRenameParams) SetContext

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

SetContext adds the context to the container rename params

func (*ContainerRenameParams) SetDefaults

func (o *ContainerRenameParams) SetDefaults()

SetDefaults hydrates default values in the container rename params (not the query body).

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

func (*ContainerRenameParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container rename params

func (*ContainerRenameParams) SetID

func (o *ContainerRenameParams) SetID(id string)

SetID adds the id to the container rename params

func (*ContainerRenameParams) SetName

func (o *ContainerRenameParams) SetName(name string)

SetName adds the name to the container rename params

func (*ContainerRenameParams) SetTimeout

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

SetTimeout adds the timeout to the container rename params

func (*ContainerRenameParams) WithContext

WithContext adds the context to the container rename params

func (*ContainerRenameParams) WithDefaults

func (o *ContainerRenameParams) WithDefaults() *ContainerRenameParams

WithDefaults hydrates default values in the container rename params (not the query body).

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

func (*ContainerRenameParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container rename params

func (*ContainerRenameParams) WithID

WithID adds the id to the container rename params

func (*ContainerRenameParams) WithName

WithName adds the name to the container rename params

func (*ContainerRenameParams) WithTimeout

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

WithTimeout adds the timeout to the container rename params

func (*ContainerRenameParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerRenameReader

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

ContainerRenameReader is a Reader for the ContainerRename structure.

func (*ContainerRenameReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerResizeInternalServerError

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

cannot resize container

func NewContainerResizeInternalServerError

func NewContainerResizeInternalServerError() *ContainerResizeInternalServerError

NewContainerResizeInternalServerError creates a ContainerResizeInternalServerError with default headers values

func (*ContainerResizeInternalServerError) Error

func (*ContainerResizeInternalServerError) GetPayload

func (*ContainerResizeInternalServerError) IsClientError

func (o *ContainerResizeInternalServerError) IsClientError() bool

IsClientError returns true when this container resize internal server error response has a 4xx status code

func (*ContainerResizeInternalServerError) IsCode

IsCode returns true when this container resize internal server error response a status code equal to that given

func (*ContainerResizeInternalServerError) IsRedirect

func (o *ContainerResizeInternalServerError) IsRedirect() bool

IsRedirect returns true when this container resize internal server error response has a 3xx status code

func (*ContainerResizeInternalServerError) IsServerError

func (o *ContainerResizeInternalServerError) IsServerError() bool

IsServerError returns true when this container resize internal server error response has a 5xx status code

func (*ContainerResizeInternalServerError) IsSuccess

IsSuccess returns true when this container resize internal server error response has a 2xx status code

func (*ContainerResizeInternalServerError) String

type ContainerResizeNotFound

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

no such container

func NewContainerResizeNotFound

func NewContainerResizeNotFound() *ContainerResizeNotFound

NewContainerResizeNotFound creates a ContainerResizeNotFound with default headers values

func (*ContainerResizeNotFound) Error

func (o *ContainerResizeNotFound) Error() string

func (*ContainerResizeNotFound) GetPayload

func (o *ContainerResizeNotFound) GetPayload() *models.ErrorResponse

func (*ContainerResizeNotFound) IsClientError

func (o *ContainerResizeNotFound) IsClientError() bool

IsClientError returns true when this container resize not found response has a 4xx status code

func (*ContainerResizeNotFound) IsCode

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

IsCode returns true when this container resize not found response a status code equal to that given

func (*ContainerResizeNotFound) IsRedirect

func (o *ContainerResizeNotFound) IsRedirect() bool

IsRedirect returns true when this container resize not found response has a 3xx status code

func (*ContainerResizeNotFound) IsServerError

func (o *ContainerResizeNotFound) IsServerError() bool

IsServerError returns true when this container resize not found response has a 5xx status code

func (*ContainerResizeNotFound) IsSuccess

func (o *ContainerResizeNotFound) IsSuccess() bool

IsSuccess returns true when this container resize not found response has a 2xx status code

func (*ContainerResizeNotFound) String

func (o *ContainerResizeNotFound) String() string

type ContainerResizeOK

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

no error

func NewContainerResizeOK

func NewContainerResizeOK() *ContainerResizeOK

NewContainerResizeOK creates a ContainerResizeOK with default headers values

func (*ContainerResizeOK) Error

func (o *ContainerResizeOK) Error() string

func (*ContainerResizeOK) IsClientError

func (o *ContainerResizeOK) IsClientError() bool

IsClientError returns true when this container resize o k response has a 4xx status code

func (*ContainerResizeOK) IsCode

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

IsCode returns true when this container resize o k response a status code equal to that given

func (*ContainerResizeOK) IsRedirect

func (o *ContainerResizeOK) IsRedirect() bool

IsRedirect returns true when this container resize o k response has a 3xx status code

func (*ContainerResizeOK) IsServerError

func (o *ContainerResizeOK) IsServerError() bool

IsServerError returns true when this container resize o k response has a 5xx status code

func (*ContainerResizeOK) IsSuccess

func (o *ContainerResizeOK) IsSuccess() bool

IsSuccess returns true when this container resize o k response has a 2xx status code

func (*ContainerResizeOK) String

func (o *ContainerResizeOK) String() string

type ContainerResizeParams

type ContainerResizeParams struct {

	/* H.

	   Height of the tty session in characters
	*/
	H *int64

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* W.

	   Width of the tty session in characters
	*/
	W *int64

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

ContainerResizeParams contains all the parameters to send to the API endpoint

for the container resize operation.

Typically these are written to a http.Request.

func NewContainerResizeParams

func NewContainerResizeParams() *ContainerResizeParams

NewContainerResizeParams creates a new ContainerResizeParams 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 NewContainerResizeParamsWithContext

func NewContainerResizeParamsWithContext(ctx context.Context) *ContainerResizeParams

NewContainerResizeParamsWithContext creates a new ContainerResizeParams object with the ability to set a context for a request.

func NewContainerResizeParamsWithHTTPClient

func NewContainerResizeParamsWithHTTPClient(client *http.Client) *ContainerResizeParams

NewContainerResizeParamsWithHTTPClient creates a new ContainerResizeParams object with the ability to set a custom HTTPClient for a request.

func NewContainerResizeParamsWithTimeout

func NewContainerResizeParamsWithTimeout(timeout time.Duration) *ContainerResizeParams

NewContainerResizeParamsWithTimeout creates a new ContainerResizeParams object with the ability to set a timeout on a request.

func (*ContainerResizeParams) SetContext

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

SetContext adds the context to the container resize params

func (*ContainerResizeParams) SetDefaults

func (o *ContainerResizeParams) SetDefaults()

SetDefaults hydrates default values in the container resize params (not the query body).

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

func (*ContainerResizeParams) SetH

func (o *ContainerResizeParams) SetH(h *int64)

SetH adds the h to the container resize params

func (*ContainerResizeParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container resize params

func (*ContainerResizeParams) SetID

func (o *ContainerResizeParams) SetID(id string)

SetID adds the id to the container resize params

func (*ContainerResizeParams) SetTimeout

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

SetTimeout adds the timeout to the container resize params

func (*ContainerResizeParams) SetW

func (o *ContainerResizeParams) SetW(w *int64)

SetW adds the w to the container resize params

func (*ContainerResizeParams) WithContext

WithContext adds the context to the container resize params

func (*ContainerResizeParams) WithDefaults

func (o *ContainerResizeParams) WithDefaults() *ContainerResizeParams

WithDefaults hydrates default values in the container resize params (not the query body).

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

func (*ContainerResizeParams) WithH

WithH adds the h to the container resize params

func (*ContainerResizeParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container resize params

func (*ContainerResizeParams) WithID

WithID adds the id to the container resize params

func (*ContainerResizeParams) WithTimeout

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

WithTimeout adds the timeout to the container resize params

func (*ContainerResizeParams) WithW

WithW adds the w to the container resize params

func (*ContainerResizeParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerResizeReader

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

ContainerResizeReader is a Reader for the ContainerResize structure.

func (*ContainerResizeReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerRestartInternalServerError

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

server error

func NewContainerRestartInternalServerError

func NewContainerRestartInternalServerError() *ContainerRestartInternalServerError

NewContainerRestartInternalServerError creates a ContainerRestartInternalServerError with default headers values

func (*ContainerRestartInternalServerError) Error

func (*ContainerRestartInternalServerError) GetPayload

func (*ContainerRestartInternalServerError) IsClientError

func (o *ContainerRestartInternalServerError) IsClientError() bool

IsClientError returns true when this container restart internal server error response has a 4xx status code

func (*ContainerRestartInternalServerError) IsCode

IsCode returns true when this container restart internal server error response a status code equal to that given

func (*ContainerRestartInternalServerError) IsRedirect

func (o *ContainerRestartInternalServerError) IsRedirect() bool

IsRedirect returns true when this container restart internal server error response has a 3xx status code

func (*ContainerRestartInternalServerError) IsServerError

func (o *ContainerRestartInternalServerError) IsServerError() bool

IsServerError returns true when this container restart internal server error response has a 5xx status code

func (*ContainerRestartInternalServerError) IsSuccess

IsSuccess returns true when this container restart internal server error response has a 2xx status code

func (*ContainerRestartInternalServerError) String

type ContainerRestartNoContent

type ContainerRestartNoContent struct {
}
ContainerRestartNoContent describes a response with status code 204, with default header values.

no error

func NewContainerRestartNoContent

func NewContainerRestartNoContent() *ContainerRestartNoContent

NewContainerRestartNoContent creates a ContainerRestartNoContent with default headers values

func (*ContainerRestartNoContent) Error

func (o *ContainerRestartNoContent) Error() string

func (*ContainerRestartNoContent) IsClientError

func (o *ContainerRestartNoContent) IsClientError() bool

IsClientError returns true when this container restart no content response has a 4xx status code

func (*ContainerRestartNoContent) IsCode

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

IsCode returns true when this container restart no content response a status code equal to that given

func (*ContainerRestartNoContent) IsRedirect

func (o *ContainerRestartNoContent) IsRedirect() bool

IsRedirect returns true when this container restart no content response has a 3xx status code

func (*ContainerRestartNoContent) IsServerError

func (o *ContainerRestartNoContent) IsServerError() bool

IsServerError returns true when this container restart no content response has a 5xx status code

func (*ContainerRestartNoContent) IsSuccess

func (o *ContainerRestartNoContent) IsSuccess() bool

IsSuccess returns true when this container restart no content response has a 2xx status code

func (*ContainerRestartNoContent) String

func (o *ContainerRestartNoContent) String() string

type ContainerRestartNotFound

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

no such container

func NewContainerRestartNotFound

func NewContainerRestartNotFound() *ContainerRestartNotFound

NewContainerRestartNotFound creates a ContainerRestartNotFound with default headers values

func (*ContainerRestartNotFound) Error

func (o *ContainerRestartNotFound) Error() string

func (*ContainerRestartNotFound) GetPayload

func (*ContainerRestartNotFound) IsClientError

func (o *ContainerRestartNotFound) IsClientError() bool

IsClientError returns true when this container restart not found response has a 4xx status code

func (*ContainerRestartNotFound) IsCode

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

IsCode returns true when this container restart not found response a status code equal to that given

func (*ContainerRestartNotFound) IsRedirect

func (o *ContainerRestartNotFound) IsRedirect() bool

IsRedirect returns true when this container restart not found response has a 3xx status code

func (*ContainerRestartNotFound) IsServerError

func (o *ContainerRestartNotFound) IsServerError() bool

IsServerError returns true when this container restart not found response has a 5xx status code

func (*ContainerRestartNotFound) IsSuccess

func (o *ContainerRestartNotFound) IsSuccess() bool

IsSuccess returns true when this container restart not found response has a 2xx status code

func (*ContainerRestartNotFound) String

func (o *ContainerRestartNotFound) String() string

type ContainerRestartParams

type ContainerRestartParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* T.

	   Number of seconds to wait before killing the container
	*/
	T *int64

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

ContainerRestartParams contains all the parameters to send to the API endpoint

for the container restart operation.

Typically these are written to a http.Request.

func NewContainerRestartParams

func NewContainerRestartParams() *ContainerRestartParams

NewContainerRestartParams creates a new ContainerRestartParams 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 NewContainerRestartParamsWithContext

func NewContainerRestartParamsWithContext(ctx context.Context) *ContainerRestartParams

NewContainerRestartParamsWithContext creates a new ContainerRestartParams object with the ability to set a context for a request.

func NewContainerRestartParamsWithHTTPClient

func NewContainerRestartParamsWithHTTPClient(client *http.Client) *ContainerRestartParams

NewContainerRestartParamsWithHTTPClient creates a new ContainerRestartParams object with the ability to set a custom HTTPClient for a request.

func NewContainerRestartParamsWithTimeout

func NewContainerRestartParamsWithTimeout(timeout time.Duration) *ContainerRestartParams

NewContainerRestartParamsWithTimeout creates a new ContainerRestartParams object with the ability to set a timeout on a request.

func (*ContainerRestartParams) SetContext

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

SetContext adds the context to the container restart params

func (*ContainerRestartParams) SetDefaults

func (o *ContainerRestartParams) SetDefaults()

SetDefaults hydrates default values in the container restart params (not the query body).

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

func (*ContainerRestartParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container restart params

func (*ContainerRestartParams) SetID

func (o *ContainerRestartParams) SetID(id string)

SetID adds the id to the container restart params

func (*ContainerRestartParams) SetT

func (o *ContainerRestartParams) SetT(t *int64)

SetT adds the t to the container restart params

func (*ContainerRestartParams) SetTimeout

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

SetTimeout adds the timeout to the container restart params

func (*ContainerRestartParams) WithContext

WithContext adds the context to the container restart params

func (*ContainerRestartParams) WithDefaults

WithDefaults hydrates default values in the container restart params (not the query body).

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

func (*ContainerRestartParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container restart params

func (*ContainerRestartParams) WithID

WithID adds the id to the container restart params

func (*ContainerRestartParams) WithT

WithT adds the t to the container restart params

func (*ContainerRestartParams) WithTimeout

WithTimeout adds the timeout to the container restart params

func (*ContainerRestartParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerRestartReader

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

ContainerRestartReader is a Reader for the ContainerRestart structure.

func (*ContainerRestartReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerStartInternalServerError

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

server error

func NewContainerStartInternalServerError

func NewContainerStartInternalServerError() *ContainerStartInternalServerError

NewContainerStartInternalServerError creates a ContainerStartInternalServerError with default headers values

func (*ContainerStartInternalServerError) Error

func (*ContainerStartInternalServerError) GetPayload

func (*ContainerStartInternalServerError) IsClientError

func (o *ContainerStartInternalServerError) IsClientError() bool

IsClientError returns true when this container start internal server error response has a 4xx status code

func (*ContainerStartInternalServerError) IsCode

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

IsCode returns true when this container start internal server error response a status code equal to that given

func (*ContainerStartInternalServerError) IsRedirect

func (o *ContainerStartInternalServerError) IsRedirect() bool

IsRedirect returns true when this container start internal server error response has a 3xx status code

func (*ContainerStartInternalServerError) IsServerError

func (o *ContainerStartInternalServerError) IsServerError() bool

IsServerError returns true when this container start internal server error response has a 5xx status code

func (*ContainerStartInternalServerError) IsSuccess

func (o *ContainerStartInternalServerError) IsSuccess() bool

IsSuccess returns true when this container start internal server error response has a 2xx status code

func (*ContainerStartInternalServerError) String

type ContainerStartNoContent

type ContainerStartNoContent struct {
}
ContainerStartNoContent describes a response with status code 204, with default header values.

no error

func NewContainerStartNoContent

func NewContainerStartNoContent() *ContainerStartNoContent

NewContainerStartNoContent creates a ContainerStartNoContent with default headers values

func (*ContainerStartNoContent) Error

func (o *ContainerStartNoContent) Error() string

func (*ContainerStartNoContent) IsClientError

func (o *ContainerStartNoContent) IsClientError() bool

IsClientError returns true when this container start no content response has a 4xx status code

func (*ContainerStartNoContent) IsCode

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

IsCode returns true when this container start no content response a status code equal to that given

func (*ContainerStartNoContent) IsRedirect

func (o *ContainerStartNoContent) IsRedirect() bool

IsRedirect returns true when this container start no content response has a 3xx status code

func (*ContainerStartNoContent) IsServerError

func (o *ContainerStartNoContent) IsServerError() bool

IsServerError returns true when this container start no content response has a 5xx status code

func (*ContainerStartNoContent) IsSuccess

func (o *ContainerStartNoContent) IsSuccess() bool

IsSuccess returns true when this container start no content response has a 2xx status code

func (*ContainerStartNoContent) String

func (o *ContainerStartNoContent) String() string

type ContainerStartNotFound

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

no such container

func NewContainerStartNotFound

func NewContainerStartNotFound() *ContainerStartNotFound

NewContainerStartNotFound creates a ContainerStartNotFound with default headers values

func (*ContainerStartNotFound) Error

func (o *ContainerStartNotFound) Error() string

func (*ContainerStartNotFound) GetPayload

func (o *ContainerStartNotFound) GetPayload() *models.ErrorResponse

func (*ContainerStartNotFound) IsClientError

func (o *ContainerStartNotFound) IsClientError() bool

IsClientError returns true when this container start not found response has a 4xx status code

func (*ContainerStartNotFound) IsCode

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

IsCode returns true when this container start not found response a status code equal to that given

func (*ContainerStartNotFound) IsRedirect

func (o *ContainerStartNotFound) IsRedirect() bool

IsRedirect returns true when this container start not found response has a 3xx status code

func (*ContainerStartNotFound) IsServerError

func (o *ContainerStartNotFound) IsServerError() bool

IsServerError returns true when this container start not found response has a 5xx status code

func (*ContainerStartNotFound) IsSuccess

func (o *ContainerStartNotFound) IsSuccess() bool

IsSuccess returns true when this container start not found response has a 2xx status code

func (*ContainerStartNotFound) String

func (o *ContainerStartNotFound) String() string

type ContainerStartNotModified

type ContainerStartNotModified struct {
}
ContainerStartNotModified describes a response with status code 304, with default header values.

container already started

func NewContainerStartNotModified

func NewContainerStartNotModified() *ContainerStartNotModified

NewContainerStartNotModified creates a ContainerStartNotModified with default headers values

func (*ContainerStartNotModified) Error

func (o *ContainerStartNotModified) Error() string

func (*ContainerStartNotModified) IsClientError

func (o *ContainerStartNotModified) IsClientError() bool

IsClientError returns true when this container start not modified response has a 4xx status code

func (*ContainerStartNotModified) IsCode

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

IsCode returns true when this container start not modified response a status code equal to that given

func (*ContainerStartNotModified) IsRedirect

func (o *ContainerStartNotModified) IsRedirect() bool

IsRedirect returns true when this container start not modified response has a 3xx status code

func (*ContainerStartNotModified) IsServerError

func (o *ContainerStartNotModified) IsServerError() bool

IsServerError returns true when this container start not modified response has a 5xx status code

func (*ContainerStartNotModified) IsSuccess

func (o *ContainerStartNotModified) IsSuccess() bool

IsSuccess returns true when this container start not modified response has a 2xx status code

func (*ContainerStartNotModified) String

func (o *ContainerStartNotModified) String() string

type ContainerStartParams

type ContainerStartParams struct {

	/* DetachKeys.

	   Override the key sequence for detaching a container. Format is a single character `[a-Z]` or `ctrl-<value>` where `<value>` is one of: `a-z`, `@`, `^`, `[`, `,` or `_`.
	*/
	DetachKeys *string

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerStartParams contains all the parameters to send to the API endpoint

for the container start operation.

Typically these are written to a http.Request.

func NewContainerStartParams

func NewContainerStartParams() *ContainerStartParams

NewContainerStartParams creates a new ContainerStartParams 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 NewContainerStartParamsWithContext

func NewContainerStartParamsWithContext(ctx context.Context) *ContainerStartParams

NewContainerStartParamsWithContext creates a new ContainerStartParams object with the ability to set a context for a request.

func NewContainerStartParamsWithHTTPClient

func NewContainerStartParamsWithHTTPClient(client *http.Client) *ContainerStartParams

NewContainerStartParamsWithHTTPClient creates a new ContainerStartParams object with the ability to set a custom HTTPClient for a request.

func NewContainerStartParamsWithTimeout

func NewContainerStartParamsWithTimeout(timeout time.Duration) *ContainerStartParams

NewContainerStartParamsWithTimeout creates a new ContainerStartParams object with the ability to set a timeout on a request.

func (*ContainerStartParams) SetContext

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

SetContext adds the context to the container start params

func (*ContainerStartParams) SetDefaults

func (o *ContainerStartParams) SetDefaults()

SetDefaults hydrates default values in the container start params (not the query body).

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

func (*ContainerStartParams) SetDetachKeys

func (o *ContainerStartParams) SetDetachKeys(detachKeys *string)

SetDetachKeys adds the detachKeys to the container start params

func (*ContainerStartParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container start params

func (*ContainerStartParams) SetID

func (o *ContainerStartParams) SetID(id string)

SetID adds the id to the container start params

func (*ContainerStartParams) SetTimeout

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

SetTimeout adds the timeout to the container start params

func (*ContainerStartParams) WithContext

WithContext adds the context to the container start params

func (*ContainerStartParams) WithDefaults

func (o *ContainerStartParams) WithDefaults() *ContainerStartParams

WithDefaults hydrates default values in the container start params (not the query body).

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

func (*ContainerStartParams) WithDetachKeys

func (o *ContainerStartParams) WithDetachKeys(detachKeys *string) *ContainerStartParams

WithDetachKeys adds the detachKeys to the container start params

func (*ContainerStartParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container start params

func (*ContainerStartParams) WithID

WithID adds the id to the container start params

func (*ContainerStartParams) WithTimeout

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

WithTimeout adds the timeout to the container start params

func (*ContainerStartParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerStartReader

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

ContainerStartReader is a Reader for the ContainerStart structure.

func (*ContainerStartReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerStatsInternalServerError

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

server error

func NewContainerStatsInternalServerError

func NewContainerStatsInternalServerError() *ContainerStatsInternalServerError

NewContainerStatsInternalServerError creates a ContainerStatsInternalServerError with default headers values

func (*ContainerStatsInternalServerError) Error

func (*ContainerStatsInternalServerError) GetPayload

func (*ContainerStatsInternalServerError) IsClientError

func (o *ContainerStatsInternalServerError) IsClientError() bool

IsClientError returns true when this container stats internal server error response has a 4xx status code

func (*ContainerStatsInternalServerError) IsCode

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

IsCode returns true when this container stats internal server error response a status code equal to that given

func (*ContainerStatsInternalServerError) IsRedirect

func (o *ContainerStatsInternalServerError) IsRedirect() bool

IsRedirect returns true when this container stats internal server error response has a 3xx status code

func (*ContainerStatsInternalServerError) IsServerError

func (o *ContainerStatsInternalServerError) IsServerError() bool

IsServerError returns true when this container stats internal server error response has a 5xx status code

func (*ContainerStatsInternalServerError) IsSuccess

func (o *ContainerStatsInternalServerError) IsSuccess() bool

IsSuccess returns true when this container stats internal server error response has a 2xx status code

func (*ContainerStatsInternalServerError) String

type ContainerStatsNotFound

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

no such container

func NewContainerStatsNotFound

func NewContainerStatsNotFound() *ContainerStatsNotFound

NewContainerStatsNotFound creates a ContainerStatsNotFound with default headers values

func (*ContainerStatsNotFound) Error

func (o *ContainerStatsNotFound) Error() string

func (*ContainerStatsNotFound) GetPayload

func (o *ContainerStatsNotFound) GetPayload() *models.ErrorResponse

func (*ContainerStatsNotFound) IsClientError

func (o *ContainerStatsNotFound) IsClientError() bool

IsClientError returns true when this container stats not found response has a 4xx status code

func (*ContainerStatsNotFound) IsCode

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

IsCode returns true when this container stats not found response a status code equal to that given

func (*ContainerStatsNotFound) IsRedirect

func (o *ContainerStatsNotFound) IsRedirect() bool

IsRedirect returns true when this container stats not found response has a 3xx status code

func (*ContainerStatsNotFound) IsServerError

func (o *ContainerStatsNotFound) IsServerError() bool

IsServerError returns true when this container stats not found response has a 5xx status code

func (*ContainerStatsNotFound) IsSuccess

func (o *ContainerStatsNotFound) IsSuccess() bool

IsSuccess returns true when this container stats not found response has a 2xx status code

func (*ContainerStatsNotFound) String

func (o *ContainerStatsNotFound) String() string

type ContainerStatsOK

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

no error

func NewContainerStatsOK

func NewContainerStatsOK() *ContainerStatsOK

NewContainerStatsOK creates a ContainerStatsOK with default headers values

func (*ContainerStatsOK) Error

func (o *ContainerStatsOK) Error() string

func (*ContainerStatsOK) GetPayload

func (o *ContainerStatsOK) GetPayload() interface{}

func (*ContainerStatsOK) IsClientError

func (o *ContainerStatsOK) IsClientError() bool

IsClientError returns true when this container stats o k response has a 4xx status code

func (*ContainerStatsOK) IsCode

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

IsCode returns true when this container stats o k response a status code equal to that given

func (*ContainerStatsOK) IsRedirect

func (o *ContainerStatsOK) IsRedirect() bool

IsRedirect returns true when this container stats o k response has a 3xx status code

func (*ContainerStatsOK) IsServerError

func (o *ContainerStatsOK) IsServerError() bool

IsServerError returns true when this container stats o k response has a 5xx status code

func (*ContainerStatsOK) IsSuccess

func (o *ContainerStatsOK) IsSuccess() bool

IsSuccess returns true when this container stats o k response has a 2xx status code

func (*ContainerStatsOK) String

func (o *ContainerStatsOK) String() string

type ContainerStatsParams

type ContainerStatsParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* Stream.

	   Stream the output. If false, the stats will be output once and then it will disconnect.

	   Default: true
	*/
	Stream *bool

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

ContainerStatsParams contains all the parameters to send to the API endpoint

for the container stats operation.

Typically these are written to a http.Request.

func NewContainerStatsParams

func NewContainerStatsParams() *ContainerStatsParams

NewContainerStatsParams creates a new ContainerStatsParams 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 NewContainerStatsParamsWithContext

func NewContainerStatsParamsWithContext(ctx context.Context) *ContainerStatsParams

NewContainerStatsParamsWithContext creates a new ContainerStatsParams object with the ability to set a context for a request.

func NewContainerStatsParamsWithHTTPClient

func NewContainerStatsParamsWithHTTPClient(client *http.Client) *ContainerStatsParams

NewContainerStatsParamsWithHTTPClient creates a new ContainerStatsParams object with the ability to set a custom HTTPClient for a request.

func NewContainerStatsParamsWithTimeout

func NewContainerStatsParamsWithTimeout(timeout time.Duration) *ContainerStatsParams

NewContainerStatsParamsWithTimeout creates a new ContainerStatsParams object with the ability to set a timeout on a request.

func (*ContainerStatsParams) SetContext

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

SetContext adds the context to the container stats params

func (*ContainerStatsParams) SetDefaults

func (o *ContainerStatsParams) SetDefaults()

SetDefaults hydrates default values in the container stats params (not the query body).

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

func (*ContainerStatsParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container stats params

func (*ContainerStatsParams) SetID

func (o *ContainerStatsParams) SetID(id string)

SetID adds the id to the container stats params

func (*ContainerStatsParams) SetStream

func (o *ContainerStatsParams) SetStream(stream *bool)

SetStream adds the stream to the container stats params

func (*ContainerStatsParams) SetTimeout

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

SetTimeout adds the timeout to the container stats params

func (*ContainerStatsParams) WithContext

WithContext adds the context to the container stats params

func (*ContainerStatsParams) WithDefaults

func (o *ContainerStatsParams) WithDefaults() *ContainerStatsParams

WithDefaults hydrates default values in the container stats params (not the query body).

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

func (*ContainerStatsParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container stats params

func (*ContainerStatsParams) WithID

WithID adds the id to the container stats params

func (*ContainerStatsParams) WithStream

func (o *ContainerStatsParams) WithStream(stream *bool) *ContainerStatsParams

WithStream adds the stream to the container stats params

func (*ContainerStatsParams) WithTimeout

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

WithTimeout adds the timeout to the container stats params

func (*ContainerStatsParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerStatsReader

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

ContainerStatsReader is a Reader for the ContainerStats structure.

func (*ContainerStatsReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerStopInternalServerError

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

server error

func NewContainerStopInternalServerError

func NewContainerStopInternalServerError() *ContainerStopInternalServerError

NewContainerStopInternalServerError creates a ContainerStopInternalServerError with default headers values

func (*ContainerStopInternalServerError) Error

func (*ContainerStopInternalServerError) GetPayload

func (*ContainerStopInternalServerError) IsClientError

func (o *ContainerStopInternalServerError) IsClientError() bool

IsClientError returns true when this container stop internal server error response has a 4xx status code

func (*ContainerStopInternalServerError) IsCode

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

IsCode returns true when this container stop internal server error response a status code equal to that given

func (*ContainerStopInternalServerError) IsRedirect

func (o *ContainerStopInternalServerError) IsRedirect() bool

IsRedirect returns true when this container stop internal server error response has a 3xx status code

func (*ContainerStopInternalServerError) IsServerError

func (o *ContainerStopInternalServerError) IsServerError() bool

IsServerError returns true when this container stop internal server error response has a 5xx status code

func (*ContainerStopInternalServerError) IsSuccess

func (o *ContainerStopInternalServerError) IsSuccess() bool

IsSuccess returns true when this container stop internal server error response has a 2xx status code

func (*ContainerStopInternalServerError) String

type ContainerStopNoContent

type ContainerStopNoContent struct {
}
ContainerStopNoContent describes a response with status code 204, with default header values.

no error

func NewContainerStopNoContent

func NewContainerStopNoContent() *ContainerStopNoContent

NewContainerStopNoContent creates a ContainerStopNoContent with default headers values

func (*ContainerStopNoContent) Error

func (o *ContainerStopNoContent) Error() string

func (*ContainerStopNoContent) IsClientError

func (o *ContainerStopNoContent) IsClientError() bool

IsClientError returns true when this container stop no content response has a 4xx status code

func (*ContainerStopNoContent) IsCode

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

IsCode returns true when this container stop no content response a status code equal to that given

func (*ContainerStopNoContent) IsRedirect

func (o *ContainerStopNoContent) IsRedirect() bool

IsRedirect returns true when this container stop no content response has a 3xx status code

func (*ContainerStopNoContent) IsServerError

func (o *ContainerStopNoContent) IsServerError() bool

IsServerError returns true when this container stop no content response has a 5xx status code

func (*ContainerStopNoContent) IsSuccess

func (o *ContainerStopNoContent) IsSuccess() bool

IsSuccess returns true when this container stop no content response has a 2xx status code

func (*ContainerStopNoContent) String

func (o *ContainerStopNoContent) String() string

type ContainerStopNotFound

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

no such container

func NewContainerStopNotFound

func NewContainerStopNotFound() *ContainerStopNotFound

NewContainerStopNotFound creates a ContainerStopNotFound with default headers values

func (*ContainerStopNotFound) Error

func (o *ContainerStopNotFound) Error() string

func (*ContainerStopNotFound) GetPayload

func (o *ContainerStopNotFound) GetPayload() *models.ErrorResponse

func (*ContainerStopNotFound) IsClientError

func (o *ContainerStopNotFound) IsClientError() bool

IsClientError returns true when this container stop not found response has a 4xx status code

func (*ContainerStopNotFound) IsCode

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

IsCode returns true when this container stop not found response a status code equal to that given

func (*ContainerStopNotFound) IsRedirect

func (o *ContainerStopNotFound) IsRedirect() bool

IsRedirect returns true when this container stop not found response has a 3xx status code

func (*ContainerStopNotFound) IsServerError

func (o *ContainerStopNotFound) IsServerError() bool

IsServerError returns true when this container stop not found response has a 5xx status code

func (*ContainerStopNotFound) IsSuccess

func (o *ContainerStopNotFound) IsSuccess() bool

IsSuccess returns true when this container stop not found response has a 2xx status code

func (*ContainerStopNotFound) String

func (o *ContainerStopNotFound) String() string

type ContainerStopNotModified

type ContainerStopNotModified struct {
}
ContainerStopNotModified describes a response with status code 304, with default header values.

container already stopped

func NewContainerStopNotModified

func NewContainerStopNotModified() *ContainerStopNotModified

NewContainerStopNotModified creates a ContainerStopNotModified with default headers values

func (*ContainerStopNotModified) Error

func (o *ContainerStopNotModified) Error() string

func (*ContainerStopNotModified) IsClientError

func (o *ContainerStopNotModified) IsClientError() bool

IsClientError returns true when this container stop not modified response has a 4xx status code

func (*ContainerStopNotModified) IsCode

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

IsCode returns true when this container stop not modified response a status code equal to that given

func (*ContainerStopNotModified) IsRedirect

func (o *ContainerStopNotModified) IsRedirect() bool

IsRedirect returns true when this container stop not modified response has a 3xx status code

func (*ContainerStopNotModified) IsServerError

func (o *ContainerStopNotModified) IsServerError() bool

IsServerError returns true when this container stop not modified response has a 5xx status code

func (*ContainerStopNotModified) IsSuccess

func (o *ContainerStopNotModified) IsSuccess() bool

IsSuccess returns true when this container stop not modified response has a 2xx status code

func (*ContainerStopNotModified) String

func (o *ContainerStopNotModified) String() string

type ContainerStopParams

type ContainerStopParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* T.

	   Number of seconds to wait before killing the container
	*/
	T *int64

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

ContainerStopParams contains all the parameters to send to the API endpoint

for the container stop operation.

Typically these are written to a http.Request.

func NewContainerStopParams

func NewContainerStopParams() *ContainerStopParams

NewContainerStopParams creates a new ContainerStopParams 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 NewContainerStopParamsWithContext

func NewContainerStopParamsWithContext(ctx context.Context) *ContainerStopParams

NewContainerStopParamsWithContext creates a new ContainerStopParams object with the ability to set a context for a request.

func NewContainerStopParamsWithHTTPClient

func NewContainerStopParamsWithHTTPClient(client *http.Client) *ContainerStopParams

NewContainerStopParamsWithHTTPClient creates a new ContainerStopParams object with the ability to set a custom HTTPClient for a request.

func NewContainerStopParamsWithTimeout

func NewContainerStopParamsWithTimeout(timeout time.Duration) *ContainerStopParams

NewContainerStopParamsWithTimeout creates a new ContainerStopParams object with the ability to set a timeout on a request.

func (*ContainerStopParams) SetContext

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

SetContext adds the context to the container stop params

func (*ContainerStopParams) SetDefaults

func (o *ContainerStopParams) SetDefaults()

SetDefaults hydrates default values in the container stop params (not the query body).

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

func (*ContainerStopParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container stop params

func (*ContainerStopParams) SetID

func (o *ContainerStopParams) SetID(id string)

SetID adds the id to the container stop params

func (*ContainerStopParams) SetT

func (o *ContainerStopParams) SetT(t *int64)

SetT adds the t to the container stop params

func (*ContainerStopParams) SetTimeout

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

SetTimeout adds the timeout to the container stop params

func (*ContainerStopParams) WithContext

WithContext adds the context to the container stop params

func (*ContainerStopParams) WithDefaults

func (o *ContainerStopParams) WithDefaults() *ContainerStopParams

WithDefaults hydrates default values in the container stop params (not the query body).

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

func (*ContainerStopParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container stop params

func (*ContainerStopParams) WithID

WithID adds the id to the container stop params

func (*ContainerStopParams) WithT

WithT adds the t to the container stop params

func (*ContainerStopParams) WithTimeout

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

WithTimeout adds the timeout to the container stop params

func (*ContainerStopParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerStopReader

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

ContainerStopReader is a Reader for the ContainerStop structure.

func (*ContainerStopReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerTopInternalServerError

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

server error

func NewContainerTopInternalServerError

func NewContainerTopInternalServerError() *ContainerTopInternalServerError

NewContainerTopInternalServerError creates a ContainerTopInternalServerError with default headers values

func (*ContainerTopInternalServerError) Error

func (*ContainerTopInternalServerError) GetPayload

func (*ContainerTopInternalServerError) IsClientError

func (o *ContainerTopInternalServerError) IsClientError() bool

IsClientError returns true when this container top internal server error response has a 4xx status code

func (*ContainerTopInternalServerError) IsCode

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

IsCode returns true when this container top internal server error response a status code equal to that given

func (*ContainerTopInternalServerError) IsRedirect

func (o *ContainerTopInternalServerError) IsRedirect() bool

IsRedirect returns true when this container top internal server error response has a 3xx status code

func (*ContainerTopInternalServerError) IsServerError

func (o *ContainerTopInternalServerError) IsServerError() bool

IsServerError returns true when this container top internal server error response has a 5xx status code

func (*ContainerTopInternalServerError) IsSuccess

func (o *ContainerTopInternalServerError) IsSuccess() bool

IsSuccess returns true when this container top internal server error response has a 2xx status code

func (*ContainerTopInternalServerError) String

type ContainerTopNotFound

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

no such container

func NewContainerTopNotFound

func NewContainerTopNotFound() *ContainerTopNotFound

NewContainerTopNotFound creates a ContainerTopNotFound with default headers values

func (*ContainerTopNotFound) Error

func (o *ContainerTopNotFound) Error() string

func (*ContainerTopNotFound) GetPayload

func (o *ContainerTopNotFound) GetPayload() *models.ErrorResponse

func (*ContainerTopNotFound) IsClientError

func (o *ContainerTopNotFound) IsClientError() bool

IsClientError returns true when this container top not found response has a 4xx status code

func (*ContainerTopNotFound) IsCode

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

IsCode returns true when this container top not found response a status code equal to that given

func (*ContainerTopNotFound) IsRedirect

func (o *ContainerTopNotFound) IsRedirect() bool

IsRedirect returns true when this container top not found response has a 3xx status code

func (*ContainerTopNotFound) IsServerError

func (o *ContainerTopNotFound) IsServerError() bool

IsServerError returns true when this container top not found response has a 5xx status code

func (*ContainerTopNotFound) IsSuccess

func (o *ContainerTopNotFound) IsSuccess() bool

IsSuccess returns true when this container top not found response has a 2xx status code

func (*ContainerTopNotFound) String

func (o *ContainerTopNotFound) String() string

type ContainerTopOK

type ContainerTopOK struct {
	Payload *ContainerTopOKBody
}
ContainerTopOK describes a response with status code 200, with default header values.

no error

func NewContainerTopOK

func NewContainerTopOK() *ContainerTopOK

NewContainerTopOK creates a ContainerTopOK with default headers values

func (*ContainerTopOK) Error

func (o *ContainerTopOK) Error() string

func (*ContainerTopOK) GetPayload

func (o *ContainerTopOK) GetPayload() *ContainerTopOKBody

func (*ContainerTopOK) IsClientError

func (o *ContainerTopOK) IsClientError() bool

IsClientError returns true when this container top o k response has a 4xx status code

func (*ContainerTopOK) IsCode

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

IsCode returns true when this container top o k response a status code equal to that given

func (*ContainerTopOK) IsRedirect

func (o *ContainerTopOK) IsRedirect() bool

IsRedirect returns true when this container top o k response has a 3xx status code

func (*ContainerTopOK) IsServerError

func (o *ContainerTopOK) IsServerError() bool

IsServerError returns true when this container top o k response has a 5xx status code

func (*ContainerTopOK) IsSuccess

func (o *ContainerTopOK) IsSuccess() bool

IsSuccess returns true when this container top o k response has a 2xx status code

func (*ContainerTopOK) String

func (o *ContainerTopOK) String() string

type ContainerTopOKBody

type ContainerTopOKBody struct {

	// Each process running in the container, where each is process is an array of values corresponding to the titles
	Processes [][]string `json:"Processes"`

	// The ps column titles
	Titles []string `json:"Titles"`
}

ContainerTopOKBody ContainerTopResponse // // OK response to ContainerTop operation swagger:model ContainerTopOKBody

func (*ContainerTopOKBody) ContextValidate

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

ContextValidate validates this container top o k body based on context it is used

func (*ContainerTopOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerTopOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerTopOKBody) Validate

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

Validate validates this container top o k body

type ContainerTopParams

type ContainerTopParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* PsArgs.

	   The arguments to pass to `ps`. For example, `aux`

	   Default: "-ef"
	*/
	PsArgs *string

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

ContainerTopParams contains all the parameters to send to the API endpoint

for the container top operation.

Typically these are written to a http.Request.

func NewContainerTopParams

func NewContainerTopParams() *ContainerTopParams

NewContainerTopParams creates a new ContainerTopParams 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 NewContainerTopParamsWithContext

func NewContainerTopParamsWithContext(ctx context.Context) *ContainerTopParams

NewContainerTopParamsWithContext creates a new ContainerTopParams object with the ability to set a context for a request.

func NewContainerTopParamsWithHTTPClient

func NewContainerTopParamsWithHTTPClient(client *http.Client) *ContainerTopParams

NewContainerTopParamsWithHTTPClient creates a new ContainerTopParams object with the ability to set a custom HTTPClient for a request.

func NewContainerTopParamsWithTimeout

func NewContainerTopParamsWithTimeout(timeout time.Duration) *ContainerTopParams

NewContainerTopParamsWithTimeout creates a new ContainerTopParams object with the ability to set a timeout on a request.

func (*ContainerTopParams) SetContext

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

SetContext adds the context to the container top params

func (*ContainerTopParams) SetDefaults

func (o *ContainerTopParams) SetDefaults()

SetDefaults hydrates default values in the container top params (not the query body).

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

func (*ContainerTopParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container top params

func (*ContainerTopParams) SetID

func (o *ContainerTopParams) SetID(id string)

SetID adds the id to the container top params

func (*ContainerTopParams) SetPsArgs

func (o *ContainerTopParams) SetPsArgs(psArgs *string)

SetPsArgs adds the psArgs to the container top params

func (*ContainerTopParams) SetTimeout

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

SetTimeout adds the timeout to the container top params

func (*ContainerTopParams) WithContext

WithContext adds the context to the container top params

func (*ContainerTopParams) WithDefaults

func (o *ContainerTopParams) WithDefaults() *ContainerTopParams

WithDefaults hydrates default values in the container top params (not the query body).

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

func (*ContainerTopParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container top params

func (*ContainerTopParams) WithID

WithID adds the id to the container top params

func (*ContainerTopParams) WithPsArgs

func (o *ContainerTopParams) WithPsArgs(psArgs *string) *ContainerTopParams

WithPsArgs adds the psArgs to the container top params

func (*ContainerTopParams) WithTimeout

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

WithTimeout adds the timeout to the container top params

func (*ContainerTopParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerTopReader

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

ContainerTopReader is a Reader for the ContainerTop structure.

func (*ContainerTopReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerUnpauseInternalServerError

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

server error

func NewContainerUnpauseInternalServerError

func NewContainerUnpauseInternalServerError() *ContainerUnpauseInternalServerError

NewContainerUnpauseInternalServerError creates a ContainerUnpauseInternalServerError with default headers values

func (*ContainerUnpauseInternalServerError) Error

func (*ContainerUnpauseInternalServerError) GetPayload

func (*ContainerUnpauseInternalServerError) IsClientError

func (o *ContainerUnpauseInternalServerError) IsClientError() bool

IsClientError returns true when this container unpause internal server error response has a 4xx status code

func (*ContainerUnpauseInternalServerError) IsCode

IsCode returns true when this container unpause internal server error response a status code equal to that given

func (*ContainerUnpauseInternalServerError) IsRedirect

func (o *ContainerUnpauseInternalServerError) IsRedirect() bool

IsRedirect returns true when this container unpause internal server error response has a 3xx status code

func (*ContainerUnpauseInternalServerError) IsServerError

func (o *ContainerUnpauseInternalServerError) IsServerError() bool

IsServerError returns true when this container unpause internal server error response has a 5xx status code

func (*ContainerUnpauseInternalServerError) IsSuccess

IsSuccess returns true when this container unpause internal server error response has a 2xx status code

func (*ContainerUnpauseInternalServerError) String

type ContainerUnpauseNoContent

type ContainerUnpauseNoContent struct {
}
ContainerUnpauseNoContent describes a response with status code 204, with default header values.

no error

func NewContainerUnpauseNoContent

func NewContainerUnpauseNoContent() *ContainerUnpauseNoContent

NewContainerUnpauseNoContent creates a ContainerUnpauseNoContent with default headers values

func (*ContainerUnpauseNoContent) Error

func (o *ContainerUnpauseNoContent) Error() string

func (*ContainerUnpauseNoContent) IsClientError

func (o *ContainerUnpauseNoContent) IsClientError() bool

IsClientError returns true when this container unpause no content response has a 4xx status code

func (*ContainerUnpauseNoContent) IsCode

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

IsCode returns true when this container unpause no content response a status code equal to that given

func (*ContainerUnpauseNoContent) IsRedirect

func (o *ContainerUnpauseNoContent) IsRedirect() bool

IsRedirect returns true when this container unpause no content response has a 3xx status code

func (*ContainerUnpauseNoContent) IsServerError

func (o *ContainerUnpauseNoContent) IsServerError() bool

IsServerError returns true when this container unpause no content response has a 5xx status code

func (*ContainerUnpauseNoContent) IsSuccess

func (o *ContainerUnpauseNoContent) IsSuccess() bool

IsSuccess returns true when this container unpause no content response has a 2xx status code

func (*ContainerUnpauseNoContent) String

func (o *ContainerUnpauseNoContent) String() string

type ContainerUnpauseNotFound

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

no such container

func NewContainerUnpauseNotFound

func NewContainerUnpauseNotFound() *ContainerUnpauseNotFound

NewContainerUnpauseNotFound creates a ContainerUnpauseNotFound with default headers values

func (*ContainerUnpauseNotFound) Error

func (o *ContainerUnpauseNotFound) Error() string

func (*ContainerUnpauseNotFound) GetPayload

func (*ContainerUnpauseNotFound) IsClientError

func (o *ContainerUnpauseNotFound) IsClientError() bool

IsClientError returns true when this container unpause not found response has a 4xx status code

func (*ContainerUnpauseNotFound) IsCode

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

IsCode returns true when this container unpause not found response a status code equal to that given

func (*ContainerUnpauseNotFound) IsRedirect

func (o *ContainerUnpauseNotFound) IsRedirect() bool

IsRedirect returns true when this container unpause not found response has a 3xx status code

func (*ContainerUnpauseNotFound) IsServerError

func (o *ContainerUnpauseNotFound) IsServerError() bool

IsServerError returns true when this container unpause not found response has a 5xx status code

func (*ContainerUnpauseNotFound) IsSuccess

func (o *ContainerUnpauseNotFound) IsSuccess() bool

IsSuccess returns true when this container unpause not found response has a 2xx status code

func (*ContainerUnpauseNotFound) String

func (o *ContainerUnpauseNotFound) String() string

type ContainerUnpauseParams

type ContainerUnpauseParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerUnpauseParams contains all the parameters to send to the API endpoint

for the container unpause operation.

Typically these are written to a http.Request.

func NewContainerUnpauseParams

func NewContainerUnpauseParams() *ContainerUnpauseParams

NewContainerUnpauseParams creates a new ContainerUnpauseParams 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 NewContainerUnpauseParamsWithContext

func NewContainerUnpauseParamsWithContext(ctx context.Context) *ContainerUnpauseParams

NewContainerUnpauseParamsWithContext creates a new ContainerUnpauseParams object with the ability to set a context for a request.

func NewContainerUnpauseParamsWithHTTPClient

func NewContainerUnpauseParamsWithHTTPClient(client *http.Client) *ContainerUnpauseParams

NewContainerUnpauseParamsWithHTTPClient creates a new ContainerUnpauseParams object with the ability to set a custom HTTPClient for a request.

func NewContainerUnpauseParamsWithTimeout

func NewContainerUnpauseParamsWithTimeout(timeout time.Duration) *ContainerUnpauseParams

NewContainerUnpauseParamsWithTimeout creates a new ContainerUnpauseParams object with the ability to set a timeout on a request.

func (*ContainerUnpauseParams) SetContext

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

SetContext adds the context to the container unpause params

func (*ContainerUnpauseParams) SetDefaults

func (o *ContainerUnpauseParams) SetDefaults()

SetDefaults hydrates default values in the container unpause params (not the query body).

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

func (*ContainerUnpauseParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container unpause params

func (*ContainerUnpauseParams) SetID

func (o *ContainerUnpauseParams) SetID(id string)

SetID adds the id to the container unpause params

func (*ContainerUnpauseParams) SetTimeout

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

SetTimeout adds the timeout to the container unpause params

func (*ContainerUnpauseParams) WithContext

WithContext adds the context to the container unpause params

func (*ContainerUnpauseParams) WithDefaults

WithDefaults hydrates default values in the container unpause params (not the query body).

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

func (*ContainerUnpauseParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container unpause params

func (*ContainerUnpauseParams) WithID

WithID adds the id to the container unpause params

func (*ContainerUnpauseParams) WithTimeout

WithTimeout adds the timeout to the container unpause params

func (*ContainerUnpauseParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type ContainerUnpauseReader

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

ContainerUnpauseReader is a Reader for the ContainerUnpause structure.

func (*ContainerUnpauseReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerUpdateBody

type ContainerUpdateBody struct {
	models.Resources

	// restart policy
	RestartPolicy *models.RestartPolicy `json:"RestartPolicy,omitempty"`
}

ContainerUpdateBody container update body // Example: {"BlkioWeight":300,"CpuPeriod":100000,"CpuQuota":50000,"CpuRealtimePeriod":1000000,"CpuRealtimeRuntime":10000,"CpuShares":512,"CpusetCpus":"0,1","CpusetMems":"0","KernelMemory":52428800,"Memory":314572800,"MemoryReservation":209715200,"MemorySwap":514288000,"RestartPolicy":{"MaximumRetryCount":4,"Name":"on-failure"}} swagger:model ContainerUpdateBody

func (*ContainerUpdateBody) ContextValidate

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

ContextValidate validate this container update body based on the context it is used

func (*ContainerUpdateBody) MarshalBinary

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

MarshalBinary interface implementation

func (ContainerUpdateBody) MarshalJSON

func (o ContainerUpdateBody) MarshalJSON() ([]byte, error)

MarshalJSON marshals this object to a JSON structure

func (*ContainerUpdateBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerUpdateBody) UnmarshalJSON

func (o *ContainerUpdateBody) UnmarshalJSON(raw []byte) error

UnmarshalJSON unmarshals this object from a JSON structure

func (*ContainerUpdateBody) Validate

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

Validate validates this container update body

type ContainerUpdateInternalServerError

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

server error

func NewContainerUpdateInternalServerError

func NewContainerUpdateInternalServerError() *ContainerUpdateInternalServerError

NewContainerUpdateInternalServerError creates a ContainerUpdateInternalServerError with default headers values

func (*ContainerUpdateInternalServerError) Error

func (*ContainerUpdateInternalServerError) GetPayload

func (*ContainerUpdateInternalServerError) IsClientError

func (o *ContainerUpdateInternalServerError) IsClientError() bool

IsClientError returns true when this container update internal server error response has a 4xx status code

func (*ContainerUpdateInternalServerError) IsCode

IsCode returns true when this container update internal server error response a status code equal to that given

func (*ContainerUpdateInternalServerError) IsRedirect

func (o *ContainerUpdateInternalServerError) IsRedirect() bool

IsRedirect returns true when this container update internal server error response has a 3xx status code

func (*ContainerUpdateInternalServerError) IsServerError

func (o *ContainerUpdateInternalServerError) IsServerError() bool

IsServerError returns true when this container update internal server error response has a 5xx status code

func (*ContainerUpdateInternalServerError) IsSuccess

IsSuccess returns true when this container update internal server error response has a 2xx status code

func (*ContainerUpdateInternalServerError) String

type ContainerUpdateNotFound

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

no such container

func NewContainerUpdateNotFound

func NewContainerUpdateNotFound() *ContainerUpdateNotFound

NewContainerUpdateNotFound creates a ContainerUpdateNotFound with default headers values

func (*ContainerUpdateNotFound) Error

func (o *ContainerUpdateNotFound) Error() string

func (*ContainerUpdateNotFound) GetPayload

func (o *ContainerUpdateNotFound) GetPayload() *models.ErrorResponse

func (*ContainerUpdateNotFound) IsClientError

func (o *ContainerUpdateNotFound) IsClientError() bool

IsClientError returns true when this container update not found response has a 4xx status code

func (*ContainerUpdateNotFound) IsCode

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

IsCode returns true when this container update not found response a status code equal to that given

func (*ContainerUpdateNotFound) IsRedirect

func (o *ContainerUpdateNotFound) IsRedirect() bool

IsRedirect returns true when this container update not found response has a 3xx status code

func (*ContainerUpdateNotFound) IsServerError

func (o *ContainerUpdateNotFound) IsServerError() bool

IsServerError returns true when this container update not found response has a 5xx status code

func (*ContainerUpdateNotFound) IsSuccess

func (o *ContainerUpdateNotFound) IsSuccess() bool

IsSuccess returns true when this container update not found response has a 2xx status code

func (*ContainerUpdateNotFound) String

func (o *ContainerUpdateNotFound) String() string

type ContainerUpdateOK

type ContainerUpdateOK struct {
	Payload *ContainerUpdateOKBody
}
ContainerUpdateOK describes a response with status code 200, with default header values.

The container has been updated.

func NewContainerUpdateOK

func NewContainerUpdateOK() *ContainerUpdateOK

NewContainerUpdateOK creates a ContainerUpdateOK with default headers values

func (*ContainerUpdateOK) Error

func (o *ContainerUpdateOK) Error() string

func (*ContainerUpdateOK) GetPayload

func (o *ContainerUpdateOK) GetPayload() *ContainerUpdateOKBody

func (*ContainerUpdateOK) IsClientError

func (o *ContainerUpdateOK) IsClientError() bool

IsClientError returns true when this container update o k response has a 4xx status code

func (*ContainerUpdateOK) IsCode

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

IsCode returns true when this container update o k response a status code equal to that given

func (*ContainerUpdateOK) IsRedirect

func (o *ContainerUpdateOK) IsRedirect() bool

IsRedirect returns true when this container update o k response has a 3xx status code

func (*ContainerUpdateOK) IsServerError

func (o *ContainerUpdateOK) IsServerError() bool

IsServerError returns true when this container update o k response has a 5xx status code

func (*ContainerUpdateOK) IsSuccess

func (o *ContainerUpdateOK) IsSuccess() bool

IsSuccess returns true when this container update o k response has a 2xx status code

func (*ContainerUpdateOK) String

func (o *ContainerUpdateOK) String() string

type ContainerUpdateOKBody

type ContainerUpdateOKBody struct {

	// warnings
	Warnings []string `json:"Warnings"`
}

ContainerUpdateOKBody ContainerUpdateResponse // // OK response to ContainerUpdate operation swagger:model ContainerUpdateOKBody

func (*ContainerUpdateOKBody) ContextValidate

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

ContextValidate validates this container update o k body based on context it is used

func (*ContainerUpdateOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerUpdateOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerUpdateOKBody) Validate

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

Validate validates this container update o k body

type ContainerUpdateParams

type ContainerUpdateParams struct {

	/* ID.

	   ID or name of the container
	*/
	ID string

	// Update.
	Update ContainerUpdateBody

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

ContainerUpdateParams contains all the parameters to send to the API endpoint

for the container update operation.

Typically these are written to a http.Request.

func NewContainerUpdateParams

func NewContainerUpdateParams() *ContainerUpdateParams

NewContainerUpdateParams creates a new ContainerUpdateParams 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 NewContainerUpdateParamsWithContext

func NewContainerUpdateParamsWithContext(ctx context.Context) *ContainerUpdateParams

NewContainerUpdateParamsWithContext creates a new ContainerUpdateParams object with the ability to set a context for a request.

func NewContainerUpdateParamsWithHTTPClient

func NewContainerUpdateParamsWithHTTPClient(client *http.Client) *ContainerUpdateParams

NewContainerUpdateParamsWithHTTPClient creates a new ContainerUpdateParams object with the ability to set a custom HTTPClient for a request.

func NewContainerUpdateParamsWithTimeout

func NewContainerUpdateParamsWithTimeout(timeout time.Duration) *ContainerUpdateParams

NewContainerUpdateParamsWithTimeout creates a new ContainerUpdateParams object with the ability to set a timeout on a request.

func (*ContainerUpdateParams) SetContext

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

SetContext adds the context to the container update params

func (*ContainerUpdateParams) SetDefaults

func (o *ContainerUpdateParams) SetDefaults()

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

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

func (*ContainerUpdateParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container update params

func (*ContainerUpdateParams) SetID

func (o *ContainerUpdateParams) SetID(id string)

SetID adds the id to the container update params

func (*ContainerUpdateParams) SetTimeout

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

SetTimeout adds the timeout to the container update params

func (*ContainerUpdateParams) SetUpdate

func (o *ContainerUpdateParams) SetUpdate(update ContainerUpdateBody)

SetUpdate adds the update to the container update params

func (*ContainerUpdateParams) WithContext

WithContext adds the context to the container update params

func (*ContainerUpdateParams) WithDefaults

func (o *ContainerUpdateParams) WithDefaults() *ContainerUpdateParams

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

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

func (*ContainerUpdateParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container update params

func (*ContainerUpdateParams) WithID

WithID adds the id to the container update params

func (*ContainerUpdateParams) WithTimeout

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

WithTimeout adds the timeout to the container update params

func (*ContainerUpdateParams) WithUpdate

WithUpdate adds the update to the container update params

func (*ContainerUpdateParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerUpdateReader

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

ContainerUpdateReader is a Reader for the ContainerUpdate structure.

func (*ContainerUpdateReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type ContainerWaitInternalServerError

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

server error

func NewContainerWaitInternalServerError

func NewContainerWaitInternalServerError() *ContainerWaitInternalServerError

NewContainerWaitInternalServerError creates a ContainerWaitInternalServerError with default headers values

func (*ContainerWaitInternalServerError) Error

func (*ContainerWaitInternalServerError) GetPayload

func (*ContainerWaitInternalServerError) IsClientError

func (o *ContainerWaitInternalServerError) IsClientError() bool

IsClientError returns true when this container wait internal server error response has a 4xx status code

func (*ContainerWaitInternalServerError) IsCode

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

IsCode returns true when this container wait internal server error response a status code equal to that given

func (*ContainerWaitInternalServerError) IsRedirect

func (o *ContainerWaitInternalServerError) IsRedirect() bool

IsRedirect returns true when this container wait internal server error response has a 3xx status code

func (*ContainerWaitInternalServerError) IsServerError

func (o *ContainerWaitInternalServerError) IsServerError() bool

IsServerError returns true when this container wait internal server error response has a 5xx status code

func (*ContainerWaitInternalServerError) IsSuccess

func (o *ContainerWaitInternalServerError) IsSuccess() bool

IsSuccess returns true when this container wait internal server error response has a 2xx status code

func (*ContainerWaitInternalServerError) String

type ContainerWaitNotFound

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

no such container

func NewContainerWaitNotFound

func NewContainerWaitNotFound() *ContainerWaitNotFound

NewContainerWaitNotFound creates a ContainerWaitNotFound with default headers values

func (*ContainerWaitNotFound) Error

func (o *ContainerWaitNotFound) Error() string

func (*ContainerWaitNotFound) GetPayload

func (o *ContainerWaitNotFound) GetPayload() *models.ErrorResponse

func (*ContainerWaitNotFound) IsClientError

func (o *ContainerWaitNotFound) IsClientError() bool

IsClientError returns true when this container wait not found response has a 4xx status code

func (*ContainerWaitNotFound) IsCode

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

IsCode returns true when this container wait not found response a status code equal to that given

func (*ContainerWaitNotFound) IsRedirect

func (o *ContainerWaitNotFound) IsRedirect() bool

IsRedirect returns true when this container wait not found response has a 3xx status code

func (*ContainerWaitNotFound) IsServerError

func (o *ContainerWaitNotFound) IsServerError() bool

IsServerError returns true when this container wait not found response has a 5xx status code

func (*ContainerWaitNotFound) IsSuccess

func (o *ContainerWaitNotFound) IsSuccess() bool

IsSuccess returns true when this container wait not found response has a 2xx status code

func (*ContainerWaitNotFound) String

func (o *ContainerWaitNotFound) String() string

type ContainerWaitOK

type ContainerWaitOK struct {
	Payload *ContainerWaitOKBody
}
ContainerWaitOK describes a response with status code 200, with default header values.

The container has exit.

func NewContainerWaitOK

func NewContainerWaitOK() *ContainerWaitOK

NewContainerWaitOK creates a ContainerWaitOK with default headers values

func (*ContainerWaitOK) Error

func (o *ContainerWaitOK) Error() string

func (*ContainerWaitOK) GetPayload

func (o *ContainerWaitOK) GetPayload() *ContainerWaitOKBody

func (*ContainerWaitOK) IsClientError

func (o *ContainerWaitOK) IsClientError() bool

IsClientError returns true when this container wait o k response has a 4xx status code

func (*ContainerWaitOK) IsCode

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

IsCode returns true when this container wait o k response a status code equal to that given

func (*ContainerWaitOK) IsRedirect

func (o *ContainerWaitOK) IsRedirect() bool

IsRedirect returns true when this container wait o k response has a 3xx status code

func (*ContainerWaitOK) IsServerError

func (o *ContainerWaitOK) IsServerError() bool

IsServerError returns true when this container wait o k response has a 5xx status code

func (*ContainerWaitOK) IsSuccess

func (o *ContainerWaitOK) IsSuccess() bool

IsSuccess returns true when this container wait o k response has a 2xx status code

func (*ContainerWaitOK) String

func (o *ContainerWaitOK) String() string

type ContainerWaitOKBody

type ContainerWaitOKBody struct {

	// error
	Error *ContainerWaitOKBodyError `json:"Error,omitempty"`

	// Exit code of the container
	// Required: true
	StatusCode int64 `json:"StatusCode"`
}

ContainerWaitOKBody ContainerWaitResponse // // OK response to ContainerWait operation swagger:model ContainerWaitOKBody

func (*ContainerWaitOKBody) ContextValidate

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

ContextValidate validate this container wait o k body based on the context it is used

func (*ContainerWaitOKBody) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerWaitOKBody) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerWaitOKBody) Validate

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

Validate validates this container wait o k body

type ContainerWaitOKBodyError

type ContainerWaitOKBodyError struct {

	// Details of an error
	Message string `json:"Message,omitempty"`
}

ContainerWaitOKBodyError container waiting error, if any swagger:model ContainerWaitOKBodyError

func (*ContainerWaitOKBodyError) ContextValidate

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

ContextValidate validates this container wait o k body error based on context it is used

func (*ContainerWaitOKBodyError) MarshalBinary

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

MarshalBinary interface implementation

func (*ContainerWaitOKBodyError) UnmarshalBinary

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

UnmarshalBinary interface implementation

func (*ContainerWaitOKBodyError) Validate

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

Validate validates this container wait o k body error

type ContainerWaitParams

type ContainerWaitParams struct {

	/* Condition.

	   Wait until a container state reaches the given condition, either 'not-running' (default), 'next-exit', or 'removed'.

	   Default: "not-running"
	*/
	Condition *string

	/* ID.

	   ID or name of the container
	*/
	ID string

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

ContainerWaitParams contains all the parameters to send to the API endpoint

for the container wait operation.

Typically these are written to a http.Request.

func NewContainerWaitParams

func NewContainerWaitParams() *ContainerWaitParams

NewContainerWaitParams creates a new ContainerWaitParams 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 NewContainerWaitParamsWithContext

func NewContainerWaitParamsWithContext(ctx context.Context) *ContainerWaitParams

NewContainerWaitParamsWithContext creates a new ContainerWaitParams object with the ability to set a context for a request.

func NewContainerWaitParamsWithHTTPClient

func NewContainerWaitParamsWithHTTPClient(client *http.Client) *ContainerWaitParams

NewContainerWaitParamsWithHTTPClient creates a new ContainerWaitParams object with the ability to set a custom HTTPClient for a request.

func NewContainerWaitParamsWithTimeout

func NewContainerWaitParamsWithTimeout(timeout time.Duration) *ContainerWaitParams

NewContainerWaitParamsWithTimeout creates a new ContainerWaitParams object with the ability to set a timeout on a request.

func (*ContainerWaitParams) SetCondition

func (o *ContainerWaitParams) SetCondition(condition *string)

SetCondition adds the condition to the container wait params

func (*ContainerWaitParams) SetContext

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

SetContext adds the context to the container wait params

func (*ContainerWaitParams) SetDefaults

func (o *ContainerWaitParams) SetDefaults()

SetDefaults hydrates default values in the container wait params (not the query body).

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

func (*ContainerWaitParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the container wait params

func (*ContainerWaitParams) SetID

func (o *ContainerWaitParams) SetID(id string)

SetID adds the id to the container wait params

func (*ContainerWaitParams) SetTimeout

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

SetTimeout adds the timeout to the container wait params

func (*ContainerWaitParams) WithCondition

func (o *ContainerWaitParams) WithCondition(condition *string) *ContainerWaitParams

WithCondition adds the condition to the container wait params

func (*ContainerWaitParams) WithContext

WithContext adds the context to the container wait params

func (*ContainerWaitParams) WithDefaults

func (o *ContainerWaitParams) WithDefaults() *ContainerWaitParams

WithDefaults hydrates default values in the container wait params (not the query body).

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

func (*ContainerWaitParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the container wait params

func (*ContainerWaitParams) WithID

WithID adds the id to the container wait params

func (*ContainerWaitParams) WithTimeout

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

WithTimeout adds the timeout to the container wait params

func (*ContainerWaitParams) WriteToRequest

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

WriteToRequest writes these params to a swagger request

type ContainerWaitReader

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

ContainerWaitReader is a Reader for the ContainerWait structure.

func (*ContainerWaitReader) ReadResponse

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

ReadResponse reads a server response into the received o.

type PutContainerArchiveBadRequest

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

Bad parameter

func NewPutContainerArchiveBadRequest

func NewPutContainerArchiveBadRequest() *PutContainerArchiveBadRequest

NewPutContainerArchiveBadRequest creates a PutContainerArchiveBadRequest with default headers values

func (*PutContainerArchiveBadRequest) Error

func (*PutContainerArchiveBadRequest) GetPayload

func (*PutContainerArchiveBadRequest) IsClientError

func (o *PutContainerArchiveBadRequest) IsClientError() bool

IsClientError returns true when this put container archive bad request response has a 4xx status code

func (*PutContainerArchiveBadRequest) IsCode

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

IsCode returns true when this put container archive bad request response a status code equal to that given

func (*PutContainerArchiveBadRequest) IsRedirect

func (o *PutContainerArchiveBadRequest) IsRedirect() bool

IsRedirect returns true when this put container archive bad request response has a 3xx status code

func (*PutContainerArchiveBadRequest) IsServerError

func (o *PutContainerArchiveBadRequest) IsServerError() bool

IsServerError returns true when this put container archive bad request response has a 5xx status code

func (*PutContainerArchiveBadRequest) IsSuccess

func (o *PutContainerArchiveBadRequest) IsSuccess() bool

IsSuccess returns true when this put container archive bad request response has a 2xx status code

func (*PutContainerArchiveBadRequest) String

type PutContainerArchiveForbidden

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

Permission denied, the volume or container rootfs is marked as read-only.

func NewPutContainerArchiveForbidden

func NewPutContainerArchiveForbidden() *PutContainerArchiveForbidden

NewPutContainerArchiveForbidden creates a PutContainerArchiveForbidden with default headers values

func (*PutContainerArchiveForbidden) Error

func (*PutContainerArchiveForbidden) GetPayload

func (*PutContainerArchiveForbidden) IsClientError

func (o *PutContainerArchiveForbidden) IsClientError() bool

IsClientError returns true when this put container archive forbidden response has a 4xx status code

func (*PutContainerArchiveForbidden) IsCode

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

IsCode returns true when this put container archive forbidden response a status code equal to that given

func (*PutContainerArchiveForbidden) IsRedirect

func (o *PutContainerArchiveForbidden) IsRedirect() bool

IsRedirect returns true when this put container archive forbidden response has a 3xx status code

func (*PutContainerArchiveForbidden) IsServerError

func (o *PutContainerArchiveForbidden) IsServerError() bool

IsServerError returns true when this put container archive forbidden response has a 5xx status code

func (*PutContainerArchiveForbidden) IsSuccess

func (o *PutContainerArchiveForbidden) IsSuccess() bool

IsSuccess returns true when this put container archive forbidden response has a 2xx status code

func (*PutContainerArchiveForbidden) String

type PutContainerArchiveInternalServerError

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

Server error

func NewPutContainerArchiveInternalServerError

func NewPutContainerArchiveInternalServerError() *PutContainerArchiveInternalServerError

NewPutContainerArchiveInternalServerError creates a PutContainerArchiveInternalServerError with default headers values

func (*PutContainerArchiveInternalServerError) Error

func (*PutContainerArchiveInternalServerError) GetPayload

func (*PutContainerArchiveInternalServerError) IsClientError

func (o *PutContainerArchiveInternalServerError) IsClientError() bool

IsClientError returns true when this put container archive internal server error response has a 4xx status code

func (*PutContainerArchiveInternalServerError) IsCode

IsCode returns true when this put container archive internal server error response a status code equal to that given

func (*PutContainerArchiveInternalServerError) IsRedirect

IsRedirect returns true when this put container archive internal server error response has a 3xx status code

func (*PutContainerArchiveInternalServerError) IsServerError

func (o *PutContainerArchiveInternalServerError) IsServerError() bool

IsServerError returns true when this put container archive internal server error response has a 5xx status code

func (*PutContainerArchiveInternalServerError) IsSuccess

IsSuccess returns true when this put container archive internal server error response has a 2xx status code

func (*PutContainerArchiveInternalServerError) String

type PutContainerArchiveNotFound

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

No such container or path does not exist inside the container

func NewPutContainerArchiveNotFound

func NewPutContainerArchiveNotFound() *PutContainerArchiveNotFound

NewPutContainerArchiveNotFound creates a PutContainerArchiveNotFound with default headers values

func (*PutContainerArchiveNotFound) Error

func (*PutContainerArchiveNotFound) GetPayload

func (*PutContainerArchiveNotFound) IsClientError

func (o *PutContainerArchiveNotFound) IsClientError() bool

IsClientError returns true when this put container archive not found response has a 4xx status code

func (*PutContainerArchiveNotFound) IsCode

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

IsCode returns true when this put container archive not found response a status code equal to that given

func (*PutContainerArchiveNotFound) IsRedirect

func (o *PutContainerArchiveNotFound) IsRedirect() bool

IsRedirect returns true when this put container archive not found response has a 3xx status code

func (*PutContainerArchiveNotFound) IsServerError

func (o *PutContainerArchiveNotFound) IsServerError() bool

IsServerError returns true when this put container archive not found response has a 5xx status code

func (*PutContainerArchiveNotFound) IsSuccess

func (o *PutContainerArchiveNotFound) IsSuccess() bool

IsSuccess returns true when this put container archive not found response has a 2xx status code

func (*PutContainerArchiveNotFound) String

func (o *PutContainerArchiveNotFound) String() string

type PutContainerArchiveOK

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

The content was extracted successfully

func NewPutContainerArchiveOK

func NewPutContainerArchiveOK() *PutContainerArchiveOK

NewPutContainerArchiveOK creates a PutContainerArchiveOK with default headers values

func (*PutContainerArchiveOK) Error

func (o *PutContainerArchiveOK) Error() string

func (*PutContainerArchiveOK) IsClientError

func (o *PutContainerArchiveOK) IsClientError() bool

IsClientError returns true when this put container archive o k response has a 4xx status code

func (*PutContainerArchiveOK) IsCode

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

IsCode returns true when this put container archive o k response a status code equal to that given

func (*PutContainerArchiveOK) IsRedirect

func (o *PutContainerArchiveOK) IsRedirect() bool

IsRedirect returns true when this put container archive o k response has a 3xx status code

func (*PutContainerArchiveOK) IsServerError

func (o *PutContainerArchiveOK) IsServerError() bool

IsServerError returns true when this put container archive o k response has a 5xx status code

func (*PutContainerArchiveOK) IsSuccess

func (o *PutContainerArchiveOK) IsSuccess() bool

IsSuccess returns true when this put container archive o k response has a 2xx status code

func (*PutContainerArchiveOK) String

func (o *PutContainerArchiveOK) String() string

type PutContainerArchiveParams

type PutContainerArchiveParams struct {

	/* CopyUIDGID.

	   If “1”, “true”, then it will copy UID/GID maps to the dest file or dir
	*/
	CopyUIDGID *string

	/* ID.

	   ID or name of the container
	*/
	ID string

	/* InputStream.

	   The input stream must be a tar archive compressed with one of the following algorithms: identity (no compression), gzip, bzip2, xz.

	   Format: binary
	*/
	InputStream io.ReadCloser

	/* NoOverwriteDirNonDir.

	   If “1”, “true”, or “True” then it will be an error if unpacking the given content would cause an existing directory to be replaced with a non-directory and vice versa.
	*/
	NoOverwriteDirNonDir *string

	/* Path.

	   Path to a directory in the container to extract the archive’s contents into.
	*/
	Path string

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

PutContainerArchiveParams contains all the parameters to send to the API endpoint

for the put container archive operation.

Typically these are written to a http.Request.

func NewPutContainerArchiveParams

func NewPutContainerArchiveParams() *PutContainerArchiveParams

NewPutContainerArchiveParams creates a new PutContainerArchiveParams 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 NewPutContainerArchiveParamsWithContext

func NewPutContainerArchiveParamsWithContext(ctx context.Context) *PutContainerArchiveParams

NewPutContainerArchiveParamsWithContext creates a new PutContainerArchiveParams object with the ability to set a context for a request.

func NewPutContainerArchiveParamsWithHTTPClient

func NewPutContainerArchiveParamsWithHTTPClient(client *http.Client) *PutContainerArchiveParams

NewPutContainerArchiveParamsWithHTTPClient creates a new PutContainerArchiveParams object with the ability to set a custom HTTPClient for a request.

func NewPutContainerArchiveParamsWithTimeout

func NewPutContainerArchiveParamsWithTimeout(timeout time.Duration) *PutContainerArchiveParams

NewPutContainerArchiveParamsWithTimeout creates a new PutContainerArchiveParams object with the ability to set a timeout on a request.

func (*PutContainerArchiveParams) SetContext

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

SetContext adds the context to the put container archive params

func (*PutContainerArchiveParams) SetCopyUIDGID

func (o *PutContainerArchiveParams) SetCopyUIDGID(copyUIDGID *string)

SetCopyUIDGID adds the copyUidGId to the put container archive params

func (*PutContainerArchiveParams) SetDefaults

func (o *PutContainerArchiveParams) SetDefaults()

SetDefaults hydrates default values in the put container archive params (not the query body).

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

func (*PutContainerArchiveParams) SetHTTPClient

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

SetHTTPClient adds the HTTPClient to the put container archive params

func (*PutContainerArchiveParams) SetID

func (o *PutContainerArchiveParams) SetID(id string)

SetID adds the id to the put container archive params

func (*PutContainerArchiveParams) SetInputStream

func (o *PutContainerArchiveParams) SetInputStream(inputStream io.ReadCloser)

SetInputStream adds the inputStream to the put container archive params

func (*PutContainerArchiveParams) SetNoOverwriteDirNonDir

func (o *PutContainerArchiveParams) SetNoOverwriteDirNonDir(noOverwriteDirNonDir *string)

SetNoOverwriteDirNonDir adds the noOverwriteDirNonDir to the put container archive params

func (*PutContainerArchiveParams) SetPath

func (o *PutContainerArchiveParams) SetPath(path string)

SetPath adds the path to the put container archive params

func (*PutContainerArchiveParams) SetTimeout

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

SetTimeout adds the timeout to the put container archive params

func (*PutContainerArchiveParams) WithContext

WithContext adds the context to the put container archive params

func (*PutContainerArchiveParams) WithCopyUIDGID

func (o *PutContainerArchiveParams) WithCopyUIDGID(copyUIDGID *string) *PutContainerArchiveParams

WithCopyUIDGID adds the copyUIDGID to the put container archive params

func (*PutContainerArchiveParams) WithDefaults

WithDefaults hydrates default values in the put container archive params (not the query body).

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

func (*PutContainerArchiveParams) WithHTTPClient

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

WithHTTPClient adds the HTTPClient to the put container archive params

func (*PutContainerArchiveParams) WithID

WithID adds the id to the put container archive params

func (*PutContainerArchiveParams) WithInputStream

func (o *PutContainerArchiveParams) WithInputStream(inputStream io.ReadCloser) *PutContainerArchiveParams

WithInputStream adds the inputStream to the put container archive params

func (*PutContainerArchiveParams) WithNoOverwriteDirNonDir

func (o *PutContainerArchiveParams) WithNoOverwriteDirNonDir(noOverwriteDirNonDir *string) *PutContainerArchiveParams

WithNoOverwriteDirNonDir adds the noOverwriteDirNonDir to the put container archive params

func (*PutContainerArchiveParams) WithPath

WithPath adds the path to the put container archive params

func (*PutContainerArchiveParams) WithTimeout

WithTimeout adds the timeout to the put container archive params

func (*PutContainerArchiveParams) WriteToRequest

WriteToRequest writes these params to a swagger request

type PutContainerArchiveReader

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

PutContainerArchiveReader is a Reader for the PutContainerArchive structure.

func (*PutContainerArchiveReader) ReadResponse

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

ReadResponse reads a server response into the received o.

Source Files

Jump to

Keyboard shortcuts

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