add Azure Table Storage (legacy api) service doc#471
Open
HarshCasper wants to merge 5 commits intoazure-docsfrom
Open
add Azure Table Storage (legacy api) service doc#471HarshCasper wants to merge 5 commits intoazure-docsfrom
HarshCasper wants to merge 5 commits intoazure-docsfrom
Conversation
Deploying localstack-docs with
|
| Latest commit: |
2830397
|
| Status: | ✅ Deploy successful! |
| Preview URL: | https://8982d5e6.localstack-docs.pages.dev |
| Branch Preview URL: | https://harshmishra-doc-88.localstack-docs.pages.dev |
paolosalvatori
approved these changes
Apr 1, 2026
paolosalvatori
left a comment
There was a problem hiding this comment.
Hi @HarshCasper please review and integrate my comments, suggestions, and additions, thanks.
|
|
||
| `azlocal stop-interception` | ||
|
|
||
| This reconfigures the `az` CLI to send commands to the official Azure management REST API. At this time, there is no full parity between `azlocal` and `az` commands after running `az start-interception`. Therefore, this technique is not fully interchangeable. |
There was a problem hiding this comment.
Suggested change
| This reconfigures the `az` CLI to send commands to the official Azure management REST API. At this time, there is no full parity between `azlocal` and `az` commands after running `az start-interception`. Therefore, this technique is not fully interchangeable. | |
| This reconfigures the `az` CLI to send commands to the official Azure management REST API. |
| Create a resource group to contain your storage resources: | ||
|
|
||
| ```bash | ||
| azlocal group create \ |
There was a problem hiding this comment.
Suggested change
| azlocal group create \ | |
| az group create \ |
| Create a storage account in the resource group: | ||
|
|
||
| ```bash | ||
| azlocal storage account create \ |
There was a problem hiding this comment.
Suggested change
| azlocal storage account create \ | |
| az storage account create \ |
| ... | ||
| "placement": null, | ||
| "primaryEndpoints": { | ||
| "blob": "https://sttabledemolsblob.localhost.localstack.cloud:4566", |
There was a problem hiding this comment.
Suggested change
| "blob": "https://sttabledemolsblob.localhost.localstack.cloud:4566", | |
| "blob": "https://sttabledemols.blob.core.azure.localhost.localstack.cloud:4566", |
| "primaryEndpoints": { | ||
| "blob": "https://sttabledemolsblob.localhost.localstack.cloud:4566", | ||
| ... | ||
| "table": "https://sttabledemolstable.localhost.localstack.cloud:4566", |
There was a problem hiding this comment.
Suggested change
| "table": "https://sttabledemolstable.localhost.localstack.cloud:4566", | |
| "table": "https://sttabledemols.table.core.azure.localhost.localstack.cloud:4566", |
| Update the entity with a merge operation: | ||
|
|
||
| ```bash | ||
| azlocal storage entity merge \ |
There was a problem hiding this comment.
Suggested change
| azlocal storage entity merge \ | |
| az storage entity merge \ |
| Delete the entity and verify the table is empty: | ||
|
|
||
| ```bash | ||
| azlocal storage entity delete \ |
There was a problem hiding this comment.
Suggested change
| azlocal storage entity delete \ | |
| az storage entity delete \ |
| --row-key 1 \ | ||
| --connection-string "$CONNECTION_STRING" | ||
|
|
||
| azlocal storage entity query \ |
There was a problem hiding this comment.
Suggested change
| azlocal storage entity query \ | |
| az storage entity query \ |
|
|
||
| ## API Coverage | ||
|
|
||
| <AzureFeatureCoverage service="Microsoft.TableStorage" client:load /> |
There was a problem hiding this comment.
Suggested change
| <AzureFeatureCoverage service="Microsoft.TableStorage" client:load /> | |
| <AzureFeatureCoverage service="Microsoft.Tables" client:load /> |
|
|
||
| This guide is designed for users new to Table Storage and assumes basic knowledge of the Azure CLI and our `azlocal` wrapper script. | ||
|
|
||
| Start your LocalStack container using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). |
There was a problem hiding this comment.
Suggested change
| Start your LocalStack container using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). | |
| Launch LocalStack using your preferred method. For more information, see [Introduction to LocalStack for Azure](/azure/getting-started/). Once the container is running, enable Azure CLI interception by running: | |
| ```bash | |
| azlocal start-interception | |
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.