< Back

Get-AzureRmLogicAppRunAction

Tue Jan 29, 2019 9:51 pm

NAME Get-AzureRmLogicAppRunAction



SYNOPSIS

Gets an action from a logic app run.





SYNTAX

Get-AzureRmLogicAppRunAction [-ActionName <String>] [-DefaultProfile <IAzureContextContainer>] -Name <String> -ResourceGroupName <String> -RunName

<String> [<CommonParameters>]





DESCRIPTION

The Get-AzureRmLogicAppRunAction 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.





PARAMETERS

-ActionName <String>

Specifies the name of an action in a logic app run. This cmdlet gets the action that this parameter specifies.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

Specifies the name of a logic app for which this cmdlet gets an action.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of a resource group in which this cmdlet gets an action.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-RunName <String>

Specifies the name of a run of a logic app. This cmdlet gets an action for the run that this parameter specifies.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

This cmdlet does not accept any input.





OUTPUTS

Microsoft.Azure.Management.Logic.Models.WorkflowRunAction







NOTES









Example 1: Get an action from a Logic App run



PS C:\\>Get-AzureRmLogicAppActionRun -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "LogicAppRun56" -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 named LogicAppRun56.





Example 2: Get all the actions from a Logic App run



PS C:\\>Get-AzureRmLogicAppActionRun -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "LogicAppRun56"

Code : NotFound

EndTime : 1/13/2016 2:42:56 PM

Error :

InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink

Name : LogicAppAction1

OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink

StartTime : 1/13/2016 2:42:55 PM

Status : Failed

TrackingId :

Type :



This command gets all Logic App actions from a run named LogicAppRun56 of a logic app named LogicApp05.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... prunaction

Get-AzureRmLogicAppRunHistory

Stop-AzureRmLogicAppRun