< Summary

Class:Microsoft.Azure.EventGrid.Models.StorageDirectoryRenamedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\StorageDirectoryRenamedEventData.cs
Covered lines:4
Uncovered lines:16
Coverable lines:20
Total lines:132
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_SourceUrl()-0%100%
get_DestinationUrl()-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\StorageDirectoryRenamedEventData.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.DirectoryRenamed event.
 19    /// </summary>
 20    public partial class StorageDirectoryRenamedEventData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the StorageDirectoryRenamedEventData
 24        /// class.
 25        /// </summary>
 126        public StorageDirectoryRenamedEventData()
 27        {
 28            CustomInit();
 129        }
 30
 31        /// <summary>
 32        /// Initializes a new instance of the StorageDirectoryRenamedEventData
 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="sourceUrl">The path to the directory that was
 43        /// renamed.</param>
 44        /// <param name="destinationUrl">The new path to the directory after
 45        /// the rename operation.</param>
 46        /// <param name="sequencer">An opaque string value representing the
 47        /// logical sequence of events for any particular directory name. Users
 48        /// can use standard string comparison to understand the relative
 49        /// sequence of two events on the same directory name.</param>
 50        /// <param name="identity">The identity of the requester that triggered
 51        /// this event.</param>
 52        /// <param name="storageDiagnostics">For service use only. Diagnostic
 53        /// data occasionally included by the Azure Storage service. This
 54        /// property should be ignored by event consumers.</param>
 055        public StorageDirectoryRenamedEventData(string api = default(string), string clientRequestId = default(string), 
 56        {
 057            Api = api;
 058            ClientRequestId = clientRequestId;
 059            RequestId = requestId;
 060            SourceUrl = sourceUrl;
 061            DestinationUrl = destinationUrl;
 062            Sequencer = sequencer;
 063            Identity = identity;
 064            StorageDiagnostics = storageDiagnostics;
 65            CustomInit();
 066        }
 67
 68        /// <summary>
 69        /// An initialization method that performs custom operations like setting defaults
 70        /// </summary>
 71        partial void CustomInit();
 72
 73        /// <summary>
 74        /// Gets or sets the name of the API/operation that triggered this
 75        /// event.
 76        /// </summary>
 77        [JsonProperty(PropertyName = "api")]
 078        public string Api { get; set; }
 79
 80        /// <summary>
 81        /// Gets or sets a request id provided by the client of the storage API
 82        /// operation that triggered this event.
 83        /// </summary>
 84        [JsonProperty(PropertyName = "clientRequestId")]
 085        public string ClientRequestId { get; set; }
 86
 87        /// <summary>
 88        /// Gets or sets the request id generated by the storage service for
 89        /// the storage API operation that triggered this event.
 90        /// </summary>
 91        [JsonProperty(PropertyName = "requestId")]
 092        public string RequestId { get; set; }
 93
 94        /// <summary>
 95        /// Gets or sets the path to the directory that was renamed.
 96        /// </summary>
 97        [JsonProperty(PropertyName = "sourceUrl")]
 098        public string SourceUrl { get; set; }
 99
 100        /// <summary>
 101        /// Gets or sets the new path to the directory after the rename
 102        /// operation.
 103        /// </summary>
 104        [JsonProperty(PropertyName = "destinationUrl")]
 2105        public string DestinationUrl { get; set; }
 106
 107        /// <summary>
 108        /// Gets or sets an opaque string value representing the logical
 109        /// sequence of events for any particular directory name. Users can use
 110        /// standard string comparison to understand the relative sequence of
 111        /// two events on the same directory name.
 112        /// </summary>
 113        [JsonProperty(PropertyName = "sequencer")]
 0114        public string Sequencer { get; set; }
 115
 116        /// <summary>
 117        /// Gets or sets the identity of the requester that triggered this
 118        /// event.
 119        /// </summary>
 120        [JsonProperty(PropertyName = "identity")]
 0121        public string Identity { get; set; }
 122
 123        /// <summary>
 124        /// Gets or sets for service use only. Diagnostic data occasionally
 125        /// included by the Azure Storage service. This property should be
 126        /// ignored by event consumers.
 127        /// </summary>
 128        [JsonProperty(PropertyName = "storageDiagnostics")]
 2129        public object StorageDiagnostics { get; set; }
 130
 131    }
 132}