< Summary

Class:Microsoft.Azure.Batch.Protocol.Models.MountConfiguration
Assembly:Microsoft.Azure.Batch
File(s):C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\MountConfiguration.cs
Covered lines:6
Uncovered lines:6
Coverable lines:12
Total lines:92
Line coverage:50% (6 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AzureBlobFileSystemConfiguration()-100%100%
get_NfsMountConfiguration()-100%100%
get_CifsMountConfiguration()-100%100%
get_AzureFileShareConfiguration()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\batch\Microsoft.Azure.Batch\src\GeneratedProtocol\Models\MountConfiguration.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.Batch.Protocol.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// The file system to mount on each node.
 18    /// </summary>
 19    public partial class MountConfiguration
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the MountConfiguration class.
 23        /// </summary>
 351724        public MountConfiguration()
 25        {
 26            CustomInit();
 351727        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the MountConfiguration class.
 31        /// </summary>
 32        /// <param name="azureBlobFileSystemConfiguration">The Azure Storage
 33        /// Container to mount using blob FUSE on each node.</param>
 34        /// <param name="nfsMountConfiguration">The NFS file system to mount on
 35        /// each node.</param>
 36        /// <param name="cifsMountConfiguration">The CIFS/SMB file system to
 37        /// mount on each node.</param>
 38        /// <param name="azureFileShareConfiguration">The Azure File Share to
 39        /// mount on each node.</param>
 040        public MountConfiguration(AzureBlobFileSystemConfiguration azureBlobFileSystemConfiguration = default(AzureBlobF
 41        {
 042            AzureBlobFileSystemConfiguration = azureBlobFileSystemConfiguration;
 043            NfsMountConfiguration = nfsMountConfiguration;
 044            CifsMountConfiguration = cifsMountConfiguration;
 045            AzureFileShareConfiguration = azureFileShareConfiguration;
 46            CustomInit();
 047        }
 48
 49        /// <summary>
 50        /// An initialization method that performs custom operations like setting defaults
 51        /// </summary>
 52        partial void CustomInit();
 53
 54        /// <summary>
 55        /// Gets or sets the Azure Storage Container to mount using blob FUSE
 56        /// on each node.
 57        /// </summary>
 58        /// <remarks>
 59        /// This property is mutually exclusive with all other properties.
 60        /// </remarks>
 61        [JsonProperty(PropertyName = "azureBlobFileSystemConfiguration")]
 840662        public AzureBlobFileSystemConfiguration AzureBlobFileSystemConfiguration { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets the NFS file system to mount on each node.
 66        /// </summary>
 67        /// <remarks>
 68        /// This property is mutually exclusive with all other properties.
 69        /// </remarks>
 70        [JsonProperty(PropertyName = "nfsMountConfiguration")]
 839771        public NFSMountConfiguration NfsMountConfiguration { get; set; }
 72
 73        /// <summary>
 74        /// Gets or sets the CIFS/SMB file system to mount on each node.
 75        /// </summary>
 76        /// <remarks>
 77        /// This property is mutually exclusive with all other properties.
 78        /// </remarks>
 79        [JsonProperty(PropertyName = "cifsMountConfiguration")]
 837880        public CIFSMountConfiguration CifsMountConfiguration { get; set; }
 81
 82        /// <summary>
 83        /// Gets or sets the Azure File Share to mount on each node.
 84        /// </summary>
 85        /// <remarks>
 86        /// This property is mutually exclusive with all other properties.
 87        /// </remarks>
 88        [JsonProperty(PropertyName = "azureFileShareConfiguration")]
 838589        public AzureFileShareConfiguration AzureFileShareConfiguration { get; set; }
 90
 91    }
 92}