azure-resource-manager-cosmosdb-dotnet
仓库创建 2026年1月17日最近提交 22 天前SkillHot 收录 22 天前
▸ 精选理由
便于自动化部署、容量与权限管理,适合云平台工程师。
▸ 风险提示
需要 Azure 订阅与合适权限,变更可能影响生产环境并产生成本。
这个 Skill 做什么
通过 ARM 管理 Cosmos DB 帐户、数据库、容器与吞吐设置。
在 .NET 里通过 Azure Resource Manager 管理 Cosmos DB 的账号、数据库、容器、吞吐(RU)和 RBAC 等资源配置。什么时候用:需要在 Azure 上开库、配置容量或做权限与资源管理时,而非做文档级别的增删改查。要注意管理平面(ARM SDK)和数据平面(Microsoft.Azure.Cosmos)是分开的,前者负责部署与配置,适合运维和基础设施脚本。
▸ 展开 SKILL.md 英文原文
Azure Resource Manager SDK for Cosmos DB in .NET. Use for MANAGEMENT PLANE operations: creating/managing Cosmos DB accounts, databases, containers, throughput settings, and RBAC via Azure Resource Manager. NOT for data plane operations (CRUD on documents) - use Microsoft.Azure.Cosmos for that. Triggers: "Cosmos DB account", "create Cosmos account", "manage Cosmos resources", "ARM Cosmos", "CosmosDBAccountResource", "provision Cosmos DB".
2.7k
Stars
304
Forks
40
仓库内 Skill
+0
7 日增星
安装 / 使用
给你的 Agent 一句话(通用)
帮我安装这个 skill:https://raw.githubusercontent.com/microsoft/skills/main/.github/plugins/azure-sdk-dotnet/skills/azure-resource-manager-cosmosdb-dotnet/SKILL.md或 curl 直取 SKILL.md
curl -fsSL "https://raw.githubusercontent.com/microsoft/skills/main/.github/plugins/azure-sdk-dotnet/skills/azure-resource-manager-cosmosdb-dotnet/SKILL.md"SKILL.MD 节选查看完整文件 ↗
# Azure.ResourceManager.CosmosDB (.NET) Management plane SDK for provisioning and managing Azure Cosmos DB resources via Azure Resource Manager. > **⚠️ Management vs Data Plane** > - **This SDK (Azure.ResourceManager.CosmosDB)**: Create accounts, databases, containers, configure throughput, manage RBAC > - **Data Plane SDK (Microsoft.Azure.Cosmos)**: CRUD operations on documents, queries, stored procedures execution ## Installation ```bash dotnet add package Azure.ResourceManager.CosmosDB dotnet add package Azure.Identity ``` **Current Versions**: Stable v1.4.0, Preview v1.4.0-beta.13 ## Environment Variables ```bash AZURE_SUBSCRIPTION_ID=<your-subscription-id> # Required: Azure subsc
via SKILL·HOT · 数据来自 GitHub 公开信息 · 原文版权归作者所有