File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
src/ResourceManager/DataLakeAnalytics/Commands.DataLakeAnalytics/Models Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -26,17 +26,46 @@ namespace Microsoft.Azure.Commands.DataLakeAnalytics.Models
26
26
/// </summary>
27
27
public class AdlDataSource
28
28
{
29
+ /// <summary>
30
+ /// Gets the type of the data source
31
+ /// </summary>
32
+ /// <value>
33
+ /// The type.
34
+ /// </value>
29
35
public DataLakeAnalyticsEnums . DataSourceType Type { get ; private set ; }
36
+
37
+ /// <summary>
38
+ /// Gets the name of the data source
39
+ /// </summary>
40
+ /// <value>
41
+ /// The name.
42
+ /// </value>
30
43
public string Name { get ; private set ; }
44
+
45
+ /// <summary>
46
+ /// Gets a value indicating whether this data source is the default.
47
+ /// </summary>
48
+ /// <value>
49
+ /// <c>true</c> if this data source is the default; otherwise, <c>false</c>.
50
+ /// </value>
31
51
public bool IsDefault { get ; private set ; }
32
52
53
+ /// <summary>
54
+ /// Initializes a new instance of the <see cref="AdlDataSource"/> class.
55
+ /// </summary>
56
+ /// <param name="dataSourceInfo">The data source information.</param>
57
+ /// <param name="isDefault">if set to <c>true</c> [is default].</param>
33
58
public AdlDataSource ( DataLakeStoreAccountInfo dataSourceInfo , bool isDefault = false )
34
59
{
35
60
Name = dataSourceInfo . Name ;
36
61
Type = DataLakeAnalyticsEnums . DataSourceType . DataLakeStore ;
37
62
IsDefault = isDefault ;
38
63
}
39
64
65
+ /// <summary>
66
+ /// Initializes a new instance of the <see cref="AdlDataSource"/> class.
67
+ /// </summary>
68
+ /// <param name="dataSourceInfo">The data source information.</param>
40
69
public AdlDataSource ( StorageAccountInfo dataSourceInfo )
41
70
{
42
71
Name = dataSourceInfo . Name ;
You can’t perform that action at this time.
0 commit comments