public ApplicationDeployment(ApplicationDeployStatus status, ApplicationDeployment copyFrom)
     : this(copyFrom.Cluster,
         status,
         copyFrom.ImageStorePath,
         copyFrom.ApplicationTypeName,
         copyFrom.ApplicationTypeVersion,
         copyFrom.ApplicationInstanceName,
         copyFrom.PackagePath,
         copyFrom.DeploymentTimestamp)
 {
 }
Example #2
0
 public ApplicationDeployment(ApplicationDeployStatus status, ApplicationDeployment copyFrom)
     : this(
         copyFrom.Cluster,
         status,
         copyFrom.ImageStorePath,
         copyFrom.ApplicationTypeName,
         copyFrom.ApplicationTypeVersion,
         copyFrom.ApplicationInstanceName,
         copyFrom.PackageZipFilePath,
         copyFrom.DeploymentTimestamp)
 {
 }
Example #3
0
 public ApplicationDeployment(
     string cluster,
     ApplicationDeployStatus status,
     string imageStorePath,
     string applicationTypeName,
     string applicationTypeVersion,
     string applicationInstanceName,
     string packageZipFilePath,
     DateTimeOffset timestamp)
 {
     this.Cluster                 = cluster;
     this.Status                  = status;
     this.ImageStorePath          = imageStorePath;
     this.ApplicationTypeName     = applicationTypeName;
     this.ApplicationTypeVersion  = applicationTypeVersion;
     this.ApplicationInstanceName = applicationInstanceName;
     this.PackageZipFilePath      = packageZipFilePath;
     this.DeploymentTimestamp     = timestamp;
 }
 public ApplicationDeployment(
     string cluster,
     ApplicationDeployStatus status,
     string imageStorePath,
     string applicationTypeName,
     string applicationTypeVersion,
     string applicationInstanceName,
     string packageZipFilePath,
     DateTimeOffset timestamp)
 {
     this.Cluster = cluster;
     this.Status = status;
     this.ImageStorePath = imageStorePath;
     this.ApplicationTypeName = applicationTypeName;
     this.ApplicationTypeVersion = applicationTypeVersion;
     this.ApplicationInstanceName = applicationInstanceName;
     this.PackageZipFilePath = packageZipFilePath;
     this.DeploymentTimestamp = timestamp;
 }