| | | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | | 2 | | // Licensed under the MIT License. |
| | | 3 | | |
| | | 4 | | // <auto-generated/> |
| | | 5 | | |
| | | 6 | | #nullable disable |
| | | 7 | | |
| | | 8 | | namespace Azure.Messaging.EventGrid.SystemEvents |
| | | 9 | | { |
| | | 10 | | /// <summary> Schema of the Data property of an EventGridEvent for an Microsoft.AppConfiguration.KeyValueModified ev |
| | | 11 | | public partial class AppConfigurationKeyValueModifiedEventData |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of AppConfigurationKeyValueModifiedEventData. </summary> |
| | 0 | 14 | | internal AppConfigurationKeyValueModifiedEventData() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of AppConfigurationKeyValueModifiedEventData. </summary> |
| | | 19 | | /// <param name="key"> The key used to identify the key-value that was modified. </param> |
| | | 20 | | /// <param name="label"> The label, if any, used to identify the key-value that was modified. </param> |
| | | 21 | | /// <param name="etag"> The etag representing the new state of the key-value. </param> |
| | 2 | 22 | | internal AppConfigurationKeyValueModifiedEventData(string key, string label, string etag) |
| | | 23 | | { |
| | 2 | 24 | | Key = key; |
| | 2 | 25 | | Label = label; |
| | 2 | 26 | | Etag = etag; |
| | 2 | 27 | | } |
| | | 28 | | |
| | | 29 | | /// <summary> The key used to identify the key-value that was modified. </summary> |
| | 2 | 30 | | public string Key { get; } |
| | | 31 | | /// <summary> The label, if any, used to identify the key-value that was modified. </summary> |
| | 0 | 32 | | public string Label { get; } |
| | | 33 | | /// <summary> The etag representing the new state of the key-value. </summary> |
| | 0 | 34 | | public string Etag { get; } |
| | | 35 | | } |
| | | 36 | | } |