-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_azuresqlprotecteditem.go
88 lines (73 loc) · 3.79 KB
/
model_azuresqlprotecteditem.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
79
80
81
82
83
84
85
86
87
88
package backupprotecteditems
import (
"encoding/json"
"fmt"
"time"
"github.com/hashicorp/go-azure-helpers/lang/dates"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
var _ ProtectedItem = AzureSqlProtectedItem{}
type AzureSqlProtectedItem struct {
ExtendedInfo *AzureSqlProtectedItemExtendedInfo `json:"extendedInfo,omitempty"`
ProtectedItemDataId *string `json:"protectedItemDataId,omitempty"`
ProtectionState *ProtectedItemState `json:"protectionState,omitempty"`
// Fields inherited from ProtectedItem
BackupManagementType *BackupManagementType `json:"backupManagementType,omitempty"`
BackupSetName *string `json:"backupSetName,omitempty"`
ContainerName *string `json:"containerName,omitempty"`
CreateMode *CreateMode `json:"createMode,omitempty"`
DeferredDeleteTimeInUTC *string `json:"deferredDeleteTimeInUTC,omitempty"`
DeferredDeleteTimeRemaining *string `json:"deferredDeleteTimeRemaining,omitempty"`
IsArchiveEnabled *bool `json:"isArchiveEnabled,omitempty"`
IsDeferredDeleteScheduleUpcoming *bool `json:"isDeferredDeleteScheduleUpcoming,omitempty"`
IsRehydrate *bool `json:"isRehydrate,omitempty"`
IsScheduledForDeferredDelete *bool `json:"isScheduledForDeferredDelete,omitempty"`
LastRecoveryPoint *string `json:"lastRecoveryPoint,omitempty"`
PolicyId *string `json:"policyId,omitempty"`
PolicyName *string `json:"policyName,omitempty"`
ResourceGuardOperationRequests *[]string `json:"resourceGuardOperationRequests,omitempty"`
SoftDeleteRetentionPeriodInDays *int64 `json:"softDeleteRetentionPeriodInDays,omitempty"`
SourceResourceId *string `json:"sourceResourceId,omitempty"`
VaultId *string `json:"vaultId,omitempty"`
WorkloadType *DataSourceType `json:"workloadType,omitempty"`
}
func (o *AzureSqlProtectedItem) GetDeferredDeleteTimeInUTCAsTime() (*time.Time, error) {
if o.DeferredDeleteTimeInUTC == nil {
return nil, nil
}
return dates.ParseAsFormat(o.DeferredDeleteTimeInUTC, "2006-01-02T15:04:05Z07:00")
}
func (o *AzureSqlProtectedItem) SetDeferredDeleteTimeInUTCAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.DeferredDeleteTimeInUTC = &formatted
}
func (o *AzureSqlProtectedItem) GetLastRecoveryPointAsTime() (*time.Time, error) {
if o.LastRecoveryPoint == nil {
return nil, nil
}
return dates.ParseAsFormat(o.LastRecoveryPoint, "2006-01-02T15:04:05Z07:00")
}
func (o *AzureSqlProtectedItem) SetLastRecoveryPointAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.LastRecoveryPoint = &formatted
}
var _ json.Marshaler = AzureSqlProtectedItem{}
func (s AzureSqlProtectedItem) MarshalJSON() ([]byte, error) {
type wrapper AzureSqlProtectedItem
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling AzureSqlProtectedItem: %+v", err)
}
var decoded map[string]interface{}
if err := json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling AzureSqlProtectedItem: %+v", err)
}
decoded["protectedItemType"] = "Microsoft.Sql/servers/databases"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling AzureSqlProtectedItem: %+v", err)
}
return encoded, nil
}