-
Notifications
You must be signed in to change notification settings - Fork 46
/
model_jobschedule.go
42 lines (34 loc) · 1.17 KB
/
model_jobschedule.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
package jobs
import (
"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.
type JobSchedule struct {
Enabled *bool `json:"enabled,omitempty"`
EndTime *string `json:"endTime,omitempty"`
Interval *string `json:"interval,omitempty"`
StartTime *string `json:"startTime,omitempty"`
Type *JobScheduleType `json:"type,omitempty"`
}
func (o *JobSchedule) GetEndTimeAsTime() (*time.Time, error) {
if o.EndTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.EndTime, "2006-01-02T15:04:05Z07:00")
}
func (o *JobSchedule) SetEndTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.EndTime = &formatted
}
func (o *JobSchedule) GetStartTimeAsTime() (*time.Time, error) {
if o.StartTime == nil {
return nil, nil
}
return dates.ParseAsFormat(o.StartTime, "2006-01-02T15:04:05Z07:00")
}
func (o *JobSchedule) SetStartTimeAsTime(input time.Time) {
formatted := input.Format("2006-01-02T15:04:05Z07:00")
o.StartTime = &formatted
}