-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_basebackuppolicyresource.go
48 lines (39 loc) · 1.46 KB
/
model_basebackuppolicyresource.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
package backuppolicies
import (
"encoding/json"
"fmt"
"github.com/hashicorp/go-azure-helpers/resourcemanager/systemdata"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type BaseBackupPolicyResource struct {
Id *string `json:"id,omitempty"`
Name *string `json:"name,omitempty"`
Properties BaseBackupPolicy `json:"properties"`
SystemData *systemdata.SystemData `json:"systemData,omitempty"`
Type *string `json:"type,omitempty"`
}
var _ json.Unmarshaler = &BaseBackupPolicyResource{}
func (s *BaseBackupPolicyResource) UnmarshalJSON(bytes []byte) error {
type alias BaseBackupPolicyResource
var decoded alias
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling into BaseBackupPolicyResource: %+v", err)
}
s.Id = decoded.Id
s.Name = decoded.Name
s.SystemData = decoded.SystemData
s.Type = decoded.Type
var temp map[string]json.RawMessage
if err := json.Unmarshal(bytes, &temp); err != nil {
return fmt.Errorf("unmarshaling BaseBackupPolicyResource into map[string]json.RawMessage: %+v", err)
}
if v, ok := temp["properties"]; ok {
impl, err := unmarshalBaseBackupPolicyImplementation(v)
if err != nil {
return fmt.Errorf("unmarshaling field 'Properties' for 'BaseBackupPolicyResource': %+v", err)
}
s.Properties = impl
}
return nil
}