Skip to content

Commit 0aadf7f

Browse files
jago2136v-yuzhichenZiyue Zhengkr-santoshimadan1996
authored
Release new preview version for azure virtual network manager, API version 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]>
1 parent 0441386 commit 0aadf7f

File tree

1,143 files changed

+70287
-16329
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,143 files changed

+70287
-16329
lines changed

src/Automation/Automation/Cmdlet/NewAzureAutomationSchedule.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ protected override void AutomationProcessRecord()
201201
/// The validate.
202202
/// </summary>
203203
/// <returns>
204-
/// The <see cref="Schedule"/>.
204+
/// The <see cref="Models.Schedule"/>.
205205
/// </returns>
206206
/// <exception cref="Exception">
207207
/// throws exception
@@ -256,7 +256,7 @@ private bool IsMonthlyScheduleNull()
256256
/// The create weekly schedule model.
257257
/// </summary>
258258
/// <returns>
259-
/// The <see cref="Schedule"/>.
259+
/// The <see cref="Models.Schedule"/>.
260260
/// </returns>
261261
private Models.Schedule CreateWeeklyScheduleModel()
262262
{
@@ -289,7 +289,7 @@ private Models.Schedule CreateWeeklyScheduleModel()
289289
private bool IsScheduleNameValid()
290290
{
291291
String pattern = "^[^\\r\\n\\f<>*%&:?.+/\\\\]{0,127}[^\\s\\r\\n\\f<>*%&:?.+/\\\\]$";
292-
return System.Text.RegularExpressions.Regex.IsMatch(this.Name, pattern);
292+
return System.Text.RegularExpressions.Regex.IsMatch(this.Name, pattern);
293293
}
294294
}
295295

src/Automation/Automation/Model/AutomationAccount.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public AutomationAccount()
142142

143143
/// <summary>
144144
/// Get or set indicate whether traffic on the non-ARM endpoint (Webhook/Agent)
145-
// is allowed from the public internet
145+
/// is allowed from the public internet
146146
/// </summary>
147147
public bool? PublicNetworkAccess { get; set; }
148148
}

