Skip to content

Commit

Permalink
registry/response: Add protocols to DL resp
Browse files Browse the repository at this point in the history
  • Loading branch information
justincampbell committed Nov 20, 2018
1 parent 9807256 commit aa86b27
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions registry/response/terraform_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,14 @@ type TerraformProviderPlatform struct {
// structure for a provider platform with all details required to perform a
// download.
type TerraformProviderPlatformLocation struct {
OS string `json:"os"`
Arch string `json:"arch"`
Filename string `json:"filename"`
DownloadURL string `json:"download_url"`
ShasumsURL string `json:"shasums_url"`
ShasumsSignatureURL string `json:"shasums_signature_url"`
Shasum string `json:"shasum"`
Protocols []string `json:"protocols"`
OS string `json:"os"`
Arch string `json:"arch"`
Filename string `json:"filename"`
DownloadURL string `json:"download_url"`
ShasumsURL string `json:"shasums_url"`
ShasumsSignatureURL string `json:"shasums_signature_url"`
Shasum string `json:"shasum"`

SigningKeys SigningKeyList `json:"signing_keys"`
}
Expand Down

0 comments on commit aa86b27

Please sign in to comment.