-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Azure Logic App PowerShell Cmdlets #1753
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
Changes from 13 commits
ba36f84
ca4be2f
4d88a9c
1dbf111
98080ab
7bd0b59
9fbe613
02e6cab
90ced65
8487c01
3856b5c
1f6c3fb
c4da092
fbeaf6f
e96d655
73692cd
85f4830
6195ff4
286947b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -119,6 +119,11 @@ This repository contains a set of PowerShell cmdlets for developers and administ | |
| * Azure Automation | ||
| * Manage automation accounts | ||
| * Manage automation jobs, runbooks and schedules | ||
| * Logic Apps | ||
|
||
| * Manage LogicApp, such as CRUD, start and stop. | ||
| * Get LogicApp trigger and trigger history. | ||
| * Get Access keys | ||
| * Get LogicApp run and run history. | ||
|
|
||
| For detail descriptions and examples of the cmdlets, type | ||
| * ```help azure``` to get all the cmdlets. | ||
|
|
||
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <packages> | ||
| <package id="xunit.runner.console" version="2.0.0" /> | ||
| </packages> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,90 @@ | ||
| # | ||
| # Module manifest for module 'Microsoft.Azure.Commands.LogicApp' | ||
| # | ||
| # Generated by: Microsoft Corporation | ||
| # | ||
| # Generated on: 10/22/2015 | ||
| # | ||
|
|
||
| @{ | ||
|
|
||
| # Version number of this module. | ||
| ModuleVersion = '0.10.0' | ||
|
|
||
| # ID used to uniquely identify this module | ||
| GUID = '8A7D44BB-E747-4265-8F22-B3937961D709' | ||
|
|
||
| # Author of this module | ||
| Author = 'Microsoft Corporation' | ||
|
|
||
| # Company or vendor of this module | ||
| CompanyName = 'Microsoft Corporation' | ||
|
|
||
| # Copyright statement for this module | ||
| Copyright = 'Microsoft Corporation. All rights reserved.' | ||
|
|
||
| # Description of the functionality provided by this module | ||
| Description = 'Microsoft Azure PowerShell - LogicApp cmdlets for Azure Resource Manager' | ||
|
|
||
| # Minimum version of the Windows PowerShell engine required by this module | ||
| PowerShellVersion = '3.0' | ||
|
|
||
| # Name of the Windows PowerShell host required by this module | ||
| PowerShellHostName = '' | ||
|
|
||
| # Minimum version of the Windows PowerShell host required by this module | ||
| PowerShellHostVersion = '' | ||
|
|
||
| # Minimum version of the .NET Framework required by this module | ||
| DotNetFrameworkVersion = '4.0' | ||
|
|
||
| # Minimum version of the common language runtime (CLR) required by this module | ||
| CLRVersion='4.0' | ||
|
|
||
| # Processor architecture (None, X86, Amd64, IA64) required by this module | ||
| ProcessorArchitecture = 'None' | ||
|
|
||
| # Modules that must be imported into the global environment prior to importing this module | ||
| RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '1.0.1'} ) | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Update to the latest (currently 1.0.4)
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Fixed] : Profile Module Version is 1.0.3. Fixed From: Mark Cowlishaw [mailto:[email protected]] In src/ResourceManager/LogicApp/AzureRM.LogicApp.psd1#1753 (comment):
Update to the latest (currently 1.0.4) — |
||
|
|
||
| # Assemblies that must be loaded prior to importing this module | ||
| RequiredAssemblies = @() | ||
|
|
||
| # Script files (.ps1) that are run in the caller's environment prior to importing this module | ||
| ScriptsToProcess = @() | ||
|
|
||
| # Type files (.ps1xml) to be loaded when importing this module | ||
| TypesToProcess = @() | ||
|
|
||
| # Format files (.ps1xml) to be loaded when importing this module | ||
| FormatsToProcess = @( | ||
| '.\Microsoft.Azure.Commands.LogicApp.format.ps1xml' | ||
| ) | ||
|
|
||
| # Modules to import as nested modules of the module specified in ModuleToProcess | ||
| NestedModules = @( | ||
| '.\Microsoft.Azure.Commands.LogicApp.dll' | ||
| ) | ||
|
|
||
| # Functions to export from this module | ||
| FunctionsToExport = '*' | ||
|
|
||
| # Cmdlets to export from this module | ||
| CmdletsToExport = '*' | ||
|
|
||
| # Variables to export from this module | ||
| VariablesToExport = '*' | ||
|
|
||
| # Aliases to export from this module | ||
| AliasesToExport = @() | ||
|
|
||
| # List of all modules packaged with this module | ||
| ModuleList = @() | ||
|
|
||
| # List of all files packaged with this module | ||
| FileList = @() | ||
|
|
||
| # Private data to pass to the module specified in ModuleToProcess | ||
| PrivateData = '' | ||
|
|
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Your changes will not go out as part of February release. Please add a new tag
2016.03.08 version 1.3.0
and then add your change log text.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Fixed]: Moved to new section as suggested. Below tag indicates next release in March. I just want to know, What is the process if we want to release these changes early?
From: Hovsep [mailto:[email protected]]
Sent: Monday, February 1, 2016 3:22 PM
To: Azure/azure-powershell [email protected]
Cc: Pankaj Singh Negi [email protected]
Subject: Re: [azure-powershell] Azure Logic App PowerShell Cmdlets (#1753)
In ChangeLog.mdhttps://github.com//pull/1753#discussion_r51498279:
Your changes will not go out as part of February release. Please add a new tag
2016.03.08 version 1.3.0
and then add your change log text.
—
Reply to this email directly or view it on GitHubhttps://github.com//pull/1753/files#r51498279.