-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix namespace of ACS models (#39341)
* Fix namespace of ACS models * Fix
- Loading branch information
1 parent
c6566ac
commit 8117e26
Showing
19 changed files
with
447 additions
and
35 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
28 changes: 28 additions & 0 deletions
28
sdk/eventgrid/Azure.Messaging.EventGrid/src/Customization/AcsRouterJobReceivedEventData.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,28 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using Azure.Core; | ||
|
||
namespace Azure.Messaging.EventGrid.SystemEvents | ||
{ | ||
public partial class AcsRouterJobReceivedEventData | ||
{ | ||
/// <summary> Router Job Received Job Status. </summary> | ||
[CodeGenMember("JobStatus")] | ||
public AcsRouterJobStatus? Status { get; } | ||
|
||
/// <summary> Router Job Received Job Status. </summary> | ||
public Azure.Messaging.EventGrid.Models.AcsRouterJobStatus? JobStatus | ||
{ | ||
get | ||
{ | ||
if (Status.HasValue) | ||
{ | ||
return new Azure.Messaging.EventGrid.Models.AcsRouterJobStatus(Status.Value.ToString()); | ||
} | ||
|
||
return null; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.