Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 4 additions & 0 deletions src/lambda-test/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
Release History
===============

1.0.0
++++++
* Stable release of LambdaTest module

1.0.0b1
++++++
* Initial release.
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,5 @@
from ._delete import *
from ._list import *
from ._show import *
from ._update import *
from ._wait import *
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
class Create(AAZCommand):
"""Create a OrganizationResource

:example: Organizations_CreateOrUpdate_MaximumSet_Gen - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule
:example: Create a Organization
az lambda-test hyper-execute organization create --resource-group abdul-test --organizationname test-cli-instance-4 --marketplace "{subscription-id:fc35d936-3b89-41f8-8110-a24b56826c37,offer-details:{publisher-id:lambdatestinc1584019832435,offer-id:lambdatest_liftr_testing,plan-id:testing,plan-name:testing_liftr,term-unit:P1Y,term-id:o73usof6rkyy}}" --user "{first-name:Joe,last-name:Aggarwal,email-address:aggarwalsw@microsoft.com,upn:aggarwalsw@microsoft.com}" --partner-properties "{licenses-subscribed:1}" --single-sign-on-properties "{type:Saml,enterprise-app-id:0b9873df-1629-4036-9360-5f2f65c0a0d3,aad-domains:[MicrosoftCustomerLed.onmicrosoft.com]}" --location Central US EUAP
"""

_aaz_info = {
"version": "2024-02-01-preview",
"version": "2024-02-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01"],
]
}

Expand Down Expand Up @@ -308,7 +308,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-02-01-preview",
"api-version", "2024-02-01",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
class Delete(AAZCommand):
"""Delete a OrganizationResource

:example: Organizations_Delete_MaximumSet_Gen - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule
:example: Delete a Organization
az lambda-test hyper-execute organization delete --resource-group abdul-test --organizationname test-cli-instance-4
"""

_aaz_info = {
"version": "2024-02-01-preview",
"version": "2024-02-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01"],
]
}

Expand Down Expand Up @@ -148,7 +148,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-02-01-preview",
"api-version", "2024-02-01",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@
class List(AAZCommand):
"""List OrganizationResource resources by subscription ID

:example: Organizations_ListBySubscription_MaximumSet_Gen - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule
:example: List a Organization
az lambda-test hyper-execute organization list --resource-group abdul-test
"""

_aaz_info = {
"version": "2024-02-01-preview",
"version": "2024-02-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/providers/lambdatest.hyperexecute/organizations", "2024-02-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations", "2024-02-01-preview"],
["mgmt-plane", "/subscriptions/{}/providers/lambdatest.hyperexecute/organizations", "2024-02-01"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations", "2024-02-01"],
]
}

Expand Down Expand Up @@ -112,7 +112,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-02-01-preview",
"api-version", "2024-02-01",
required=True,
),
}
Expand Down Expand Up @@ -368,7 +368,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-02-01-preview",
"api-version", "2024-02-01",
required=True,
),
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
class Show(AAZCommand):
"""Get a OrganizationResource

:example: Organizations_Get_MaximumSet_Gen - generated by [MaximumSet] rule - generated by [MaximumSet] rule - generated by [MaximumSet] rule
:example: Get a Organization
az lambda-test hyper-execute organization show --resource-group abdul-test --organizationname test-cli-instance-3
"""

_aaz_info = {
"version": "2024-02-01-preview",
"version": "2024-02-01",
"resources": [
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01-preview"],
["mgmt-plane", "/subscriptions/{}/resourcegroups/{}/providers/lambdatest.hyperexecute/organizations/{}", "2024-02-01"],
]
}

Expand Down Expand Up @@ -125,7 +125,7 @@ def url_parameters(self):
def query_parameters(self):
parameters = {
**self.serialize_query_param(
"api-version", "2024-02-01-preview",
"api-version", "2024-02-01",
required=True,
),
}
Expand Down
Loading
Loading