Skip to content

Commit

Permalink
CodeGen from PR 18222 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 90654ac3594611e15a7274cd5a1c1a1761e3c96c into 17429b093099ec2d321da3ee0da38ffccd4beaa3
  • Loading branch information
SDKAuto committed Mar 14, 2022
1 parent 86792ee commit 77787f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 11 deletions.
2 changes: 1 addition & 1 deletion sdk/subscription/azure-mgmt-subscription/_meta.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"@autorest/python@5.12.0",
"@autorest/modelerfour@4.19.3"
],
"commit": "1b0a465061c68175898f8f5d27f0301f42ce994c",
"commit": "7febba7a7a69503ed46397daa745dd85ffcb5640",
"repository_url": "https://github.com/Azure/azure-rest-api-specs",
"autorest_command": "autorest specification/subscription/resource-manager/readme.md --multiapi --python --python-mode=update --python-sdks-folder=/home/vsts/work/1/s/azure-sdk-for-python/sdk --python3-only --track2 --use=@autorest/python@5.12.0 --use=@autorest/modelerfour@4.19.3 --version=3.7.2",
"readme": "specification/subscription/resource-manager/readme.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
# Changes may cause incorrect behavior and will be lost if the code is regenerated.
# --------------------------------------------------------------------------

VERSION = "3.0.0"
VERSION = "1.0.0b1"
Original file line number Diff line number Diff line change
Expand Up @@ -1142,18 +1142,12 @@ def __init__(
class SubscriptionListResult(msrest.serialization.Model):
"""Subscription list operation response.
All required parameters must be populated in order to send to Azure.
:ivar value: An array of subscriptions.
:vartype value: list[~azure.mgmt.subscription.models.Subscription]
:ivar next_link: Required. The URL to get the next set of results.
:ivar next_link: The URL to get the next set of results.
:vartype next_link: str
"""

_validation = {
'next_link': {'required': True},
}

_attribute_map = {
'value': {'key': 'value', 'type': '[Subscription]'},
'next_link': {'key': 'nextLink', 'type': 'str'},
Expand All @@ -1162,14 +1156,14 @@ class SubscriptionListResult(msrest.serialization.Model):
def __init__(
self,
*,
next_link: str,
value: Optional[List["Subscription"]] = None,
next_link: Optional[str] = None,
**kwargs
):
"""
:keyword value: An array of subscriptions.
:paramtype value: list[~azure.mgmt.subscription.models.Subscription]
:keyword next_link: Required. The URL to get the next set of results.
:keyword next_link: The URL to get the next set of results.
:paramtype next_link: str
"""
super(SubscriptionListResult, self).__init__(**kwargs)
Expand Down

0 comments on commit 77787f6

Please sign in to comment.