Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I
Hi @kangwen1
Not sure if this works. You may give it a try
from azure.storage.blob import BlobServiceClient
# Replace with your storage account name and private endpoint URL
storage_account_name = "your_storage_account_name"
private_endpoint_url = "https://your_storage_account_name.privatelink.blob.core.windows.net"
# Create a BlobServiceClient using the private endpoint URL
blob_service_client = BlobServiceClient(account_url=private_endpoint_url)
# List containers in the storage account
containers = blob_service_client.list_containers()
for container in containers:
print(container.name)
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
is there any sample code to access the storage account in Azure per the managed private end point in notebook?
User | Count |
---|---|
6 | |
2 | |
2 | |
2 | |
2 |
User | Count |
---|---|
19 | |
18 | |
6 | |
5 | |
4 |