Skip to content

Commit 2ce1281

Browse files
committed
Merge branch 'master' into task-update-adlssdk
2 parents b2f807d + 5d98e39 commit 2ce1281

28 files changed

+2037
-2450
lines changed

src/Accounts/Accounts/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
- Additional information about change #1
1919
-->
2020
## Upcoming Release
21+
* Add a deprecation message for `Resolve-Error` alias.
2122

2223
## Version 1.6.3
2324
* Update telemetry and url rewriting for generated modules, fix windows unit tests.

src/Accounts/Accounts/Errors/ResolveError.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@
1919
using Microsoft.Azure.Commands.Common.Authentication.Abstractions;
2020
using System.Collections;
2121
using Microsoft.Azure.Commands.ResourceManager.Common;
22+
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2223

2324
namespace Microsoft.Azure.Commands.Profile.Errors
2425
{
26+
[GenericBreakingChange("The `Resolve-Error` alias will be removed in a future release. Please change any scripts that use this alias to use `Resolve-AzError` instead.")]
2527
[Alias("Resolve-Error")]
2628
[Cmdlet("Resolve", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "Error", DefaultParameterSetName = ResolveError.AnyErrorParameterSet)]
2729
[OutputType(typeof(AzureErrorRecord))]

src/IotHub/IotHub.Test/ScenarioTests/IotHubTests.ps1

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ function Test-AzureRmIotHubLifecycle
119119
Assert-True { $validSkus.Count -gt 1 }
120120

121121
# Get EventHub Consumer group for events
122-
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubEndpointName events
122+
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName
123123
Assert-True { $eventubConsumerGroup.Count -eq 1 }
124124

125125
# Get Keys
@@ -139,17 +139,17 @@ function Test-AzureRmIotHubLifecycle
139139
Assert-True { $key.KeyName -eq "iothubowner" }
140140

141141
# Add consumer group
142-
Add-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubEndpointName events -EventHubConsumerGroupName cg1
142+
Add-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubConsumerGroupName cg1
143143

144144
# Get consumer group
145-
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubEndpointName events
145+
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName
146146
Assert-True { $eventubConsumerGroup.Count -eq 2 }
147147

148148
# Delete consumer group
149-
Remove-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubEndpointName events -EventHubConsumerGroupName cg1
149+
Remove-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubConsumerGroupName cg1
150150

151151
# Get consumer group
152-
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName -EventHubEndpointName events
152+
$eventubConsumerGroup = Get-AzIotHubEventHubConsumerGroup -ResourceGroupName $ResourceGroupName -Name $IotHubName
153153
Assert-True { $eventubConsumerGroup.Count -eq 1 }
154154

155155
# Add Key

src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubRoutingTests/TestAzureIotHubRoutingLifeCycle.json

Lines changed: 847 additions & 847 deletions
Large diffs are not rendered by default.

src/IotHub/IotHub.Test/SessionRecords/Microsoft.Azure.Commands.IotHub.Test.ScenarioTests.IotHubTests/TestAzureIotHubLifeCycle.json

Lines changed: 1149 additions & 1438 deletions
Large diffs are not rendered by default.

src/IotHub/IotHub/Az.IotHub.psd1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,7 @@ CmdletsToExport = 'Add-AzIotHubKey', 'Get-AzIotHubEventHubConsumerGroup',
9898

9999
# Aliases to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no aliases to export.
100100
AliasesToExport = 'Get-AzIotHubEHCG', 'Add-AzIotHubEHCG', 'Remove-AzIotHubEHCG',
101-
'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'New-AzIotHubExportDevices',
102-
'New-AzIotHubImportDevices', 'Add-AzIotHubMsgEnrich',
101+
'Set-AzIotHubVC', 'Get-AzIotHubCVC', 'Add-AzIotHubMsgEnrich',
103102
'Get-AzIotHubMsgEnrich', 'Remove-AzIotHubMsgEnrich',
104103
'Set-AzIotHubMsgEnrich'
105104

src/IotHub/IotHub/IotHub/AddAzureRmIotHubEventHubConsumerGroup.cs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,8 @@ public class AddAzureRmIotHubEventHubConsumerGroup : IotHubBaseCmdlet
4343
[ValidateNotNullOrEmpty]
4444
public string Name { get; set; }
4545

46-
public const string ChangeDesc = "Parameter is being deprecated without being replaced as IotHub comes with only one built-in endpoint(\"events\") which could handle system and device messages.";
47-
[CmdletParameterBreakingChange("EventHubEndpointName", ChangeDescription = ChangeDesc)]
4846
[Parameter(
49-
Position = 2,
50-
Mandatory = true,
51-
HelpMessage = "Name of the Event Hub Endpoint. Possible values are 'events', 'operationsMonitoringEvents'")]
52-
[ValidateNotNullOrEmpty]
53-
[ValidateSetAttribute(EventsEndpointName, OperationsMonitoringEventsEndpointName)]
54-
public string EventHubEndpointName { get; set; }
55-
56-
[Parameter(
57-
Position = 3,
47+
Position = 2,
5848
Mandatory = true,
5949
HelpMessage = "Name of the EventHub ConsumerGroup")]
6050
[ValidateNotNullOrEmpty]
@@ -70,8 +60,5 @@ public override void ExecuteCmdlet()
7060
this.WriteObject(IotHubUtils.ToPSEventHubConsumerGroupInfo(iotHubEHConsumerGroups), true);
7161
}
7262
}
73-
74-
private const string EventsEndpointName = "events";
75-
private const string OperationsMonitoringEventsEndpointName = "operationsMonitoringEvents";
7663
}
7764
}

