Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/automation/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,8 @@ Release History
0.1.2
++++++
* Added Hybrid Runbook Worker Group and Hybrid Runbook Workers related commands.

0.1.3
++++++
* Added Hybrid Runbook worker move command.

8 changes: 4 additions & 4 deletions src/automation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ az automation hrwg hrw create \
--automation-account-name accountName \
--resource-group groupName \
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
--name hybridRunbookWorkerName \
--hybrid-runbook-worker-id hybridRunbookWorkerId \
--vm-resource-id vmResourceId
```

Expand All @@ -151,7 +151,7 @@ az automation hrwg hrw show \
--automation-account-name accountName \
--resource-group groupName \
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
--name hybridRunbookWorkerName
--hybrid-runbook-worker-id hybridRunbookWorkerId
```

##### delete a hybrid worker
Expand All @@ -160,7 +160,7 @@ az automation hrwg hrw delete \
--automation-account-name accountName \
--resource-group groupName \
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
--name hybridRunbookWorkerName
--hybrid-runbook-worker-id hybridRunbookWorkerId
```

##### Move a hybrid runbook worker to a different hybrid runbook worker group
Expand All @@ -170,7 +170,7 @@ az automation hrwg hrw move \
--resource-group groupName \
--hybrid-runbook-worker-group-name hybridRunbookWorkerGroupName \
--target-hybrid-runbook-worker-group-name targetHybridWorkerGroupName \
--name hybridRunbookWorkerName
--hybrid-runbook-worker-id hybridRunbookWorkerId
```


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
required=True,
)
_args_schema.hybrid_runbook_worker_id = AAZStrArg(
options=["--hybrid-runbook-worker-id"],
options=["-n", "--name","--hybrid-runbook-worker-id"],
help="The hybrid runbook worker id",
required=True,
)
Expand Down
2 changes: 1 addition & 1 deletion src/automation/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from setuptools import setup, find_packages

# HISTORY.rst entry.
VERSION = '0.1.2'
VERSION = '0.1.3'
try:
from azext_automation.manual.version import VERSION
except ImportError:
Expand Down