HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

az storage entity — Manage Azure Table storage entities. Part of `azure-cli` (also known as `az`). More information: <ht

Submitted by: @import:tldr-pages··
0
Viewed 0 times
tablecommandaz storage entityazureclimanageentitiesstorage

Problem

How to use the az storage entity command: Manage Azure Table storage entities. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/storage/entity>.

Solution

az storage entity — Manage Azure Table storage entities. Part of azure-cli (also known as az). More information: <https://learn.microsoft.com/cli/azure/storage/entity>.

Insert an entity into a table:
az storage entity insert {{[-e|--entity]}} {{space_separated_key_value_pairs}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}


Delete an existing entity from a table:
az storage entity delete --partition-key {{partition_key}} --row-key {{row_key}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}


Update an existing entity by merging its properties:
az storage entity merge {{[-e|--entity]}} {{space_separated_key_value_pairs}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}


List entities which satisfy a query:
az storage entity query --filter {{query_filter}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}


Get an entity from the specified table:
az storage entity show --partition-key {{partition_key}} --row-key {{row_key}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

Code Snippets

Insert an entity into a table

az storage entity insert {{[-e|--entity]}} {{space_separated_key_value_pairs}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

Delete an existing entity from a table

az storage entity delete --partition-key {{partition_key}} --row-key {{row_key}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

Update an existing entity by merging its properties

az storage entity merge {{[-e|--entity]}} {{space_separated_key_value_pairs}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

List entities which satisfy a query

az storage entity query --filter {{query_filter}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

Get an entity from the specified table

az storage entity show --partition-key {{partition_key}} --row-key {{row_key}} {{[-t|--table-name]}} {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}

Context

tldr-pages: common/az storage entity

Revisions (0)

No revisions yet.