File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -51,6 +51,7 @@ var snapshotScheduleListCmd = &cobra.Command{
51
51
"name" : schedule .Name ,
52
52
"cron_expression" : schedule .CronExpression ,
53
53
"status" : schedule .Status .State ,
54
+ "paused" : strconv .FormatBool (schedule .Paused ),
54
55
"instances" : instanceCount ,
55
56
"last_snapshot" : lastSnapshot ,
56
57
"created_at" : schedule .CreatedAt .Format (time .RFC822 ),
@@ -67,6 +68,7 @@ var snapshotScheduleListCmd = &cobra.Command{
67
68
ow .AppendDataWithLabel ("name" , utility .Green (schedule .Name ), "Name" )
68
69
ow .AppendDataWithLabel ("cron_expression" , schedule .CronExpression , "Cron Expression" )
69
70
ow .AppendDataWithLabel ("status" , utility .Green (schedule .Status .State ), "Status" )
71
+ ow .AppendDataWithLabel ("paused" , strconv .FormatBool (schedule .Paused ), "Paused" )
70
72
ow .AppendDataWithLabel ("instances" , strconv .Itoa (len (schedule .Instances )), "Instances" )
71
73
lastSnapshot := "N/A"
72
74
if schedule .Status .LastSnapshot .ID != "" {
You can’t perform that action at this time.
0 commit comments