-
Notifications
You must be signed in to change notification settings - Fork 694
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Export main types for v1 #147
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
|
||
|
||
|
||
/*Annotations annotations | ||
|
||
swagger:model annotations | ||
*/ | ||
type Annotations struct { | ||
|
||
|
||
MapStringString | ||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
import ( | ||
strfmt "github.com/go-openapi/strfmt" | ||
|
||
"github.com/go-openapi/errors" | ||
"github.com/go-openapi/runtime" | ||
"github.com/go-openapi/validate" | ||
|
||
|
||
) | ||
|
||
|
||
|
||
/*ArrayOfGIds array of g ids | ||
|
||
swagger:model ArrayOfGIDs | ||
*/ | ||
type ArrayOfGIds []GID | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
import ( | ||
strfmt "github.com/go-openapi/strfmt" | ||
|
||
"github.com/go-openapi/errors" | ||
"github.com/go-openapi/runtime" | ||
"github.com/go-openapi/validate" | ||
|
||
|
||
) | ||
|
||
|
||
|
||
/*ArrayOfHooks array of hooks | ||
|
||
swagger:model ArrayOfHooks | ||
*/ | ||
type ArrayOfHooks []*Hook | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
import ( | ||
strfmt "github.com/go-openapi/strfmt" | ||
|
||
"github.com/go-openapi/errors" | ||
"github.com/go-openapi/runtime" | ||
"github.com/go-openapi/validate" | ||
|
||
|
||
) | ||
|
||
|
||
|
||
/*ArrayOfStrings array of strings | ||
|
||
swagger:model ArrayOfStrings | ||
*/ | ||
type ArrayOfStrings []string | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
import ( | ||
strfmt "github.com/go-openapi/strfmt" | ||
|
||
"github.com/go-openapi/errors" | ||
"github.com/go-openapi/runtime" | ||
"github.com/go-openapi/validate" | ||
|
||
|
||
) | ||
|
||
|
||
|
||
/*Config config | ||
|
||
swagger:model config | ||
*/ | ||
type Config struct { | ||
|
||
|
||
/* cmd | ||
*/ | ||
Cmd []string `json:"Cmd,omitempty"` | ||
|
||
|
||
/* Cpu shares | ||
*/ | ||
CPUShares Int64 `json:"CpuShares,omitempty"` | ||
|
||
|
||
/* entrypoint | ||
*/ | ||
Entrypoint []string `json:"Entrypoint,omitempty"` | ||
|
||
|
||
/* env | ||
*/ | ||
Env []string `json:"Env,omitempty"` | ||
|
||
|
||
/* exposed ports | ||
*/ | ||
ExposedPorts MapStringObject `json:"ExposedPorts,omitempty"` | ||
|
||
|
||
/* memory | ||
*/ | ||
Memory Int64 `json:"Memory,omitempty"` | ||
|
||
|
||
/* memory swap | ||
*/ | ||
MemorySwap Int64 `json:"MemorySwap,omitempty"` | ||
|
||
|
||
/* user | ||
*/ | ||
User string `json:"User,omitempty"` | ||
|
||
|
||
/* volumes | ||
*/ | ||
Volumes MapStringObject `json:"Volumes,omitempty"` | ||
|
||
|
||
/* working dir | ||
*/ | ||
WorkingDir string `json:"WorkingDir,omitempty"` | ||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
import ( | ||
strfmt "github.com/go-openapi/strfmt" | ||
|
||
"github.com/go-openapi/errors" | ||
"github.com/go-openapi/runtime" | ||
"github.com/go-openapi/validate" | ||
|
||
|
||
) | ||
|
||
|
||
|
||
/*Digest the cryptographic checksum digest of the object, in the pattern '<hash>:<hexadecimal digest>' | ||
|
||
swagger:model digest | ||
*/ | ||
type Digest string | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
|
||
|
||
|
||
/*Env env | ||
|
||
swagger:model Env | ||
*/ | ||
type Env struct { | ||
|
||
|
||
ArrayOfStrings | ||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
|
||
|
||
|
||
/*FilePath file path | ||
|
||
swagger:model FilePath | ||
*/ | ||
type FilePath string | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package specs-go | ||
|
||
// This file was generated by the swagger tool. | ||
// Editing this file might prove futile when you re-run the swagger generate command | ||
|
||
|
||
|
||
|
||
/*GID g ID | ||
|
||
swagger:model GID | ||
*/ | ||
type GID struct { | ||
|
||
|
||
Uint32 | ||
|
||
|
||
|
||
|
||
} | ||
|
||
|
||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know this is generated code, but this should be
type Annotations map[string]string
.