Skip to content

Commit

Permalink
updated automation extension version (#5267)
Browse files Browse the repository at this point in the history
  • Loading branch information
krmanupa authored Aug 25, 2022
1 parent 817e351 commit 3ea6072
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
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

0 comments on commit 3ea6072

Please sign in to comment.