azure-mgmt-mongodbatlas-dotnet
MongoDB Atlas auf Azure verwalten
Dieses Skill bietet Dokumentation und Codebeispiele für die Verwaltung von MongoDB Atlas Organizations als Azure ARM-Ressourcen unter Verwendung des Azure .NET SDK. Es ermöglicht Entwicklern, MongoDB Atlas mit Azure Marketplace für einheitliche Abrechnung zu integrieren.
Die Skill-ZIP herunterladen
In Claude hochladen
Gehe zu Einstellungen → Fähigkeiten → Skills → Skill hochladen
Einschalten und loslegen
Teste es
Verwendung von "azure-mgmt-mongodbatlas-dotnet". How do I create a MongoDB Atlas organization with marketplace details?
Erwartetes Ergebnis:
You need to create a MongoDBAtlasOrganizationData with location, marketplace details, and user information. Use DefaultAzureCredential to authenticate, then call CreateOrUpdateAsync on the organization collection.
Verwendung von "azure-mgmt-mongodbatlas-dotnet". What authentication methods are supported?
Erwartetes Ergebnis:
The SDK uses Azure.Identity for authentication. DefaultAzureCredential is recommended for local development. For production, use ManagedIdentityCredential or ServicePrincipalCredential.
Verwendung von "azure-mgmt-mongodbatlas-dotnet". What properties are required for marketplace subscription?
Erwartetes Ergebnis:
You need SubscriptionId, PublisherId (typically 'mongodb'), OfferId, PlanId, PlanName, TermUnit (like 'P1M'), and TermId from your Azure Marketplace subscription.
Sicherheitsaudit
SicherThis skill contains only documentation in SKILL.md. The static analyzer flagged 101 potential issues (external_commands, network, weak crypto) but all are false positives. The backticks detected are markdown code formatting, URLs are legitimate documentation links, and the weak crypto patterns are triggered by table cells in markdown. No executable code exists in this skill.
Qualitätsbewertung
Was du bauen kannst
MongoDB Atlas mit Azure-Abrechnung integrieren
Richten Sie MongoDB Atlas Organizations über Azure Marketplace für einheitliche Abrechnung und Ressourcenverwaltung ein.
Organization-Bereitstellung automatisieren
Erstellen und verwalten Sie MongoDB Atlas Organizations programmgesteuert als Teil von Infrastructure-as-Code-Workflows.
Azure-MongoDB-Integrationstools entwickeln
Entwickeln Sie benutzerdefinierte Tools zur Verwaltung von MongoDB Atlas-Ressourcen zusammen mit anderen Azure-Diensten.
Probiere diese Prompts
Show me how to create a MongoDB Atlas organization using the Azure.ResourceManager.MongoDBAtlas SDK with DefaultAzureCredential.
How do I list all MongoDB Atlas organizations in a subscription using the Azure .NET SDK?
Write code to add and remove tags on a MongoDBAtlasOrganizationResource using the Azure SDK.
Show me the correct way to handle CreateOrUpdateAsync with WaitUntil.Started and poll for completion.
Bewährte Verfahren
- Verwenden Sie async-Methoden für alle SDK-Operationen, um korrekte Skalierbarkeit zu gewährleisten
- Überprüfen Sie immer den ProvisioningState, bevor Sie Operationen an erstellten Ressourcen durchführen
- Verwenden Sie ResourceIdentifiers, um Ressourcen-Handles zu erstellen, ohne API-Aufrufe zu tätigen
- Behandeln Sie lang laufende Operationen mit WaitUntil.Completed oder implementieren Sie Polling
Vermeiden
- Verwenden Sie dieses SDK nicht für die direkte Verwaltung von Atlas-Clustern - nutzen Sie stattdessen die MongoDB Atlas API
- Vermeiden Sie das Hardcodieren von Anmeldedaten - verwenden Sie die Azure.Identity Credential-Kette
- Ignorieren Sie keine Provisioning-State-Prüfungen nach Erstellungs-/Aktualisierungsoperationen