Skip to content

Commit

Permalink
Add a v1.45 module
Browse files Browse the repository at this point in the history
  • Loading branch information
gesellix committed May 19, 2024
1 parent 6ca7893 commit 09146dd
Show file tree
Hide file tree
Showing 426 changed files with 27,373 additions and 4 deletions.
4 changes: 1 addition & 3 deletions api-model-v1-41/docker-engine-api-v1.41.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3022,8 +3022,6 @@ definitions:
Name: "journald"
- Type: "Log"
Name: "json-file"
- Type: "Log"
Name: "logentries"
- Type: "Log"
Name: "splunk"
- Type: "Log"
Expand Down Expand Up @@ -5403,7 +5401,7 @@ definitions:
type: "array"
items:
type: "string"
example: ["awslogs", "fluentd", "gcplogs", "gelf", "journald", "json-file", "logentries", "splunk", "syslog"]
example: ["awslogs", "fluentd", "gcplogs", "gelf", "journald", "json-file", "splunk", "syslog"]


RegistryServiceConfig:
Expand Down
2 changes: 1 addition & 1 deletion api-model-v1-41/openapi-generator-config.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
inputSpec: https://docs.docker.com/engine/api/v1.41.yaml
inputSpec: https://docs.docker.com/engine/api/v1.41/
additionalProperties:
hideGenerationTimestamp: true
generatorName: kotlin
Expand Down
24 changes: 24 additions & 0 deletions api-model-v1-45/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
*.class

# Mobile Tools for Java (J2ME)
.mtj.tmp/

# Package Files #
*.jar
*.war
*.ear

# exclude jar for gradle wrapper
!gradle/wrapper/*.jar

# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*

# build files
**/target
target
.gradle
build

**/de/gesellix/docker/remote/client/api
**/de/gesellix/docker/remote/api/infrastructure
23 changes: 23 additions & 0 deletions api-model-v1-45/.openapi-generator-ignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# OpenAPI Generator Ignore
# Generated by openapi-generator https://github.com/openapitools/openapi-generator

# Use this file to prevent files from being overwritten by the generator.
# The patterns follow closely to .gitignore or .dockerignore.

# As an example, the C# client generator defines ApiClient.cs.
# You can make changes and tell OpenAPI Generator to ignore just this file by uncommenting the following line:
#ApiClient.cs

# You can match any string of characters against a directory, file or extension with a single asterisk (*):
#foo/*/qux
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux

# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
#foo/**/qux
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux

# You can also negate patterns with an exclamation (!).
# For example, you can ignore all files in a docs folder with the file extension .md:
#docs/*.md
# Then explicitly reverse the ignore rule for a single file:
#!docs/README.md
Loading

0 comments on commit 09146dd

Please sign in to comment.