azure-storage
Blob StorageやFile SharesなどAzureのストレージサービスを活用し、データの種類や利用頻度に応じた保存方法を選択、ライフサイクル管理まで行える、企業のデータ管理を効率化するSkill。
📜 元の英語説明(参考)
Azure Storage Services including Blob Storage, File Shares, Queue Storage, Table Storage, and Data Lake. Provides object storage, SMB file shares, async messaging, NoSQL key-value, and big data analytics capabilities. Includes access tiers (hot, cool, archive) and lifecycle management.
🇯🇵 日本人クリエイター向け解説
Blob StorageやFile SharesなどAzureのストレージサービスを活用し、データの種類や利用頻度に応じた保存方法を選択、ライフサイクル管理まで行える、企業のデータ管理を効率化するSkill。
※ jpskill.com 編集部が日本のビジネス現場向けに補足した解説です。Skill本体の挙動とは独立した参考情報です。
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o azure-storage.zip https://jpskill.com/download/19676.zip && unzip -o azure-storage.zip && rm azure-storage.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/19676.zip -OutFile "$d\azure-storage.zip"; Expand-Archive "$d\azure-storage.zip" -DestinationPath $d -Force; ri "$d\azure-storage.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
azure-storage.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
azure-storageフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 13
📖 Skill本文(日本語訳)
※ 原文(英語/中国語)を Gemini で日本語化したものです。Claude 自身は原文を読みます。誤訳がある場合は原文をご確認ください。
Azure Storage サービス
サービス
| サービス | 使用する状況 | MCP ツール | CLI |
|---|---|---|---|
| Blob Storage | オブジェクト、ファイル、バックアップ、静的コンテンツ | azure__storage |
az storage blob |
| File Shares | SMB ファイル共有、リフト&シフト | - | az storage file |
| Queue Storage | 非同期メッセージング、タスクキュー | - | az storage queue |
| Table Storage | NoSQL キーバリュー (Cosmos DB を検討) | - | az storage table |
| Data Lake | ビッグデータ分析、階層型名前空間 | - | az storage fs |
MCP サーバー (推奨)
Azure MCP が有効な場合:
azure__storageとコマンドstorage_account_list- ストレージアカウントを一覧表示しますazure__storageとコマンドstorage_container_list- アカウント内のコンテナーを一覧表示しますazure__storageとコマンドstorage_blob_list- コンテナー内の BLOB を一覧表示しますazure__storageとコマンドstorage_blob_get- BLOB コンテンツをダウンロードしますazure__storageとコマンドstorage_blob_put- BLOB コンテンツをアップロードします
Azure MCP が有効でない場合: /azure:setup を実行するか、/mcp 経由で有効にしてください。
CLI フォールバック
# List storage accounts
az storage account list --output table
# List containers
az storage container list --account-name ACCOUNT --output table
# List blobs
az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
# Download blob
az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
# Upload blob
az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
ストレージアカウントの階層
| 階層 | ユースケース | パフォーマンス |
|---|---|---|
| Standard | 汎用、バックアップ | ミリ秒 |
| Premium | データベース、高 IOPS | サブミリ秒 |
BLOB アクセス階層
| 階層 | アクセス頻度 | コスト |
|---|---|---|
| Hot | 頻繁 | 高いストレージ、低いアクセス |
| Cool | 低頻度 (30日以上) | 低いストレージ、高いアクセス |
| Cold | 稀 (90日以上) | さらに低い |
| Archive | 非常に稀 (180日以上) | 最低のストレージ、再ハイドレーションが必要 |
冗長性オプション
| タイプ | 耐久性 | ユースケース |
|---|---|---|
| LRS | 11 ナイン | 開発/テスト、再作成可能なデータ |
| ZRS | 12 ナイン | リージョン高可用性 |
| GRS | 16 ナイン | ディザスターリカバリー |
| GZRS | 16 ナイン | 最高の耐久性 |
サービス詳細
特定のサービスに関する詳細なドキュメントは以下をご覧ください。
- BLOB ストレージのパターンとライフサイクル -> Blob Storage ドキュメント
- ファイル共有と Azure File Sync -> Azure Files ドキュメント
- キューのパターンとポイズン処理 -> Queue Storage ドキュメント
SDK クイックリファレンス
Azure Storage SDK を使用してアプリケーションを構築する場合、簡潔なガイドをご覧ください。
- Blob Storage: Python | TypeScript | Java | Rust
- Queue Storage: Python | TypeScript
- File Shares: Python | TypeScript
- Data Lake: Python
- Tables: Python | Java
すべての言語における完全なパッケージリストについては、SDK 使用ガイドをご覧ください。
Azure SDK
Azure Storage とプログラムで対話するアプリケーションを構築するために、Azure は複数の言語 (.NET、Java、JavaScript、Python、Go、Rust) で SDK パッケージを提供しています。パッケージ名、インストールコマンド、クイックスタートの例については、SDK 使用ガイドをご覧ください。
📜 原文 SKILL.md(Claudeが読む英語/中国語)を展開
Azure Storage Services
Services
| Service | Use When | MCP Tools | CLI |
|---|---|---|---|
| Blob Storage | Objects, files, backups, static content | azure__storage |
az storage blob |
| File Shares | SMB file shares, lift-and-shift | - | az storage file |
| Queue Storage | Async messaging, task queues | - | az storage queue |
| Table Storage | NoSQL key-value (consider Cosmos DB) | - | az storage table |
| Data Lake | Big data analytics, hierarchical namespace | - | az storage fs |
MCP Server (Preferred)
When Azure MCP is enabled:
azure__storagewith commandstorage_account_list- List storage accountsazure__storagewith commandstorage_container_list- List containers in accountazure__storagewith commandstorage_blob_list- List blobs in containerazure__storagewith commandstorage_blob_get- Download blob contentazure__storagewith commandstorage_blob_put- Upload blob content
If Azure MCP is not enabled: Run /azure:setup or enable via /mcp.
CLI Fallback
# List storage accounts
az storage account list --output table
# List containers
az storage container list --account-name ACCOUNT --output table
# List blobs
az storage blob list --account-name ACCOUNT --container-name CONTAINER --output table
# Download blob
az storage blob download --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
# Upload blob
az storage blob upload --account-name ACCOUNT --container-name CONTAINER --name BLOB --file LOCAL_PATH
Storage Account Tiers
| Tier | Use Case | Performance |
|---|---|---|
| Standard | General purpose, backup | Milliseconds |
| Premium | Databases, high IOPS | Sub-millisecond |
Blob Access Tiers
| Tier | Access Frequency | Cost |
|---|---|---|
| Hot | Frequent | Higher storage, lower access |
| Cool | Infrequent (30+ days) | Lower storage, higher access |
| Cold | Rare (90+ days) | Lower still |
| Archive | Rarely (180+ days) | Lowest storage, rehydration required |
Redundancy Options
| Type | Durability | Use Case |
|---|---|---|
| LRS | 11 nines | Dev/test, recreatable data |
| ZRS | 12 nines | Regional high availability |
| GRS | 16 nines | Disaster recovery |
| GZRS | 16 nines | Best durability |
Service Details
For deep documentation on specific services:
- Blob storage patterns and lifecycle -> Blob Storage documentation
- File shares and Azure File Sync -> Azure Files documentation
- Queue patterns and poison handling -> Queue Storage documentation
SDK Quick References
For building applications with Azure Storage SDKs, see the condensed guides:
- Blob Storage: Python | TypeScript | Java | Rust
- Queue Storage: Python | TypeScript
- File Shares: Python | TypeScript
- Data Lake: Python
- Tables: Python | Java
For full package listing across all languages, see SDK Usage Guide.
Azure SDKs
For building applications that interact with Azure Storage programmatically, Azure provides SDK packages in multiple languages (.NET, Java, JavaScript, Python, Go, Rust). See SDK Usage Guide for package names, installation commands, and quick start examples.
同梱ファイル
※ ZIPに含まれるファイル一覧。`SKILL.md` 本体に加え、参考資料・サンプル・スクリプトが入っている場合があります。
- 📄 SKILL.md (4,367 bytes)
- 📎 references/sdk-usage.md (4,384 bytes)
- 📎 references/sdk/azure-data-tables-java.md (1,168 bytes)
- 📎 references/sdk/azure-data-tables-py.md (924 bytes)
- 📎 references/sdk/azure-storage-blob-java.md (1,237 bytes)
- 📎 references/sdk/azure-storage-blob-py.md (918 bytes)
- 📎 references/sdk/azure-storage-blob-rust.md (1,094 bytes)
- 📎 references/sdk/azure-storage-blob-ts.md (1,128 bytes)
- 📎 references/sdk/azure-storage-file-datalake-py.md (1,221 bytes)
- 📎 references/sdk/azure-storage-file-share-py.md (860 bytes)
- 📎 references/sdk/azure-storage-file-share-ts.md (1,177 bytes)
- 📎 references/sdk/azure-storage-queue-py.md (945 bytes)
- 📎 references/sdk/azure-storage-queue-ts.md (1,165 bytes)