-
Notifications
You must be signed in to change notification settings - Fork 4.6k
/
property.go
78 lines (63 loc) · 2.08 KB
/
property.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
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
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 PropertyId struct {
SubscriptionId string
ResourceGroup string
ServiceName string
NamedValueName string
}
func NewPropertyID(subscriptionId, resourceGroup, serviceName, namedValueName string) PropertyId {
return PropertyId{
SubscriptionId: subscriptionId,
ResourceGroup: resourceGroup,
ServiceName: serviceName,
NamedValueName: namedValueName,
}
}
func (id PropertyId) String() string {
segments := []string{
fmt.Sprintf("Named Value Name %q", id.NamedValueName),
fmt.Sprintf("Service Name %q", id.ServiceName),
fmt.Sprintf("Resource Group %q", id.ResourceGroup),
}
segmentsStr := strings.Join(segments, " / ")
return fmt.Sprintf("%s: (%s)", "Property", segmentsStr)
}
func (id PropertyId) ID() string {
fmtString := "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.ApiManagement/service/%s/namedValues/%s"
return fmt.Sprintf(fmtString, id.SubscriptionId, id.ResourceGroup, id.ServiceName, id.NamedValueName)
}
// PropertyID parses a Property ID into an PropertyId struct
func PropertyID(input string) (*PropertyId, error) {
id, err := resourceids.ParseAzureResourceID(input)
if err != nil {
return nil, fmt.Errorf("parsing %q as an Property ID: %+v", input, err)
}
resourceId := PropertyId{
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.ServiceName, err = id.PopSegment("service"); err != nil {
return nil, err
}
if resourceId.NamedValueName, err = id.PopSegment("namedValues"); err != nil {
return nil, err
}
if err := id.ValidateNoEmptySegments(input); err != nil {
return nil, err
}
return &resourceId, nil
}