forked from Azure/azure-sdk-for-net
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix network SDK issue Azure#34094 (Azure#34227)
* initial attempt * mitigate the breaking change * resolve comments * update changelog
- Loading branch information
1 parent
37979dd
commit f892638
Showing
6 changed files
with
50 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
18 changes: 18 additions & 0 deletions
18
...k/Azure.ResourceManager.Network/src/Customization/Models/EffectiveNetworkSecurityGroup.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#nullable disable | ||
|
||
using System; | ||
using System.ComponentModel; | ||
|
||
namespace Azure.ResourceManager.Network.Models | ||
{ | ||
public partial class EffectiveNetworkSecurityGroup | ||
{ | ||
/// <summary> Mapping of tags to list of IP Addresses included within the tag. </summary> | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
[Obsolete("This property is obsolete and might be removed in a future version, please use `TagToIPAddresses` instead", false)] | ||
public string TagMap { get; } | ||
} | ||
} |
21 changes: 18 additions & 3 deletions
21
...sourceManager.Network/src/Generated/Models/EffectiveNetworkSecurityGroup.Serialization.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
9 changes: 5 additions & 4 deletions
9
...twork/Azure.ResourceManager.Network/src/Generated/Models/EffectiveNetworkSecurityGroup.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters