Skip to content

Commit 678cbb5

Browse files
author
SDK Automation
committed
Generated from 078bba06a578b16cf3eba0b97360c52c50674693
1 parent 79bb773 commit 678cbb5

21 files changed

+4797
-152
lines changed
Lines changed: 12 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,21 @@
1-
## Microsoft Azure SDK for Python
1+
# Microsoft Azure SDK for Python
22

3-
This is the Microsoft Azure Machine Learning Services Management Client
4-
Library.
3+
This is the Microsoft Azure Machine Learning Services Management Client Library.
4+
This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8.
5+
For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all).
56

6-
Azure Resource Manager (ARM) is the next generation of management APIs
7-
that replace the old Azure Service Management (ASM).
87

9-
This package has been tested with Python 2.7, 3.5, 3.6 and 3.7.
8+
# Usage
109

11-
For the older Azure Service Management (ASM) libraries, see
12-
[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy)
13-
library.
10+
For code examples, see [Machine Learning Services Management](https://docs.microsoft.com/python/api/overview/azure/)
11+
on docs.microsoft.com.
1412

15-
For a more complete set of Azure libraries, see the
16-
[azure sdk python release](https://aka.ms/azsdk/python/all).
1713

18-
## Usage
14+
# Provide Feedback
1915

20-
For code examples, see [Machine Learning Services
21-
Management](https://docs.microsoft.com/python/api/overview/azure/) on
22-
docs.microsoft.com.
23-
24-
## Provide Feedback
25-
26-
If you encounter any bugs or have suggestions, please file an issue in
27-
the [Issues](https://github.com/Azure/azure-sdk-for-python/issues)
16+
If you encounter any bugs or have suggestions, please file an issue in the
17+
[Issues](https://github.com/Azure/azure-sdk-for-python/issues)
2818
section of the project.
2919

30-
![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-machinelearningservices%2FREADME.png)
20+
21+
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-machinelearningservices%2FREADME.png)

sdk/machinelearning/azure-mgmt-machinelearningservices/azure/mgmt/machinelearningservices/_azure_machine_learning_workspaces.py

Lines changed: 33 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,22 @@
1313
from msrest import Serializer, Deserializer
1414

1515
from ._configuration import AzureMachineLearningWorkspacesConfiguration
16+
from .operations import AzureMachineLearningWorkspacesOperationsMixin
1617
from .operations import Operations
1718
from .operations import WorkspacesOperations
19+
from .operations import WorkspaceFeaturesOperations
20+
from .operations import NotebooksOperations
1821
from .operations import UsagesOperations
1922
from .operations import VirtualMachineSizesOperations
23+
from .operations import QuotasOperations
24+
from .operations import WorkspaceConnectionsOperations
2025
from .operations import MachineLearningComputeOperations
26+
from .operations import PrivateEndpointConnectionsOperations
27+
from .operations import PrivateLinkResourcesOperations
2128
from . import models
2229

2330

24-
class AzureMachineLearningWorkspaces(SDKClient):
31+
class AzureMachineLearningWorkspaces(AzureMachineLearningWorkspacesOperationsMixin, SDKClient):
2532
"""These APIs allow end users to operate on Azure Machine Learning Workspace resources.
2633
2734
:ivar config: Configuration for client.
@@ -31,12 +38,24 @@ class AzureMachineLearningWorkspaces(SDKClient):
3138
:vartype operations: azure.mgmt.machinelearningservices.operations.Operations
3239
:ivar workspaces: Workspaces operations
3340
:vartype workspaces: azure.mgmt.machinelearningservices.operations.WorkspacesOperations
41+
:ivar workspace_features: WorkspaceFeatures operations
42+
:vartype workspace_features: azure.mgmt.machinelearningservices.operations.WorkspaceFeaturesOperations
43+
:ivar notebooks: Notebooks operations
44+
:vartype notebooks: azure.mgmt.machinelearningservices.operations.NotebooksOperations
3445
:ivar usages: Usages operations
3546
:vartype usages: azure.mgmt.machinelearningservices.operations.UsagesOperations
3647
:ivar virtual_machine_sizes: VirtualMachineSizes operations
3748
:vartype virtual_machine_sizes: azure.mgmt.machinelearningservices.operations.VirtualMachineSizesOperations
49+
:ivar quotas: Quotas operations
50+
:vartype quotas: azure.mgmt.machinelearningservices.operations.QuotasOperations
51+
:ivar workspace_connections: WorkspaceConnections operations
52+
:vartype workspace_connections: azure.mgmt.machinelearningservices.operations.WorkspaceConnectionsOperations
3853
:ivar machine_learning_compute: MachineLearningCompute operations
3954
:vartype machine_learning_compute: azure.mgmt.machinelearningservices.operations.MachineLearningComputeOperations
55+
:ivar private_endpoint_connections: PrivateEndpointConnections operations
56+
:vartype private_endpoint_connections: azure.mgmt.machinelearningservices.operations.PrivateEndpointConnectionsOperations
57+
:ivar private_link_resources: PrivateLinkResources operations
58+
:vartype private_link_resources: azure.mgmt.machinelearningservices.operations.PrivateLinkResourcesOperations
4059
4160
:param credentials: Credentials needed for the client to connect to Azure.
4261
:type credentials: :mod:`A msrestazure Credentials
@@ -53,17 +72,29 @@ def __init__(
5372
super(AzureMachineLearningWorkspaces, self).__init__(self.config.credentials, self.config)
5473

5574
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
56-
self.api_version = '2019-05-01'
75+
self.api_version = '2020-08-01'
5776
self._serialize = Serializer(client_models)
5877
self._deserialize = Deserializer(client_models)
5978

6079
self.operations = Operations(
6180
self._client, self.config, self._serialize, self._deserialize)
6281
self.workspaces = WorkspacesOperations(
6382
self._client, self.config, self._serialize, self._deserialize)
83+
self.workspace_features = WorkspaceFeaturesOperations(
84+
self._client, self.config, self._serialize, self._deserialize)
85+
self.notebooks = NotebooksOperations(
86+
self._client, self.config, self._serialize, self._deserialize)
6487
self.usages = UsagesOperations(
6588
self._client, self.config, self._serialize, self._deserialize)
6689
self.virtual_machine_sizes = VirtualMachineSizesOperations(
6790
self._client, self.config, self._serialize, self._deserialize)
91+
self.quotas = QuotasOperations(
92+
self._client, self.config, self._serialize, self._deserialize)
93+
self.workspace_connections = WorkspaceConnectionsOperations(
94+
self._client, self.config, self._serialize, self._deserialize)
6895
self.machine_learning_compute = MachineLearningComputeOperations(
6996
self._client, self.config, self._serialize, self._deserialize)
97+
self.private_endpoint_connections = PrivateEndpointConnectionsOperations(
98+
self._client, self.config, self._serialize, self._deserialize)
99+
self.private_link_resources = PrivateLinkResourcesOperations(
100+
self._client, self.config, self._serialize, self._deserialize)

0 commit comments

Comments
 (0)