-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
registration.go
71 lines (61 loc) · 2.71 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package resource
import (
"github.com/hashicorp/terraform-provider-azurerm/internal/sdk"
"github.com/hashicorp/terraform-provider-azurerm/internal/tf/pluginsdk"
)
var (
_ sdk.TypedServiceRegistration = Registration{}
_ sdk.UntypedServiceRegistration = Registration{}
)
type Registration struct{}
// Name is the name of this Service
func (r Registration) Name() string {
return "Resources"
}
// WebsiteCategories returns a list of categories which can be used for the sidebar
func (r Registration) WebsiteCategories() []string {
return []string{
"Base",
"Management",
"Template",
}
}
// SupportedDataSources returns the supported Data Sources supported by this Service
func (r Registration) SupportedDataSources() map[string]*pluginsdk.Resource {
return map[string]*pluginsdk.Resource{
"azurerm_resources": dataSourceResources(),
"azurerm_resource_group": dataSourceResourceGroup(),
"azurerm_template_spec_version": dataSourceTemplateSpecVersion(),
"azurerm_management_group_template_deployment": dataSourceManagementGroupTemplateDeployment(),
"azurerm_resource_group_template_deployment": dataSourceResourceGroupTemplateDeployment(),
"azurerm_subscription_template_deployment": dataSourceSubscriptionTemplateDeployment(),
"azurerm_tenant_template_deployment": dataSourceTenantTemplateDeployment(),
}
}
// SupportedResources returns the supported Resources supported by this Service
func (r Registration) SupportedResources() map[string]*pluginsdk.Resource {
return map[string]*pluginsdk.Resource{
"azurerm_management_lock": resourceManagementLock(),
"azurerm_management_group_template_deployment": managementGroupTemplateDeploymentResource(),
"azurerm_resource_group": resourceResourceGroup(),
"azurerm_resource_group_template_deployment": resourceGroupTemplateDeploymentResource(),
"azurerm_subscription_template_deployment": subscriptionTemplateDeploymentResource(),
"azurerm_template_deployment": resourceTemplateDeployment(),
"azurerm_tenant_template_deployment": tenantTemplateDeploymentResource(),
}
}
// DataSources returns a list of Data Sources supported by this Service
func (r Registration) DataSources() []sdk.DataSource {
return []sdk.DataSource{}
}
// Resources returns a list of Resources supported by this Service
func (r Registration) Resources() []sdk.Resource {
return []sdk.Resource{
ResourceProviderRegistrationResource{},
ResourceManagementPrivateLinkResource{},
ResourceDeploymentScriptAzurePowerShellResource{},
ResourceDeploymentScriptAzureCliResource{},
}
}