Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial release of managed devops pools #7351

Merged
merged 9 commits into from
Apr 1, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
update the casing
  • Loading branch information
ajaykn committed Apr 1, 2024
commit 21b729548d44914fe1fb7ea76e5595825ba8a51d
2 changes: 1 addition & 1 deletion src/mdp/azext_mdp/aaz/latest/mdp/pool/_create.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
is_preview=True,
)
class Create(AAZCommand):
"""Create a Pool
"""Create a pool

:example: Create
az mdp pool create --location "eastus" --name "cli-contoso-pool" --resource-group "rg1"
Expand Down
3 changes: 1 addition & 2 deletions src/mdp/azext_mdp/aaz/latest/mdp/pool/_delete.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@
confirmation="Are you sure you want to perform this operation?",
)
class Delete(AAZCommand):
"""Delete a Pool

"""Delete a pool
:example: Delete
az mdp pool delete --name "cli-contoso-pool" --resource-group "rg1"
"""
Expand Down
2 changes: 1 addition & 1 deletion src/mdp/azext_mdp/aaz/latest/mdp/pool/_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
is_preview=True,
)
class List(AAZCommand):
"""List all Pool resources
"""List all pool resources

:example: List by resource group
az mdp pool list --resource-group "rg1"
Expand Down
2 changes: 1 addition & 1 deletion src/mdp/azext_mdp/aaz/latest/mdp/pool/_show.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
is_preview=True,
)
class Show(AAZCommand):
"""Get a Pool
"""Get a pool

:example: Get
az mdp pool show --name "cli-contoso-pool" --resource-group "rg1"
Expand Down
2 changes: 1 addition & 1 deletion src/mdp/azext_mdp/aaz/latest/mdp/pool/_update.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
is_preview=True,
)
class Update(AAZCommand):
"""Update a Pool
"""Update a pool

:example: Update
az mdp pool update --name "cli-contoso-pool" --resource-group "rg1" --tags CostCode="12345"
Expand Down
Loading