-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_graphapicomputeserviceresourceproperties.go
61 lines (48 loc) · 2.05 KB
/
model_graphapicomputeserviceresourceproperties.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
package datatransfer
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 _ ServiceResourceProperties = GraphAPIComputeServiceResourceProperties{}
type GraphAPIComputeServiceResourceProperties struct {
GraphApiComputeEndpoint *string `json:"graphApiComputeEndpoint,omitempty"`
Locations *[]GraphAPIComputeRegionalServiceResource `json:"locations,omitempty"`
// Fields inherited from ServiceResourceProperties
CreationTime *string `json:"creationTime,omitempty"`
InstanceCount *int64 `json:"instanceCount,omitempty"`
InstanceSize *ServiceSize `json:"instanceSize,omitempty"`
Status *ServiceStatus `json:"status,omitempty"`
}
func (o *GraphAPIComputeServiceResourceProperties) GetCreationTimeAsTime() (*time.Time, error) {
if o.CreationTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.CreationTime, "2006-01-02T15:04:05Z07:00")
}
func (o *GraphAPIComputeServiceResourceProperties) SetCreationTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.CreationTime = &formatted
}
var _ json.Marshaler = GraphAPIComputeServiceResourceProperties{}
func (s GraphAPIComputeServiceResourceProperties) MarshalJSON() ([]byte, error) {
type wrapper GraphAPIComputeServiceResourceProperties
wrapped := wrapper(s)
encoded, err := json.Marshal(wrapped)
if err != nil {
return nil, fmt.Errorf("marshaling GraphAPIComputeServiceResourceProperties: %+v", err)
}
var decoded map[string]interface{}
if err := json.Unmarshal(encoded, &decoded); err != nil {
return nil, fmt.Errorf("unmarshaling GraphAPIComputeServiceResourceProperties: %+v", err)
}
decoded["serviceType"] = "GraphAPICompute"
encoded, err = json.Marshal(decoded)
if err != nil {
return nil, fmt.Errorf("re-marshaling GraphAPIComputeServiceResourceProperties: %+v", err)
}
return encoded, nil
}