Skip to content

Commit 36e91b5

Browse files
Type forward system events (Azure#50371)
* WIP * WIP * clean up * wip * wip * wip * regen * wip * WIP * WIP * regen * regen * Rev major version * api file * update commit
1 parent 7c259a7 commit 36e91b5

File tree

1,079 files changed

+9175
-59376
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,079 files changed

+9175
-59376
lines changed

sdk/eventgrid/Azure.Messaging.EventGrid.SystemEvents/api/Azure.Messaging.EventGrid.SystemEvents.net8.0.cs

Lines changed: 1759 additions & 1174 deletions
Large diffs are not rendered by default.

sdk/eventgrid/Azure.Messaging.EventGrid.SystemEvents/api/Azure.Messaging.EventGrid.SystemEvents.netstandard2.0.cs

Lines changed: 1759 additions & 1174 deletions
Large diffs are not rendered by default.
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
namespace Azure.Messaging.EventGrid.SystemEvents
5+
{
6+
internal static class Constants
7+
{
8+
internal static class MediaEvents
9+
{
10+
internal const string NotApplicable = "n/a";
11+
}
12+
}
13+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
7+
namespace Azure.Messaging.EventGrid.SystemEvents
8+
{
9+
public partial class AcsChatThreadCreatedEventData
10+
{
11+
/// <summary>
12+
/// Gets the properties of the chat thread created event.
13+
/// </summary>
14+
public IReadOnlyDictionary<string, object> Properties { get; }
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
7+
namespace Azure.Messaging.EventGrid.SystemEvents
8+
{
9+
public partial class AcsChatThreadCreatedWithUserEventData
10+
{
11+
/// <summary>
12+
/// Gets the properties of the chat thread created with user event.
13+
/// </summary>
14+
public IReadOnlyDictionary<string, object> Properties { get; }
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
7+
namespace Azure.Messaging.EventGrid.SystemEvents
8+
{
9+
public partial class AcsChatThreadPropertiesUpdatedEventData
10+
{
11+
/// <summary>
12+
/// Gets the properties of the chat thread updated event.
13+
/// </summary>
14+
public IReadOnlyDictionary<string, object> Properties { get; }
15+
}
16+
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
using System;
5+
using System.Collections.Generic;
6+
7+
namespace Azure.Messaging.EventGrid.SystemEvents
8+
{
9+
public partial class AcsChatThreadPropertiesUpdatedPerUserEventData
10+
{
11+
/// <summary>
12+
/// The properties of the chat thread that were updated for the user.
13+
/// </summary>
14+
public IReadOnlyDictionary<string, object> Properties { get; }
15+
}
16+
}

0 commit comments

Comments
 (0)