-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix OperationalInsights Type Issue (#38425)
* update * update
- Loading branch information
Showing
7 changed files
with
68 additions
and
23 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
19 changes: 19 additions & 0 deletions
19
...eManager.OperationalInsights/src/Custom/Models/OperationalInsightsWorkspacePurgeResult.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,19 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
#nullable disable | ||
|
||
using System; | ||
using System.ComponentModel; | ||
using Azure.Core; | ||
|
||
namespace Azure.ResourceManager.OperationalInsights.Models | ||
{ | ||
public partial class OperationalInsightsWorkspacePurgeResult | ||
{ | ||
/// <summary> ID of the operation. </summary> | ||
[EditorBrowsable(EditorBrowsableState.Never)] | ||
[Obsolete("This property has been replaced by ResourceUriString", false)] | ||
public Guid OperationId { get;} | ||
} | ||
} |
12 changes: 9 additions & 3 deletions
12
...e.ResourceManager.OperationalInsights/src/Generated/ArmOperationalInsightsModelFactory.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 2 additions & 3 deletions
5
...nalInsights/src/Generated/Models/OperationalInsightsWorkspacePurgeResult.Serialization.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
12 changes: 8 additions & 4 deletions
12
...nager.OperationalInsights/src/Generated/Models/OperationalInsightsWorkspacePurgeResult.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