We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3237c8e commit 2be7c9cCopy full SHA for 2be7c9c
experiments/Azure.Experiments/Azure.Experiments/PublicIpAddressObject.cs
@@ -22,9 +22,7 @@ protected override IPublicIPAddressesOperations CreateClient(Context c)
22
=> c.CreateNetwork().PublicIPAddresses;
23
24
protected override Task DeleteAsync(IPublicIPAddressesOperations c)
25
- {
26
- throw new NotImplementedException();
27
- }
+ => c.DeleteAsync(ResourceGroupName, Name);
28
29
protected override Task<PublicIPAddress> GetOrThrowAsync(IPublicIPAddressesOperations c)
30
=> c.GetAsync(ResourceGroupName, Name);
0 commit comments