< Summary

Class:Microsoft.Azure.Batch.UploadBatchServiceLogsResult
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\UploadBatchServiceLogsResult.cs
Covered lines:7
Uncovered lines:2
Coverable lines:9
Total lines:72
Line coverage:77.7% (7 of 9)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
get_NumberOfFilesUploaded()-100%100%
get_VirtualDirectoryName()-100%100%
Microsoft.Azure.Batch.IModifiable.get_HasBeenModified()-0%100%
Microsoft.Azure.Batch.IReadOnly.get_IsReadOnly()-0%100%
Microsoft.Azure.Batch.IReadOnly.set_IsReadOnly(...)-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\UploadBatchServiceLogsResult.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for license information.
 3//
 4// Code generated by Microsoft (R) AutoRest Code Generator.
 5// Changes may cause incorrect behavior and will be lost if the code is
 6// regenerated.
 7
 8//
 9// This file was autogenerated by a tool.
 10// Do not modify it.
 11//
 12
 13namespace Microsoft.Azure.Batch
 14{
 15    using Models = Microsoft.Azure.Batch.Protocol.Models;
 16    using System;
 17    using System.Collections.Generic;
 18    using System.Linq;
 19
 20    /// <summary>
 21    /// The result of uploading batch service log files from a specific compute node.
 22    /// </summary>
 23    public partial class UploadBatchServiceLogsResult : IPropertyMetadata
 24    {
 25        #region Constructors
 26
 127        internal UploadBatchServiceLogsResult(Models.UploadBatchServiceLogsResult protocolObject)
 28        {
 129            this.NumberOfFilesUploaded = protocolObject.NumberOfFilesUploaded;
 130            this.VirtualDirectoryName = protocolObject.VirtualDirectoryName;
 131        }
 32
 33        #endregion Constructors
 34
 35        #region UploadBatchServiceLogsResult
 36
 37        /// <summary>
 38        /// Gets the number of log files which will be uploaded.
 39        /// </summary>
 140        public int NumberOfFilesUploaded { get; }
 41
 42        /// <summary>
 43        /// Gets the virtual directory within the Azure Blob Storage container to which the Batch Service log file(s) wi
 44        /// be uploaded.
 45        /// </summary>
 46        /// <remarks>
 47        /// The virtual directory name is part of the blob name for each log file uploaded.
 48        /// </remarks>
 149        public string VirtualDirectoryName { get; }
 50
 51        #endregion // UploadBatchServiceLogsResult
 52
 53        #region IPropertyMetadata
 54
 55        bool IModifiable.HasBeenModified
 56        {
 57            //This class is compile time readonly so it cannot have been modified
 058            get { return false; }
 59        }
 60
 61        bool IReadOnly.IsReadOnly
 62        {
 063            get { return true; }
 64            set
 65            {
 66                // This class is compile time readonly already
 167            }
 68        }
 69
 70        #endregion // IPropertyMetadata
 71    }
 72}