Skip to content
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
1 change: 1 addition & 0 deletions sdk/labservices/azure-mgmt-labservices/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
recursive-include tests *.py *.yaml
include *.rst
include azure/__init__.py
include azure/mgmt/__init__.py
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
from .register_payload_py3 import RegisterPayload
from .reset_password_payload_py3 import ResetPasswordPayload
from .resource_py3 import Resource
from .size_configuration_properties_fragment_py3 import SizeConfigurationPropertiesFragment
from .user_py3 import User
from .size_configuration_properties_fragment_py3 import SizeConfigurationPropertiesFragment
from .user_fragment_py3 import UserFragment
except (SyntaxError, ImportError):
from .add_users_payload import AddUsersPayload
Expand Down Expand Up @@ -130,8 +130,8 @@
from .register_payload import RegisterPayload
from .reset_password_payload import ResetPasswordPayload
from .resource import Resource
from .size_configuration_properties_fragment import SizeConfigurationPropertiesFragment
from .user import User
from .size_configuration_properties_fragment import SizeConfigurationPropertiesFragment
from .user_fragment import UserFragment
from .operation_metadata_paged import OperationMetadataPaged
from .lab_account_paged import LabAccountPaged
Expand Down Expand Up @@ -207,8 +207,8 @@
'RegisterPayload',
'ResetPasswordPayload',
'Resource',
'SizeConfigurationPropertiesFragment',
'User',
'SizeConfigurationPropertiesFragment',
'UserFragment',
'OperationMetadataPaged',
'LabAccountPaged',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ class PublishingState(str, Enum):

class ConfigurationState(str, Enum):

not_applicable = "NotApplicable" #: User either hasn't started configuring their template or they haven't started the configuration process.
not_applicable = "NotApplicable" #: User either hasn't started configuring their template
or they haven't started the configuration process.
completed = "Completed" #: User is finished modifying the template.


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.1.1"
VERSION = "2018-10-15"

1 change: 1 addition & 0 deletions sdk/labservices/azure-mgmt-labservices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
version=version,
description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME),
long_description=readme + '\n\n' + history,
long_description_content_type='text/x-rst',
license='MIT License',
author='Microsoft Corporation',
author_email='azpysdkhelp@microsoft.com',
Expand Down