1
- ---
1
+ ---
2
2
external help file : Microsoft.Azure.PowerShell.Cmdlets.LogicApp.dll-Help.xml
3
3
Module Name : Az.LogicApp
4
4
ms.assetid : 2EA28B90-4BAE-45DF-BD2E-60C74F53FB7B
@@ -9,16 +9,19 @@ schema: 2.0.0
9
9
# Get-AzLogicAppRunAction
10
10
11
11
## SYNOPSIS
12
+
12
13
Gets an action from a logic app run.
13
14
14
15
## SYNTAX
15
16
16
- ```
17
+ ``` powershell
17
18
Get-AzLogicAppRunAction -ResourceGroupName <String> -Name <String> -RunName <String> [-ActionName <String>]
18
- [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]
19
+ [-FollowNextPageLink] [-MaximumFollowNextPageLink <Int32>] [-DefaultProfile <IAzureContextContainer>]
20
+ [<CommonParameters>]
19
21
```
20
22
21
23
## DESCRIPTION
24
+
22
25
The ** Get-AzLogicAppRunAction** cmdlet gets an action from a logic app run.
23
26
This cmdlet returns a ** WorkflowRunAction** objects.
24
27
Specify the logic app, resource group, and run.
@@ -30,8 +33,9 @@ If you omit a required template parameter, the cmdlet prompts you for the value.
30
33
## EXAMPLES
31
34
32
35
### Example 1: Get an action from a Logic App run
36
+
33
37
``` powershell
34
- PS C:\>Get-AzLogicAppActionRun -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "LogicAppRun56 " -ActionName "LogicAppAction01"
38
+ PS C:\>Get-AzLogicAppRunAction -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "08585925184423369718380498702CU26 " -ActionName "LogicAppAction01"
35
39
Code : NotFound
36
40
EndTime : 1/13/2016 2:42:56 PM
37
41
Error :
@@ -44,36 +48,20 @@ TrackingId :
44
48
Type :
45
49
```
46
50
47
- This command gets a specific Logic App action from the logic app named LogicApp05 for the run named LogicAppRun56 .
51
+ This command gets a specific Logic App action from the logic app named LogicApp05 for the run with identifier 08585925184423369718380498702CU26 .
48
52
49
53
### Example 2: Get all the actions from a Logic App run
54
+
50
55
``` powershell
51
- PS C:\>Get-AzLogicAppActionRun -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "LogicAppRun56"
52
- Code : NotFound
53
- EndTime : 1/13/2016 2:42:56 PM
54
- Error :
55
- InputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink
56
- Name : LogicAppAction1
57
- OutputsLink : Microsoft.Azure.Management.Logic.Models.ContentLink
58
- StartTime : 1/13/2016 2:42:55 PM
59
- Status : Failed
60
- TrackingId :
61
- Type :
56
+ PS C:\>Get-AzLogicAppRunAction -ResourceGroupName "ResourceGroup11" -Name "LogicApp05" -RunName "08585925184423369718380498702CU26" -FollowNextPageLink
62
57
```
63
58
64
- This command gets all Logic App actions from a run named LogicAppRun56 of a logic app named LogicApp05.
65
-
66
- ### Example 3
67
-
68
- This command gets all Logic App actions from a run named LogicAppRun56 of a logic app named LogicApp05. (autogenerated)
69
-
70
- ``` powershell <!-- Aladdin Generated Example -->
71
- Get-AzLogicAppRunAction -Name 'IntegrationAccount31' -ResourceGroupName MyResourceGroup -RunName '08587489104702792076'
72
- ```
59
+ This command gets all Logic App actions from a run with identifier 08585925184423369718380498702CU26 of a logic app named LogicApp05.
73
60
74
61
## PARAMETERS
75
62
76
63
### -ActionName
64
+
77
65
Specifies the name of an action in a logic app run.
78
66
This cmdlet gets the action that this parameter specifies.
79
67
@@ -90,6 +78,7 @@ Accept wildcard characters: False
90
78
` ` `
91
79
92
80
### -DefaultProfile
81
+
93
82
The credentials, account, tenant, and subscription used for communication with azure
94
83
95
84
` ` ` yaml
@@ -104,7 +93,40 @@ Accept pipeline input: False
104
93
Accept wildcard characters : False
105
94
` ` `
106
95
96
+ ### -FollowNextPageLink
97
+
98
+ Indicates the cmdlet should follow next page links.
99
+
100
+ ` ` ` yaml
101
+ Type : System.Management.Automation.SwitchParameter
102
+ Parameter Sets : (All)
103
+ Aliases : FL
104
+
105
+ Required : False
106
+ Position : Named
107
+ Default value : None
108
+ Accept pipeline input : False
109
+ Accept wildcard characters : False
110
+ ` ` `
111
+
112
+ ### -MaximumFollowNextPageLink
113
+
114
+ Specifies how many times to follow next page links if FollowNextPageLink is used.
115
+
116
+ ` ` ` yaml
117
+ Type : System.Int32
118
+ Parameter Sets : (All)
119
+ Aliases : ML
120
+
121
+ Required : False
122
+ Position : Named
123
+ Default value : None
124
+ Accept pipeline input : False
125
+ Accept wildcard characters : False
126
+ ` ` `
127
+
107
128
### -Name
129
+
108
130
Specifies the name of a logic app for which this cmdlet gets an action.
109
131
110
132
` ` ` yaml
@@ -120,6 +142,7 @@ Accept wildcard characters: False
120
142
` ` `
121
143
122
144
### -ResourceGroupName
145
+
123
146
Specifies the name of a resource group in which this cmdlet gets an action.
124
147
125
148
` ` ` yaml
@@ -135,6 +158,7 @@ Accept wildcard characters: False
135
158
` ` `
136
159
137
160
### -RunName
161
+
138
162
Specifies the name of a run of a logic app.
139
163
This cmdlet gets an action for the run that this parameter specifies.
140
164
@@ -151,7 +175,8 @@ Accept wildcard characters: False
151
175
` ` `
152
176
153
177
### CommonParameters
154
- This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).
178
+
179
+ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see [about_CommonParameters](http://go.microsoft.com/fwlink/?LinkID=113216).
155
180
156
181
## INPUTS
157
182
@@ -168,5 +193,3 @@ This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable
168
193
[Get-AzLogicAppRunHistory](./Get-AzLogicAppRunHistory.md)
169
194
170
195
[Stop-AzLogicAppRun](./Stop-AzLogicAppRun.md)
171
-
172
-
0 commit comments