Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
6a23994
Fix Az.ContainerRegistry Xml Comments (#18388)
v-yuzhichen Jun 13, 2022
ba7bae1
Fix Az.CosmosDB XML Comments (#18401)
v-yuzhichen Jun 13, 2022
fa6e646
Fix Az.DataBoxEdge XML Comments (#18402)
v-yuzhichen Jun 13, 2022
5f0d4e8
Fix Az.Automation XML Comments (#18407)
v-yuzhichen Jun 13, 2022
0dc7c19
Fix Az.DataLakeAnalytics XML Comments (#18403)
v-yuzhichen Jun 13, 2022
b470c3b
Fix Az.Compute XML Comments (#18408)
v-yuzhichen Jun 13, 2022
fe1dcfa
Fix Az.DataLakeStore XML Comments (#18421)
v-yuzhichen Jun 13, 2022
243bafb
Fix Az.DataMigration XML Comments (#18422)
v-yuzhichen Jun 13, 2022
2c724d8
Fix Az.EventHub XML Comments (#18429)
v-yuzhichen Jun 13, 2022
f15e544
Fix Az.HDInsight XML Comments (#18432)
v-yuzhichen Jun 13, 2022
48459f0
Fix Az.IotHub XML Comments (#18433)
v-yuzhichen Jun 13, 2022
ec74bc3
[CosmosDB] Fixes issue with Update-AzCosmosDBSqlContainer command on …
kr-santosh Jun 14, 2022
23ffff9
Bug fix for the Restore-AzSqlDatabase cmdlet (#18475)
imadan1996 Jun 14, 2022
567d576
Remove WebsitesController (#18469)
Jun 14, 2022
a5e2a83
Fixed issue when mimicing long running operation for test in Playback…
vidai-msft Jun 14, 2022
cdeb8f0
[Az.DataProtection] OOB for Az.DataProtection (#18477)
VeryEarly Jun 15, 2022
acae733
Enable ARM to the Private Link connection Cmdlets (#18358)
Vishakha-Git Jun 15, 2022
573b1bb
Initial changes for network manager resources
Jun 10, 2022
8154eca
add network manager models
Jun 10, 2022
d09407e
added all network maneger files
Jun 10, 2022
ef9330b
update signature issues and project files containing network reference
Jun 11, 2022
6716bf5
remove version bump, will be generated
Jun 11, 2022
3095753
add all helps docs for network manager commands
Jun 11, 2022
0e73999
Update Remove-AzNetworkManagerGroup.md
yanfa317 Jun 12, 2022
58ae51a
Update Remove-AzNetworkManagerGroup.md
yanfa317 Jun 12, 2022
d3d2825
Update Remove-AzNetworkManagerSecurityAdminConfiguration.md
yanfa317 Jun 12, 2022
45db633
Update Remove-AzNetworkManagerSecurityAdminRule.md
yanfa317 Jun 12, 2022
336e419
Update Remove-AzNetworkManagerSecurityAdminRuleCollection.md
yanfa317 Jun 12, 2022
d8c6317
fix help
yanfa317 Jun 12, 2022
d14611b
reset help to retriggle validation
yanfa317 Jun 12, 2022
7fe854c
reset test
yanfa317 Jun 15, 2022
9e75bd3
fix test
yanfa317 Jun 16, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ protected override void AutomationProcessRecord()
/// The validate.
/// </summary>
/// <returns>
/// The <see cref="Schedule"/>.
/// The <see cref="Models.Schedule"/>.
/// </returns>
/// <exception cref="Exception">
/// throws exception
Expand Down Expand Up @@ -256,7 +256,7 @@ private bool IsMonthlyScheduleNull()
/// The create weekly schedule model.
/// </summary>
/// <returns>
/// The <see cref="Schedule"/>.
/// The <see cref="Models.Schedule"/>.
/// </returns>
private Models.Schedule CreateWeeklyScheduleModel()
{
Expand Down Expand Up @@ -289,7 +289,7 @@ private Models.Schedule CreateWeeklyScheduleModel()
private bool IsScheduleNameValid()
{
String pattern = "^[^\\r\\n\\f<>*%&:?.+/\\\\]{0,127}[^\\s\\r\\n\\f<>*%&:?.+/\\\\]$";
return System.Text.RegularExpressions.Regex.IsMatch(this.Name, pattern);
return System.Text.RegularExpressions.Regex.IsMatch(this.Name, pattern);
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/Automation/Automation/Model/AutomationAccount.cs
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public AutomationAccount()

/// <summary>
/// Get or set indicate whether traffic on the non-ARM endpoint (Webhook/Agent)
// is allowed from the public internet
/// is allowed from the public internet
/// </summary>
public bool? PublicNetworkAccess { get; set; }
}
Expand Down
2 changes: 1 addition & 1 deletion src/Automation/Automation/Model/DscOnboardingMetaconfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class DscOnboardingMetaconfig
/// </param>
/// <param name="dscOnboardingMetaConfig">
/// The dsc onboarding meta configuration.
/// </param>///
/// </param>
public DscOnboardingMetaconfig(string resourceGroupName, string automationAccountName, AutomationManagement.Models.AgentRegistration dscOnboardingMetaConfig)
{
Requires.Argument("ResourceGroupName", resourceGroupName).NotNull();
Expand Down
22 changes: 12 additions & 10 deletions src/Automation/Automation/Model/HybridRunbookWorkerGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,25 @@ namespace Microsoft.Azure.Commands.Automation.Model
/// </summary>
public class HybridRunbookWorkerGroup
{

/// <summary>
/// Initializes a new instance of the <see cref="HybridRunbookWorkerGroup"/> class.
/// </summary>
public HybridRunbookWorkerGroup()
{

}

/// <param name="resourceGroupName">
/// The resource group name.
/// The resource group name.
/// </param>
/// <param name="accountName">
/// The account name.
/// </param>
/// <exception cref="System.ArgumentException"
/// <param name="hybridRunbookWorkerGroup">
/// The hybrid runbook worker group.
/// </param>
/// <exception cref="System.ArgumentException">
/// </exception>

public HybridRunbookWorkerGroup()
{

}

public HybridRunbookWorkerGroup(string resourceGroupName, string accountName, Azure.Management.Automation.Models.HybridRunbookWorkerGroup hybridRunbookWorkerGroup)
{

Expand All @@ -45,10 +46,11 @@ public HybridRunbookWorkerGroup(string resourceGroupName, string accountName, Az
RunbookWorker = new List<HybridRunbookWorker>();
foreach (var worker in hybridRunbookWorkerGroup.HybridRunbookWorkers)
{
var hbworker = new HybridRunbookWorker(worker);
var hbworker = new HybridRunbookWorker(worker);
this.RunbookWorker.Add(hbworker);
}
}

/// <summary>
/// Gets or sets the resource group name.
/// </summary>
Expand Down
2 changes: 1 addition & 1 deletion src/Automation/Automation/Model/JobSchedule.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public JobSchedule(string resourceGroupName, string automationAccountName, Azure
}

/// <summary>
/// Initializes a new instance of the <see cref="HourlySchedule"/> class.
/// Initializes a new instance of the <see cref="JobSchedule"/> class.
/// </summary>
public JobSchedule()
{
Expand Down
8 changes: 7 additions & 1 deletion src/Automation/Automation/Model/NodeConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,20 @@ namespace Microsoft.Azure.Commands.Automation.Model
public class NodeConfiguration
{
/// <summary>
/// Initializes a new instance of the <see cref="DscNodeConfiguration"/> class.
/// Initializes a new instance of the <see cref="NodeConfiguration"/> class.
/// </summary>
/// <param name="resourceGroupName">
/// The resource group name.
/// </param>
/// <param name="accountName">
/// The account name.
/// </param>
/// <param name="nodeConfiguration">
/// The NodeConfiguration.
/// </param>
/// <param name="rollUpStatus">
/// The roll up status.
/// </param>
/// <exception cref="System.ArgumentException">
/// </exception>
public NodeConfiguration(string resourceGroupName, string accountName, AutomationManagement.Models.DscNodeConfiguration nodeConfiguration, string rollUpStatus)
Expand Down
4 changes: 2 additions & 2 deletions src/Automation/Automation/Model/SourceControlSyncJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ public class SourceControlSyncJob
/// <param name="resourceGroupName">
/// The resource group name.
/// </param>
/// <param name="automationAccoutName">
/// <param name="automationAccountName">
/// The automation account name.
/// </param>
/// <param name="sourceControlName">
/// The sourceControl name.
/// </param>
/// <param name="SourceControlSyncJob">
/// <param name="syncJob">
/// The SourceControlSyncJob object.
/// </param>
public SourceControlSyncJob(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public class SourceControlSyncJobRecord : SourceControlSyncJob
/// <param name="sourceControlName">
/// The sourceControl name.
/// </param>
// <param name="SourceControlSyncJobById">
/// <param name="syncJob">
/// The SourceControlSyncJobById object.
/// </param>
/// <exception cref="System.ArgumentException">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class SourceControlSyncJobStream
/// <summary>
/// Initializes a new instance of the <see cref="SourceControlSyncJobStream"/> class.
/// </summary>
/// <param name="syncJobStream">
/// <param name="stream">
/// The source control job stream.
/// </param>
/// <param name="resourceGroupName">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public class SourceControlSyncJobStreamRecord : SourceControlSyncJobStream
/// <summary>
/// Initializes a new instance of the <see cref="SourceControlSyncJobStreamRecord"/> class.
/// </summary>
/// <param name="SourceControlSyncJobStreamRecord">
/// <param name="syncJobStream">
/// The source control job stream.
/// </param>
/// <param name="resourceGroupName">
Expand Down
2 changes: 1 addition & 1 deletion src/Batch/Batch.Test/Batch.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<PackageReference Include="Microsoft.Azure.Batch" Version="15.3.0" />
<PackageReference Include="Microsoft.Azure.Management.Batch" Version="14.0.0" />
<PackageReference Include="WindowsAzure.Storage" Version="9.3.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.CognitiveServices" Version="8.2.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ public BlobInventoryPolicy()
/// "Microsoft.Storage/storageAccounts"</param>
/// <param name="lastModifiedTime">Returns the last modified date and
/// time of the blob inventory policy.</param>
/// <param name="systemData"></param>
public BlobInventoryPolicy(BlobInventoryPolicySchema policy, string id = default(string), string name = default(string), string type = default(string), System.DateTime? lastModifiedTime = default(System.DateTime?), SystemData systemData = default(SystemData))
: base(id, name, type)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Compute/Compute.Test/Compute.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<PackageReference Include="Microsoft.Azure.Graph.RBAC" Version="3.4.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.Compute" Version="54.0.0" />
<PackageReference Include="Microsoft.Azure.Management.KeyVault" Version="4.0.0-preview.1" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions src/Compute/Compute/Common/AzureContextAdapterExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public static class AzureContextAdapterExtensions
/// Get the current storage account.
/// </summary>
/// <param name="context">The current Azure context.</param>
/// <param name="provider"></param>
/// <returns>The current storage account, or null, if no current storage account is set.</returns>
public static CloudStorageAccount GetCurrentStorageAccount(this IAzureContext context, IStorageServiceProvider provider)
{
Expand Down Expand Up @@ -92,6 +93,7 @@ public static IStorageContext GetStorageContext(this IStorageService service)
/// </summary>
/// <param name="provider">The storage service provider to retrieve storage service details</param>
/// <param name="accountName">The storage accoutn name</param>
/// <param name="resourceGroupName"></param>
/// <returns>A CloudStorageAccount client for storage data plane tasks</returns>
public static CloudStorageAccount GetCloudStorageAccount(this IStorageServiceProvider provider, string accountName, string resourceGroupName = null)
{
Expand Down
2 changes: 2 additions & 0 deletions src/Compute/Compute/Common/DiagnosticsHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -661,6 +661,8 @@ private static string GetEndpointFromStorageContext(IStorageContext context)
/// </summary>
/// <param name="publicConfigPath">Public configuration file path</param>
/// <param name="privateConfigPath">Private configuration file path, can be empty</param>
/// <param name="resourceId"></param>
/// <param name="cmdlet"></param>
/// <param name="storageClient">Storage client</param>
/// <returns>A tuple with public configuration as first element and private configuration as second element</returns>
public static Tuple<Hashtable, Hashtable> GetConfigurationsFromFiles(string publicConfigPath, string privateConfigPath, string resourceId, Cmdlet cmdlet, IStorageManagementClient storageClient)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@ private string GetBase64Encoding(object obj)
/// <summary>
/// find the snapshot with the tags
/// </summary>
/// <param name="azContext"></param>
/// <param name="blobUris"></param>
/// <param name="snapshotTag"></param>
/// <param name="taskId"></param>
/// <param name="storageCredentialsFactory"></param>
/// <param name="snapshotQuery"></param>
/// <returns></returns>
public List<CloudPageBlob> FindSnapshot(IAzureContext azContext, List<string> blobUris, List<StorageCredentialsFactory> storageCredentialsFactory, Dictionary<string, string> snapshotQuery)
{
Expand Down Expand Up @@ -178,13 +178,8 @@ public AzureVMBackupBlobSasUris GenerateBlobSasUris(List<string> blobUris, IAzur
/// <summary>
/// remove the vmbackups with the metadata key "vmbackuptag" and value snapshotTag, snapshotTag is the parameter passed in.
/// </summary>
/// <param name="resourceGroupName"></param>
/// <param name="vmName"></param>
/// <param name="virtualMachineExtensionType"></param>
/// <param name="location"></param>
/// <param name="virtualMachineResponse"></param>
/// <param name="profile"></param>
/// <param name="VirtualMachineExtensionClient"></param>
/// <param name="vmConfig"></param>
/// <param name="virtualMachineExtensionBaseCmdlet"></param>
/// <param name="snapshotTag"></param>
public void RemoveSnapshot(AzureVMBackupConfig vmConfig, string snapshotTag, VirtualMachineExtensionBaseCmdlet virtualMachineExtensionBaseCmdlet)
{
Expand Down Expand Up @@ -216,11 +211,7 @@ public void RemoveSnapshot(AzureVMBackupConfig vmConfig, string snapshotTag, Vir
/// <summary>
/// we only support the Linux box now, if it's a windows, one AzureVMBackupException would be thrown.
/// </summary>
/// <param name="resourceGroupName"></param>
/// <param name="vmName"></param>
/// <param name="virtualMachineExtensionType"></param>
/// <param name="location"></param>
/// <param name="virtualMachineResponse"></param>
/// <param name="vmConfig"></param>
/// <param name="snapshotTag"></param>
/// <param name="virtualMachineExtensionBaseCmdlet"></param>
public void CreateSnapshotForDisks(AzureVMBackupConfig vmConfig, string snapshotTag, VirtualMachineExtensionBaseCmdlet virtualMachineExtensionBaseCmdlet)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ public class VirtualHardDiskSettingData
/// </param>
/// <param name="blockSize">The block size of the virtual hard disk.</param>
/// <param name="logicalSectorSize">The logical sector size of the virtual hard disk.
/// </param>
/// <param name="physicalSectorSize">The physical sector size of the virtual hard disk.
/// </param>
public
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.ContainerRegistry" Version="4.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="5.6.0" />
<PackageReference Include="Microsoft.IdentityModel.Tokens" Version="5.6.0">
<NoWarn>NU1608</NoWarn>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class PSImportSource
/// <summary>
/// Validate the object.
/// </summary>
/// <exception cref="ValidationException">
/// <exception cref="PSArgumentNullException">
/// Thrown if validation fails
/// </exception>
private void Validate()
Expand Down
2 changes: 1 addition & 1 deletion src/CosmosDB/CosmosDB.Test/CosmosDB.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
<ItemGroup>
<PackageReference Include="Microsoft.Azure.KeyVault" Version="3.0.1" />
<PackageReference Include="Microsoft.Azure.Management.CosmosDB" Version="3.7.0-preview" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -1019,6 +1019,9 @@ function Test-ClientEncryptionKeyCmdlets
Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.IncludedPaths[1].EncryptionType $EncryptionType_2
Assert-AreEqual $ContainerWithEncryptionPolicy.Resource.ClientEncryptionPolicy.PolicyFormatVersion 1

#validate update container works on container with encryption policy.
updateContainerTtl = Update-AzCosmosDBSqlContainer -AccountName $AccountName -ResourceGroupName $rgName -DatabaseName $DatabaseName -TtlInSeconds 7200
Assert-AreEqual updateContainerTtl.Resource.DefaultTtl 7200
}
Finally {
Remove-AzCosmosDBSqlDatabase -AccountName $AccountName -ResourceGroupName $rgName -Name $DatabaseName
Expand Down
1 change: 1 addition & 0 deletions src/CosmosDB/CosmosDB/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->

## Upcoming Release
* Fixed bug related to Update-AzCosmosDBSqlContainer command on containers with Client Encryption Policy.

## Version 1.8.0
* Introduced support for creating containers with Client Encryption Policy. The current supported version of Client Encryption Policy is 1.
Expand Down
5 changes: 3 additions & 2 deletions src/CosmosDB/CosmosDB/Models/PSClientEncryptionPolicy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class PSClientEncryptionPolicy
{
public PSClientEncryptionPolicy()
{
}
}

public PSClientEncryptionPolicy(ClientEncryptionPolicy clientEncryptionPolicy)
{
Expand Down Expand Up @@ -69,7 +69,7 @@ public static ClientEncryptionPolicy ToSDKModel(PSClientEncryptionPolicy pSClien
{
IncludedPaths = new List<ClientEncryptionIncludedPath>(),
PolicyFormatVersion = pSClientEncryptionPolicy.PolicyFormatVersion
};
};

if (ModelHelper.IsNotNullOrEmpty(pSClientEncryptionPolicy.IncludedPaths))
{
Expand Down Expand Up @@ -100,6 +100,7 @@ public static ClientEncryptionPolicy ToSDKModel(PSClientEncryptionPolicy pSClien
/// <summary>
/// Ensures that partition key paths are not specified in the client encryption policy for encryption.
/// </summary>
/// <param name="clientEncryptionIncludedPath">Included paths of the client encryption policy.</param>
/// <param name="partitionKeyPathTokens">Tokens corresponding to validated partition key.</param>
private static void ValidatePartitionKeyPathsAreNotEncrypted(IEnumerable<ClientEncryptionIncludedPath> clientEncryptionIncludedPath, List<string> partitionKeyPathTokens)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public PSRestorableMongodbCollectionGetResult(RestorableMongodbCollectionGetResu
public string Id { get; }

/// <summary>
// Gets the name of the RestorableMongodbCollection resource.
/// Gets the name of the RestorableMongodbCollection resource.
/// </summary>
[Ps1Xml(Label = "Name", Target = ViewControl.List)]
public string Name { get; }
Expand Down
3 changes: 2 additions & 1 deletion src/CosmosDB/CosmosDB/SQL/UpdateAzCosmosDBSqlContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ private static SqlContainerResource PopulateSqlContainerResource(SqlContainerGet
DefaultTtl = sqlContainerGetPropertiesResource.DefaultTtl,
Id = sqlContainerGetPropertiesResource.Id,
IndexingPolicy = sqlContainerGetPropertiesResource.IndexingPolicy,
PartitionKey = sqlContainerGetPropertiesResource.PartitionKey
PartitionKey = sqlContainerGetPropertiesResource.PartitionKey,
ClientEncryptionPolicy = sqlContainerGetPropertiesResource.ClientEncryptionPolicy
};
}
}
Expand Down
3 changes: 2 additions & 1 deletion src/DataBoxEdge/DataBoxEdge/Common/Utils/PasswordUtility.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ public class PasswordUtility
/// <summary>
/// Validates password strength with set of rules for password provided by user
/// </summary>
/// <paramref name="password">Password provided by user</param>
/// <param name="argumentName"></param>
/// <param name="password">Password provided by user</param>
/// <returns>true if valid pattern is provided.</returns>
public static bool ValidateUserPasswordPattern(string argumentName, string password)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,7 @@ public class DataLakeAnalyticsFirewallRule
/// <summary>
/// Initializes a new instance of the <see cref="DataLakeAnalyticsFirewallRule" /> class.
/// </summary>
/// <param name="property">The property.</param>
/// <param name="optionalName">The optional name of the file or folder</param>
/// <param name="optionalPath">The optional full path to the file or folder, excluding the file or folder name itself.</param>
/// <param name="baseRule"></param>
public DataLakeAnalyticsFirewallRule(FirewallRule baseRule)
{
Name = baseRule.Name;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Azure.Management.DataLake.Store" Version="2.4.2-preview" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.0.0" />
<PackageReference Include="Microsoft.Azure.Management.Network" Version="22.1.0-Beta.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading