-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_azurevmappcontainerprotectioncontainer.go
50 lines (40 loc) · 1.97 KB
/
model_azurevmappcontainerprotectioncontainer.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
package protectioncontainers
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 _ ProtectionContainer = AzureVMAppContainerProtectionContainer{}
type AzureVMAppContainerProtectionContainer struct {
ExtendedInfo *AzureWorkloadContainerExtendedInfo `json:"extendedInfo,omitempty"`
LastUpdatedTime *string `json:"lastUpdatedTime,omitempty"`
OperationType *OperationType `json:"operationType,omitempty"`
SourceResourceId *string `json:"sourceResourceId,omitempty"`
WorkloadType *WorkloadType `json:"workloadType,omitempty"`
// Fields inherited from ProtectionContainer
BackupManagementType *BackupManagementType `json:"backupManagementType,omitempty"`
FriendlyName *string `json:"friendlyName,omitempty"`
HealthStatus *string `json:"healthStatus,omitempty"`
ProtectableObjectType *string `json:"protectableObjectType,omitempty"`
RegistrationStatus *string `json:"registrationStatus,omitempty"`
}
var _ json.Marshaler = AzureVMAppContainerProtectionContainer{}
func (s AzureVMAppContainerProtectionContainer) MarshalJSON() ([]byte, error) {
type wrapper AzureVMAppContainerProtectionContainer
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling AzureVMAppContainerProtectionContainer: %+v", err)
}
var decoded map[string]interface{}
if err := json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling AzureVMAppContainerProtectionContainer: %+v", err)
}
decoded["containerType"] = "VMAppContainer"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling AzureVMAppContainerProtectionContainer: %+v", err)
}
return encoded, nil
}