-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_azurebackupdiscreterecoverypoint.go
49 lines (39 loc) · 2 KB
/
model_azurebackupdiscreterecoverypoint.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
package recoverypoint
import (
"encoding/json"
"fmt"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
var _ AzureBackupRecoveryPoint = AzureBackupDiscreteRecoveryPoint{}
type AzureBackupDiscreteRecoveryPoint struct {
FriendlyName *string `json:"friendlyName,omitempty"`
PolicyName *string `json:"policyName,omitempty"`
PolicyVersion *string `json:"policyVersion,omitempty"`
RecoveryPointDataStoresDetails *[]RecoveryPointDataStoreDetails `json:"recoveryPointDataStoresDetails,omitempty"`
RecoveryPointId *string `json:"recoveryPointId,omitempty"`
RecoveryPointTime string `json:"recoveryPointTime"`
RecoveryPointType *string `json:"recoveryPointType,omitempty"`
RetentionTagName *string `json:"retentionTagName,omitempty"`
RetentionTagVersion *string `json:"retentionTagVersion,omitempty"`
// Fields inherited from AzureBackupRecoveryPoint
}
var _ json.Marshaler = AzureBackupDiscreteRecoveryPoint{}
func (s AzureBackupDiscreteRecoveryPoint) MarshalJSON() ([]byte, error) {
type wrapper AzureBackupDiscreteRecoveryPoint
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling AzureBackupDiscreteRecoveryPoint: %+v", err)
}
var decoded map[string]interface{}
if err := json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling AzureBackupDiscreteRecoveryPoint: %+v", err)
}
decoded["objectType"] = "AzureBackupDiscreteRecoveryPoint"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling AzureBackupDiscreteRecoveryPoint: %+v", err)
}
return encoded, nil
}