-
Notifications
You must be signed in to change notification settings - Fork 4.7k
/
application.go
113 lines (92 loc) · 2.97 KB
/
application.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
package parse
// NOTE: this file is generated via 'go:generate' - manual changes will be overwritten
import (
"fmt"
"strings"
"github.com/hashicorp/go-azure-helpers/resourcemanager/resourceids"
)
type ApplicationId struct {
SubscriptionId string
ResourceGroup string
IoTAppName string
}
func NewApplicationID(subscriptionId, resourceGroup, ioTAppName string) ApplicationId {
return ApplicationId{
SubscriptionId: subscriptionId,
ResourceGroup: resourceGroup,
IoTAppName: ioTAppName,
}
}
func (id ApplicationId) String() string {
segments := []string{
fmt.Sprintf("Io T App Name %q", id.IoTAppName),
fmt.Sprintf("Resource Group %q", id.ResourceGroup),
}
segmentsStr := strings.Join(segments, " / ")
return fmt.Sprintf("%s: (%s)", "Application", segmentsStr)
}
func (id ApplicationId) ID() string {
fmtString := "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.IoTCentral/ioTApps/%s"
return fmt.Sprintf(fmtString, id.SubscriptionId, id.ResourceGroup, id.IoTAppName)
}
// ApplicationID parses a Application ID into an ApplicationId struct
func ApplicationID(input string) (*ApplicationId, error) {
id, err := resourceids.ParseAzureResourceID(input)
if err != nil {
return nil, err
}
resourceId := ApplicationId{
SubscriptionId: id.SubscriptionID,
ResourceGroup: id.ResourceGroup,
}
if resourceId.SubscriptionId == "" {
return nil, fmt.Errorf("ID was missing the 'subscriptions' element")
}
if resourceId.ResourceGroup == "" {
return nil, fmt.Errorf("ID was missing the 'resourceGroups' element")
}
if resourceId.IoTAppName, err = id.PopSegment("ioTApps"); err != nil {
return nil, err
}
if err := id.ValidateNoEmptySegments(input); err != nil {
return nil, err
}
return &resourceId, nil
}
// ApplicationIDInsensitively parses an Application ID into an ApplicationId struct, insensitively
// This should only be used to parse an ID for rewriting, the ApplicationID
// method should be used instead for validation etc.
//
// Whilst this may seem strange, this enables Terraform have consistent casing
// which works around issues in Core, whilst handling broken API responses.
func ApplicationIDInsensitively(input string) (*ApplicationId, error) {
id, err := resourceids.ParseAzureResourceID(input)
if err != nil {
return nil, err
}
resourceId := ApplicationId{
SubscriptionId: id.SubscriptionID,
ResourceGroup: id.ResourceGroup,
}
if resourceId.SubscriptionId == "" {
return nil, fmt.Errorf("ID was missing the 'subscriptions' element")
}
if resourceId.ResourceGroup == "" {
return nil, fmt.Errorf("ID was missing the 'resourceGroups' element")
}
// find the correct casing for the 'ioTApps' segment
ioTAppsKey := "ioTApps"
for key := range id.Path {
if strings.EqualFold(key, ioTAppsKey) {
ioTAppsKey = key
break
}
}
if resourceId.IoTAppName, err = id.PopSegment(ioTAppsKey); err != nil {
return nil, err
}
if err := id.ValidateNoEmptySegments(input); err != nil {
return nil, err
}
return &resourceId, nil
}