Skip to content

Commit 3ea6072

Browse files
authored
updated automation extension version (#5267)
1 parent 817e351 commit 3ea6072

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

src/automation/HISTORY.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ Release History
1010
0.1.2
1111
++++++
1212
* Added Hybrid Runbook Worker Group and Hybrid Runbook Workers related commands.
13+
14+
0.1.3
15+
++++++
1316
* Added Hybrid Runbook worker move command.
1417

src/automation/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ az automation hrwg hrw create \
133133
--automation-account-name accountName \
134134
--resource-group groupName \
135135
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
136-
--name hybridRunbookWorkerName \
136+
--hybrid-runbook-worker-id hybridRunbookWorkerId \
137137
--vm-resource-id vmResourceId
138138
```
139139

@@ -151,7 +151,7 @@ az automation hrwg hrw show \
151151
--automation-account-name accountName \
152152
--resource-group groupName \
153153
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
154-
--name hybridRunbookWorkerName
154+
--hybrid-runbook-worker-id hybridRunbookWorkerId
155155
```
156156

157157
##### delete a hybrid worker
@@ -160,7 +160,7 @@ az automation hrwg hrw delete \
160160
--automation-account-name accountName \
161161
--resource-group groupName \
162162
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
163-
--name hybridRunbookWorkerName
163+
--hybrid-runbook-worker-id hybridRunbookWorkerId
164164
```
165165

166166
##### Move a hybrid runbook worker to a different hybrid runbook worker group
@@ -170,7 +170,7 @@ az automation hrwg hrw move \
170170
--resource-group groupName \
171171
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
172172
--target-hybrid-runbook-worker-group-name targetHybridWorkerGroupName \
173-
--name hybridRunbookWorkerName
173+
--hybrid-runbook-worker-id hybridRunbookWorkerId
174174
```
175175

176176

src/automation/azext_automation/aaz/latest/automation/hrwg/hrw/_move.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5757
required=True,
5858
)
5959
_args_schema.hybrid_runbook_worker_id = AAZStrArg(
60-
options=["--hybrid-runbook-worker-id"],
60+
options=["-n", "--name","--hybrid-runbook-worker-id"],
6161
help="The hybrid runbook worker id",
6262
required=True,
6363
)

src/automation/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
from setuptools import setup, find_packages
1111

1212
# HISTORY.rst entry.
13-
VERSION = '0.1.2'
13+
VERSION = '0.1.3'
1414
try:
1515
from azext_automation.manual.version import VERSION
1616
except ImportError:

0 commit comments

Comments
 (0)