| | | 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.Storage.DirectoryDeleted event. </su |
| | | 11 | | public partial class StorageDirectoryDeletedEventData |
| | | 12 | | { |
| | | 13 | | /// <summary> Initializes a new instance of StorageDirectoryDeletedEventData. </summary> |
| | 0 | 14 | | internal StorageDirectoryDeletedEventData() |
| | | 15 | | { |
| | 0 | 16 | | } |
| | | 17 | | |
| | | 18 | | /// <summary> Initializes a new instance of StorageDirectoryDeletedEventData. </summary> |
| | | 19 | | /// <param name="api"> The name of the API/operation that triggered this event. </param> |
| | | 20 | | /// <param name="clientRequestId"> A request id provided by the client of the storage API operation that trigger |
| | | 21 | | /// <param name="requestId"> The request id generated by the storage service for the storage API operation that |
| | | 22 | | /// <param name="url"> The path to the deleted directory. </param> |
| | | 23 | | /// <param name="recursive"> Is this event for a recursive delete operation. </param> |
| | | 24 | | /// <param name="sequencer"> An opaque string value representing the logical sequence of events for any particul |
| | | 25 | | /// <param name="identity"> The identity of the requester that triggered this event. </param> |
| | | 26 | | /// <param name="storageDiagnostics"> For service use only. Diagnostic data occasionally included by the Azure S |
| | 2 | 27 | | internal StorageDirectoryDeletedEventData(string api, string clientRequestId, string requestId, string url, bool |
| | | 28 | | { |
| | 2 | 29 | | Api = api; |
| | 2 | 30 | | ClientRequestId = clientRequestId; |
| | 2 | 31 | | RequestId = requestId; |
| | 2 | 32 | | Url = url; |
| | 2 | 33 | | Recursive = recursive; |
| | 2 | 34 | | Sequencer = sequencer; |
| | 2 | 35 | | Identity = identity; |
| | 2 | 36 | | StorageDiagnostics = storageDiagnostics; |
| | 2 | 37 | | } |
| | | 38 | | |
| | | 39 | | /// <summary> The name of the API/operation that triggered this event. </summary> |
| | 0 | 40 | | public string Api { get; } |
| | | 41 | | /// <summary> A request id provided by the client of the storage API operation that triggered this event. </summ |
| | 0 | 42 | | public string ClientRequestId { get; } |
| | | 43 | | /// <summary> The request id generated by the storage service for the storage API operation that triggered this |
| | 0 | 44 | | public string RequestId { get; } |
| | | 45 | | /// <summary> The path to the deleted directory. </summary> |
| | 2 | 46 | | public string Url { get; } |
| | | 47 | | /// <summary> Is this event for a recursive delete operation. </summary> |
| | 0 | 48 | | public bool? Recursive { get; } |
| | | 49 | | /// <summary> An opaque string value representing the logical sequence of events for any particular directory na |
| | 0 | 50 | | public string Sequencer { get; } |
| | | 51 | | /// <summary> The identity of the requester that triggered this event. </summary> |
| | 0 | 52 | | public string Identity { get; } |
| | | 53 | | /// <summary> For service use only. Diagnostic data occasionally included by the Azure Storage service. This pro |
| | 0 | 54 | | public object StorageDiagnostics { get; } |
| | | 55 | | } |
| | | 56 | | } |