Skip to content

Commit 5378a31

Browse files
Merge pull request #235497 from RamanathanChinnappan-MSFT/patch-44
(AzureCXP) fixes MicrosoftDocs/azure-docs#108438
2 parents 3423eae + 76a180d commit 5378a31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/synapse-analytics/spark/synapse-file-mount-api.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ The example assumes that you have one Data Lake Storage Gen2 account named `stor
3939

4040
![Screenshot of a Data Lake Storage Gen2 storage account.](./media/synapse-file-mount-api/gen2-storage-account.png)
4141

42-
To mount the container called `mycontainer`, `mssparkutils` first needs to check whether you have the permission to access the container. Currently, Azure Synapse Analytics supports three authentication methods for the trigger mount operation: `linkedService`, `accountKey`, and `sastoken`.
42+
To mount the container called `mycontainer`, `mssparkutils` first needs to check whether you have the permission to access the container. Currently, Azure Synapse Analytics supports three authentication methods for the trigger mount operation: `LinkedService`, `accountKey`, and `sastoken`.
4343

4444
### Mount by using a linked service (recommended)
4545

@@ -73,7 +73,7 @@ After you create linked service successfully, you can easily mount the container
7373
mssparkutils.fs.mount(
7474
"abfss://mycontainer@<accountname>.dfs.core.windows.net",
7575
"/test",
76-
{"linkedService":"mygen2account"}
76+
{"LinkedService":"mygen2account"}
7777
)
7878
```
7979

@@ -220,7 +220,7 @@ If you mounted a Blob Storage account and want to access it by using `mssparkuti
220220
mssparkutils.fs.mount(
221221
"wasbs://mycontainer@<blobStorageAccountName>.blob.core.windows.net",
222222
"/test",
223-
Map("linkedService" -> "myblobstorageaccount")
223+
Map("LinkedService" -> "myblobstorageaccount")
224224
)
225225
```
226226

0 commit comments

Comments
 (0)