< Summary

Class:Microsoft.Azure.EventGrid.Models.StorageBlobDeletedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\StorageBlobDeletedEventData.cs
Covered lines:4
Uncovered lines:18
Coverable lines:22
Total lines:140
Line coverage:18.1% (4 of 22)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_Api()-0%100%
get_ClientRequestId()-0%100%
get_RequestId()-0%100%
get_ContentType()-0%100%
get_BlobType()-0%100%
get_Url()-100%100%
get_Sequencer()-0%100%
get_Identity()-0%100%
get_StorageDiagnostics()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\StorageBlobDeletedEventData.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Schema of the Data property of an EventGridEvent for an
 18    /// Microsoft.Storage.BlobDeleted event.
 19    /// </summary>
 20    public partial class StorageBlobDeletedEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the StorageBlobDeletedEventData
 24        /// class.
 25        /// </summary>
 426        public StorageBlobDeletedEventData()
 27        {
 28            CustomInit();
 429        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the StorageBlobDeletedEventData
 33        /// class.
 34        /// </summary>
 35        /// <param name="api">The name of the API/operation that triggered this
 36        /// event.</param>
 37        /// <param name="clientRequestId">A request id provided by the client
 38        /// of the storage API operation that triggered this event.</param>
 39        /// <param name="requestId">The request id generated by the Storage
 40        /// service for the storage API operation that triggered this
 41        /// event.</param>
 42        /// <param name="contentType">The content type of the blob. This is the
 43        /// same as what would be returned in the Content-Type header from the
 44        /// blob.</param>
 45        /// <param name="blobType">The type of blob.</param>
 46        /// <param name="url">The path to the blob.</param>
 47        /// <param name="sequencer">An opaque string value representing the
 48        /// logical sequence of events for any particular blob name. Users can
 49        /// use standard string comparison to understand the relative sequence
 50        /// of two events on the same blob name.</param>
 51        /// <param name="identity">The identity of the requester that triggered
 52        /// this event.</param>
 53        /// <param name="storageDiagnostics">For service use only. Diagnostic
 54        /// data occasionally included by the Azure Storage service. This
 55        /// property should be ignored by event consumers.</param>
 056        public StorageBlobDeletedEventData(string api = default(string), string clientRequestId = default(string), strin
 57        {
 058            Api = api;
 059            ClientRequestId = clientRequestId;
 060            RequestId = requestId;
 061            ContentType = contentType;
 062            BlobType = blobType;
 063            Url = url;
 064            Sequencer = sequencer;
 065            Identity = identity;
 066            StorageDiagnostics = storageDiagnostics;
 67            CustomInit();
 068        }
 69
 70        /// <summary>
 71        /// An initialization method that performs custom operations like setting defaults
 72        /// </summary>
 73        partial void CustomInit();
 74
 75        /// <summary>
 76        /// Gets or sets the name of the API/operation that triggered this
 77        /// event.
 78        /// </summary>
 79        [JsonProperty(PropertyName = "api")]
 080        public string Api { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets a request id provided by the client of the storage API
 84        /// operation that triggered this event.
 85        /// </summary>
 86        [JsonProperty(PropertyName = "clientRequestId")]
 087        public string ClientRequestId { get; set; }
 88
 89        /// <summary>
 90        /// Gets or sets the request id generated by the Storage service for
 91        /// the storage API operation that triggered this event.
 92        /// </summary>
 93        [JsonProperty(PropertyName = "requestId")]
 094        public string RequestId { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets the content type of the blob. This is the same as what
 98        /// would be returned in the Content-Type header from the blob.
 99        /// </summary>
 100        [JsonProperty(PropertyName = "contentType")]
 0101        public string ContentType { get; set; }
 102
 103        /// <summary>
 104        /// Gets or sets the type of blob.
 105        /// </summary>
 106        [JsonProperty(PropertyName = "blobType")]
 0107        public string BlobType { get; set; }
 108
 109        /// <summary>
 110        /// Gets or sets the path to the blob.
 111        /// </summary>
 112        [JsonProperty(PropertyName = "url")]
 7113        public string Url { get; set; }
 114
 115        /// <summary>
 116        /// Gets or sets an opaque string value representing the logical
 117        /// sequence of events for any particular blob name. Users can use
 118        /// standard string comparison to understand the relative sequence of
 119        /// two events on the same blob name.
 120        /// </summary>
 121        [JsonProperty(PropertyName = "sequencer")]
 0122        public string Sequencer { get; set; }
 123
 124        /// <summary>
 125        /// Gets or sets the identity of the requester that triggered this
 126        /// event.
 127        /// </summary>
 128        [JsonProperty(PropertyName = "identity")]
 0129        public string Identity { get; set; }
 130
 131        /// <summary>
 132        /// Gets or sets for service use only. Diagnostic data occasionally
 133        /// included by the Azure Storage service. This property should be
 134        /// ignored by event consumers.
 135        /// </summary>
 136        [JsonProperty(PropertyName = "storageDiagnostics")]
 8137        public object StorageDiagnostics { get; set; }
 138
 139    }
 140}