Page MenuHomePhabricator

Implement a CreateEmptyZtype API endpoint in the orchestrator
Open, LowPublic

Description

As an user I would like to have the ability to call an API that would return a set of "empty" zTypes.

Example:
Z7 would return:
{ Z1K1: Z7, Z7K1: '' }
Z9:
{ Z1K1: Z9, Z9K1: '' }
Z12:
{ Z1K1: Z12, Z12K1: [] }

Event Timeline

DVrandecic triaged this task as High priority.

Should Z12 return?

{
  Z1K1: Z12,
  Z12K1: [ {
    Z1K1: Z11,
    Z11K1: {
      Z1K1: {
        Z1K1: Z9,
        Z9K1: ''
      },
   Z11K2: {
    Z1K1: Z6,
    Z6K1: ''
   }
  }]
}

I don't want to complicate the task, I am just trying to understand what it aims to accomplish.