src/IotHub/IotHub/IotHub/GetAzureRmEventHubConsumerGroup.cs

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,11 @@ public class GetAzureRmIotHubEventHubConsumerGroup : IotHubBaseCmdlet
4444
[ValidateNotNullOrEmpty]
4545
public string Name { get; set; }
4646

47-
public const string ChangeDesc = "Parameter is being deprecated without being replaced as IotHub comes with only one built-in endpoint(\"events\") which could handle system and device messages.";
48-
[CmdletParameterBreakingChange("EventHubEndpointName", ChangeDescription = ChangeDesc)]
49-
[Parameter(
50-
Position = 2,
51-
Mandatory = true,
52-
ValueFromPipelineByPropertyName = true,
53-
HelpMessage = "Name of the Event Hub Endpoint. Possible values are 'events', 'operationsMonitoringEvents'")]
54-
[ValidateNotNullOrEmpty]
55-
[ValidateSetAttribute(EventsEndpointName, OperationsMonitoringEventsEndpointName)]
56-
public string EventHubEndpointName { get; set; }
57-
5847
public override void ExecuteCmdlet()
5948
{
6049
string eventsEndpointName = "events";
6150
IEnumerable<EventHubConsumerGroupInfo> iotHubEHConsumerGroups = this.IotHubClient.IotHubResource.ListEventHubConsumerGroups(this.ResourceGroupName, this.Name, eventsEndpointName);
6251
this.WriteObject(IotHubUtils.ToPSEventHubConsumerGroupInfo(iotHubEHConsumerGroups), true);
6352
}
64-
65-
private const string EventsEndpointName = "events";
66-
private const string OperationsMonitoringEventsEndpointName = "operationsMonitoringEvents";
6753
}
6854
}

src/IotHub/IotHub/IotHub/NewAzureRmIotHubExportDevices.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ namespace Microsoft.Azure.Commands.Management.IotHub
2323
using ResourceManager.Common.ArgumentCompleters;
2424
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2525

