|
@@ -0,0 +1,51 @@
|
|
|
+HostType:
|
|
|
+ source_table: "HostType"
|
|
|
+ destination_table: "host_type"
|
|
|
+ mapping:
|
|
|
+ id: id
|
|
|
+ name: name
|
|
|
+ shortname: shortname
|
|
|
+
|
|
|
+Host:
|
|
|
+ source_table: "Host"
|
|
|
+ destination_table: "host"
|
|
|
+ mapping:
|
|
|
+ id: id
|
|
|
+ host_type_id: host_type_id
|
|
|
+ mac: mac
|
|
|
+ options: options
|
|
|
+
|
|
|
+NetGroup:
|
|
|
+ source_table: "NetGroup"
|
|
|
+ destination_table: "net_group"
|
|
|
+ mapping:
|
|
|
+ id: id
|
|
|
+ name: name
|
|
|
+ opcode: opcode
|
|
|
+ tenancy_id: tenancy_id
|
|
|
+
|
|
|
+
|
|
|
+SubNet:
|
|
|
+ source_table: "SubNet"
|
|
|
+ destination_table: "sub_net"
|
|
|
+ mapping:
|
|
|
+ id: id
|
|
|
+ allowed_host_type_id: allowed_host_type_id
|
|
|
+ net_group_id: net_group_id
|
|
|
+ address: address
|
|
|
+ options: options
|
|
|
+ tenancy_id: tenancy_id
|
|
|
+
|
|
|
+
|
|
|
+Pool:
|
|
|
+ source_table: "Pool"
|
|
|
+ destination_table: "pool"
|
|
|
+ mapping:
|
|
|
+ id: id
|
|
|
+ sub_net_id: sub_net_id
|
|
|
+ name: name
|
|
|
+ first_ip: first_ip
|
|
|
+ last_ip: last_ip
|
|
|
+ priority: priority
|
|
|
+ is_static: is_static
|
|
|
+ tenancy_id: tenancy_id
|