Skip to content

Commit

Permalink
Apply EBN to back compat ACS models (#39360)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft committed Oct 18, 2023
1 parent 3d85e4d commit d13cc6b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -575,6 +575,7 @@ public static partial class SystemEventNames
}
namespace Azure.Messaging.EventGrid.Models
{
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct AcsRouterJobStatus : System.IEquatable<Azure.Messaging.EventGrid.Models.AcsRouterJobStatus>
{
Expand Down Expand Up @@ -603,6 +604,7 @@ namespace Azure.Messaging.EventGrid.Models
public static bool operator !=(Azure.Messaging.EventGrid.Models.AcsRouterJobStatus left, Azure.Messaging.EventGrid.Models.AcsRouterJobStatus right) { throw null; }
public override string ToString() { throw null; }
}
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
[System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)]
public readonly partial struct AcsRouterLabelOperator : System.IEquatable<Azure.Messaging.EventGrid.Models.AcsRouterLabelOperator>
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
namespace Azure.Messaging.EventGrid.Models
{
/// <summary> Router Job Received Job Status. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public readonly partial struct AcsRouterJobStatus : IEquatable<AcsRouterJobStatus>
{
private readonly string _value;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
namespace Azure.Messaging.EventGrid.Models
{
/// <summary> Router Job Worker Selector Label Operator. </summary>
[EditorBrowsable(EditorBrowsableState.Never)]
public readonly partial struct AcsRouterLabelOperator : IEquatable<AcsRouterLabelOperator>
{
private readonly string _value;
Expand Down

0 comments on commit d13cc6b

Please sign in to comment.