26-
[GenericBreakingChange("New-AzIotHubExportDevices alias will be removed in an upcoming breaking change release", "2.0.0")]
2726
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubExportDevice", SupportsShouldProcess = true)]
28-
[Alias("New-AzIotHubExportDevices")]
2927
[OutputType(typeof(PSIotHubJobResponse))]
3028
public class NewAzureRmIotHubExportDevices : IotHubBaseCmdlet
3129
{

src/IotHub/IotHub/IotHub/NewAzureRmIotHubImportDevices.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ namespace Microsoft.Azure.Commands.Management.IotHub
2323
using ResourceManager.Common.ArgumentCompleters;
2424
using Microsoft.WindowsAzure.Commands.Common.CustomAttributes;
2525

26-
[GenericBreakingChange("New-AzIotHubImportDevices alias will be removed in an upcoming breaking change release", "2.0.0")]
2726
[Cmdlet("New", ResourceManager.Common.AzureRMConstants.AzureRMPrefix + "IotHubImportDevice", SupportsShouldProcess = true)]
28-
[Alias("New-AzIotHubImportDevices")]
2927
[OutputType(typeof(PSIotHubJobResponse))]
3028
public class NewAzureRmIotHubImportDevices : IotHubBaseCmdlet
3129
{

src/IotHub/IotHub/IotHub/RemoveAzureRmIotHubEventHubConsumerGroup.cs

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,8 @@ public class RemoveAzureRmIotHubEventHubConsumerGroup : IotHubBaseCmdlet
4343
[ValidateNotNullOrEmpty]
4444
public string Name { get; set; }
4545

46-
public const string ChangeDesc = "Parameter is being deprecated without being replaced as IotHub comes with only one built-in endpoint(\"events\") which could handle system and device messages.";
47-
[CmdletParameterBreakingChange("EventHubEndpointName", ChangeDescription = ChangeDesc)]
4846
[Parameter(
49-
Position = 2,
50-
Mandatory = true,
51-
HelpMessage = "EventHubEndpointName. Possible values events, operationsMonitoringEvents")]
52-
[ValidateNotNullOrEmpty]
53-
[ValidateSetAttribute(EventsEndpointName, OperationsMonitoringEventsEndpointName)]
54-
public string EventHubEndpointName { get; set; }
55-
56-
[Parameter(
57-
Position = 3,
47+
Position = 2,
5848
Mandatory = true,
5949
ValueFromPipelineByPropertyName = true,
6050
HelpMessage = "Name of the EventHub ConsumerGroupName")]
@@ -71,8 +61,5 @@ public override void ExecuteCmdlet()
7161
this.WriteObject(IotHubUtils.ToPSEventHubConsumerGroupInfo(iotHubEHConsumerGroups), true);
7262
}
7363
}
74-
75-
private const string EventsEndpointName = "events";
76-
private const string OperationsMonitoringEventsEndpointName = "operationsMonitoringEvents";
7764
}
7865
}

src/IotHub/IotHub/IotHub/SetAzureRmIotHub.cs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ public class SetAzureRmIotHub : IotHubBaseCmdlet
3232
const string UpdateEventHubEndpointPropertiesParameterSet = "UpdateEventHubEndpointProperties";
3333
const string UpdateFileUploadPropertiesParameterSet = "UpdateFileUploadProperties";
3434
const string UpdateCloudToDevicePropertiesParameterSet = "UpdateCloudToDeviceProperties";
35-
const string UpdateOperationsMonitoringPropertiesParameterSet = "UpdateOperationsMonitoringProperties";
3635
const string UpdateRoutingPropertiesParameterSet = "UpdateRoutingProperties";
3736
const string UpdateRoutePropertiesParameterSet = "UpdateRouteProperties";
3837
const string UpdateFallbackRoutePropertyParameterSet = "UpdateFallbackRouteProperty";
@@ -122,15 +121,6 @@ public class SetAzureRmIotHub : IotHubBaseCmdlet
122121
[ValidateNotNullOrEmpty]
123122
public PSCloudToDeviceProperties CloudToDevice { get; set; }
124123

125-
public const string ChangeDesc = "Parameter is being deprecated without being replaced as IotHub is no longer using built-in endpoint(\"operationsMonitoringEvents\").";
126-
[CmdletParameterBreakingChange("OperationsMonitoringProperties", ChangeDescription = ChangeDesc)]
127-
[Parameter(
128-
ParameterSetName = UpdateOperationsMonitoringPropertiesParameterSet,
129-
Mandatory = true,
130-
HelpMessage = "Set Operations Monitoring Properties")]
131-
[ValidateNotNullOrEmpty]
132-
public PSOperationsMonitoringProperties OperationsMonitoringProperties { get; set; }
133-
134124
[Parameter(
135125
ParameterSetName = UpdateRoutingPropertiesParameterSet,
136126
Mandatory = false,

src/IotHub/IotHub/Models/PSIotHubInputProperties.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,6 @@ public class PSIotHubInputProperties
6363
[JsonProperty(PropertyName = "comments")]
6464
public string Comments { get; set; }
6565

66-
/// <summary>
67-
/// </summary>
68-
[JsonProperty(PropertyName = "operationsMonitoringProperties")]
69-
public PSOperationsMonitoringProperties OperationsMonitoringProperties { get; set; }
70-
7166
/// <summary>
7267
/// </summary>
7368
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "routing")]

