From 672cae4eb254af9a372eff45f8011224e15cd17f Mon Sep 17 00:00:00 2001 From: Prasanna Santhanam Date: Mon, 29 Jul 2013 17:11:33 +0530 Subject: [PATCH] CLOUDSTACK-3906: PrivateGw constructor Signed-off-by: Prasanna Santhanam --- tools/marvin/marvin/integration/lib/base.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/marvin/marvin/integration/lib/base.py b/tools/marvin/marvin/integration/lib/base.py index 695edf7196f..2f834be188c 100755 --- a/tools/marvin/marvin/integration/lib/base.py +++ b/tools/marvin/marvin/integration/lib/base.py @@ -2962,6 +2962,9 @@ class VPC: class PrivateGateway: """Manage private gateway lifecycle""" + def __init__(self, items): + self.__dict__.update(items) + @classmethod def create(cls, apiclient, gateway, ipaddress, netmask, vlan, vpcid, physicalnetworkid=None):