Skip to content

Fix get activity window cmdlet name #2890

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 4, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 2016.09.08 version 2.1.0
* Data Factory
- New cmdlet added to retrieve activity windows: Get-AzureRmDataFactoryActivityWindow

## 2016.08.09 version 2.0.1
* Fixed assembly signing issue causing load problems in some PowerShell versions. (Issue #2747)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ internal static class Constants

public const string Gateway = "AzureRmDataFactoryGateway";

public const string ActivityWindows = "AzureRmDataFactoryActivityWindows";
public const string ActivityWindows = "AzureRmDataFactoryActivityWindow";

public const string GatewayKey = "AzureRmDataFactoryGatewayKey";

Expand All @@ -48,4 +48,4 @@ internal static class Constants

public const string RunLog = "AzureRmDataFactoryLog";
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,9 @@
</command:command>
<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">
<command:details>
<command:name>Get-AzureRmDataFactoryActivityWindows</command:name>
<command:name>Get-AzureRmDataFactoryActivityWindow</command:name>
<command:verb>Get</command:verb>
<command:noun>AzureRmDataFactoryActivityWindows</command:noun>
<command:noun>AzureRmDataFactoryActivityWindow</command:noun>
<maml:description>
<maml:para>
Gets information about activity windows associated with a data factory.
Expand All @@ -178,12 +178,12 @@
</command:details>
<maml:description>
<maml:para>
The Get-AzureRmDataFactoryActivityWindows cmdlet gets information about activity windows associated with a data factory.
The Get-AzureRmDataFactoryActivityWindow cmdlet gets information about activity windows associated with a data factory.
</maml:para>
</maml:description>
<command:syntax>
<command:syntaxItem>
<maml:name>Get-AzureRmDataFactoryActivityWindows</maml:name>
<maml:name>Get-AzureRmDataFactoryActivityWindow</maml:name>
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="none">
<maml:name>DataFactory</maml:name>
<maml:Description>
Expand Down Expand Up @@ -408,7 +408,7 @@
</command:parameter>
</command:syntaxItem>
<command:syntaxItem>
<maml:name>Get-AzureRmDataFactoryActivityWindows</maml:name>
<maml:name>Get-AzureRmDataFactoryActivityWindow</maml:name>
<command:parameter required="true" variableLength="true" globbing="false" pipelineInput="True (ByPropertyName)" position="1" aliases="none">
<maml:name>ResourceGroupName</maml:name>
<maml:Description>
Expand Down Expand Up @@ -921,7 +921,7 @@
<command:example>
<maml:title>Example 1: Get activity windows associated with a data factory</maml:title>
<dev:code>
PS C:\&gt;Get-AzureRmDataFactoryActivityWindows -DataFactoryName "UncycloADF" -ResourceGroupName "ADF" -Top 3
PS C:\&gt;Get-AzureRmDataFactoryActivityWindow -DataFactoryName "UncycloADF" -ResourceGroupName "ADF" -Top 3
ResourceGroupName : ADF
DataFactoryName : UncycloADF
PipelineName : DP_UncyclopediaSamplePipeline
Expand Down