2020-08-31 16:07:59 +00:00
|
|
|
package constant
|
|
|
|
|
2022-10-12 16:42:39 +00:00
|
|
|
// ExecKindAutoLocal is a flag used to identify a command as originating
|
2020-08-31 16:07:59 +00:00
|
|
|
// from automation API using a traditional Pulumi project.
|
|
|
|
const ExecKindAutoLocal = "auto.local"
|
|
|
|
|
2022-10-12 16:42:39 +00:00
|
|
|
// ExecKindAutoInline is a flag used to identify a command as originating
|
2020-08-31 16:07:59 +00:00
|
|
|
// from automation API using an inline Pulumi project.
|
|
|
|
const ExecKindAutoInline = "auto.inline"
|
|
|
|
|
2022-10-12 16:42:39 +00:00
|
|
|
// ExecKindCLI is a flag used to identify a command as originating
|
2020-08-31 16:07:59 +00:00
|
|
|
// from the CLI using a traditional Pulumi project.
|
|
|
|
const ExecKindCLI = "cli"
|
2022-09-06 23:44:29 +00:00
|
|
|
|
|
|
|
// ExitStatusLoggedError is the exit status to indicate that a pulumi program
|
|
|
|
// has failed, but successfully logged an error message to the engine
|
|
|
|
const ExitStatusLoggedError = 32
|