mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 11:40:05 -03:30
* Fixes links in CONTRIBUTING.md * Moves CONTRIBUTING and UI design files to ui/client/src/network-ui * Adds README.md for network_ui/designs * Updates design
66 lines
1.6 KiB
YAML
66 lines
1.6 KiB
YAML
models:
|
|
- name: Device
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/device/
|
|
topology_id_query: topology_id
|
|
v2_lookup_field: host_id
|
|
create_transform:
|
|
id: id
|
|
name: name
|
|
device_type: type
|
|
x: x
|
|
y: y
|
|
interface_id_seq: interface_id_seq
|
|
process_id_seq: process_id_seq
|
|
host_id: host_id
|
|
topology_id: topology_id
|
|
- name: Link
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/link/
|
|
topology_id_query: from_device__topology_id
|
|
create_transform:
|
|
id: id
|
|
name: name
|
|
from_device__id: from_device_id
|
|
from_interface__id: from_interface_id
|
|
to_device__id: to_device_id
|
|
to_interface__id: to_interface_id
|
|
- name: Interface
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/interface/
|
|
topology_id_query: device__topology_id
|
|
create_transform:
|
|
id: id
|
|
name: name
|
|
device__id: device_id
|
|
- name: Group
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/group/
|
|
topology_id_query: topology_id
|
|
- name: GroupDevice
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/groupdevice/
|
|
topology_id_query: group__topology_id
|
|
- name: Topology
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/topology/
|
|
topology_id_query: topology_id
|
|
- name: TopologyInventory
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/topologyinventory/
|
|
topology_id_query: topology_id
|
|
- name: Toolbox
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/toolbox/
|
|
- name: ToolboxItem
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/toolboxitem/
|
|
- name: Stream
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/stream/
|
|
topology_id_query: from_device__topology_id
|
|
- name: Process
|
|
api: true
|
|
v2_end_point: /api/v2/canvas/process/
|
|
topology_id_query: device__topology_id
|