-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding the pack size to the catalog metadata to allow the information to be showed on the API response
- Loading branch information
Showing
10 changed files
with
29 additions
and
12 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
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
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 |
---|---|---|
@@ -1,10 +1,11 @@ | ||
package models | ||
|
||
type PullResponse struct { | ||
MachineId string `json:"machine_id,omitempty" yaml:"machine_id,omitempty"` | ||
MachineName string `json:"machine_name,omitempty" yaml:"machine_name,omitempty"` | ||
CatalogId string `json:"catalog_id,omitempty" yaml:"catalog_id,omitempty"` | ||
Version string `json:"version,omitempty" yaml:"version,omitempty"` | ||
Architecture string `json:"architecture,omitempty" yaml:"architecture,omitempty"` | ||
Type string `json:"type,omitempty" yaml:"type,omitempty"` | ||
MachineId string `json:"machine_id,omitempty" yaml:"machine_id,omitempty"` | ||
MachineName string `json:"machine_name,omitempty" yaml:"machine_name,omitempty"` | ||
CatalogId string `json:"catalog_id,omitempty" yaml:"catalog_id,omitempty"` | ||
Version string `json:"version,omitempty" yaml:"version,omitempty"` | ||
Architecture string `json:"architecture,omitempty" yaml:"architecture,omitempty"` | ||
LocalCachePath string `json:"local_cache_path,omitempty" yaml:"local_cache_path,omitempty"` | ||
Type string `json:"type,omitempty" yaml:"type,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