From 0e3975c4c4408d8840e5b5757408d16a210bd0e4 Mon Sep 17 00:00:00 2001 From: mjethwa-msft Date: Mon, 26 Jun 2023 21:48:43 +0000 Subject: [PATCH] Remove one level encap from Routes --- services/network/network.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/network/network.go b/services/network/network.go index 8e36d887..eb771ef5 100644 --- a/services/network/network.go +++ b/services/network/network.go @@ -1043,8 +1043,8 @@ type LogicalSubnetPropertiesFormat struct { AddressPrefix *string `json:"addressPrefix,omitempty"` // AddressPrefixes - List of address prefixes for the subnet. AddressPrefixes *[]string `json:"addressPrefixes,omitempty"` - // Routes for the subnet - RouteTable *RouteTable `json:"routeTable,omitempty"` + // Routes - Collection of routes contained within a route table. + Routes *[]Route `json:"routes,omitempty"` // IPConfiguration References IPConfigurationReferences *[]IPConfigurationReference `json:"ipConfigurationReferences,omitempty"` // IPAllocationMethod - The IP address allocation method. Possible values include: 'Static', 'Dynamic'