terraform-provider-google/vendor/github.com/hashicorp/terraform/registry/response/provider_list.go
2018-12-26 10:59:22 -08:00

8 lines
208 B
Go

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