az storage entity

Azure Table storage 엔티티를 관리. azure-cli의 일부 (az라고도 함). 더 많은 정보: https://learn.microsoft.com/cli/azure/storage/entity.

az storage entity insert --entity {{space_separated_key_value_pairs}} --table-name {{테이블_이름}} --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}}

az storage entity delete --partition-key {{파티션_키}} --row-key {{행_키}} --table-name {{테이블_이름}} --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}}

az storage entity merge --entity {{space_separated_key_value_pairs}} --table-name {{테이블_이름}} --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}}

az storage entity query --filter {{쿼리_필터}} --table-name {{테이블_이름}} --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}}

az storage entity show --partition-key {{파티션_키}} --row-key {{행_키}} --table-name {{테이블_이름}} --account-name {{스토리지_계정_이름}} --account-key {{스토리지_계정_키}}