Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api-model-v1-41/.openapi-generator/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
5.2.0
5.4.0
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/BuildCache.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Name | Type | Description | Notes
**description** | **kotlin.String** | | [optional]
**inUse** | **kotlin.Boolean** | | [optional]
**shared** | **kotlin.Boolean** | | [optional]
**size** | **kotlin.Int** | Amount of disk space used by the build cache (in bytes). | [optional]
**propertySize** | **kotlin.Int** | Amount of disk space used by the build cache (in bytes). | [optional]
**createdAt** | **kotlin.String** | Date and time at which the build cache was created in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds. | [optional]
**lastUsedAt** | **kotlin.String** | Date and time at which the build cache was last used in [RFC 3339](https://www.ietf.org/rfc/rfc3339.txt) format with nano-seconds. | [optional]
**usageCount** | **kotlin.Int** | | [optional]
Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/BuildPruneResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**cachesDeleted** | **kotlin.collections.List<kotlin.String>** | | [optional]
**cachesDeleted** | **kotlin.collections.MutableList<kotlin.String>** | | [optional]
**spaceReclaimed** | **kotlin.Long** | Disk space reclaimed in bytes | [optional]


Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/ClusterInfo.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Name | Type | Description | Notes
**tlSInfo** | [**TLSInfo**](TLSInfo.md) | | [optional]
**rootRotationInProgress** | **kotlin.Boolean** | Whether there is currently a root CA rotation in progress for the swarm | [optional]
**dataPathPort** | **kotlin.Int** | DataPathPort specifies the data path port number for data traffic. Acceptable port range is 1024 to 49151. If no port is set or is set to 0, the default port (4789) is used. | [optional]
**defaultAddrPool** | **kotlin.collections.List<kotlin.String>** | Default Address Pool specifies default subnet pools for global scope networks. | [optional]
**defaultAddrPool** | **kotlin.collections.MutableList<kotlin.String>** | Default Address Pool specifies default subnet pools for global scope networks. | [optional]
**subnetSize** | **kotlin.Int** | SubnetSize specifies the subnet size of the networks created from the default subnet pool. | [optional]


Expand Down
4 changes: 2 additions & 2 deletions api-model-v1-41/docs/ConfigSpec.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **kotlin.String** | User-defined name of the config. | [optional]
**labels** | **kotlin.collections.Map<kotlin.String, kotlin.String>** | User-defined key/value metadata. | [optional]
**data** | **kotlin.String** | Base64-url-safe-encoded ([RFC 4648](https://tools.ietf.org/html/rfc4648#section-5)) config data. | [optional]
**labels** | **kotlin.collections.MutableMap<kotlin.String, kotlin.String>** | User-defined key/value metadata. | [optional]
**`data`** | **kotlin.String** | Base64-url-safe-encoded ([RFC 4648](https://tools.ietf.org/html/rfc4648#section-5)) config data. | [optional]
**templating** | [**Driver**](Driver.md) | | [optional]


Expand Down
16 changes: 8 additions & 8 deletions api-model-v1-41/docs/ContainerConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,25 +10,25 @@ Name | Type | Description | Notes
**attachStdin** | **kotlin.Boolean** | Whether to attach to `stdin`. | [optional]
**attachStdout** | **kotlin.Boolean** | Whether to attach to `stdout`. | [optional]
**attachStderr** | **kotlin.Boolean** | Whether to attach to `stderr`. | [optional]
**exposedPorts** | [**kotlin.collections.Map<kotlin.String, kotlin.Any>**](kotlin.Any.md) | An object mapping ports to an empty object in the form: `{\"<port>/<tcp|udp|sctp>\": {}}` | [optional]
**exposedPorts** | [**kotlin.collections.MutableMap<kotlin.String, kotlin.Any>**](kotlin.Any.md) | An object mapping ports to an empty object in the form: `{\"<port>/<tcp|udp|sctp>\": {}}` | [optional]
**tty** | **kotlin.Boolean** | Attach standard streams to a TTY, including `stdin` if it is not closed. | [optional]
**openStdin** | **kotlin.Boolean** | Open `stdin` | [optional]
**stdinOnce** | **kotlin.Boolean** | Close `stdin` after one attached client disconnects | [optional]
**env** | **kotlin.collections.List<kotlin.String>** | A list of environment variables to set inside the container in the form `[\"VAR=value\", ...]`. A variable without `=` is removed from the environment, rather than to have an empty value. | [optional]
**cmd** | **kotlin.collections.List<kotlin.String>** | Command to run specified as a string or an array of strings. | [optional]
**env** | **kotlin.collections.MutableList<kotlin.String>** | A list of environment variables to set inside the container in the form `[\"VAR=value\", ...]`. A variable without `=` is removed from the environment, rather than to have an empty value. | [optional]
**cmd** | **kotlin.collections.MutableList<kotlin.String>** | Command to run specified as a string or an array of strings. | [optional]
**healthcheck** | [**HealthConfig**](HealthConfig.md) | | [optional]
**argsEscaped** | **kotlin.Boolean** | Command is already escaped (Windows only) | [optional]
**image** | **kotlin.String** | The name of the image to use when creating the container/ | [optional]
**volumes** | [**kotlin.collections.Map<kotlin.String, kotlin.Any>**](kotlin.Any.md) | An object mapping mount point paths inside the container to empty objects. | [optional]
**volumes** | [**kotlin.collections.MutableMap<kotlin.String, kotlin.Any>**](kotlin.Any.md) | An object mapping mount point paths inside the container to empty objects. | [optional]
**workingDir** | **kotlin.String** | The working directory for commands to run in. | [optional]
**entrypoint** | **kotlin.collections.List<kotlin.String>** | The entry point for the container as a string or an array of strings. If the array consists of exactly one empty string (`[\"\"]`) then the entry point is reset to system default (i.e., the entry point used by docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`). | [optional]
**entrypoint** | **kotlin.collections.MutableList<kotlin.String>** | The entry point for the container as a string or an array of strings. If the array consists of exactly one empty string (`[\"\"]`) then the entry point is reset to system default (i.e., the entry point used by docker when there is no `ENTRYPOINT` instruction in the `Dockerfile`). | [optional]
**networkDisabled** | **kotlin.Boolean** | Disable networking for the container. | [optional]
**macAddress** | **kotlin.String** | MAC address of the container. | [optional]
**onBuild** | **kotlin.collections.List<kotlin.String>** | `ONBUILD` metadata that were defined in the image's `Dockerfile`. | [optional]
**labels** | **kotlin.collections.Map<kotlin.String, kotlin.String>** | User-defined key/value metadata. | [optional]
**onBuild** | **kotlin.collections.MutableList<kotlin.String>** | `ONBUILD` metadata that were defined in the image's `Dockerfile`. | [optional]
**labels** | **kotlin.collections.MutableMap<kotlin.String, kotlin.String>** | User-defined key/value metadata. | [optional]
**stopSignal** | **kotlin.String** | Signal to stop a container as a string or unsigned integer. | [optional]
**stopTimeout** | **kotlin.Int** | Timeout to stop a container in seconds. | [optional]
**shell** | **kotlin.collections.List<kotlin.String>** | Shell for when `RUN`, `CMD`, and `ENTRYPOINT` uses a shell. | [optional]
**shell** | **kotlin.collections.MutableList<kotlin.String>** | Shell for when `RUN`, `CMD`, and `ENTRYPOINT` uses a shell. | [optional]



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/ContainerCreateResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **kotlin.String** | The ID of the created container |
**warnings** | **kotlin.collections.List<kotlin.String>** | Warnings encountered when creating the container |
**warnings** | **kotlin.collections.MutableList<kotlin.String>** | Warnings encountered when creating the container |



6 changes: 3 additions & 3 deletions api-model-v1-41/docs/ContainerInspectResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Name | Type | Description | Notes
**id** | **kotlin.String** | The ID of the container | [optional]
**created** | **kotlin.String** | The time the container was created | [optional]
**path** | **kotlin.String** | The path to the command being run | [optional]
**args** | **kotlin.collections.List<kotlin.String>** | The arguments to the command being run | [optional]
**args** | **kotlin.collections.MutableList<kotlin.String>** | The arguments to the command being run | [optional]
**state** | [**ContainerState**](ContainerState.md) | | [optional]
**image** | **kotlin.String** | The container's image ID | [optional]
**resolvConfPath** | **kotlin.String** | | [optional]
Expand All @@ -21,12 +21,12 @@ Name | Type | Description | Notes
**mountLabel** | **kotlin.String** | | [optional]
**processLabel** | **kotlin.String** | | [optional]
**appArmorProfile** | **kotlin.String** | | [optional]
**execIDs** | **kotlin.collections.List<kotlin.String>** | IDs of exec instances that are running in the container. | [optional]
**execIDs** | **kotlin.collections.MutableList<kotlin.String>** | IDs of exec instances that are running in the container. | [optional]
**hostConfig** | [**HostConfig**](HostConfig.md) | | [optional]
**graphDriver** | [**GraphDriverData**](GraphDriverData.md) | | [optional]
**sizeRw** | **kotlin.Long** | The size of files that have been created or changed by this container. | [optional]
**sizeRootFs** | **kotlin.Long** | The total size of all the files in this container. | [optional]
**mounts** | [**kotlin.collections.List<MountPoint>**](MountPoint.md) | | [optional]
**mounts** | [**kotlin.collections.MutableList<MountPoint>**](MountPoint.md) | | [optional]
**config** | [**ContainerConfig**](ContainerConfig.md) | | [optional]
**networkSettings** | [**NetworkSettings**](NetworkSettings.md) | | [optional]

Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/ContainerPruneResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**containersDeleted** | **kotlin.collections.List<kotlin.String>** | Container IDs that were deleted | [optional]
**containersDeleted** | **kotlin.collections.MutableList<kotlin.String>** | Container IDs that were deleted | [optional]
**spaceReclaimed** | **kotlin.Long** | Disk space reclaimed in bytes | [optional]


Expand Down
4 changes: 2 additions & 2 deletions api-model-v1-41/docs/ContainerState.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**status** | [**inline**](#StatusEnum) | String representation of the container state. Can be one of \"created\", \"running\", \"paused\", \"restarting\", \"removing\", \"exited\", or \"dead\". | [optional]
**status** | [**inline**](#Status) | String representation of the container state. Can be one of \"created\", \"running\", \"paused\", \"restarting\", \"removing\", \"exited\", or \"dead\". | [optional]
**running** | **kotlin.Boolean** | 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\". | [optional]
**paused** | **kotlin.Boolean** | Whether this container is paused. | [optional]
**restarting** | **kotlin.Boolean** | Whether this container is restarting. | [optional]
Expand All @@ -18,7 +18,7 @@ Name | Type | Description | Notes
**health** | [**Health**](Health.md) | | [optional]


<a name="StatusEnum"></a>
<a name="Status"></a>
## Enum: Status
Name | Value
---- | -----
Expand Down
8 changes: 4 additions & 4 deletions api-model-v1-41/docs/ContainerSummary.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **kotlin.String** | The ID of this container | [optional]
**names** | **kotlin.collections.List&lt;kotlin.String&gt;** | The names that this container has been given | [optional]
**names** | **kotlin.collections.MutableList&lt;kotlin.String&gt;** | The names that this container has been given | [optional]
**image** | **kotlin.String** | The name of the image used when creating this container | [optional]
**imageID** | **kotlin.String** | The ID of the image that this container was created from | [optional]
**command** | **kotlin.String** | Command to run when starting the container | [optional]
**created** | **kotlin.Long** | When the container was created | [optional]
**ports** | [**kotlin.collections.List&lt;Port&gt;**](Port.md) | The ports exposed by this container | [optional]
**ports** | [**kotlin.collections.MutableList&lt;Port&gt;**](Port.md) | The ports exposed by this container | [optional]
**sizeRw** | **kotlin.Long** | The size of files that have been created or changed by this container | [optional]
**sizeRootFs** | **kotlin.Long** | The total size of all the files in this container | [optional]
**labels** | **kotlin.collections.Map&lt;kotlin.String, kotlin.String&gt;** | User-defined key/value metadata. | [optional]
**labels** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.String&gt;** | User-defined key/value metadata. | [optional]
**state** | **kotlin.String** | The state of this container (e.g. &#x60;Exited&#x60;) | [optional]
**status** | **kotlin.String** | Additional human-readable status of this container (e.g. &#x60;Exit 0&#x60;) | [optional]
**hostConfig** | [**ContainerSummaryHostConfig**](ContainerSummaryHostConfig.md) | | [optional]
**networkSettings** | [**ContainerSummaryNetworkSettings**](ContainerSummaryNetworkSettings.md) | | [optional]
**mounts** | [**kotlin.collections.List&lt;Mount&gt;**](Mount.md) | | [optional]
**mounts** | [**kotlin.collections.MutableList&lt;Mount&gt;**](Mount.md) | | [optional]



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/ContainerSummaryNetworkSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**networks** | [**kotlin.collections.Map&lt;kotlin.String, EndpointSettings&gt;**](EndpointSettings.md) | | [optional]
**networks** | [**kotlin.collections.MutableMap&lt;kotlin.String, EndpointSettings&gt;**](EndpointSettings.md) | | [optional]



4 changes: 2 additions & 2 deletions api-model-v1-41/docs/ContainerTopResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**titles** | **kotlin.collections.List&lt;kotlin.String&gt;** | The ps column titles | [optional]
**processes** | **kotlin.collections.List&lt;kotlin.collections.List&lt;kotlin.String&gt;&gt;** | Each process running in the container, where each is process is an array of values corresponding to the titles. | [optional]
**titles** | **kotlin.collections.MutableList&lt;kotlin.String&gt;** | The ps column titles | [optional]
**processes** | **kotlin.collections.MutableList&lt;kotlin.collections.MutableList&lt;kotlin.String&gt;&gt;** | Each process running in the container, where each is process is an array of values corresponding to the titles. | [optional]



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/ContainerUpdateResponse.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**warnings** | **kotlin.collections.List&lt;kotlin.String&gt;** | | [optional]
**warnings** | **kotlin.collections.MutableList&lt;kotlin.String&gt;** | | [optional]



6 changes: 3 additions & 3 deletions api-model-v1-41/docs/DeviceRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**driver** | **kotlin.String** | | [optional]
**count** | **kotlin.Int** | | [optional]
**deviceIDs** | **kotlin.collections.List&lt;kotlin.String&gt;** | | [optional]
**capabilities** | **kotlin.collections.List&lt;kotlin.collections.List&lt;kotlin.String&gt;&gt;** | A list of capabilities; an OR list of AND lists of capabilities. | [optional]
**options** | **kotlin.collections.Map&lt;kotlin.String, kotlin.String&gt;** | Driver-specific options, specified as a key/value pairs. These options are passed directly to the driver. | [optional]
**deviceIDs** | **kotlin.collections.MutableList&lt;kotlin.String&gt;** | | [optional]
**capabilities** | **kotlin.collections.MutableList&lt;kotlin.collections.MutableList&lt;kotlin.String&gt;&gt;** | A list of capabilities; an OR list of AND lists of capabilities. | [optional]
**options** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.String&gt;** | Driver-specific options, specified as a key/value pairs. These options are passed directly to the driver. | [optional]



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/DistributionInspect.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**descriptor** | [**OCIDescriptor**](OCIDescriptor.md) | |
**platforms** | [**kotlin.collections.List&lt;OCIPlatform&gt;**](OCIPlatform.md) | An array containing all platforms supported by the image. |
**platforms** | [**kotlin.collections.MutableList&lt;OCIPlatform&gt;**](OCIPlatform.md) | An array containing all platforms supported by the image. |



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/Driver.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **kotlin.String** | Name of the driver. |
**options** | **kotlin.collections.Map&lt;kotlin.String, kotlin.String&gt;** | Key/value map of driver-specific options. | [optional]
**options** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.String&gt;** | Key/value map of driver-specific options. | [optional]



2 changes: 1 addition & 1 deletion api-model-v1-41/docs/EndpointIPAMConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**ipv4Address** | **kotlin.String** | | [optional]
**ipv6Address** | **kotlin.String** | | [optional]
**linkLocalIPs** | **kotlin.collections.List&lt;kotlin.String&gt;** | | [optional]
**linkLocalIPs** | **kotlin.collections.MutableList&lt;kotlin.String&gt;** | | [optional]



8 changes: 4 additions & 4 deletions api-model-v1-41/docs/EndpointPortConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**name** | **kotlin.String** | | [optional]
**protocol** | [**inline**](#ProtocolEnum) | | [optional]
**protocol** | [**inline**](#Protocol) | | [optional]
**targetPort** | **kotlin.Int** | The port inside the container. | [optional]
**publishedPort** | **kotlin.Int** | The port on the swarm hosts. | [optional]
**publishMode** | [**inline**](#PublishModeEnum) | The mode in which port is published. &lt;p&gt;&lt;br /&gt;&lt;/p&gt; - \&quot;ingress\&quot; makes the target port accessible on every node, regardless of whether there is a task for the service running on that node or not. - \&quot;host\&quot; bypasses the routing mesh and publish the port directly on the swarm node where that service is running. | [optional]
**publishMode** | [**inline**](#PublishMode) | The mode in which port is published. &lt;p&gt;&lt;br /&gt;&lt;/p&gt; - \&quot;ingress\&quot; makes the target port accessible on every node, regardless of whether there is a task for the service running on that node or not. - \&quot;host\&quot; bypasses the routing mesh and publish the port directly on the swarm node where that service is running. | [optional]


<a name="ProtocolEnum"></a>
<a name="Protocol"></a>
## Enum: Protocol
Name | Value
---- | -----
protocol | tcp, udp, sctp


<a name="PublishModeEnum"></a>
<a name="PublishMode"></a>
## Enum: PublishMode
Name | Value
---- | -----
Expand Down
Loading