-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathmodel_genericresourceexpanded.go
54 lines (46 loc) · 2.32 KB
/
model_genericresourceexpanded.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
package resourcegroups
import (
"time"
"github.com/hashicorp/go-azure-helpers/lang/dates"
"github.com/hashicorp/go-azure-helpers/resourcemanager/edgezones"
"github.com/hashicorp/go-azure-helpers/resourcemanager/identity"
)
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See NOTICE.txt in the project root for license information.
type GenericResourceExpanded struct {
ChangedTime *string `json:"changedTime,omitempty"`
CreatedTime *string `json:"createdTime,omitempty"`
ExtendedLocation *edgezones.Model `json:"extendedLocation,omitempty"`
Id *string `json:"id,omitempty"`
Identity *identity.SystemAndUserAssignedMap `json:"identity,omitempty"`
Kind *string `json:"kind,omitempty"`
Location *string `json:"location,omitempty"`
ManagedBy *string `json:"managedBy,omitempty"`
Name *string `json:"name,omitempty"`
Plan *Plan `json:"plan,omitempty"`
Properties *interface{} `json:"properties,omitempty"`
ProvisioningState *string `json:"provisioningState,omitempty"`
Sku *Sku `json:"sku,omitempty"`
Tags *map[string]string `json:"tags,omitempty"`
Type *string `json:"type,omitempty"`
}
func (o *GenericResourceExpanded) GetChangedTimeAsTime() (*time.Time, error) {
if o.ChangedTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.ChangedTime, "2006-01-02T15:04:05Z07:00")
}
func (o *GenericResourceExpanded) SetChangedTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.ChangedTime = &formatted
}
func (o *GenericResourceExpanded) GetCreatedTimeAsTime() (*time.Time, error) {
if o.CreatedTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.CreatedTime, "2006-01-02T15:04:05Z07:00")
}
func (o *GenericResourceExpanded) SetCreatedTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.CreatedTime = &formatted
}