src/IotHub/IotHub/Models/PSIotHubProperties.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,6 @@ public class PSIotHubProperties
6969
[JsonProperty(PropertyName = "comments")]
7070
public string Comments { get; set; }
7171

72-
/// <summary>
73-
/// </summary>
74-
[JsonProperty(PropertyName = "operationsMonitoringProperties")]
75-
public PSOperationsMonitoringProperties OperationsMonitoringProperties { get; set; }
76-
7772
/// <summary>
7873
/// </summary>
7974
[JsonProperty(NullValueHandling = NullValueHandling.Ignore, PropertyName = "routing")]

src/IotHub/IotHub/help/Add-AzIotHubEventHubConsumerGroup.md

Lines changed: 3 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Creates an eventhub consumer group.
1414

1515
```
1616
Add-AzIotHubEventHubConsumerGroup [-ResourceGroupName] <String> [-Name] <String>
17-
[-EventHubEndpointName] <String> [-EventHubConsumerGroupName] <String>
18-
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
17+
[-EventHubConsumerGroupName] <String> [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
18+
[<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
@@ -25,7 +25,7 @@ Creates a consumer group in the Eventhub associated with the specified IotHub.
2525

2626
### Example 1: Add a consumer group to the telemetry eventhub
2727
```
28-
PS C:\> Add-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubEndpointName "events" -EventHubConsumerGroupName "myconsumergroup"
28+
PS C:\> Add-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubConsumerGroupName "myconsumergroup"
2929
```
3030

3131
Adds a new consumergroup named "myconsumergroup" to the eventhub for telemetry events in the iothub named "myiothub"
@@ -55,23 +55,6 @@ Type: System.String
5555
Parameter Sets: (All)
5656
Aliases:
5757

58-
Required: True
59-
Position: 3
60-
Default value: None
61-
Accept pipeline input: False
62-
Accept wildcard characters: False
63-
```
64-
65-
### -EventHubEndpointName
66-
Name of the EventHub Endpoint.
67-
Possible values events, operationsMonitoringEvents
68-
69-
```yaml
70-
Type: System.String
71-
Parameter Sets: (All)
72-
Aliases:
73-
Accepted values: events, operationsMonitoringEvents
74-
7558
Required: True
7659
Position: 2
7760
Default value: None

src/IotHub/IotHub/help/Get-AzIotHubEventHubConsumerGroup.md

Lines changed: 2 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gets all the eventhub consumergroups.
1414

1515
```
1616
Get-AzIotHubEventHubConsumerGroup [-ResourceGroupName] <String> [-Name] <String>
17-
[-EventHubEndpointName] <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
17+
[-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
1818
```
1919

2020
## DESCRIPTION
@@ -24,7 +24,7 @@ Gets all the eventhub consumergroups for the different EventHubs used by IotHub.
2424

2525
### Example 1 Gets all the eventhub consumergroups for the telemetry eventhub
2626
```
27-
PS C:\> Get-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubEndpointName "events"
27+
PS C:\> Get-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub"
2828
```
2929

3030
Gets all the eventhub consumergroups for the telemetry eventhub for the iothub named myiothub
@@ -46,23 +46,6 @@ Accept pipeline input: False
4646
Accept wildcard characters: False
4747
```
4848
49-
### -EventHubEndpointName
50-
Name of the Event Hub endpoint.
51-
Possible values events, operationsMonitoringEvents
52-
53-
```yaml
54-
Type: System.String
55-
Parameter Sets: (All)
56-
Aliases:
57-
Accepted values: events, operationsMonitoringEvents
58-
59-
Required: True
60-
Position: 2
61-
Default value: None
62-
Accept pipeline input: True (ByPropertyName)
63-
Accept wildcard characters: False
64-
```
65-
6649
### -Name
6750
Name of the IotHub
6851

src/IotHub/IotHub/help/Remove-AzIotHubEventHubConsumerGroup.md

Lines changed: 4 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Deletes an eventhub consumergroup.
1414

1515
```
1616
Remove-AzIotHubEventHubConsumerGroup [-ResourceGroupName] <String> [-Name] <String>
17-
[-EventHubEndpointName] <String> [-EventHubConsumerGroupName] <String>
18-
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
17+
[-EventHubConsumerGroupName] <String> [-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm]
18+
[<CommonParameters>]
1919
```
2020

2121
## DESCRIPTION
@@ -25,7 +25,7 @@ Deletes an eventhub consumergroup.
2525

2626
### Example 1 Remove eventhub consumergroup from the telemetry eventhub
2727
```
28-
PS C:\> Remove-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubEndpointName "events" -EventHubConsumerGroupName myconsumergroup
28+
PS C:\> Remove-AzIotHubEventHubConsumerGroup -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubConsumerGroupName myconsumergroup
2929
```
3030

3131
Removes the consumergroup named myconsumergroup from the IotHub named "myiothub"
@@ -55,27 +55,10 @@ Type: System.String
5555
Parameter Sets: (All)
5656
Aliases:
5757

58-
Required: True
59-
Position: 3
60-
Default value: None
61-
Accept pipeline input: True (ByPropertyName)
62-
Accept wildcard characters: False
63-
```
64-
65-
### -EventHubEndpointName
66-
EventHub Endpoint Name.
67-
Possible values events, operationsMonitoringEvents
68-
69-
```yaml
70-
Type: System.String
71-
Parameter Sets: (All)
72-
Aliases:
73-
Accepted values: events, operationsMonitoringEvents
74-
7558
Required: True
7659
Position: 2
7760
Default value: None
78-
Accept pipeline input: False
61+
Accept pipeline input: True (ByPropertyName)
7962
Accept wildcard characters: False
8063
```
8164

src/IotHub/IotHub/help/Set-AzIotHub.md

Lines changed: 1 addition & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,6 @@ Set-AzIotHub -ResourceGroupName <String> -Name <String> -CloudToDevice <PSCloudT
3838
[-DefaultProfile <IAzureContextContainer>] [-WhatIf] [-Confirm] [<CommonParameters>]
3939
```
4040

41-
### UpdateOperationsMonitoringProperties
42-
```
43-
Set-AzIotHub -ResourceGroupName <String> -Name <String>
44-
-OperationsMonitoringProperties <PSOperationsMonitoringProperties> [-DefaultProfile <IAzureContextContainer>]
45-
[-WhatIf] [-Confirm] [<CommonParameters>]
46-
```
47-
4841
### UpdateRoutingProperties
4942
```
5043
Set-AzIotHub -ResourceGroupName <String> -Name <String> [-RoutingProperties <PSRoutingProperties>]
@@ -81,7 +74,7 @@ Update the sku to S1 and units to 5 for the IotHub named "myiothub"
8174
PS C:\> Set-AzIotHub -ResourceGroupName "myresourcegroup" -Name "myiothub" -EventHubRetentionTimeInDays 4
8275
```
8376

84-
Update the retention time in days to 4 for both the telemetry and operationsmonitoringevents events for the IotHub named "myiothub"
77+
Update the retention time of telemetry in days to 4 for the IotHub named "myiothub"
8578

8679
## PARAMETERS
8780

@@ -250,21 +243,6 @@ Accept pipeline input: True (ByPropertyName)
250243
Accept wildcard characters: False
251244
```
252245
253-
### -OperationsMonitoringProperties
254-
The properties related to operations monitoring.
255-
256-
```yaml
257-
Type: Microsoft.Azure.Commands.Management.IotHub.Models.PSOperationsMonitoringProperties
258-
Parameter Sets: UpdateOperationsMonitoringProperties
259-
Aliases:
260-
261-
Required: True
262-
Position: Named
263-
Default value: None
264-
Accept pipeline input: False
265-
Accept wildcard characters: False
266-
```
267-
268246
### -ResourceGroupName
269247
Resource Group Name
270248

0 commit comments

Comments
 (0)