2018-03-21 19:43:21 +00:00
|
|
|
// Copyright 2016-2018, Pulumi Corporation. All rights reserved.
|
2018-01-31 17:41:42 +00:00
|
|
|
|
|
|
|
package backend
|
|
|
|
|
|
|
|
import "github.com/pulumi/pulumi/pkg/diag/colors"
|
|
|
|
|
|
|
|
// DisplayOptions controls how the output of events are rendered
|
|
|
|
type DisplayOptions struct {
|
2018-02-04 09:18:06 +00:00
|
|
|
Color colors.Colorization // colorization to apply to events.
|
|
|
|
ShowConfig bool // true if we should show configuration information.
|
|
|
|
ShowReplacementSteps bool // true to show the replacement steps in the plan.
|
|
|
|
ShowSames bool // true to show the resources that aren't updated in addition to updates.
|
2018-04-10 19:03:11 +00:00
|
|
|
DiffDisplay bool // true if we should display things as a rich diff
|
|
|
|
Debug bool
|
2018-01-31 17:41:42 +00:00
|
|
|
}
|