예제 #1
0
 /// <summary>
 /// Initializes a new instance of the DataLakeStoreAccountInfo class.
 /// </summary>
 /// <param name="name">the account name of the Data Lake Store
 /// account.</param>
 /// <param name="properties">the properties associated with this Data
 /// Lake Store account.</param>
 public DataLakeStoreAccountInfo(string name, DataLakeStoreAccountInfoProperties properties = default(DataLakeStoreAccountInfoProperties))
 {
     Name       = name;
     Properties = properties;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the AddDataLakeStoreParameters class.
 /// </summary>
 /// <param name="properties">the properties for the Data Lake Store
 /// account being added.</param>
 public AddDataLakeStoreParameters(DataLakeStoreAccountInfoProperties properties)
 {
     Properties = properties;
 }