Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR track2_azure-mgmt-subscription] update readme #9549

Closed
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
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/[email protected]",
"@autorest/[email protected]"
],
"commit": "1b0a465061c68175898f8f5d27f0301f42ce994c",
"commit": "1197aec6f7a9ef9a5a61891b3004b213f6f3ee70",
"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/[email protected] --use=@autorest/[email protected] --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