From 8b09bf24b2a8489844ccf05d4c4ba6aeb6142077 Mon Sep 17 00:00:00 2001 From: zhongjun2 Date: Tue, 12 Mar 2019 19:24:38 +0800 Subject: [PATCH] Add dnat in new sdk client --- openstack/client.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openstack/client.go b/openstack/client.go index b5419aa25..1bd88905b 100644 --- a/openstack/client.go +++ b/openstack/client.go @@ -954,6 +954,8 @@ func NewSDKClient(c *golangsdk.ProviderClient, eo golangsdk.EndpointOpts, servic return NewMLSV1(c, eo) case "dws": return NewDWSClient(c, eo) + case "nat": + return NewNatV2(c, eo) } return initClientOpts(c, eo, serviceType)