BundleDeploymentSummary
Optimized summary view of a deployment for list displays
type BundleDeploymentSummary {
  id: ID!
  createdAt: DateTime!
  deployedBy: String
  elapsedTime: Int
  action: DeploymentAction!
  status: DeploymentStatus!
  message: String
  packageSlug: String!
  packageName: String!
  environmentName: String!
  projectName: String!
  version: String!
}
Fields
BundleDeploymentSummary.id ● ID! non-null scalar
Deployment ID
BundleDeploymentSummary.createdAt ● DateTime! non-null scalar
Deployment creation timestamp
BundleDeploymentSummary.deployedBy ● String scalar
Email of user or service account that deployed
BundleDeploymentSummary.elapsedTime ● Int scalar
Elapsed time in seconds
BundleDeploymentSummary.action ● DeploymentAction! non-null enum
Deployment action (PROVISION, DECOMMISSION, PLAN)
BundleDeploymentSummary.status ● DeploymentStatus! non-null enum
Deployment status (PENDING, RUNNING, COMPLETED, FAILED, ABORTED)
BundleDeploymentSummary.message ● String scalar
Deployment message
BundleDeploymentSummary.packageSlug ● String! non-null scalar
Package slug
BundleDeploymentSummary.packageName ● String! non-null scalar
Package name
BundleDeploymentSummary.environmentName ● String! non-null scalar
Environment name
BundleDeploymentSummary.projectName ● String! non-null scalar
Project name
BundleDeploymentSummary.version ● String! non-null scalar
Bundle version deployed
Member Of
BundleDeploymentsPage  object