| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System.Collections.Generic; |
| | 9 | | using System.Text.Json; |
| | 10 | | using Azure.Core; |
| | 11 | |
|
| | 12 | | namespace Azure.ResourceManager.Network.Models |
| | 13 | | { |
| | 14 | | public partial class Subnet : IUtf8JsonSerializable |
| | 15 | | { |
| | 16 | | void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) |
| | 17 | | { |
| 528 | 18 | | writer.WriteStartObject(); |
| 528 | 19 | | if (Name != null) |
| | 20 | | { |
| 312 | 21 | | writer.WritePropertyName("name"); |
| 312 | 22 | | writer.WriteStringValue(Name); |
| | 23 | | } |
| 528 | 24 | | if (Etag != null) |
| | 25 | | { |
| 48 | 26 | | writer.WritePropertyName("etag"); |
| 48 | 27 | | writer.WriteStringValue(Etag); |
| | 28 | | } |
| 528 | 29 | | if (Id != null) |
| | 30 | | { |
| 264 | 31 | | writer.WritePropertyName("id"); |
| 264 | 32 | | writer.WriteStringValue(Id); |
| | 33 | | } |
| 528 | 34 | | writer.WritePropertyName("properties"); |
| 528 | 35 | | writer.WriteStartObject(); |
| 528 | 36 | | if (AddressPrefix != null) |
| | 37 | | { |
| 312 | 38 | | writer.WritePropertyName("addressPrefix"); |
| 312 | 39 | | writer.WriteStringValue(AddressPrefix); |
| | 40 | | } |
| 528 | 41 | | if (AddressPrefixes != null) |
| | 42 | | { |
| 0 | 43 | | writer.WritePropertyName("addressPrefixes"); |
| 0 | 44 | | writer.WriteStartArray(); |
| 0 | 45 | | foreach (var item in AddressPrefixes) |
| | 46 | | { |
| 0 | 47 | | writer.WriteStringValue(item); |
| | 48 | | } |
| 0 | 49 | | writer.WriteEndArray(); |
| | 50 | | } |
| 528 | 51 | | if (NetworkSecurityGroup != null) |
| | 52 | | { |
| 0 | 53 | | writer.WritePropertyName("networkSecurityGroup"); |
| 0 | 54 | | writer.WriteObjectValue(NetworkSecurityGroup); |
| | 55 | | } |
| 528 | 56 | | if (RouteTable != null) |
| | 57 | | { |
| 8 | 58 | | writer.WritePropertyName("routeTable"); |
| 8 | 59 | | writer.WriteObjectValue(RouteTable); |
| | 60 | | } |
| 528 | 61 | | if (NatGateway != null) |
| | 62 | | { |
| 0 | 63 | | writer.WritePropertyName("natGateway"); |
| 0 | 64 | | writer.WriteObjectValue(NatGateway); |
| | 65 | | } |
| 528 | 66 | | if (ServiceEndpoints != null) |
| | 67 | | { |
| 0 | 68 | | writer.WritePropertyName("serviceEndpoints"); |
| 0 | 69 | | writer.WriteStartArray(); |
| 0 | 70 | | foreach (var item in ServiceEndpoints) |
| | 71 | | { |
| 0 | 72 | | writer.WriteObjectValue(item); |
| | 73 | | } |
| 0 | 74 | | writer.WriteEndArray(); |
| | 75 | | } |
| 528 | 76 | | if (ServiceEndpointPolicies != null) |
| | 77 | | { |
| 0 | 78 | | writer.WritePropertyName("serviceEndpointPolicies"); |
| 0 | 79 | | writer.WriteStartArray(); |
| 0 | 80 | | foreach (var item in ServiceEndpointPolicies) |
| | 81 | | { |
| 0 | 82 | | writer.WriteObjectValue(item); |
| | 83 | | } |
| 0 | 84 | | writer.WriteEndArray(); |
| | 85 | | } |
| 528 | 86 | | if (PrivateEndpoints != null) |
| | 87 | | { |
| 0 | 88 | | writer.WritePropertyName("privateEndpoints"); |
| 0 | 89 | | writer.WriteStartArray(); |
| 0 | 90 | | foreach (var item in PrivateEndpoints) |
| | 91 | | { |
| 0 | 92 | | writer.WriteObjectValue(item); |
| | 93 | | } |
| 0 | 94 | | writer.WriteEndArray(); |
| | 95 | | } |
| 528 | 96 | | if (IpConfigurations != null) |
| | 97 | | { |
| 0 | 98 | | writer.WritePropertyName("ipConfigurations"); |
| 0 | 99 | | writer.WriteStartArray(); |
| 0 | 100 | | foreach (var item in IpConfigurations) |
| | 101 | | { |
| 0 | 102 | | writer.WriteObjectValue(item); |
| | 103 | | } |
| 0 | 104 | | writer.WriteEndArray(); |
| | 105 | | } |
| 528 | 106 | | if (IpConfigurationProfiles != null) |
| | 107 | | { |
| 0 | 108 | | writer.WritePropertyName("ipConfigurationProfiles"); |
| 0 | 109 | | writer.WriteStartArray(); |
| 0 | 110 | | foreach (var item in IpConfigurationProfiles) |
| | 111 | | { |
| 0 | 112 | | writer.WriteObjectValue(item); |
| | 113 | | } |
| 0 | 114 | | writer.WriteEndArray(); |
| | 115 | | } |
| 528 | 116 | | if (IpAllocations != null) |
| | 117 | | { |
| 0 | 118 | | writer.WritePropertyName("ipAllocations"); |
| 0 | 119 | | writer.WriteStartArray(); |
| 0 | 120 | | foreach (var item in IpAllocations) |
| | 121 | | { |
| 0 | 122 | | writer.WriteObjectValue(item); |
| | 123 | | } |
| 0 | 124 | | writer.WriteEndArray(); |
| | 125 | | } |
| 528 | 126 | | if (ResourceNavigationLinks != null) |
| | 127 | | { |
| 0 | 128 | | writer.WritePropertyName("resourceNavigationLinks"); |
| 0 | 129 | | writer.WriteStartArray(); |
| 0 | 130 | | foreach (var item in ResourceNavigationLinks) |
| | 131 | | { |
| 0 | 132 | | writer.WriteObjectValue(item); |
| | 133 | | } |
| 0 | 134 | | writer.WriteEndArray(); |
| | 135 | | } |
| 528 | 136 | | if (ServiceAssociationLinks != null) |
| | 137 | | { |
| 0 | 138 | | writer.WritePropertyName("serviceAssociationLinks"); |
| 0 | 139 | | writer.WriteStartArray(); |
| 0 | 140 | | foreach (var item in ServiceAssociationLinks) |
| | 141 | | { |
| 0 | 142 | | writer.WriteObjectValue(item); |
| | 143 | | } |
| 0 | 144 | | writer.WriteEndArray(); |
| | 145 | | } |
| 528 | 146 | | if (Delegations != null) |
| | 147 | | { |
| 48 | 148 | | writer.WritePropertyName("delegations"); |
| 48 | 149 | | writer.WriteStartArray(); |
| 0 | 150 | | foreach (var item in Delegations) |
| | 151 | | { |
| 0 | 152 | | writer.WriteObjectValue(item); |
| | 153 | | } |
| 48 | 154 | | writer.WriteEndArray(); |
| | 155 | | } |
| 528 | 156 | | if (Purpose != null) |
| | 157 | | { |
| 0 | 158 | | writer.WritePropertyName("purpose"); |
| 0 | 159 | | writer.WriteStringValue(Purpose); |
| | 160 | | } |
| 528 | 161 | | if (ProvisioningState != null) |
| | 162 | | { |
| 48 | 163 | | writer.WritePropertyName("provisioningState"); |
| 48 | 164 | | writer.WriteStringValue(ProvisioningState.Value.ToString()); |
| | 165 | | } |
| 528 | 166 | | if (PrivateEndpointNetworkPolicies != null) |
| | 167 | | { |
| 48 | 168 | | writer.WritePropertyName("privateEndpointNetworkPolicies"); |
| 48 | 169 | | writer.WriteStringValue(PrivateEndpointNetworkPolicies); |
| | 170 | | } |
| 528 | 171 | | if (PrivateLinkServiceNetworkPolicies != null) |
| | 172 | | { |
| 48 | 173 | | writer.WritePropertyName("privateLinkServiceNetworkPolicies"); |
| 48 | 174 | | writer.WriteStringValue(PrivateLinkServiceNetworkPolicies); |
| | 175 | | } |
| 528 | 176 | | writer.WriteEndObject(); |
| 528 | 177 | | writer.WriteEndObject(); |
| 528 | 178 | | } |
| | 179 | |
|
| | 180 | | internal static Subnet DeserializeSubnet(JsonElement element) |
| | 181 | | { |
| 708 | 182 | | string name = default; |
| 708 | 183 | | string etag = default; |
| 708 | 184 | | string id = default; |
| 708 | 185 | | string addressPrefix = default; |
| 708 | 186 | | IList<string> addressPrefixes = default; |
| 708 | 187 | | NetworkSecurityGroup networkSecurityGroup = default; |
| 708 | 188 | | RouteTable routeTable = default; |
| 708 | 189 | | SubResource natGateway = default; |
| 708 | 190 | | IList<ServiceEndpointPropertiesFormat> serviceEndpoints = default; |
| 708 | 191 | | IList<ServiceEndpointPolicy> serviceEndpointPolicies = default; |
| 708 | 192 | | IList<PrivateEndpoint> privateEndpoints = default; |
| 708 | 193 | | IList<IPConfiguration> ipConfigurations = default; |
| 708 | 194 | | IList<IPConfigurationProfile> ipConfigurationProfiles = default; |
| 708 | 195 | | IList<SubResource> ipAllocations = default; |
| 708 | 196 | | IList<ResourceNavigationLink> resourceNavigationLinks = default; |
| 708 | 197 | | IList<ServiceAssociationLink> serviceAssociationLinks = default; |
| 708 | 198 | | IList<Delegation> delegations = default; |
| 708 | 199 | | string purpose = default; |
| 708 | 200 | | ProvisioningState? provisioningState = default; |
| 708 | 201 | | string privateEndpointNetworkPolicies = default; |
| 708 | 202 | | string privateLinkServiceNetworkPolicies = default; |
| 5232 | 203 | | foreach (var property in element.EnumerateObject()) |
| | 204 | | { |
| 1908 | 205 | | if (property.NameEquals("name")) |
| | 206 | | { |
| 300 | 207 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 208 | | { |
| | 209 | | continue; |
| | 210 | | } |
| 300 | 211 | | name = property.Value.GetString(); |
| 300 | 212 | | continue; |
| | 213 | | } |
| 1608 | 214 | | if (property.NameEquals("etag")) |
| | 215 | | { |
| 300 | 216 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 217 | | { |
| | 218 | | continue; |
| | 219 | | } |
| 300 | 220 | | etag = property.Value.GetString(); |
| 300 | 221 | | continue; |
| | 222 | | } |
| 1308 | 223 | | if (property.NameEquals("id")) |
| | 224 | | { |
| 708 | 225 | | if (property.Value.ValueKind == JsonValueKind.Null) |
| | 226 | | { |
| | 227 | | continue; |
| | 228 | | } |
| 708 | 229 | | id = property.Value.GetString(); |
| 708 | 230 | | continue; |
| | 231 | | } |
| 600 | 232 | | if (property.NameEquals("properties")) |
| | 233 | | { |
| 3664 | 234 | | foreach (var property0 in property.Value.EnumerateObject()) |
| | 235 | | { |
| 1532 | 236 | | if (property0.NameEquals("addressPrefix")) |
| | 237 | | { |
| 300 | 238 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 239 | | { |
| | 240 | | continue; |
| | 241 | | } |
| 300 | 242 | | addressPrefix = property0.Value.GetString(); |
| 300 | 243 | | continue; |
| | 244 | | } |
| 1232 | 245 | | if (property0.NameEquals("addressPrefixes")) |
| | 246 | | { |
| 0 | 247 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 248 | | { |
| | 249 | | continue; |
| | 250 | | } |
| 0 | 251 | | List<string> array = new List<string>(); |
| 0 | 252 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 253 | | { |
| 0 | 254 | | if (item.ValueKind == JsonValueKind.Null) |
| | 255 | | { |
| 0 | 256 | | array.Add(null); |
| | 257 | | } |
| | 258 | | else |
| | 259 | | { |
| 0 | 260 | | array.Add(item.GetString()); |
| | 261 | | } |
| | 262 | | } |
| 0 | 263 | | addressPrefixes = array; |
| 0 | 264 | | continue; |
| | 265 | | } |
| 1232 | 266 | | if (property0.NameEquals("networkSecurityGroup")) |
| | 267 | | { |
| 4 | 268 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 269 | | { |
| | 270 | | continue; |
| | 271 | | } |
| 4 | 272 | | networkSecurityGroup = NetworkSecurityGroup.DeserializeNetworkSecurityGroup(property0.Value) |
| 4 | 273 | | continue; |
| | 274 | | } |
| 1228 | 275 | | if (property0.NameEquals("routeTable")) |
| | 276 | | { |
| 8 | 277 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 278 | | { |
| | 279 | | continue; |
| | 280 | | } |
| 8 | 281 | | routeTable = RouteTable.DeserializeRouteTable(property0.Value); |
| 8 | 282 | | continue; |
| | 283 | | } |
| 1220 | 284 | | if (property0.NameEquals("natGateway")) |
| | 285 | | { |
| 0 | 286 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 287 | | { |
| | 288 | | continue; |
| | 289 | | } |
| 0 | 290 | | natGateway = DeserializeSubResource(property0.Value); |
| 0 | 291 | | continue; |
| | 292 | | } |
| 1220 | 293 | | if (property0.NameEquals("serviceEndpoints")) |
| | 294 | | { |
| 0 | 295 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 296 | | { |
| | 297 | | continue; |
| | 298 | | } |
| 0 | 299 | | List<ServiceEndpointPropertiesFormat> array = new List<ServiceEndpointPropertiesFormat>(); |
| 0 | 300 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 301 | | { |
| 0 | 302 | | if (item.ValueKind == JsonValueKind.Null) |
| | 303 | | { |
| 0 | 304 | | array.Add(null); |
| | 305 | | } |
| | 306 | | else |
| | 307 | | { |
| 0 | 308 | | array.Add(ServiceEndpointPropertiesFormat.DeserializeServiceEndpointPropertiesFormat |
| | 309 | | } |
| | 310 | | } |
| 0 | 311 | | serviceEndpoints = array; |
| 0 | 312 | | continue; |
| | 313 | | } |
| 1220 | 314 | | if (property0.NameEquals("serviceEndpointPolicies")) |
| | 315 | | { |
| 0 | 316 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 317 | | { |
| | 318 | | continue; |
| | 319 | | } |
| 0 | 320 | | List<ServiceEndpointPolicy> array = new List<ServiceEndpointPolicy>(); |
| 0 | 321 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 322 | | { |
| 0 | 323 | | if (item.ValueKind == JsonValueKind.Null) |
| | 324 | | { |
| 0 | 325 | | array.Add(null); |
| | 326 | | } |
| | 327 | | else |
| | 328 | | { |
| 0 | 329 | | array.Add(ServiceEndpointPolicy.DeserializeServiceEndpointPolicy(item)); |
| | 330 | | } |
| | 331 | | } |
| 0 | 332 | | serviceEndpointPolicies = array; |
| 0 | 333 | | continue; |
| | 334 | | } |
| 1220 | 335 | | if (property0.NameEquals("privateEndpoints")) |
| | 336 | | { |
| 0 | 337 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 338 | | { |
| | 339 | | continue; |
| | 340 | | } |
| 0 | 341 | | List<PrivateEndpoint> array = new List<PrivateEndpoint>(); |
| 0 | 342 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 343 | | { |
| 0 | 344 | | if (item.ValueKind == JsonValueKind.Null) |
| | 345 | | { |
| 0 | 346 | | array.Add(null); |
| | 347 | | } |
| | 348 | | else |
| | 349 | | { |
| 0 | 350 | | array.Add(PrivateEndpoint.DeserializePrivateEndpoint(item)); |
| | 351 | | } |
| | 352 | | } |
| 0 | 353 | | privateEndpoints = array; |
| 0 | 354 | | continue; |
| | 355 | | } |
| 1220 | 356 | | if (property0.NameEquals("ipConfigurations")) |
| | 357 | | { |
| 20 | 358 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 359 | | { |
| | 360 | | continue; |
| | 361 | | } |
| 20 | 362 | | List<IPConfiguration> array = new List<IPConfiguration>(); |
| 144 | 363 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 364 | | { |
| 52 | 365 | | if (item.ValueKind == JsonValueKind.Null) |
| | 366 | | { |
| 0 | 367 | | array.Add(null); |
| | 368 | | } |
| | 369 | | else |
| | 370 | | { |
| 52 | 371 | | array.Add(IPConfiguration.DeserializeIPConfiguration(item)); |
| | 372 | | } |
| | 373 | | } |
| 20 | 374 | | ipConfigurations = array; |
| 20 | 375 | | continue; |
| | 376 | | } |
| 1200 | 377 | | if (property0.NameEquals("ipConfigurationProfiles")) |
| | 378 | | { |
| 0 | 379 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 380 | | { |
| | 381 | | continue; |
| | 382 | | } |
| 0 | 383 | | List<IPConfigurationProfile> array = new List<IPConfigurationProfile>(); |
| 0 | 384 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 385 | | { |
| 0 | 386 | | if (item.ValueKind == JsonValueKind.Null) |
| | 387 | | { |
| 0 | 388 | | array.Add(null); |
| | 389 | | } |
| | 390 | | else |
| | 391 | | { |
| 0 | 392 | | array.Add(IPConfigurationProfile.DeserializeIPConfigurationProfile(item)); |
| | 393 | | } |
| | 394 | | } |
| 0 | 395 | | ipConfigurationProfiles = array; |
| 0 | 396 | | continue; |
| | 397 | | } |
| 1200 | 398 | | if (property0.NameEquals("ipAllocations")) |
| | 399 | | { |
| 0 | 400 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 401 | | { |
| | 402 | | continue; |
| | 403 | | } |
| 0 | 404 | | List<SubResource> array = new List<SubResource>(); |
| 0 | 405 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 406 | | { |
| 0 | 407 | | if (item.ValueKind == JsonValueKind.Null) |
| | 408 | | { |
| 0 | 409 | | array.Add(null); |
| | 410 | | } |
| | 411 | | else |
| | 412 | | { |
| 0 | 413 | | array.Add(DeserializeSubResource(item)); |
| | 414 | | } |
| | 415 | | } |
| 0 | 416 | | ipAllocations = array; |
| 0 | 417 | | continue; |
| | 418 | | } |
| 1200 | 419 | | if (property0.NameEquals("resourceNavigationLinks")) |
| | 420 | | { |
| 0 | 421 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 422 | | { |
| | 423 | | continue; |
| | 424 | | } |
| 0 | 425 | | List<ResourceNavigationLink> array = new List<ResourceNavigationLink>(); |
| 0 | 426 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 427 | | { |
| 0 | 428 | | if (item.ValueKind == JsonValueKind.Null) |
| | 429 | | { |
| 0 | 430 | | array.Add(null); |
| | 431 | | } |
| | 432 | | else |
| | 433 | | { |
| 0 | 434 | | array.Add(ResourceNavigationLink.DeserializeResourceNavigationLink(item)); |
| | 435 | | } |
| | 436 | | } |
| 0 | 437 | | resourceNavigationLinks = array; |
| 0 | 438 | | continue; |
| | 439 | | } |
| 1200 | 440 | | if (property0.NameEquals("serviceAssociationLinks")) |
| | 441 | | { |
| 0 | 442 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 443 | | { |
| | 444 | | continue; |
| | 445 | | } |
| 0 | 446 | | List<ServiceAssociationLink> array = new List<ServiceAssociationLink>(); |
| 0 | 447 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 448 | | { |
| 0 | 449 | | if (item.ValueKind == JsonValueKind.Null) |
| | 450 | | { |
| 0 | 451 | | array.Add(null); |
| | 452 | | } |
| | 453 | | else |
| | 454 | | { |
| 0 | 455 | | array.Add(ServiceAssociationLink.DeserializeServiceAssociationLink(item)); |
| | 456 | | } |
| | 457 | | } |
| 0 | 458 | | serviceAssociationLinks = array; |
| 0 | 459 | | continue; |
| | 460 | | } |
| 1200 | 461 | | if (property0.NameEquals("delegations")) |
| | 462 | | { |
| 300 | 463 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 464 | | { |
| | 465 | | continue; |
| | 466 | | } |
| 300 | 467 | | List<Delegation> array = new List<Delegation>(); |
| 0 | 468 | | foreach (var item in property0.Value.EnumerateArray()) |
| | 469 | | { |
| 0 | 470 | | if (item.ValueKind == JsonValueKind.Null) |
| | 471 | | { |
| 0 | 472 | | array.Add(null); |
| | 473 | | } |
| | 474 | | else |
| | 475 | | { |
| 0 | 476 | | array.Add(Delegation.DeserializeDelegation(item)); |
| | 477 | | } |
| | 478 | | } |
| 300 | 479 | | delegations = array; |
| 300 | 480 | | continue; |
| | 481 | | } |
| 900 | 482 | | if (property0.NameEquals("purpose")) |
| | 483 | | { |
| 0 | 484 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 485 | | { |
| | 486 | | continue; |
| | 487 | | } |
| 0 | 488 | | purpose = property0.Value.GetString(); |
| 0 | 489 | | continue; |
| | 490 | | } |
| 900 | 491 | | if (property0.NameEquals("provisioningState")) |
| | 492 | | { |
| 300 | 493 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 494 | | { |
| | 495 | | continue; |
| | 496 | | } |
| 300 | 497 | | provisioningState = new ProvisioningState(property0.Value.GetString()); |
| 300 | 498 | | continue; |
| | 499 | | } |
| 600 | 500 | | if (property0.NameEquals("privateEndpointNetworkPolicies")) |
| | 501 | | { |
| 300 | 502 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 503 | | { |
| | 504 | | continue; |
| | 505 | | } |
| 300 | 506 | | privateEndpointNetworkPolicies = property0.Value.GetString(); |
| 300 | 507 | | continue; |
| | 508 | | } |
| 300 | 509 | | if (property0.NameEquals("privateLinkServiceNetworkPolicies")) |
| | 510 | | { |
| 300 | 511 | | if (property0.Value.ValueKind == JsonValueKind.Null) |
| | 512 | | { |
| | 513 | | continue; |
| | 514 | | } |
| 300 | 515 | | privateLinkServiceNetworkPolicies = property0.Value.GetString(); |
| | 516 | | continue; |
| | 517 | | } |
| | 518 | | } |
| | 519 | | continue; |
| | 520 | | } |
| | 521 | | } |
| 708 | 522 | | return new Subnet(id, name, etag, addressPrefix, addressPrefixes, networkSecurityGroup, routeTable, natGatew |
| | 523 | | } |
| | 524 | | } |
| | 525 | | } |