Adds an API for network UI, action plugins, and API client

* Adds a simple DRF API for network-ui
* Moves network_ui api to v1_api
* Uses BaseSerializer for networking v1 api
* Adds v2 of the network API
* Uses standard AWX base classes for the network UI API
* Adds canvas prefix to network UI api URL names
* Adds ansible action plugins for automating network UI workflows
* Adds python client for the networking visualization API
This commit is contained in:
Ben Thomasson
2018-03-16 11:21:08 -04:00
parent 2736aecfb2
commit 00a9283e32
153 changed files with 6729 additions and 22 deletions

View File

@@ -38,7 +38,7 @@ class Topology(models.Model):
panY = models.FloatField()
device_id_seq = models.IntegerField(default=0)
link_id_seq = models.IntegerField(default=0)
group_id_seq = models.IntegerField('Topology', default=0)
group_id_seq = models.IntegerField(default=0)
stream_id_seq = models.IntegerField(default=0)
def __unicode__(self):