Skip to content
This repository has been archived by the owner on Feb 5, 2025. It is now read-only.

Commit

Permalink
Merge pull request #10 from tuckner/sts-update
Browse files Browse the repository at this point in the history
action boolean pointers
  • Loading branch information
tuckner authored Jun 16, 2021
2 parents 0d2fa35 + 85a16f5 commit 46db1f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tines/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ type Agent struct {
KeepEventsFor int `json:"keep_events_for" structs:"keep_events_for,omitempty"`
LastEventAt time.Time `json:"last_event_at" structs:"last_event_at,omitempty"`
LastErrorLogAt interface{} `json:"last_error_log_at" structs:"last_error_log_at,omitempty"`
Disabled bool `json:"disabled" structs:"disabled,omitempty"`
MonitorFailures bool `json:"monitor_failures" structs:"monitor_failures,omitempty"`
MonitorAllEvents bool `json:"monitor_all_events" structs:"monitor_all_events,omitempty"`
Disabled *bool `json:"disabled" structs:"disabled,omitempty"`
MonitorFailures *bool `json:"monitor_failures" structs:"monitor_failures,omitempty"`
MonitorAllEvents *bool `json:"monitor_all_events" structs:"monitor_all_events,omitempty"`
GUID string `json:"guid" structs:"guid,omitempty"`
StoryID int `json:"story_id" structs:"story_id"`
SourceIds []int `json:"source_ids" structs:"source_ids,omitempty"`
Expand Down

0 comments on commit 46db1f9

Please sign in to comment.