summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--PVE/API2/Network/SDN.pm11
1 files changed, 10 insertions, 1 deletions
diff --git a/PVE/API2/Network/SDN.pm b/PVE/API2/Network/SDN.pm
index 36d293d..b6dd23e 100644
--- a/PVE/API2/Network/SDN.pm
+++ b/PVE/API2/Network/SDN.pm
@@ -61,7 +61,10 @@ __PACKAGE__->register_method ({
type => 'array',
items => {
type => "object",
- properties => { sdn => { type => 'string'} },
+ properties => { sdn => { type => 'string'},
+ type => { type => 'string'},
+ role => { type => 'string'}
+ },
},
links => [ { rel => 'child', href => "{sdn}" } ],
},
@@ -82,6 +85,12 @@ __PACKAGE__->register_method ({
my $scfg = &$api_sdn_config($cfg, $sdnid);
next if $param->{type} && $param->{type} ne $scfg->{type};
+
+ my $plugin_config = $cfg->{ids}->{$sdnid};
+ my $plugin = PVE::Network::SDN::Plugin->lookup($plugin_config->{type});
+ my $pd = $plugin->plugindata();
+ my $role = $pd->{role};
+ $scfg->{role} = $role;
push @$res, $scfg;
}