| | 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 | |
|
| | 11 | | namespace 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> |
| 3517 | 24 | | public MountConfiguration() |
| | 25 | | { |
| | 26 | | CustomInit(); |
| 3517 | 27 | | } |
| | 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> |
| 0 | 40 | | public MountConfiguration(AzureBlobFileSystemConfiguration azureBlobFileSystemConfiguration = default(AzureBlobF |
| | 41 | | { |
| 0 | 42 | | AzureBlobFileSystemConfiguration = azureBlobFileSystemConfiguration; |
| 0 | 43 | | NfsMountConfiguration = nfsMountConfiguration; |
| 0 | 44 | | CifsMountConfiguration = cifsMountConfiguration; |
| 0 | 45 | | AzureFileShareConfiguration = azureFileShareConfiguration; |
| | 46 | | CustomInit(); |
| 0 | 47 | | } |
| | 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")] |
| 8406 | 62 | | 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")] |
| 8397 | 71 | | 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")] |
| 8378 | 80 | | 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")] |
| 8385 | 89 | | public AzureFileShareConfiguration AzureFileShareConfiguration { get; set; } |
| | 90 | |
|
| | 91 | | } |
| | 92 | | } |