< Summary

Class:Microsoft.Azure.Batch.AzureFileShareConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\AzureFileShareConfiguration.cs
Covered lines:34
Uncovered lines:2
Coverable lines:36
Total lines:140
Line coverage:94.4% (34 of 36)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor(...)-100%100%
.ctor(...)-100%100%
get_AccountKey()-100%100%
get_AccountName()-100%100%
get_AzureFileUrl()-100%100%
get_MountOptions()-100%100%
get_RelativeMountPath()-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%
Microsoft.Azure.Batch.ITransportObjectProvider<Microsoft.Azure.Batch.Protocol.Models.AzureFileShareConfiguration>.GetTransportObject()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\AzureFileShareConfiguration.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    /// Information used to connect to an Azure Fileshare.
 22    /// </summary>
 23    public partial class AzureFileShareConfiguration : ITransportObjectProvider<Models.AzureFileShareConfiguration>, IPr
 24    {
 25        #region Constructors
 26        /// <summary>
 27        /// Initializes a new instance of the <see cref="AzureFileShareConfiguration"/> class.
 28        /// </summary>
 29        /// <param name='accountName'>The Azure Storage Account name.</param>
 30        /// <param name='azureFileUrl'>The Azure Files URL.</param>
 31        /// <param name='relativeMountPath'>The relative path on the compute node where the file system will be mounted.
 32        /// <param name='accountKey'>The Azure Storage Account key.</param>
 33        /// <param name='mountOptions'>Additional command line options to pass to the mount command.</param>
 93534        public AzureFileShareConfiguration(
 93535            string accountName,
 93536            string azureFileUrl,
 93537            string relativeMountPath,
 93538            string accountKey,
 93539            string mountOptions = default(string))
 40        {
 93541            this.AccountName = accountName;
 93542            this.AzureFileUrl = azureFileUrl;
 93543            this.RelativeMountPath = relativeMountPath;
 93544            this.AccountKey = accountKey;
 93545            this.MountOptions = mountOptions;
 93546        }
 47
 135148        internal AzureFileShareConfiguration(Models.AzureFileShareConfiguration protocolObject)
 49        {
 135150            this.AccountKey = protocolObject.AccountKey;
 135151            this.AccountName = protocolObject.AccountName;
 135152            this.AzureFileUrl = protocolObject.AzureFileUrl;
 135153            this.MountOptions = protocolObject.MountOptions;
 135154            this.RelativeMountPath = protocolObject.RelativeMountPath;
 135155        }
 56
 57        #endregion Constructors
 58
 59        #region AzureFileShareConfiguration
 60
 61        /// <summary>
 62        /// Gets the Azure Storage Account key.
 63        /// </summary>
 321864        public string AccountKey { get; }
 65
 66        /// <summary>
 67        /// Gets the Azure Storage Account name.
 68        /// </summary>
 321869        public string AccountName { get; }
 70
 71        /// <summary>
 72        /// Gets the Azure Files URL.
 73        /// </summary>
 74        /// <remarks>
 75        /// This is of the form 'https://myaccount.file.core.windows.net/'.
 76        /// </remarks>
 321877        public string AzureFileUrl { get; }
 78
 79        /// <summary>
 80        /// Gets additional command line options to pass to the mount command.
 81        /// </summary>
 82        /// <remarks>
 83        /// These are 'net use' options in Windows and 'mount' options in Linux.
 84        /// </remarks>
 321885        public string MountOptions { get; }
 86
 87        /// <summary>
 88        /// Gets the relative path on the compute node where the file system will be mounted.
 89        /// </summary>
 90        /// <remarks>
 91        /// All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS
 92        /// environment variable.
 93        /// </remarks>
 321894        public string RelativeMountPath { get; }
 95
 96        #endregion // AzureFileShareConfiguration
 97
 98        #region IPropertyMetadata
 99
 100        bool IModifiable.HasBeenModified
 101        {
 102            //This class is compile time readonly so it cannot have been modified
 0103            get { return false; }
 104        }
 105
 106        bool IReadOnly.IsReadOnly
 107        {
 0108            get { return true; }
 109            set
 110            {
 111                // This class is compile time readonly already
 1352112            }
 113        }
 114
 115        #endregion // IPropertyMetadata
 116
 117        #region Internal/private methods
 118
 119        /// <summary>
 120        /// Return a protocol object of the requested type.
 121        /// </summary>
 122        /// <returns>The protocol object of the requested type.</returns>
 123        Models.AzureFileShareConfiguration ITransportObjectProvider<Models.AzureFileShareConfiguration>.GetTransportObje
 124        {
 933125            Models.AzureFileShareConfiguration result = new Models.AzureFileShareConfiguration()
 933126            {
 933127                AccountKey = this.AccountKey,
 933128                AccountName = this.AccountName,
 933129                AzureFileUrl = this.AzureFileUrl,
 933130                MountOptions = this.MountOptions,
 933131                RelativeMountPath = this.RelativeMountPath,
 933132            };
 133
 933134            return result;
 135        }
 136
 137
 138        #endregion // Internal/private methods
 139    }
 140}