SQL Server / MongoDB Atlas / Create One Advanced Cluster MultiCloud
Back to Collection Items
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
DECLARE @iTmp0 int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
-- This example assumes the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
DECLARE @http int
-- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
DECLARE @success int
EXEC sp_OASetProperty @http, 'DigestAuth', 1
EXEC sp_OASetProperty @http, 'Login', 'username'
EXEC sp_OASetProperty @http, 'Password', 'password'
-- Use this online tool to generate code from sample JSON: Generate Code to Create JSON
-- The following JSON is sent in the request body.
-- {
-- "clusterType": "REPLICASET",
-- "name": "tenantCluster",
-- "replicationSpecs": [
-- {
-- "regionConfigs": [
-- {
-- "electableSpecs": {
-- "instanceSize": "M5"
-- },
-- "providerName": "TENANT",
-- "backingProviderName": "AWS",
-- "regionName": "US_EAST_1"
-- }
-- ]
-- }
-- ]
-- }
DECLARE @json int
-- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @json OUT
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'clusterType', 'REPLICASET'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'name', 'tenantCluster'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'replicationSpecs[0].regionConfigs[0].electableSpecs.instanceSize', 'M5'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'replicationSpecs[0].regionConfigs[0].providerName', 'TENANT'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'replicationSpecs[0].regionConfigs[0].backingProviderName', 'AWS'
EXEC sp_OAMethod @json, 'UpdateString', @success OUT, 'replicationSpecs[0].regionConfigs[0].regionName', 'US_EAST_1'
EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'Content-Type', 'application/json'
DECLARE @resp int
EXEC sp_OAMethod @http, 'PostJson3', @resp OUT, 'https://domain.com/api/atlas/v1.5/groups/{{ProjectID}}/clusters/', 'application/json', @json
EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT
IF @iTmp0 = 0
BEGIN
EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
RETURN
END
EXEC sp_OAGetProperty @resp, 'StatusCode', @iTmp0 OUT
PRINT @iTmp0
EXEC sp_OAGetProperty @resp, 'BodyStr', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @resp
EXEC @hr = sp_OADestroy @http
EXEC @hr = sp_OADestroy @json
END
GO
Curl Command
curl -X POST
--digest -u 'username:password'
-H "Content-Type: application/json"
-d '{
"clusterType": "REPLICASET",
"name": "tenantCluster",
"replicationSpecs": [
{
"regionConfigs": [
{
"electableSpecs": {
"instanceSize": "M5"
},
"providerName": "TENANT",
"backingProviderName": "AWS",
"regionName": "US_EAST_1"
}
]
}
]
}'
https://domain.com/api/atlas/v1.5/groups/{{ProjectID}}/clusters/
Postman Collection Item JSON
{
"name": "Create One Advanced Cluster MultiCloud",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"type": "text"
}
],
"body": {
"mode": "raw",
"raw": "{\n \"clusterType\": \"REPLICASET\",\n \"name\": \"tenantCluster\",\n \"replicationSpecs\": [\n {\n \"regionConfigs\": [\n {\n \"electableSpecs\": {\n \"instanceSize\": \"M5\"\n },\n \"providerName\": \"TENANT\",\n \"backingProviderName\": \"AWS\",\n \"regionName\": \"US_EAST_1\"\n }\n ]\n }\n ]\n}"
},
"url": {
"raw": "{{base_url}}/api/atlas/v1.5/groups/{{ProjectID}}/clusters/",
"host": [
"{{base_url}}"
],
"path": [
"api",
"atlas",
"v1.5",
"groups",
"{{ProjectID}}",
"clusters",
""
]
},
"description": "https://docs.atlas.mongodb.com/reference/api/cluster-advanced/create-one-cluster-advanced/"
},
"response": [
]
}