Skip to content

Commit ba63edb

Browse files
committed
Fix comments
1 parent 235efe7 commit ba63edb

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

articles/data-factory/connector-azure-file-storage.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -224,6 +224,8 @@ These properties are supported for an Azure Files linked service:
224224
| type | The **type** property must be set to **AzureFileStorage**. | Yes |
225225
| serviceEndpoint | Specify the Azure Files service endpoint with the pattern of `https://<accountName>.file.core.windows.net/`. | Yes |
226226
| fileShare | Specify the file share. | Yes |
227+
| snapshot | Specify the date of the [file share snapshot](../storage/files/storage-snapshots-files.md) if you want to copy from a snapshot. | No |
228+
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. You can use Azure Integration Runtime. If not specified, it uses the default Azure Integration Runtime. |No |
227229

228230
>[!NOTE]
229231
>System-assigned managed identity authentication is only supported by Azure integration runtime.
@@ -237,7 +239,12 @@ These properties are supported for an Azure Files linked service:
237239
"type": "AzureFileStorage",
238240
"typeProperties": {
239241
"serviceEndpoint": "https://<accountName>.file.core.windows.net/",
240-
"fileShare": "<file share name>"
242+
"fileShare": "<file share name>",
243+
"snapshot": "<snapshot version>"
244+
},
245+
"connectVia": {
246+
"referenceName": "<name of Integration Runtime>",
247+
"type": "IntegrationRuntimeReference"
241248
}
242249
}
243250
}
@@ -264,6 +271,8 @@ These properties are supported for an Azure Files linked service:
264271
| serviceEndpoint | Specify the Azure Files service endpoint with the pattern of `https://<accountName>.file.core.windows.net/`. | Yes |
265272
| credentials | Specify the user-assigned managed identity as the credential object. | Yes |
266273
| fileShare | Specify the file share. | Yes |
274+
| snapshot | Specify the date of the [file share snapshot](../storage/files/storage-snapshots-files.md) if you want to copy from a snapshot. | No |
275+
| connectVia | The [Integration Runtime](concepts-integration-runtime.md) to be used to connect to the data store. You can use Azure Integration Runtime or Self-hosted Integration Runtime (if your data store is located in private network). If not specified, it uses the default Azure Integration Runtime. |No |
267276

268277
**Example:**
269278

@@ -278,7 +287,12 @@ These properties are supported for an Azure Files linked service:
278287
"referenceName": "credential1",
279288
"type": "CredentialReference"
280289
},
281-
"fileShare": "<file share name>"
290+
"fileShare": "<file share name>",
291+
"snapshot": "<snapshot version>"
292+
},
293+
"connectVia": {
294+
"referenceName": "<name of Integration Runtime>",
295+
"type": "IntegrationRuntimeReference"
282296
}
283297
}
284298
}

0 commit comments

Comments
 (0)