From cf6531e91b29df24406fa526c3d43c6b1abd65b2 Mon Sep 17 00:00:00 2001 From: Lance52259 Date: Wed, 24 Mar 2021 17:32:22 +0800 Subject: [PATCH] feat: response supports ID of IPv6 subnet --- openstack/networking/v1/subnets/results.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/openstack/networking/v1/subnets/results.go b/openstack/networking/v1/subnets/results.go index 733678d4b..0a9af5441 100644 --- a/openstack/networking/v1/subnets/results.go +++ b/openstack/networking/v1/subnets/results.go @@ -52,6 +52,9 @@ type Subnet struct { //Specifies the subnet ID. SubnetId string `json:"neutron_subnet_id"` + //Specifies the subnet ID of the IPv6 subnet. + IPv6SubnetId string `json:"neutron_subnet_id_v6"` + //Specifies the extra dhcp opts. ExtraDhcpOpts []ExtraDhcp `json:"extra_dhcp_opts"` }