Skip to content

Commit f4ce736

Browse files
committed
Update docs metadata
1 parent 18820ed commit f4ce736

File tree

2 files changed

+18
-16
lines changed

2 files changed

+18
-16
lines changed

docs-ref-services/latest/storage-file-share-readme.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
title: Azure Storage File Share client library for Python
33
keywords: Azure, python, SDK, API, azure-storage-file-share, storage
4-
ms.date: 09/17/2024
4+
ms.date: 10/08/2024
55
ms.topic: reference
66
ms.devlang: python
77
ms.service: storage
88
---
9-
# Azure Storage File Share client library for Python - version 12.18.0
9+
# Azure Storage File Share client library for Python - version 12.19.0
1010

1111
Azure File Share storage offers fully managed file shares in the cloud that are accessible via the industry standard [Server Message Block (SMB) protocol](/windows/desktop/FileIO/microsoft-smb-protocol-and-cifs-protocol-overview). Azure file shares can be mounted concurrently by cloud or on-premises deployments of Windows, Linux, and macOS. Additionally, Azure file shares can be cached on Windows Servers with Azure File Sync for fast access near where the data is being used.
1212

@@ -16,12 +16,12 @@ Azure file shares can be used to:
1616
* "Lift and shift" applications
1717
* Simplify cloud development with shared application settings, diagnostic share, and Dev/Test/Debug tools
1818

19-
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/azure/storage/fileshare)
19+
[Source code](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/azure/storage/fileshare)
2020
| [Package (PyPI)](https://pypi.org/project/azure-storage-file-share/)
2121
| [Package (Conda)](https://anaconda.org/microsoft/azure-storage/)
2222
| [API reference documentation](https://aka.ms/azsdk-python-storage-fileshare-ref)
2323
| [Product documentation](/azure/storage/)
24-
| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples)
24+
| [Samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples)
2525

2626
## Getting started
2727

@@ -142,7 +142,7 @@ use of a dedicated client object.
142142
This library includes a complete async API supported on Python 3.5+. To use it, you must
143143
first install an async transport, such as [aiohttp](https://pypi.org/project/aiohttp/).
144144
See
145-
[azure-core documentation](https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_12.18.0/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#transport)
145+
[azure-core documentation](https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_12.19.0/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md#transport)
146146
for more information.
147147

148148
Async clients and credentials should be closed when they're no longer needed. These
@@ -317,7 +317,7 @@ the client level to enable it for all requests.
317317

318318
## Troubleshooting
319319
### General
320-
Storage File clients raise exceptions defined in [Azure Core](https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_12.18.0/sdk/core/azure-core/README.md).
320+
Storage File clients raise exceptions defined in [Azure Core](https://github.com/Azure/azure-sdk-for-python/blob/azure-storage-file-share_12.19.0/sdk/core/azure-core/README.md).
321321

322322
This list can be used for reference to catch thrown exceptions. To get the specific error code of the exception, use the `error_code` attribute, i.e, `exception.error_code`.
323323

@@ -356,37 +356,37 @@ service_client.get_service_properties(logging_enable=True)
356356

357357
### More sample code
358358

359-
Get started with our [File Share samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples).
359+
Get started with our [File Share samples](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples).
360360

361361
Several Storage File Share Python SDK samples are available to you in the SDK's GitHub repository. These samples provide example code for additional scenarios commonly encountered while working with Storage File Share:
362362

363-
* [file_samples_hello_world.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_hello_world.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_hello_world_async.py)) - Examples found in this article:
363+
* [file_samples_hello_world.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_hello_world.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_hello_world_async.py)) - Examples found in this article:
364364
* Client creation
365365
* Create a file share
366366
* Upload a file
367367

368-
* [file_samples_authentication.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_authentication.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_authentication_async.py)) - Examples for authenticating and creating the client:
368+
* [file_samples_authentication.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_authentication.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_authentication_async.py)) - Examples for authenticating and creating the client:
369369
* From a connection string
370370
* From a shared access key
371371
* From a shared access signature token
372372

373-
* [file_samples_service.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_service.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_service_async.py)) - Examples for interacting with the file service:
373+
* [file_samples_service.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_service.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_service_async.py)) - Examples for interacting with the file service:
374374
* Get and set service properties
375375
* Create, list, and delete shares
376376
* Get a share client
377377

378-
* [file_samples_share.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_share.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py)) - Examples for interacting with file shares:
378+
* [file_samples_share.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_share.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_share_async.py)) - Examples for interacting with file shares:
379379
* Create a share snapshot
380380
* Set share quota and metadata
381381
* List directories and files
382382
* Get the directory or file client to interact with a specific entity
383383

384-
* [file_samples_directory.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_directory.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_directory_async.py)) - Examples for interacting with directories:
384+
* [file_samples_directory.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_directory.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_directory_async.py)) - Examples for interacting with directories:
385385
* Create a directory and add files
386386
* Create and delete subdirectories
387387
* Get the subdirectory client
388388

389-
* [file_samples_client.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_client.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.18.0/sdk/storage/azure-storage-file-share/samples/file_samples_client_async.py)) - Examples for interacting with files:
389+
* [file_samples_client.py](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_client.py) ([async version](https://github.com/Azure/azure-sdk-for-python/tree/azure-storage-file-share_12.19.0/sdk/storage/azure-storage-file-share/samples/file_samples_client_async.py)) - Examples for interacting with files:
390390
* Create, upload, download, and delete files
391391
* Copy a file from a URL
392392

metadata/latest/azure-storage-file-share.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"Name": "azure-storage-file-share",
3-
"Version": "12.18.0",
3+
"Version": "12.19.0",
44
"DevVersion": null,
55
"DirectoryPath": "sdk/storage/azure-storage-file-share",
66
"ServiceDirectory": "storage",
@@ -10,9 +10,11 @@
1010
"SdkType": "client",
1111
"IsNewSdk": true,
1212
"ArtifactName": "azure-storage-file-share",
13-
"ReleaseStatus": "2024-09-17",
13+
"ReleaseStatus": "2024-10-08",
1414
"IncludedForValidation": false,
15-
"AdditionalValidationPackages": null,
15+
"AdditionalValidationPackages": [
16+
""
17+
],
1618
"Namespaces": [
1719
"azure.storage.fileshare"
1820
],

0 commit comments

Comments
 (0)