Skip to content

Commit 04825e8

Browse files
committed
[Update] Neon Postgres commands for changing 'Resource' to 'Organization'
1 parent cc92ccb commit 04825e8

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
is_preview=True,
1717
)
1818
class Create(AAZCommand):
19-
"""Create a Neon Resource
19+
"""Create a Neon organization
2020
2121
:example: Organizations_CreateOrUpdate
2222
az neon postgres create --resource-group demoResourceGroup --name demoNeonResource --location eastus --subscription 12345678-1234-1234-1234-123456789abc --marketplace-details "{subscription-id:abcd1234-5678-90ab-cdef-12345678abcd,subscription-status:PendingFulfillmentStart,offer-details:{publisher-id:microsoft,offer-id:neon-postgres,plan-id:serverless-plan,plan-name:'Neon Serverless Postgres - Free (Test_Liftr)',term-unit:P1M,term-id:term1234}}" --user-details "{first-name:John,last-name:Doe,email-address:[email protected],upn:johndoe,phone-number:+1234567890}" --company-details "{company-name:'DemoCompany',country:USA,business-phone:+9876543210,office-address:'123 Azure Ave, Redmond, WA',domain:democompany.com,number-of-employees:1000}" --partner-organization-properties "{organization-id:org-5678,org-name:'PartnerOrg',single-sign-on-properties:{single-sign-on-state:Enable,enterprise-app-id:app-9876,single-sign-on-url:'https://sso.partnerorg.com',aad-domains:['partnerorg.com']}}"

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
confirmation="Are you sure you want to perform this operation?",
1818
)
1919
class Delete(AAZCommand):
20-
"""Delete a Neon Resource
20+
"""Delete a Neon organization
2121
2222
:example: Organizations_Delete
2323
az neon postgres organization delete --subscription 12345678-1234-1234-1234-123456789abc --resource-group demoResourceGroup --name demoNeonResource

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
is_preview=True,
1717
)
1818
class List(AAZCommand):
19-
"""List Neon resources by subscription ID
19+
"""List Neon organizations by subscription ID
2020
2121
:example: Organizations_ListBySubscription
2222
az neon postgres organization list --subscription 12345678-1234-1234-1234-123456789abc --resource-group demoResourceGroup

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
is_preview=True,
1717
)
1818
class Show(AAZCommand):
19-
"""Get a Neon Resource
19+
"""Get a Neon Organization
2020
2121
:example: Organizations_Get
2222
az neon postgres organization show --subscription 12345678-1234-1234-1234-123456789abc --resource-group demoResourceGroup --name demoNeonResource

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
is_preview=True,
1717
)
1818
class Update(AAZCommand):
19-
"""Update a Neon Resource
19+
"""Update a Neon organization
2020
2121
:example: Organization_Update
2222
az az neon postgres organization update --resource-group demoResourceGroup --name demoNeonResource --user-details "{first-name:John,last-name:Doe,email-address:[email protected],upn:johndoe,phone-number:+1234567890}" --company-details "{company-name:DemoCompany,country:USA,office-address:'123 Azure Ave, Redmond, WA',business-phone:+9876543210,domain:democompany.com,number-of-employees:1000}" --partner-organization-properties "{organization-id:org-5678,org-name:PartnerOrg,single-sign-on-properties:{single-sign-on-state:Enable,enterprise-app-id:app-9876,single-sign-on-url:'https://sso.partnerorg.com',aad-domains:['partnerorg.com']}}" --tags "{environment:production}"

0 commit comments

Comments
 (0)