@@ -77,7 +77,8 @@ Next, run the following command in the CLI:
77
77
# [ Python SDK] ( #tab/Python-SDK )
78
78
``` python
79
79
80
- from azure.ai.ml.entities import FileSystem,Database, DataImport
80
+ from azure.ai.ml.entities import DataImport
81
+ from azure.ai.ml.data_transfer import Database
81
82
from azure.ai.ml import MLClient
82
83
83
84
# Supported connections include:
@@ -137,7 +138,8 @@ Next, execute this command in the CLI:
137
138
# [ Python SDK] ( #tab/Python-SDK )
138
139
``` python
139
140
140
- from azure.ai.ml.entities import FileSystem,Database, DataImport
141
+ from azure.ai.ml.entities import DataImport
142
+ from azure.ai.ml.data_transfer import FileSystem
141
143
from azure.ai.ml import MLClient
142
144
143
145
# Supported connections include:
@@ -174,7 +176,7 @@ The next example returns the status of the submitted data import activity. The c
174
176
# [ Python SDK] ( #tab/Python-SDK )
175
177
176
178
``` python
177
- from azure.ai.ml.entities import FileSystem,Database, DataImport
179
+ from azure.ai.ml.entities import DataImport
178
180
from azure.ai.ml import MLClient
179
181
180
182
ml_client = MLClient.from_config()
0 commit comments