PlanResponse Data Type

This class represents a plan generated by the planner.

Properties
name data type description
name string The name of the generated plan
toscaID string The id of the TOSCA PlaybookRepresentation description from which this plan was generated
level number The level of the plan. Some provisioners use levels to represent a plan. In these cases there are two levels of TOSCA descriptions.
loweLevelPlanIDs array of string The list of the lower level plans attached to this plan. Some provisioners use levels to represent a plan. In these cases there are two levels of TOSCA descriptions.
Properties inherited from KeyValueHolder
keyValue map of object The key-value map
Properties inherited from OwnedObject
owner string The owner (username) for the particular object. This value is set when the DAO saves the object based on the principal how made the call
id string The UID of this object. This value is auto generated by the DAO when the object is saved.

Example

{
  "name" : "planner_output_all.yml",
  "toscaID" : "58e3946e0fb4f562d84ba1ad",
  "level" : 0,
  "loweLevelPlanIDs" : [ "ew44Ae3946e0sdds4f562d84baA", "..." ],
  "keyValue" : {
    "property1" : { },
    "property2" : { }
  },
  "owner" : "user1",
  "id" : "58e3946e0fb4f562d84ba1ad"
}