persistent class Ens.Deployment.Invocations
extends %Persistent, %XML.Adaptor
This records the details of a particular deployment of
changes to a production.
property CalledWithAutoRevert
as %Boolean;
property Completed
as %Boolean [ InitialExpression = 0 ];
Record if deployment completed
property DeploymentFileStream
as %Stream.GlobalBinary;
property DeploymentFilename
as %String(MAXLEN="");
property DeploymentLogFileStream
as %Stream.GlobalCharacter;
property DeploymentLogFilename
as %String(MAXLEN="");
property DeploymentRollbackFileStream
as %Stream.GlobalBinary;
property DeploymentRollbackFilename
as %String(MAXLEN="");
property EndTime
as Ens.DataType.UTC;
property ForcedClearUser
as %String(MAXLEN=128);
property InProgress
as %Boolean [ InitialExpression = 0 ];
Record if a deployment is in progress
property Job
as %String(MAXLEN=128);
property LastStatus
as %Status [ InitialExpression = $$$OK ];
property RequiresManualIntervention
as %String(MAXLEN=512);
property Reverted
as %Boolean;
Whether this deployment failed and was reverted.
property RollbackFor
as %String(MAXLEN=128);
Target of the deployment this was used as a rollback after being successfully applied
property RollbackForId
as %String;
Whether this deployment was used as a rollback after being successfully applied
property RolledbackBy
as %String(MAXLEN=128);
Roll back filename used if this deployment was rolledback after being successfully applied
property RolledbackById
as %String;
ID of roll back file used if this deployment was rolledback after being successfully applied
property SingleFailure
as %String(MAXLEN=512);
property SourceInstance
as %String(MAXLEN=128);
property SourceMachine
as %String(MAXLEN=128);
property SourceNamespace
as %String(MAXLEN=128);
property SourceProduction
as %String(MAXLEN=128);
property StartTime
as Ens.DataType.UTC;
property TargetInstance
as %String(MAXLEN=128);
property TargetMachine
as %String(MAXLEN=128);
property TargetNamespace
as %String(MAXLEN=128);
property TargetProduction
as %String(MAXLEN=128);
property ThisIsARollback
as %String;
property Username
as %String(MAXLEN=128);
index (DeploymentRollbackFilename on DeploymentRollbackFilename);