You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/automation/automation-runbook-types.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ The Azure Automation Process Automation feature supports several types of runboo
19
19
|:--- |:--- |
20
20
|[PowerShell](#powershell-runbooks) <br>(recommended) |Textual runbook based on Windows PowerShell scripting. The currently supported versions are PowerShell 7.4 and PowerShell 5.1. Since [PowerShell 7.1](/powershell/scripting/install/powershell-support-lifecycle?view=powershell-7.3&preserve-view=true#powershell-end-of-support-dates) and PowerShell 7.2 are no longer supported by parent product PowerShell, we recommend that you create runbooks in long term supported version PowerShell 7.4. |
21
21
|[PowerShell Workflow](#powershell-workflow-runbooks)|Textual runbook based on Windows PowerShell Workflow scripting. |
22
-
|[Python](#python-runbooks) <br>(recommended) |Textual runbook based on Python scripting. The currently supported versions is Python 3.10. Since [Python 2.7](https://devguide.python.org/versions/) and Python 3.8 are no longer supported by parent product Python, we recommend that you create runbooks in Python 3.10.|
22
+
|[Python](#python-runbooks) <br>(recommended) |Textual runbook based on Python scripting. The currently supported version is Python 3.10. Since [Python 2.7](https://devguide.python.org/versions/) and Python 3.8 are no longer supported by parent product Python, we recommend that you create runbooks in Python 3.10.|
23
23
|[Graphical](#graphical-runbooks)|Graphical runbook based on Windows PowerShell and created and edited completely in the graphical editor in Azure portal. |
24
24
|[Graphical PowerShell Workflow](#graphical-runbooks)|Graphical runbook based on Windows PowerShell Workflow and created and edited completely in the graphical editor in Azure portal. |
25
25
@@ -44,7 +44,7 @@ The same Azure sandbox and Hybrid Runbook Worker can execute multiple **PowerShe
44
44
45
45
> [!NOTE]
46
46
> - Currently, PowerShell 7.4 runtime version is supported for both Cloud and Hybrid jobs in all Public regions except Brazil Southeast and Gov clouds.
47
-
> - At the time of runbook execution, if you select **Runtime Version** as **7.4**, PowerShell modules targeting 7.4 runtime version are used and if you select **Runtime Version** as **5.1**, PowerShell modules targeting 5.1 runtime version are used.
47
+
> - At the time of runbook execution, if you select **Runtime Version** as **7.4**, PowerShell modules targeting 7.4 runtime version is used and if you select **Runtime Version** as **5.1**, PowerShell modules targeting 5.1 runtime version is used.
48
48
49
49
Ensure that you select the right Runtime Version for modules.
50
50
@@ -267,7 +267,7 @@ The following are the current limitations and known issues with PowerShell runbo
267
267
268
268
$ProgressPreference = "Continue"
269
269
```
270
-
- Avoid importing `Az.Accounts` module to version 2.4.0 version for PowerShell 7 runtime as there can be an unexpected behavior using this version in Azure Automation.
270
+
- Avoid importing `Az.Accounts` module to version 2.4.0 for PowerShell 7 runtime as there can be an unexpected behavior using this version in Azure Automation.
271
271
- You might encounter formatting problems with error output streams for the job running in PowerShell 7 runtime.
272
272
- When you import a PowerShell 7.1 module that's dependent on other modules, you may find that the import button is gray even when PowerShell 7.1 version of the dependent module is installed. For example, Az PowerShell module.Compute version 4.20.0, has a dependency on Az.Accounts being >= 2.6.0. This issue occurs when an equivalent dependent module in PowerShell 5.1 doesn't meet the version requirements. For example, 5.1 version of Az.Accounts were < 2.6.0.
273
273
- When you start PowerShell 7 runbook using the webhook, it auto-converts the webhook input parameter to an invalid JSON.
@@ -361,7 +361,7 @@ The limitations of Python runbooks are:
361
361
362
362
# [Python 2.7](#tab/py27)
363
363
364
-
-[Python 2.7](https://devguide.python.org/versions/) is no longer supported by parent product Python. We recommend you to create new runbooks in the supported versions and update the outdated runbooks.
364
+
-[Python 2.7](https://devguide.python.org/versions/) is no longer supported by parent product Python. We recommend that you create new runbooks in the supported versions and update the outdated runbooks.
365
365
- You must be familiar with Python scripting.
366
366
- For Python 2.7.12 modules, use wheel files cp27-amd6.
367
367
- To use third-party libraries, you must [import the packages](python-packages.md) into the Automation account.
0 commit comments