Get-AzLogicAppRunAction
Gets an action from a logic app run.
Note
This is the previous version of our documentation. Please consult the most recent version for up-to-date information.
Syntax
Get-AzLogicAppRunAction
-ResourceGroupName <String>
-Name <String>
-RunName <String>
[-ActionName <String>]
[-FollowNextPageLink]
[-MaximumFollowNextPageLink <Int32>]
[-DefaultProfile <IAzureContextContainer>]
[<CommonParameters>]
Description
The Get-AzLogicAppRunAction cmdlet gets an action from a logic app run. This cmdlet returns a WorkflowRunAction objects. Specify the logic app, resource group, and run. This module supports dynamic parameters. To use a dynamic parameter, type it in the command. To discover the names of dynamic parameters, type a hyphen (-) after the cmdlet name, and then press the Tab key repeatedly to cycle through the available parameters. If you omit a required template parameter, the cmdlet prompts you for the value.
Examples
Example 1: Get an action from a Logic App run
PS C:\>Get-AzLogicAppRunAction -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "08585925184423369718380498702CU26" -ActionName "LogicAppAction01"
Code : NotFound
EndTime : 1/13/2016 2:42:56 PM
Error :
InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink
Name : LogicAppAction01
OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink
StartTime : 1/13/2016 2:42:55 PM
Status : Failed
TrackingId :
Type :
This command gets a specific Logic App action from the logic app named LogicApp05 for the run with identifier 08585925184423369718380498702CU26.
Example 2: Get all the actions from a Logic App run
PS C:\>Get-AzLogicAppRunAction -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "08585925184423369718380498702CU26" -FollowNextPageLink
This command gets all Logic App actions from a run with identifier 08585925184423369718380498702CU26 of a logic app named LogicApp05.
Parameters
Specifies the name of an action in a logic app run. This cmdlet gets the action that this parameter specifies.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
The credentials, account, tenant, and subscription used for communication with azure
| Type: | IAzureContextContainer |
| Aliases: | AzContext, AzureRmContext, AzureCredential |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Indicates the cmdlet should follow next page links.
| Type: | SwitchParameter |
| Aliases: | FL |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies how many times to follow next page links if FollowNextPageLink is used.
| Type: | Int32 |
| Aliases: | ML |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | False |
| Accept wildcard characters: | False |
Specifies the name of a logic app for which this cmdlet gets an action.
| Type: | String |
| Aliases: | ResourceName |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the name of a resource group in which this cmdlet gets an action.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |
Specifies the name of a run of a logic app. This cmdlet gets an action for the run that this parameter specifies.
| Type: | String |
| Position: | Named |
| Default value: | None |
| Accept pipeline input: | True |
| Accept wildcard characters: | False |