-
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.
Merge branch 'main' into amariwest/pauseonstart-swagger
- Loading branch information
Showing
23 changed files
with
177 additions
and
51 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
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
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
27 changes: 27 additions & 0 deletions
27
sdk/core/Azure.Core/src/ResponseErrorSourceGenerationContext.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,27 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.Text; | ||
using System.Text.Json; | ||
using System.Text.Json.Serialization; | ||
using Azure.Core; | ||
|
||
namespace Azure | ||
{ | ||
#if NET6_0_OR_GREATER | ||
[JsonSerializable(typeof(ResponseError))] | ||
[JsonSerializable(typeof(RequestFailedException.ErrorResponse))] | ||
[JsonSerializable(typeof(ResponseInnerError))] | ||
[JsonSerializable(typeof(JsonElement))] | ||
[JsonSerializable(typeof(JsonDocument))] | ||
[JsonSerializable(typeof(JsonValueKind))] | ||
[JsonSerializable(typeof(string))] | ||
[JsonSerializable(typeof(bool))] | ||
[JsonSerializable(typeof(List<ResponseError>))] | ||
internal partial class ResponseErrorSourceGenerationContext : JsonSerializerContext | ||
{ | ||
} | ||
#endif | ||
} |
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
15 changes: 15 additions & 0 deletions
15
...zure.Messaging.EventGrid/src/Customization/ResourceNotificationsResourceUpdatedDetails.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,15 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Azure.Core; | ||
|
||
namespace Azure.Messaging.EventGrid.SystemEvents | ||
{ | ||
/// <summary> Describes the schema of the properties under resource info which are common across all ARN system topic events. </summary> | ||
public partial class ResourceNotificationsResourceUpdatedDetails | ||
{ | ||
/// <summary> the type of the resource for which the event is being emitted. </summary> | ||
[CodeGenMember("Type")] | ||
public string ResourceType { get; } | ||
} | ||
} |
6 changes: 3 additions & 3 deletions
6
sdk/eventgrid/Azure.Messaging.EventGrid/src/Generated/EventGridModelFactory.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 3 additions & 5 deletions
8
...e.Messaging.EventGrid/src/Generated/Models/ResourceNotificationsResourceUpdatedDetails.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
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
Oops, something went wrong.