< Summary

Class:Microsoft.Azure.EventGrid.Models.StorageDirectoryDeletedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\StorageDirectoryDeletedEventData.cs
Covered lines:4
Uncovered lines:16
Coverable lines:20
Total lines:130
Line coverage:20% (4 of 20)
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_Url()-100%100%
get_Recursive()-0%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\StorageDirectoryDeletedEventData.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.DirectoryDeleted event.
 19    /// </summary>
 20    public partial class StorageDirectoryDeletedEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the StorageDirectoryDeletedEventData
 24        /// class.
 25        /// </summary>
 126        public StorageDirectoryDeletedEventData()
 27        {
 28            CustomInit();
 129        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the StorageDirectoryDeletedEventData
 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="url">The path to the deleted directory.</param>
 43        /// <param name="recursive">Is this event for a recursive delete
 44        /// operation.</param>
 45        /// <param name="sequencer">An opaque string value representing the
 46        /// logical sequence of events for any particular directory name. Users
 47        /// can use standard string comparison to understand the relative
 48        /// sequence of two events on the same directory name.</param>
 49        /// <param name="identity">The identity of the requester that triggered
 50        /// this event.</param>
 51        /// <param name="storageDiagnostics">For service use only. Diagnostic
 52        /// data occasionally included by the Azure Storage service. This
 53        /// property should be ignored by event consumers.</param>
 054        public StorageDirectoryDeletedEventData(string api = default(string), string clientRequestId = default(string), 
 55        {
 056            Api = api;
 057            ClientRequestId = clientRequestId;
 058            RequestId = requestId;
 059            Url = url;
 060            Recursive = recursive;
 061            Sequencer = sequencer;
 062            Identity = identity;
 063            StorageDiagnostics = storageDiagnostics;
 64            CustomInit();
 065        }
 66
 67        /// <summary>
 68        /// An initialization method that performs custom operations like setting defaults
 69        /// </summary>
 70        partial void CustomInit();
 71
 72        /// <summary>
 73        /// Gets or sets the name of the API/operation that triggered this
 74        /// event.
 75        /// </summary>
 76        [JsonProperty(PropertyName = "api")]
 077        public string Api { get; set; }
 78
 79        /// <summary>
 80        /// Gets or sets a request id provided by the client of the storage API
 81        /// operation that triggered this event.
 82        /// </summary>
 83        [JsonProperty(PropertyName = "clientRequestId")]
 084        public string ClientRequestId { get; set; }
 85
 86        /// <summary>
 87        /// Gets or sets the request id generated by the storage service for
 88        /// the storage API operation that triggered this event.
 89        /// </summary>
 90        [JsonProperty(PropertyName = "requestId")]
 091        public string RequestId { get; set; }
 92
 93        /// <summary>
 94        /// Gets or sets the path to the deleted directory.
 95        /// </summary>
 96        [JsonProperty(PropertyName = "url")]
 297        public string Url { get; set; }
 98
 99        /// <summary>
 100        /// Gets or sets is this event for a recursive delete operation.
 101        /// </summary>
 102        [JsonProperty(PropertyName = "recursive")]
 0103        public bool? Recursive { get; set; }
 104
 105        /// <summary>
 106        /// Gets or sets an opaque string value representing the logical
 107        /// sequence of events for any particular directory name. Users can use
 108        /// standard string comparison to understand the relative sequence of
 109        /// two events on the same directory name.
 110        /// </summary>
 111        [JsonProperty(PropertyName = "sequencer")]
 0112        public string Sequencer { get; set; }
 113
 114        /// <summary>
 115        /// Gets or sets the identity of the requester that triggered this
 116        /// event.
 117        /// </summary>
 118        [JsonProperty(PropertyName = "identity")]
 0119        public string Identity { get; set; }
 120
 121        /// <summary>
 122        /// Gets or sets for service use only. Diagnostic data occasionally
 123        /// included by the Azure Storage service. This property should be
 124        /// ignored by event consumers.
 125        /// </summary>
 126        [JsonProperty(PropertyName = "storageDiagnostics")]
 2127        public object StorageDiagnostics { get; set; }
 128
 129    }
 130}