-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_deletedbackupinstance.go
62 lines (54 loc) · 2.64 KB
/
model_deletedbackupinstance.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
package deletedbackupinstances
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.
type DeletedBackupInstance struct {
CurrentProtectionState *CurrentProtectionState `json:"currentProtectionState,omitempty"`
DataSourceInfo Datasource `json:"dataSourceInfo"`
DataSourceSetInfo *DatasourceSet `json:"dataSourceSetInfo,omitempty"`
DatasourceAuthCredentials AuthCredentials `json:"datasourceAuthCredentials"`
DeletionInfo *DeletionInfo `json:"deletionInfo,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
IdentityDetails *IdentityDetails `json:"identityDetails,omitempty"`
ObjectType string `json:"objectType"`
PolicyInfo PolicyInfo `json:"policyInfo"`
ProtectionErrorDetails *UserFacingError `json:"protectionErrorDetails,omitempty"`
ProtectionStatus *ProtectionStatusDetails `json:"protectionStatus,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
ValidationType *ValidationType `json:"validationType,omitempty"`
}
var _ json.Unmarshaler = &DeletedBackupInstance{}
func (s *DeletedBackupInstance) UnmarshalJSON(bytes []byte) error {
type alias DeletedBackupInstance
var decoded alias
if err := json.Unmarshal(bytes, &decoded); err != nil {
return fmt.Errorf("unmarshaling into DeletedBackupInstance: %+v", err)
}
s.CurrentProtectionState = decoded.CurrentProtectionState
s.DataSourceInfo = decoded.DataSourceInfo
s.DataSourceSetInfo = decoded.DataSourceSetInfo
s.DeletionInfo = decoded.DeletionInfo
s.FriendlyName = decoded.FriendlyName
s.IdentityDetails = decoded.IdentityDetails
s.ObjectType = decoded.ObjectType
s.PolicyInfo = decoded.PolicyInfo
s.ProtectionErrorDetails = decoded.ProtectionErrorDetails
s.ProtectionStatus = decoded.ProtectionStatus
s.ProvisioningState = decoded.ProvisioningState
s.ValidationType = decoded.ValidationType
var temp map[string]json.RawMessage
if err := json.Unmarshal(bytes, &temp); err != nil {
return fmt.Errorf("unmarshaling DeletedBackupInstance into map[string]json.RawMessage: %+v", err)
}
if v, ok := temp["datasourceAuthCredentials"]; ok {
impl, err := unmarshalAuthCredentialsImplementation(v)
if err != nil {
return fmt.Errorf("unmarshaling field 'DatasourceAuthCredentials' for 'DeletedBackupInstance': %+v", err)
}
s.DatasourceAuthCredentials = impl
}
return nil
}