Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

ParametersTypeDescription
idUUID

UUID of the service

namestringservice name
typestring

service type [VSG|OLT_AGENT|DUMMYDEFAULT]

network_idUUID

ID of the associated network

providerslist

list of provider service IDs of the service

tenantslist

list of tenant service IDs of the service

bidirectionalboolean

the dependency, which is bidirectional(true) or unidirectional(false)

...

Code Block
{
    “services": [
        {
            "id": "8ab38619-327e-47ce-9304-2c595c1b6708",
            "name": "vsg",
            "type": "vsg",
            "network_id": "8ab38619-327e-47ce-9304-2c595c1b6708"
        },
        {
            "id": "a14d7a6b-dffb-4271-8a17-5d715b362d1e",
            "name": "access_one",
            "type": "dummydefault",
            "network_id": "a14d7a6b-dffb-4271-8a17-5d715b362d1e",
            "providers": [],
            "tenants": [
                {
                    "id": "71cc8c93-f809-42ff-b1d6-0c8d92c6cd2b",
                    "bidirectional": true
                }
            ]
        }
    ]
}

...

Code Block
{
    "service": {
        "id": "a14d7a6b-dffb-4271-8a17-5d715b362d1e",
        "name": "access_one",
        "type": "dummydefault",
        "network_id": "a14d7a6b-dffb-4271-8a17-5d715b362d1e",
        "providers": [],
        "tenants": [
            {
                "id": "71cc8c93-f809-42ff-b1d6-0c8d92c6cd2b",
                "bidirectional": true
            }
        ]
    }
}

...