Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
[AutoPR machinelearningservices/resource-manager] typo: machinelearni…
…ngservices/resource-manager/Microsoft.MachineLearningServices (#3947)

* Generated from c5cbe5bc003fa15bccef51f089788c2cfb6a0a9c

typo: machinelearningservices/resource-manager/Microsoft.MachineLearningServices

- SSL capitalization
- configugation -> configuration
- creadentials -> credentials

* Packaging update of azure-mgmt-machinelearningservices
  • Loading branch information
AutorestCI authored Dec 4, 2018
commit 23b79474b8f8639acf46d99dccf4e4ca79a46196
4 changes: 3 additions & 1 deletion azure-mgmt-machinelearningservices/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
include *.rst
include azure_bdist_wheel.py
include azure/__init__.py
include azure/mgmt/__init__.py

2 changes: 1 addition & 1 deletion azure-mgmt-machinelearningservices/azure/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
2 changes: 1 addition & 1 deletion azure-mgmt-machinelearningservices/azure/mgmt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__import__('pkg_resources').declare_namespace(__name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@


class SslConfiguration(Model):
"""The ssl configugation for scoring.
"""The SSL configuration for scoring.

:param status: Enable or disable ssl for scoring. Possible values include:
:param status: Enable or disable SSL for scoring. Possible values include:
'Disabled', 'Enabled'
:type status: str or ~azure.mgmt.machinelearningservices.models.enum
:param cert: Cert data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@


class SslConfiguration(Model):
"""The ssl configugation for scoring.
"""The SSL configuration for scoring.

:param status: Enable or disable ssl for scoring. Possible values include:
:param status: Enable or disable SSL for scoring. Possible values include:
'Disabled', 'Enabled'
:type status: str or ~azure.mgmt.machinelearningservices.models.enum
:param cert: Cert data
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VirtualMachineSecrets(ComputeSecrets):

:param compute_type: Required. Constant filled by server.
:type compute_type: str
:param administrator_account: Admin creadentials for virtual machine.
:param administrator_account: Admin credentials for virtual machine.
:type administrator_account:
~azure.mgmt.machinelearningservices.models.VirtualMachineSshCredentials
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class VirtualMachineSecrets(ComputeSecrets):

:param compute_type: Required. Constant filled by server.
:type compute_type: str
:param administrator_account: Admin creadentials for virtual machine.
:param administrator_account: Admin credentials for virtual machine.
:type administrator_account:
~azure.mgmt.machinelearningservices.models.VirtualMachineSshCredentials
"""
Expand Down
54 changes: 0 additions & 54 deletions azure-mgmt-machinelearningservices/azure_bdist_wheel.py

This file was deleted.

1 change: 0 additions & 1 deletion azure-mgmt-machinelearningservices/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
[bdist_wheel]
universal=1
azure-namespace-package=azure-mgmt-nspkg
17 changes: 9 additions & 8 deletions azure-mgmt-machinelearningservices/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,6 @@
import os.path
from io import open
from setuptools import find_packages, setup
try:
from azure_bdist_wheel import cmdclass
except ImportError:
from distutils import log as logger
logger.warn("Wheel is not available, disabling bdist_wheel hook")
cmdclass = {}

# Change the PACKAGE_NAME only to change folder and different name
PACKAGE_NAME = "azure-mgmt-machinelearningservices"
Expand Down Expand Up @@ -76,11 +70,18 @@
'License :: OSI Approved :: MIT License',
],
zip_safe=False,
packages=find_packages(exclude=["tests"]),
packages=find_packages(exclude=[
'tests',
# Exclude packages that will be covered by PEP420 or nspkg
'azure',
'azure.mgmt',
]),
install_requires=[
'msrest>=0.5.0',
'msrestazure>=0.4.32,<2.0.0',
'azure-common~=1.1',
],
cmdclass=cmdclass
extras_require={
":python_version<'3.0'": ['azure-mgmt-nspkg'],
}
)