Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply EBN to back compat ACS models #39360

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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