Skip to main content

Deployment

A deployment represents an instance of a bundle being deployed to a target environment

type Deployment {
id: ID!
status: DeploymentStatus!
action: DeploymentAction!
version: String!
release: Bundle!
message: String
params: JSON!
package: Package!
artifacts: [Artifact]
deployedBy: String
createdAt: DateTime!
updatedAt: DateTime!
lastTransitionedAt: DateTime
elapsedTime: Int!
}

Fields

Deployment.id ● ID! non-null scalar

Deployment.status ● DeploymentStatus! non-null enum

Deployment.action ● DeploymentAction! non-null enum

Deployment.version ● String! non-null scalar

Deployment.release ● Bundle! non-null object

Deployment.message ● String scalar

Deployment.params ● JSON! non-null scalar

State of configuration at the time of the deployment

Deployment.package ● Package! non-null object

Deployment.artifacts ● [Artifact] list object

Deployment.deployedBy ● String scalar

Deployment.createdAt ● DateTime! non-null scalar

Deployment.updatedAt ● DateTime! non-null scalar

Deployment.lastTransitionedAt ● DateTime scalar

Deployment.elapsedTime ● Int! non-null scalar

Elapsed time in seconds

Returned By

deployment query ● deployments query

Member Of

DeploymentLifecycleEvent object ● DeploymentPayload object ● Package object