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
The table of contents is too big for display.
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 @@
7.20.0
7.23.0
2 changes: 1 addition & 1 deletion api-model-v1-41/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ This API client was generated by the [OpenAPI Generator](https://openapi-generat

- API version: 1.41
- Package version:
- Generator version: 7.20.0
- Generator version: 7.23.0
- Build package: org.openapitools.codegen.languages.KotlinClientCodegen

## Requires
Expand Down
14 changes: 1 addition & 13 deletions api-model-v1-41/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -133,11 +133,7 @@ dependencies {

java {
toolchain {
// The org.openapi.generator requires JDK 11 to generate the sources.
// Generated code still works with Java 8.
// See below where we use Java 8 to perform checks
// See https://github.com/OpenAPITools/openapi-generator/pull/15553 for details.
languageVersion.set(JavaLanguageVersion.of(11))
languageVersion.set(JavaLanguageVersion.of(17))
}
}

Expand All @@ -147,14 +143,6 @@ tasks {
}
withType<Test> {
useJUnitPlatform()

java {
toolchain {
// See above: the org.openapi.generator requires JDK 11 to generate the sources.
// We're trying to ensure that the generated code still works with Java 8.
languageVersion.set(JavaLanguageVersion.of(8))
}
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/HostConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
| **containerIDFile** | **kotlin.String** | Path to a file where the container ID is written | [optional] |
| **logConfig** | [**HostConfigAllOfLogConfig**](HostConfigAllOfLogConfig.md) | | [optional] |
| **networkMode** | **kotlin.String** | Network mode to use for this container. Supported standard values are: &#x60;bridge&#x60;, &#x60;host&#x60;, &#x60;none&#x60;, and &#x60;container:&lt;name|id&gt;&#x60;. Any other value is taken as a custom network&#39;s name to which this container should connect to. | [optional] |
| **portBindings** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.collections.MutableList&lt;PortBinding&gt;&gt;** | PortMap describes the mapping of container ports to host ports, using the container&#39;s port-number and protocol as key in the format &#x60;&lt;port&gt;/&lt;protocol&gt;&#x60;, for example, &#x60;80/udp&#x60;. If a container&#39;s port is mapped for multiple protocols, separate entries are added to the mapping table. | [optional] |
| **portBindings** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.collections.MutableList&lt;PortBinding&gt;?&gt;** | PortMap describes the mapping of container ports to host ports, using the container&#39;s port-number and protocol as key in the format &#x60;&lt;port&gt;/&lt;protocol&gt;&#x60;, for example, &#x60;80/udp&#x60;. If a container&#39;s port is mapped for multiple protocols, separate entries are added to the mapping table. | [optional] |
| **restartPolicy** | [**RestartPolicy**](RestartPolicy.md) | | [optional] |
| **autoRemove** | **kotlin.Boolean** | Automatically remove the container when the container&#39;s process exits. This has no effect if &#x60;RestartPolicy&#x60; is set. | [optional] |
| **volumeDriver** | **kotlin.String** | Driver that this container uses to mount volumes. | [optional] |
Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/docs/NetworkSettings.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| **hairpinMode** | **kotlin.Boolean** | Indicates if hairpin NAT should be enabled on the virtual interface. | [optional] |
| **linkLocalIPv6Address** | **kotlin.String** | IPv6 unicast address using the link-local prefix. | [optional] |
| **linkLocalIPv6PrefixLen** | **kotlin.Int** | Prefix length of the IPv6 unicast address. | [optional] |
| **ports** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.collections.MutableList&lt;PortBinding&gt;&gt;** | PortMap describes the mapping of container ports to host ports, using the container&#39;s port-number and protocol as key in the format &#x60;&lt;port&gt;/&lt;protocol&gt;&#x60;, for example, &#x60;80/udp&#x60;. If a container&#39;s port is mapped for multiple protocols, separate entries are added to the mapping table. | [optional] |
| **ports** | **kotlin.collections.MutableMap&lt;kotlin.String, kotlin.collections.MutableList&lt;PortBinding&gt;?&gt;** | PortMap describes the mapping of container ports to host ports, using the container&#39;s port-number and protocol as key in the format &#x60;&lt;port&gt;/&lt;protocol&gt;&#x60;, for example, &#x60;80/udp&#x60;. If a container&#39;s port is mapped for multiple protocols, separate entries are added to the mapping table. | [optional] |
| **sandboxKey** | **kotlin.String** | SandboxKey identifies the sandbox | [optional] |
| **secondaryIPAddresses** | [**kotlin.collections.MutableList&lt;Address&gt;**](Address.md) | | [optional] |
| **secondaryIPv6Addresses** | [**kotlin.collections.MutableList&lt;Address&gt;**](Address.md) | | [optional] |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,26 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
import de.gesellix.docker.remote.api.ErrorDetail
import de.gesellix.docker.remote.api.ImageID
import de.gesellix.docker.remote.api.ProgressDetail

/**
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,26 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
import de.gesellix.docker.remote.api.ObjectVersion
import de.gesellix.docker.remote.api.SwarmSpec
import de.gesellix.docker.remote.api.TLSInfo

/**
* ClusterInfo represents information about the swarm as is returned by the \"/info\" endpoint. Join-tokens are not included.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,27 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
import de.gesellix.docker.remote.api.ClusterVolumeInfo
import de.gesellix.docker.remote.api.ClusterVolumePublishStatusInner
import de.gesellix.docker.remote.api.ClusterVolumeSpec
import de.gesellix.docker.remote.api.ObjectVersion

/**
* Options and information specific to, and only present on, Swarm CSI cluster volumes.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,24 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
import de.gesellix.docker.remote.api.ClusterVolumeSpecAccessMode

/**
* Cluster-specific options used to create the volume.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,26 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api

import com.squareup.moshi.Json
import com.squareup.moshi.JsonClass
import de.gesellix.docker.remote.api.ClusterVolumeSpecAccessModeAccessibilityRequirements
import de.gesellix.docker.remote.api.ClusterVolumeSpecAccessModeCapacityRange
import de.gesellix.docker.remote.api.ClusterVolumeSpecAccessModeSecretsInner

/**
* Defines how the volume is used by tasks.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,17 @@

@file:Suppress(
"ArrayInDataClass",
"DuplicatedCode",
"EnumEntryName",
"RemoveRedundantQualifierName",
"RemoveRedundantCallsOfConversionMethods",
"REDUNDANT_CALL_OF_CONVERSION_METHOD",
"RedundantUnitReturnType",
"RemoveEmptyClassBody",
"UnnecessaryVariable",
"UnusedImport",
"UnnecessaryVariable",
"unused",
)

package de.gesellix.docker.remote.api
Expand Down
Loading
Loading