-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
HttpServerLocation.cs
38 lines (32 loc) · 1.9 KB
/
HttpServerLocation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections.Generic;
using Azure.Core.Expressions.DataFactory;
namespace Azure.ResourceManager.DataFactory.Models
{
/// <summary> The location of http server. </summary>
public partial class HttpServerLocation : DatasetLocation
{
/// <summary> Initializes a new instance of <see cref="HttpServerLocation"/>. </summary>
public HttpServerLocation()
{
DatasetLocationType = "HttpServerLocation";
}
/// <summary> Initializes a new instance of <see cref="HttpServerLocation"/>. </summary>
/// <param name="datasetLocationType"> Type of dataset storage location. </param>
/// <param name="folderPath"> Specify the folder path of dataset. Type: string (or Expression with resultType string). </param>
/// <param name="fileName"> Specify the file name of dataset. Type: string (or Expression with resultType string). </param>
/// <param name="additionalProperties"> Additional Properties. </param>
/// <param name="relativeUri"> Specify the relativeUrl of http server. Type: string (or Expression with resultType string). </param>
internal HttpServerLocation(string datasetLocationType, DataFactoryElement<string> folderPath, DataFactoryElement<string> fileName, IDictionary<string, BinaryData> additionalProperties, DataFactoryElement<string> relativeUri) : base(datasetLocationType, folderPath, fileName, additionalProperties)
{
RelativeUri = relativeUri;
DatasetLocationType = datasetLocationType ?? "HttpServerLocation";
}
/// <summary> Specify the relativeUrl of http server. Type: string (or Expression with resultType string). </summary>
public DataFactoryElement<string> RelativeUri { get; set; }
}
}