Skip to content

Commit a019426

Browse files
authored
Merge pull request #2890 from bgold09/activitywindows-fix
Fix get activity window cmdlet name
2 parents 9d14501 + eb732d5 commit a019426

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

ChangeLog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 2016.09.08 version 2.1.0
2+
* Data Factory
3+
- New cmdlet added to retrieve activity windows: Get-AzureRmDataFactoryActivityWindow
4+
15
## 2016.08.09 version 2.0.1
26
* Fixed assembly signing issue causing load problems in some PowerShell versions. (Issue #2747)
37

src/ResourceManager/DataFactories/Commands.DataFactories/Constants.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ internal static class Constants
2626

2727
public const string Gateway = "AzureRmDataFactoryGateway";
2828

29-
public const string ActivityWindows = "AzureRmDataFactoryActivityWindows";
29+
public const string ActivityWindows = "AzureRmDataFactoryActivityWindow";
3030

3131
public const string GatewayKey = "AzureRmDataFactoryGatewayKey";
3232

@@ -48,4 +48,4 @@ internal static class Constants
4848

4949
public const string RunLog = "AzureRmDataFactoryLog";
5050
}
51-
}
51+
}

src/ResourceManager/DataFactories/Commands.DataFactories/Microsoft.Azure.Commands.DataFactories.dll-Help.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -167,9 +167,9 @@
167167
</command:command>
168168
<command:command xmlns:maml="http://schemas.microsoft.com/maml/2004/10" xmlns:command="http://schemas.microsoft.com/maml/dev/command/2004/10" xmlns:dev="http://schemas.microsoft.com/maml/dev/2004/10" xmlns:MSHelp="http://msdn.microsoft.com/mshelp">
169169
<command:details>
170-
<command:name>Get-AzureRmDataFactoryActivityWindows</command:name>
170+
<command:name>Get-AzureRmDataFactoryActivityWindow</command:name>
171171
<command:verb>Get</command:verb>
172-
<command:noun>AzureRmDataFactoryActivityWindows</command:noun>
172+
<command:noun>AzureRmDataFactoryActivityWindow</command:noun>
173173
<maml:description>
174174
<maml:para>
175175
Gets information about activity windows associated with a data factory.
@@ -178,12 +178,12 @@
178178
</command:details>
179179
<maml:description>
180180
<maml:para>
181-
The Get-AzureRmDataFactoryActivityWindows cmdlet gets information about activity windows associated with a data factory.
181+
The Get-AzureRmDataFactoryActivityWindow cmdlet gets information about activity windows associated with a data factory.
182182
</maml:para>
183183
</maml:description>
184184
<command:syntax>
185185
<command:syntaxItem>
186-
<maml:name>Get-AzureRmDataFactoryActivityWindows</maml:name>
186+
<maml:name>Get-AzureRmDataFactoryActivityWindow</maml:name>
187187
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="none">
188188
<maml:name>DataFactory</maml:name>
189189
<maml:Description>
@@ -408,7 +408,7 @@
408408
</command:parameter>
409409
</command:syntaxItem>
410410
<command:syntaxItem>
411-
<maml:name>Get-AzureRmDataFactoryActivityWindows</maml:name>
411+
<maml:name>Get-AzureRmDataFactoryActivityWindow</maml:name>
412412
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="none">
413413
<maml:name>ResourceGroupName</maml:name>
414414
<maml:Description>
@@ -921,7 +921,7 @@
921921
<command:example>
922922
<maml:title>Example 1: Get activity windows associated with a data factory</maml:title>
923923
<dev:code>
924-
PS C:\&gt;Get-AzureRmDataFactoryActivityWindows -DataFactoryName "WikiADF" -ResourceGroupName "ADF" -Top 3
924+
PS C:\&gt;Get-AzureRmDataFactoryActivityWindow -DataFactoryName "WikiADF" -ResourceGroupName "ADF" -Top 3
925925
ResourceGroupName : ADF
926926
DataFactoryName : WikiADF
927927
PipelineName : DP_WikipediaSamplePipeline

0 commit comments

Comments
 (0)