aboutsummaryrefslogtreecommitdiffhomepage
path: root/vendor/github.com/hashicorp/terraform/registry/response/provider_list.go
blob: 1dc7d237fd75e9d519278c55436693ddcd8b9625 (plain) (blame)
1
2
3
4
5
6
7
package response

// ProviderList is the response structure for a pageable list of providers.
type ProviderList struct {
	Meta      PaginationMeta `json:"meta"`
	Providers []*Provider    `json:"providers"`
}