| | 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.BlobCreated event. </summary |
| | 11 | | public partial class StorageBlobCreatedEventData |
| | 12 | | { |
| | 13 | | /// <summary> Initializes a new instance of StorageBlobCreatedEventData. </summary> |
| 0 | 14 | | internal StorageBlobCreatedEventData() |
| | 15 | | { |
| 0 | 16 | | } |
| | 17 | |
|
| | 18 | | /// <summary> Initializes a new instance of StorageBlobCreatedEventData. </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="eTag"> The etag of the blob at the time this event was triggered. </param> |
| | 23 | | /// <param name="contentType"> The content type of the blob. This is the same as what would be returned in the C |
| | 24 | | /// <param name="contentLength"> The size of the blob in bytes. This is the same as what would be returned in th |
| | 25 | | /// <param name="contentOffset"> The offset of the blob in bytes. </param> |
| | 26 | | /// <param name="blobType"> The type of blob. </param> |
| | 27 | | /// <param name="url"> The path to the blob. </param> |
| | 28 | | /// <param name="sequencer"> An opaque string value representing the logical sequence of events for any particul |
| | 29 | | /// <param name="identity"> The identity of the requester that triggered this event. </param> |
| | 30 | | /// <param name="storageDiagnostics"> For service use only. Diagnostic data occasionally included by the Azure S |
| 6 | 31 | | internal StorageBlobCreatedEventData(string api, string clientRequestId, string requestId, string eTag, string c |
| | 32 | | { |
| 6 | 33 | | Api = api; |
| 6 | 34 | | ClientRequestId = clientRequestId; |
| 6 | 35 | | RequestId = requestId; |
| 6 | 36 | | ETag = eTag; |
| 6 | 37 | | ContentType = contentType; |
| 6 | 38 | | ContentLength = contentLength; |
| 6 | 39 | | ContentOffset = contentOffset; |
| 6 | 40 | | BlobType = blobType; |
| 6 | 41 | | Url = url; |
| 6 | 42 | | Sequencer = sequencer; |
| 6 | 43 | | Identity = identity; |
| 6 | 44 | | StorageDiagnostics = storageDiagnostics; |
| 6 | 45 | | } |
| | 46 | |
|
| | 47 | | /// <summary> The name of the API/operation that triggered this event. </summary> |
| 0 | 48 | | public string Api { get; } |
| | 49 | | /// <summary> A request id provided by the client of the storage API operation that triggered this event. </summ |
| 0 | 50 | | public string ClientRequestId { get; } |
| | 51 | | /// <summary> The request id generated by the Storage service for the storage API operation that triggered this |
| 0 | 52 | | public string RequestId { get; } |
| | 53 | | /// <summary> The etag of the blob at the time this event was triggered. </summary> |
| 0 | 54 | | public string ETag { get; } |
| | 55 | | /// <summary> The content type of the blob. This is the same as what would be returned in the Content-Type heade |
| 0 | 56 | | public string ContentType { get; } |
| | 57 | | /// <summary> The size of the blob in bytes. This is the same as what would be returned in the Content-Length he |
| 0 | 58 | | public long? ContentLength { get; } |
| | 59 | | /// <summary> The offset of the blob in bytes. </summary> |
| 0 | 60 | | public long? ContentOffset { get; } |
| | 61 | | /// <summary> The type of blob. </summary> |
| 0 | 62 | | public string BlobType { get; } |
| | 63 | | /// <summary> The path to the blob. </summary> |
| 2 | 64 | | public string Url { get; } |
| | 65 | | /// <summary> An opaque string value representing the logical sequence of events for any particular blob name. U |
| 0 | 66 | | public string Sequencer { get; } |
| | 67 | | /// <summary> The identity of the requester that triggered this event. </summary> |
| 0 | 68 | | public string Identity { get; } |
| | 69 | | /// <summary> For service use only. Diagnostic data occasionally included by the Azure Storage service. This pro |
| 0 | 70 | | public object StorageDiagnostics { get; } |
| | 71 | | } |
| | 72 | | } |