forked from hashicorp/terraform-provider-azurerm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
txt_record.go
75 lines (61 loc) · 2 KB
/
txt_record.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
package parse
// NOTE: this file is generated via 'go:generate' - manual changes will be overwritten
import (
"fmt"
"strings"
"github.com/kevinklinger/terraform-provider-azurerm/v2/helpers/azure"
)
type TxtRecordId struct {
SubscriptionId string
ResourceGroup string
PrivateDnsZoneName string
TXTName string
}
func NewTxtRecordID(subscriptionId, resourceGroup, privateDnsZoneName, tXTName string) TxtRecordId {
return TxtRecordId{
SubscriptionId: subscriptionId,
ResourceGroup: resourceGroup,
PrivateDnsZoneName: privateDnsZoneName,
TXTName: tXTName,
}
}
func (id TxtRecordId) String() string {
segments := []string{
fmt.Sprintf("T X T Name %q", id.TXTName),
fmt.Sprintf("Private Dns Zone Name %q", id.PrivateDnsZoneName),
fmt.Sprintf("Resource Group %q", id.ResourceGroup),
}
segmentsStr := strings.Join(segments, " / ")
return fmt.Sprintf("%s: (%s)", "Txt Record", segmentsStr)
}
func (id TxtRecordId) ID() string {
fmtString := "/subscriptions/%s/resourceGroups/%s/providers/Microsoft.Network/privateDnsZones/%s/TXT/%s"
return fmt.Sprintf(fmtString, id.SubscriptionId, id.ResourceGroup, id.PrivateDnsZoneName, id.TXTName)
}
// TxtRecordID parses a TxtRecord ID into an TxtRecordId struct
func TxtRecordID(input string) (*TxtRecordId, error) {
id, err := azure.ParseAzureResourceID(input)
if err != nil {
return nil, err
}
resourceId := TxtRecordId{
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.PrivateDnsZoneName, err = id.PopSegment("privateDnsZones"); err != nil {
return nil, err
}
if resourceId.TXTName, err = id.PopSegment("TXT"); err != nil {
return nil, err
}
if err := id.ValidateNoEmptySegments(input); err != nil {
return nil, err
}
return &resourceId, nil
}