-
Notifications
You must be signed in to change notification settings - Fork 384
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finishes up the rest of the Plugin API surface. (#300)
Implements the missing api's from REF: #298 Minor fixups to match the Docker.DotNet model closer. Updates specgen to take into account these plugin types. Resolves #163
- Loading branch information
1 parent
0a462eb
commit 5970d5f
Showing
19 changed files
with
426 additions
and
126 deletions.
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
12 changes: 12 additions & 0 deletions
12
src/Docker.DotNet/Models/PluginConfigureParameters.Generated.cs
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,12 @@ | ||
using System.Collections.Generic; | ||
using System.Runtime.Serialization; | ||
|
||
namespace Docker.DotNet.Models | ||
{ | ||
[DataContract] | ||
public class PluginConfigureParameters // (main.PluginConfigureParameters) | ||
{ | ||
[DataMember(Name = "Args", EmitDefaultValue = false)] | ||
public IList<string> Args { get; set; } | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/Docker.DotNet/Models/PluginCreateParameters.Generated.cs
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,11 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace Docker.DotNet.Models | ||
{ | ||
[DataContract] | ||
public class PluginCreateParameters // (main.PluginCreateParameters) | ||
{ | ||
[QueryStringParameter("name", true)] | ||
public string Name { get; set; } | ||
} | ||
} |
Oops, something went wrong.