
az-storage-entity
List of commands for az-storage-entity:
-
az-storage-entity:tldr:1938d az-storage-entity: 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}try on your machineexplain this command
-
az-storage-entity:tldr:a1553 az-storage-entity: 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}try on your machineexplain this command
-
az-storage-entity:tldr:dc95f az-storage-entity: 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}try on your machineexplain this command
-
az-storage-entity:tldr:e84ed az-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}try on your machineexplain this command
-
az-storage-entity:tldr:fbaa1 az-storage-entity: 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}try on your machineexplain this command