EnvironmentPlannedTask
A task the redeploy pipeline would enqueue, with its step kinds in execution order. Enumerated from the same planner the real change order uses.
type EnvironmentPlannedTask {
kind: String!
dependsOn: [String!]!
steps: [String!]!
}
Fields
EnvironmentPlannedTask.kind ● String! non-null scalar
Task kind (e.g. 'apply_schema_in_place', 'update_game_api_1').
EnvironmentPlannedTask.dependsOn ● [String!]! non-null scalar
Task kinds this task waits on before starting.
EnvironmentPlannedTask.steps ● [String!]! non-null scalar
Step kinds in order (e.g. 'pg:apply_schema', 'ssh:install_wasm_toolchain').
Member Of
EnvironmentRedeployPlan object