az-storage-entity: add page (#6648)

beep
WhileLoop 2021-10-05 09:49:36 -07:00 committed by GitHub
parent 48d6a1efbd
commit 78788e9e02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# az storage entity
> Manage Azure Table storage entities.
> Part of `azure-cli`.
> More information: <https://docs.microsoft.com/cli/azure/storage/entity>.
- Insert an entity into a table:
`az storage entity insert --entity {{space_separated_key_value_pairs}} --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}} --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 --entity {{space_separated_key_value_pairs}} --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}} --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}} --table-name {{table_name}} --account-name {{storage_account_name}} --account-key {{storage_account_key}}`