Skip to content

Commit 265e1db

Browse files
author
Srinivas Alluri
committed
udpated the version
1 parent fb852b9 commit 265e1db

6 files changed

Lines changed: 1655 additions & 141 deletions

File tree

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

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

1313

14-
@register_command(
15-
"neon postgres create",
16-
is_preview=True,
17-
)
1814
class Create(AAZCommand):
1915
"""Create a Neon organization
2016

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

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,19 @@
1313

1414
@register_command(
1515
"neon postgres organization delete",
16-
is_preview=True,
1716
confirmation="Are you sure you want to perform this operation?",
1817
)
1918
class Delete(AAZCommand):
2019
"""Delete an existing Neon organization within Azure.
2120
22-
:example: Organizations_Delete
21+
:example: Delete Neon Postgres Organization
2322
az neon postgres organization delete --subscription 12345678-1234-1234-1234-123456789abc --resource-group demoResourceGroup --name demoNeonResource
2423
"""
2524

2625
_aaz_info = {
27-
"version": "2024-08-01-preview",
26+
"version": "2025-03-01",
2827
"resources": [
29-
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/neon.postgres/organizations/{}", "2024-08-01-preview"],
28+
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/neon.postgres/organizations/{}", "2025-03-01"],
3029
]
3130
}
3231

@@ -59,7 +58,7 @@ def _build_arguments_schema(cls, *args, **kwargs):
5958
),
6059
)
6160
_args_schema.resource_group = AAZResourceGroupNameArg(
62-
help="Name of the resource group",
61+
help="Name of the Azure resource group.",
6362
required=True,
6463
)
6564
return cls._args_schema
@@ -150,7 +149,7 @@ def url_parameters(self):
150149
def query_parameters(self):
151150
parameters = {
152151
**self.serialize_query_param(
153-
"api-version", "2024-08-01-preview",
152+
"api-version", "2025-03-01",
154153
required=True,
155154
),
156155
}

0 commit comments

Comments
 (0)