Skip to content

Commit

Permalink
Release new preview version for azure virtual network manager, API ve…
Browse files Browse the repository at this point in the history
…rsion 2022-04-01-preview (#18476)

* Fix Az.ContainerRegistry Xml Comments (#18388)

* Fix Az.CosmosDB XML Comments (#18401)

* Fix Az.CosmosDB XML Comments

* Fix Az.CosmosDB XML Comments

* Update PSClientEncryptionPolicy.cs

Co-authored-by: Ziyue Zheng <[email protected]>

* Fix Az.DataBoxEdge XML Comments (#18402)

* Fix Az.Automation XML Comments (#18407)

* Fix Az.Automation XML Comments

* Fix Az.Automation XML Comments

* Update SourceControlSyncJobStream.cs

Co-authored-by: Ziyue Zheng <[email protected]>

* Fix Az.DataLakeAnalytics XML Comments (#18403)

* Fix Az.Compute XML Comments (#18408)

* Fix Az.Compute XML Comments

* Fix Az.Compute.Helpers XML Comments

* Fix Az.DataLakeStore XML Comments (#18421)

* Fix Az.DataLakeStore XML Comments

* Fix Az.DataLakeStore XML Comments

Co-authored-by: Ziyue Zheng <[email protected]>

* Fix Az.DataMigration XML Comments (#18422)

* Fix Az.EventHub XML Comments (#18429)

* Fix Az.EventHub XML Comments

* Update PSNetworkRuleSetAttributes.cs

Co-authored-by: Ziyue Zheng <[email protected]>

* Fix Az.HDInsight XML Comments (#18432)

* Fix Az.IotHub XML Comments (#18433)

* Fix Az.IotHub XML Comments

* Fix Az.IotHub XML Comments

Co-authored-by: Ziyue Zheng <[email protected]>

* [CosmosDB] Fixes issue with Update-AzCosmosDBSqlContainer command on containers with  Client Encryption Policy (#18480)

* Support client encryption policy during container creation

* Update SqlOperationsTests.ps1

* Update New-AzCosmosDBSqlContainer.md

* Update PSClientEncryptionPolicy.cs

* Update NewAzCosmosDBSqlContainer.cs

* Update ChangeLog.md

* Updated package.

* Update CosmosDB.Test.csproj

* Updated example, session records.

* updated session records.

* Fixes update container command on containers with client encryption policy.

* Update ChangeLog.md

* Update ChangeLog.md

* Bug fix for the Restore-AzSqlDatabase cmdlet (#18475)

* Pass Tags field in the Database model constructor

* Update change log

* Remove WebsitesController (#18469)

* Remove WebsitesController

* Update WebsitesTestRunner.cs

* Update WebsitesTestRunner.cs

* Fixed issue when mimicing long running operation for test in Playback mode. (#18490)

* [Az.DataProtection] OOB for Az.DataProtection (#18477)

* Move DataProtection to main

* Update Changelog.md

* bump version for Az.Dataprotection

* update version in AzPreview.psd1

Co-authored-by: azure-powershell-bot <[email protected]>

* Enable ARM to the Private Link connection Cmdlets (#18358)

* enable Private link support

* both set to true

* Add testcase

* Add recording

Co-authored-by: Vishakha Narvekar <[email protected]>

* Initial changes for network manager resources

* add network manager models

* added all network maneger files

* update signature issues and project files containing network reference

* remove version bump, will be generated

* add all helps docs for network manager commands

* Update Remove-AzNetworkManagerGroup.md

* Update Remove-AzNetworkManagerGroup.md

* Update Remove-AzNetworkManagerSecurityAdminConfiguration.md

* Update Remove-AzNetworkManagerSecurityAdminRule.md

* Update Remove-AzNetworkManagerSecurityAdminRuleCollection.md

* fix help

* reset help to retriggle validation

* reset test

* fix test

Co-authored-by: v-yuzhichen <[email protected]>
Co-authored-by: Ziyue Zheng <[email protected]>
Co-authored-by: Santosh Kulkarni <[email protected]>
Co-authored-by: Ishan Rajesh Madan <[email protected]>
Co-authored-by: Vincent Dai <[email protected]>
Co-authored-by: Yabo Hu <[email protected]>
Co-authored-by: azure-powershell-bot <[email protected]>
Co-authored-by: Vishakha-Git <[email protected]>
Co-authored-by: Vishakha Narvekar <[email protected]>
Co-authored-by: Jared Gorthy <[email protected]>
Co-authored-by: yanfa317 <[email protected]>
Co-authored-by: Fan Yang (AZURE) <[email protected]>
  • Loading branch information
13 people authored Jun 17, 2022
1 parent 0441386 commit 0aadf7f
Show file tree
Hide file tree
Showing 1,143 changed files with 70,287 additions and 16,329 deletions.
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

0 comments on commit 0aadf7f

Please sign in to comment.