forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathregistration.go
33 lines (27 loc) · 1.01 KB
/
registration.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
package vmware
import "github.com/hashicorp/terraform-plugin-sdk/helper/schema"
type Registration struct{}
// Name is the name of this Service
func (r Registration) Name() string {
return "Vmware"
}
// WebsiteCategories returns a list of categories which can be used for the sidebar
func (r Registration) WebsiteCategories() []string {
return []string{
"VMware (AVS)",
}
}
// SupportedDataSources returns the supported Data Sources supported by this Service
func (r Registration) SupportedDataSources() map[string]*schema.Resource {
return map[string]*schema.Resource{
"azurerm_vmware_private_cloud": dataSourceVmwarePrivateCloud(),
}
}
// SupportedResources returns the supported Resources supported by this Service
func (r Registration) SupportedResources() map[string]*schema.Resource {
return map[string]*schema.Resource{
"azurerm_vmware_private_cloud": resourceVmwarePrivateCloud(),
"azurerm_vmware_cluster": resourceVmwareCluster(),
"azurerm_vmware_authorization": resourceVmwareAuthorization(),
}
}