src/Automation/Automation/Model/DscOnboardingMetaconfig.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public class DscOnboardingMetaconfig
3535
/// </param>
3636
/// <param name="dscOnboardingMetaConfig">
3737
/// The dsc onboarding meta configuration.
38-
/// </param>///
38+
/// </param>
3939
public DscOnboardingMetaconfig(string resourceGroupName, string automationAccountName, AutomationManagement.Models.AgentRegistration dscOnboardingMetaConfig)
4040
{
4141
Requires.Argument("ResourceGroupName", resourceGroupName).NotNull();

src/Automation/Automation/Model/HybridRunbookWorkerGroup.cs

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,25 @@ namespace Microsoft.Azure.Commands.Automation.Model
1414
/// </summary>
1515
public class HybridRunbookWorkerGroup
1616
{
17-
1817
/// <summary>
1918
/// Initializes a new instance of the <see cref="HybridRunbookWorkerGroup"/> class.
2019
/// </summary>
20+
public HybridRunbookWorkerGroup()
21+
{
22+
23+
}
24+
2125
/// <param name="resourceGroupName">
22-
/// The resource group name.
26+
/// The resource group name.
2327
/// </param>
2428
/// <param name="accountName">
2529
/// The account name.
2630
/// </param>
27-
/// <exception cref="System.ArgumentException"
31+
/// <param name="hybridRunbookWorkerGroup">
32+
/// The hybrid runbook worker group.
33+
/// </param>
34+
/// <exception cref="System.ArgumentException">
2835
/// </exception>
29-
30-
public HybridRunbookWorkerGroup()
31-
{
32-
33-
}
34-
3536
public HybridRunbookWorkerGroup(string resourceGroupName, string accountName, Azure.Management.Automation.Models.HybridRunbookWorkerGroup hybridRunbookWorkerGroup)
3637
{
3738

@@ -45,10 +46,11 @@ public HybridRunbookWorkerGroup(string resourceGroupName, string accountName, Az
4546
RunbookWorker = new List<HybridRunbookWorker>();
4647
foreach (var worker in hybridRunbookWorkerGroup.HybridRunbookWorkers)
4748
{
48-
var hbworker = new HybridRunbookWorker(worker);
49+
var hbworker = new HybridRunbookWorker(worker);
4950
this.RunbookWorker.Add(hbworker);
5051
}
5152
}
53+
5254
/// <summary>
5355
/// Gets or sets the resource group name.
5456
/// </summary>

src/Automation/Automation/Model/JobSchedule.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public JobSchedule(string resourceGroupName, string automationAccountName, Azure
5858
}
5959

6060
/// <summary>
61-
/// Initializes a new instance of the <see cref="HourlySchedule"/> class.
61+
/// Initializes a new instance of the <see cref="JobSchedule"/> class.
6262
/// </summary>
6363
public JobSchedule()
6464
{

src/Automation/Automation/Model/NodeConfiguration.cs

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,20 @@ namespace Microsoft.Azure.Commands.Automation.Model
2424
public class NodeConfiguration
2525
{
2626
/// <summary>
27-
/// Initializes a new instance of the <see cref="DscNodeConfiguration"/> class.
27+
/// Initializes a new instance of the <see cref="NodeConfiguration"/> class.
2828
/// </summary>
29+
/// <param name="resourceGroupName">
30+
/// The resource group name.
31+
/// </param>
2932
/// <param name="accountName">
3033
/// The account name.
3134
/// </param>
3235
/// <param name="nodeConfiguration">
3336
/// The NodeConfiguration.
3437
/// </param>
38+
/// <param name="rollUpStatus">
39+
/// The roll up status.
40+
/// </param>
3541
/// <exception cref="System.ArgumentException">
3642
/// </exception>
3743
public NodeConfiguration(string resourceGroupName, string accountName, AutomationManagement.Models.DscNodeConfiguration nodeConfiguration, string rollUpStatus)

src/Automation/Automation/Model/SourceControlSyncJob.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ public class SourceControlSyncJob
3131
/// <param name="resourceGroupName">
3232
/// The resource group name.
3333
/// </param>
34-
/// <param name="automationAccoutName">
34+
/// <param name="automationAccountName">
3535
/// The automation account name.
3636
/// </param>
3737
/// <param name="sourceControlName">
3838
/// The sourceControl name.
3939
/// </param>
40-
/// <param name="SourceControlSyncJob">
40+
/// <param name="syncJob">
4141
/// The SourceControlSyncJob object.
4242
/// </param>
4343
public SourceControlSyncJob(

src/Automation/Automation/Model/SourceControlSyncJobRecord.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class SourceControlSyncJobRecord : SourceControlSyncJob
3737
/// <param name="sourceControlName">
3838
/// The sourceControl name.
3939
/// </param>
40-
// <param name="SourceControlSyncJobById">
40+
/// <param name="syncJob">
4141
/// The SourceControlSyncJobById object.
4242
/// </param>
4343
/// <exception cref="System.ArgumentException">

src/Automation/Automation/Model/SourceControlSyncJobStream.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class SourceControlSyncJobStream
2626
/// <summary>
2727
/// Initializes a new instance of the <see cref="SourceControlSyncJobStream"/> class.
2828
/// </summary>
29-
/// <param name="syncJobStream">
29+
/// <param name="stream">
3030
/// The source control job stream.
3131
/// </param>
3232
/// <param name="resourceGroupName">

src/Automation/Automation/Model/SourceControlSyncJobStreamRecord.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class SourceControlSyncJobStreamRecord : SourceControlSyncJobStream
2828
/// <summary>
2929
/// Initializes a new instance of the <see cref="SourceControlSyncJobStreamRecord"/> class.
3030
/// </summary>
31-
/// <param name="SourceControlSyncJobStreamRecord">
31+
/// <param name="syncJobStream">
3232
/// The source control job stream.
3333
/// </param>
3434
/// <param name="resourceGroupName">

0 commit comments

Comments
 (0)