Skip to content

Commit 3f803fd

Browse files
author
Srinivas Alluri
committed
updated the descriptions
1 parent 8b1ff89 commit 3f803fd

File tree

23 files changed

+26
-24
lines changed

23 files changed

+26
-24
lines changed

src/neon/azext_neon/aaz/latest/neon/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage Neon Postgres
18+
"""Manage Neon Postgres databases and related resources within Azure.
1919
"""
2020
pass
2121

src/neon/azext_neon/aaz/latest/neon/postgres/_create.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
from azure.cli.core.aaz import *
1212

1313

14+
@register_command(
15+
"neon postgres create",
16+
is_preview=True,
17+
)
1418
class Create(AAZCommand):
1519
"""Create a Neon organization
1620

src/neon/azext_neon/aaz/latest/neon/postgres/branch/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres branch",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage Branch
18+
"""Manage branches within a Neon Postgres database.
1919
"""
2020
pass
2121

src/neon/azext_neon/aaz/latest/neon/postgres/branch/_create.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres branch create",
1616
)
1717
class Create(AAZCommand):
18-
"""Create a new branch in a Neon project.
18+
"""Create a new branch within a Neon Postgres database.
1919
2020
:example: Create a Branch
2121
az neon postgres branch create --resource-group rgneon --organization-name org-cli-test --project-name old-frost-16758796 --branch-name test-branch --entity-name test-branch --role-name test_role --database-name testneondb

src/neon/azext_neon/aaz/latest/neon/postgres/branch/_delete.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
confirmation="Are you sure you want to perform this operation?",
1717
)
1818
class Delete(AAZCommand):
19-
"""Delete a branch from a Neon project.
19+
"""Delete an existing branch within a Neon Postgres database.
2020
2121
:example: Delete Branch
2222
az neon postgres branch delete --subscription 38a546de-5736-48e8-a69a-5cc636794112 --resource-group rgneon --organization-name org-cli-test --project-id old-frost-16758796 --branch-id br-spring-field-a8vje3tr

src/neon/azext_neon/aaz/latest/neon/postgres/branch/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres branch list",
1616
)
1717
class List(AAZCommand):
18-
"""List all branches in a Neon project.
18+
"""List all branch resources within a specific project in Neon Postgres.
1919
2020
:example: List Branches under a Project
2121
az neon postgres branch list --subscription 38a546de-5736-48e8-a69a-5cc636794112 --resource-group rgneon --organization-name org-cli-test --project-id old-frost-16758796

src/neon/azext_neon/aaz/latest/neon/postgres/branch/_show.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres branch show",
1616
)
1717
class Show(AAZCommand):
18-
"""Retrieve details of a specific Neon branch.
18+
"""Retrieve details of a specific branch within a Neon Postgres database.
1919
2020
:example: Show Branch Details
2121
az neon postgres branch show --subscription 38a546de-5736-48e8-a69a-5cc636794112 --resource-group rgneon --organization-name org-cli-test --project-id old-frost-16758796 --branch-id br-spring-field-a8vje3tr

src/neon/azext_neon/aaz/latest/neon/postgres/branch/_update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres branch update",
1616
)
1717
class Update(AAZCommand):
18-
"""Update a branch from a Neon project.
18+
"""Update the properties of an existing branch within a Neon Postgres database.
1919
2020
:example: Update a Branch
2121
az neon postgres branch update --resource-group rgneon --organization-name org-cli-test --project-name old-frost-16758796 --project-id old-frost-16758796 --branch-name test-branch --entity-name test-branch2 --role-name test_role --database-name testneondb

src/neon/azext_neon/aaz/latest/neon/postgres/neon_database/__cmd_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres neon-database",
1616
)
1717
class __CMDGroup(AAZCommandGroup):
18-
"""Manage Neon Database
18+
"""Manage Neon Postgres databases within Azure.
1919
"""
2020
pass
2121

src/neon/azext_neon/aaz/latest/neon/postgres/neon_database/_list.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"neon postgres neon-database list",
1616
)
1717
class List(AAZCommand):
18-
"""List all databases in a Neon branch.
18+
"""List all Neon Postgres databases associated with a specific branch.
1919
2020
:example: List Neon Databases under a Branch
2121
az neon postgres neon-database list --resource-group rgneon --organization-name org-test-cli --project-id old-frost-16758796 --branch-id br-spring-field-a8vje3tr

0 commit comments

Comments
 (0)