| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Analytics.Synapse.Artifacts.Models |
| | 11 | | { |
| | 12 | | /// <summary> Azure ML WebService Input/Output file. </summary> |
| | 13 | | public partial class AzureMLWebServiceFile |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of AzureMLWebServiceFile. </summary> |
| | 16 | | /// <param name="filePath"> The relative file path, including container name, in the Azure Blob Storage specifie |
| | 17 | | /// <param name="linkedServiceName"> Reference to an Azure Storage LinkedService, where Azure ML WebService Inpu |
| | 18 | | /// <exception cref="ArgumentNullException"> <paramref name="filePath"/> or <paramref name="linkedServiceName"/> |
| 0 | 19 | | public AzureMLWebServiceFile(object filePath, LinkedServiceReference linkedServiceName) |
| | 20 | | { |
| 0 | 21 | | if (filePath == null) |
| | 22 | | { |
| 0 | 23 | | throw new ArgumentNullException(nameof(filePath)); |
| | 24 | | } |
| 0 | 25 | | if (linkedServiceName == null) |
| | 26 | | { |
| 0 | 27 | | throw new ArgumentNullException(nameof(linkedServiceName)); |
| | 28 | | } |
| | 29 | |
|
| 0 | 30 | | FilePath = filePath; |
| 0 | 31 | | LinkedServiceName = linkedServiceName; |
| 0 | 32 | | } |
| | 33 | |
|
| | 34 | | /// <summary> The relative file path, including container name, in the Azure Blob Storage specified by the Linke |
| 0 | 35 | | public object FilePath { get; set; } |
| | 36 | | /// <summary> Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located. |
| 0 | 37 | | public LinkedServiceReference LinkedServiceName { get; set; } |
| | 38 | | } |
| | 39 | | } |