< Summary

Class:Microsoft.Azure.Batch.CifsMountConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\CifsMountConfiguration.cs
Covered lines:34
Uncovered lines:2
Coverable lines:36
Total lines:137
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_MountOptions()-100%100%
get_Password()-100%100%
get_RelativeMountPath()-100%100%
get_Source()-100%100%
get_Username()-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.CIFSMountConfiguration>.GetTransportObject()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\Generated\CifsMountConfiguration.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 a CIFS file system.
 22    /// </summary>
 23    public partial class CifsMountConfiguration : ITransportObjectProvider<Models.CIFSMountConfiguration>, IPropertyMeta
 24    {
 25        #region Constructors
 26        /// <summary>
 27        /// Initializes a new instance of the <see cref="CifsMountConfiguration"/> class.
 28        /// </summary>
 29        /// <param name='username'>The user to use for authentication against the CIFS file system.</param>
 30        /// <param name='password'>The password to use for authentication against the CIFS file system.</param>
 31        /// <param name='source'>The URI of the file system to mount.</param>
 32        /// <param name='relativeMountPath'>The relative path on the compute node where the file system will be mounted.
 33        /// <param name='mountOptions'>Additional command line options to pass to the mount command.</param>
 93534        public CifsMountConfiguration(
 93535            string username,
 93536            string password,
 93537            string source,
 93538            string relativeMountPath,
 93539            string mountOptions = default(string))
 40        {
 93541            this.Username = username;
 93542            this.Password = password;
 93543            this.Source = source;
 93544            this.RelativeMountPath = relativeMountPath;
 93545            this.MountOptions = mountOptions;
 93546        }
 47
 134448        internal CifsMountConfiguration(Models.CIFSMountConfiguration protocolObject)
 49        {
 134450            this.MountOptions = protocolObject.MountOptions;
 134451            this.Password = protocolObject.Password;
 134452            this.RelativeMountPath = protocolObject.RelativeMountPath;
 134453            this.Source = protocolObject.Source;
 134454            this.Username = protocolObject.Username;
 134455        }
 56
 57        #endregion Constructors
 58
 59        #region CifsMountConfiguration
 60
 61        /// <summary>
 62        /// Gets additional command line options to pass to the mount command.
 63        /// </summary>
 64        /// <remarks>
 65        /// These are 'net use' options in Windows and 'mount' options in Linux.
 66        /// </remarks>
 321167        public string MountOptions { get; }
 68
 69        /// <summary>
 70        /// Gets the password to use for authentication against the CIFS file system.
 71        /// </summary>
 321172        public string Password { get; }
 73
 74        /// <summary>
 75        /// Gets the relative path on the compute node where the file system will be mounted.
 76        /// </summary>
 77        /// <remarks>
 78        /// All file systems are mounted relative to the Batch mounts directory, accessible via the AZ_BATCH_NODE_MOUNTS
 79        /// environment variable.
 80        /// </remarks>
 321181        public string RelativeMountPath { get; }
 82
 83        /// <summary>
 84        /// Gets the URI of the file system to mount.
 85        /// </summary>
 321186        public string Source { get; }
 87
 88        /// <summary>
 89        /// Gets the user to use for authentication against the CIFS file system.
 90        /// </summary>
 321191        public string Username { get; }
 92
 93        #endregion // CifsMountConfiguration
 94
 95        #region IPropertyMetadata
 96
 97        bool IModifiable.HasBeenModified
 98        {
 99            //This class is compile time readonly so it cannot have been modified
 0100            get { return false; }
 101        }
 102
 103        bool IReadOnly.IsReadOnly
 104        {
 0105            get { return true; }
 106            set
 107            {
 108                // This class is compile time readonly already
 1345109            }
 110        }
 111
 112        #endregion // IPropertyMetadata
 113
 114        #region Internal/private methods
 115
 116        /// <summary>
 117        /// Return a protocol object of the requested type.
 118        /// </summary>
 119        /// <returns>The protocol object of the requested type.</returns>
 120        Models.CIFSMountConfiguration ITransportObjectProvider<Models.CIFSMountConfiguration>.GetTransportObject()
 121        {
 933122            Models.CIFSMountConfiguration result = new Models.CIFSMountConfiguration()
 933123            {
 933124                MountOptions = this.MountOptions,
 933125                Password = this.Password,
 933126                RelativeMountPath = this.RelativeMountPath,
 933127                Source = this.Source,
 933128                Username = this.Username,
 933129            };
 130
 933131            return result;
 132        }
 133
 134
 135        #endregion // Internal/private methods
 136    }
 137}