aboutsummaryrefslogtreecommitdiffstats
path: root/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java
diff options
context:
space:
mode:
Diffstat (limited to 'ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java')
-rw-r--r--ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java19
1 files changed, 16 insertions, 3 deletions
diff --git a/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java b/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java
index 071ef57..e701528 100644
--- a/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java
+++ b/ccsdk-app-common/src/main/java/org/onap/ccsdk/dashboard/model/CloudifyExecution.java
@@ -2,7 +2,7 @@
* =============LICENSE_START=========================================================
*
* =================================================================================
- * Copyright (c) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (c) 2019 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -46,18 +46,28 @@ public final class CloudifyExecution extends ECTransportModel {
public final String blueprint_id;
/** The id of the deployment the execution is in the context of. */
public final String deployment_id;
+ /** The tenant used to deploy */
+ public final String tenant_name;
/** The execution’s error message on execution failure. */
public final String error;
/** A dict of the workflow parameters passed when starting the execution. */
public final Map<String, Object> parameters;
+ /** true if helm plugin is used */
+ public Boolean is_helm;
+ /** true if helm status is enabled */
+ public Boolean helm_status;
@JsonCreator
public CloudifyExecution(@JsonProperty("status") String status, @JsonProperty("created_at") String created_at,
@JsonProperty("workflow_id") String workflow_id,
@JsonProperty("is_system_workflow") Boolean is_system_workflow,
- @JsonProperty("blueprint_id") String blueprint_id, @JsonProperty("deployment_id") String deployment_id,
+ @JsonProperty("blueprint_id") String blueprint_id,
+ @JsonProperty("deployment_id") String deployment_id,
+ @JsonProperty("tenant_name") String tenant_name,
@JsonProperty("error") String error, @JsonProperty("id") String id,
- @JsonProperty("parameters") Map<String, Object> parameters) {
+ @JsonProperty("parameters") Map<String, Object> parameters,
+ @JsonProperty("is_helm") Boolean is_helm,
+ @JsonProperty("helm_status") Boolean helm_status) {
this.status = status;
this.created_at = created_at;
@@ -65,9 +75,12 @@ public final class CloudifyExecution extends ECTransportModel {
this.is_system_workflow = is_system_workflow;
this.blueprint_id = blueprint_id;
this.deployment_id = deployment_id;
+ this.tenant_name = tenant_name;
this.error = error;
this.id = id;
this.parameters = parameters;
+ this.is_helm = is_helm;
+ this.helm_status = helm_status;
}
}