github.com/kjmkznr/terraform@v0.5.2-0.20180216194316-1d0f5fdac99e/registry/response/module_provider.go (about) 1 package response 2 3 // ModuleProvider represents a single provider for modules. 4 type ModuleProvider struct { 5 Name string `json:"name"` 6 Downloads int `json:"downloads"` 7 ModuleCount int `json:"module_count"` 8 } 9 10 // ModuleProviderList is the response structure for a pageable list of ModuleProviders. 11 type ModuleProviderList struct { 12 Meta PaginationMeta `json:"meta"` 13 Providers []*ModuleProvider `json:"providers"` 14 }