Closed arnaudcoquelet closed 4 years ago
The class NUVirtualFirewallPolicy is missing the jobs fetcher, preventing to create jobs related to Virtual Firewall Policies
Basically we need,
an import: from .fetchers import NUJobsFetcher
and define self.jobs in the def __init__: self.jobs = NUJobsFetcher.fetcher_with_object(parent_object=self, relationship="child")
def __init__
Closing this in favour of nuagenetworks/vsd-api-specifications#75
The class NUVirtualFirewallPolicy is missing the jobs fetcher, preventing to create jobs related to Virtual Firewall Policies
Basically we need,
an import: from .fetchers import NUJobsFetcher
and define self.jobs in the
def __init__
: self.jobs = NUJobsFetcher.fetcher_with_object(parent_object=self, relationship="child")