Sample code for 30+ languages & platforms
C++

Azure Create Storage Account

See more Azure Storage Accounts Examples

Demonstrates how to create an Azure storage account.

Chilkat C++ Downloads

C++
#include <CkHttp.h>
#include <CkJsonObject.h>
#include <CkHttpResponse.h>

void ChilkatSample(void)
    {
    bool success = false;

    //  This example requires the Chilkat API to have been previously unlocked.
    //  See Global Unlock Sample for sample code.

    CkHttp http;

    //  Load an OAuth2 access token previously fetched by this example:  Get Azure OAuth2 Access Token
    CkJsonObject jsonToken;
    success = jsonToken.LoadFile("qa_data/tokens/azureToken.json");
    //  Assuming success..
    http.put_AuthToken(jsonToken.stringOf("access_token"));
    std::cout << "AuthToken: " << http.authToken() << "\r\n";

    http.put_Accept("application/json");

    //  Create the following JSON:

    //  {
    //    "sku": {
    //      "name": "Standard_GRS"
    //    },
    //    "kind": "StorageV2",
    //    "location": "eastus2",
    //  }

    //  Use this online tool to generate the code from sample JSON: 
    //  Generate Code to Create JSON

    CkJsonObject jsonRequestBody;
    jsonRequestBody.UpdateString("sku.name","Standard_GRS");
    jsonRequestBody.UpdateString("kind","StorageV2");
    jsonRequestBody.UpdateString("location","eastus2");

    const char *url = "https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Storage/storageAccounts/{accountName}?api-version=2018-02-01";

    CkHttpResponse resp;
    success = http.HttpJson("PUT",url,jsonRequestBody,"application/json",resp);
    if (success == false) {
        std::cout << http.lastErrorText() << "\r\n";
        return;
    }

    std::cout << "Response Status Code: " << resp.get_StatusCode() << "\r\n";

    CkJsonObject json;
    json.Load(resp.bodyStr());
    json.put_EmitCompact(false);
    std::cout << json.emit() << "\r\n";

    if (resp.get_StatusCode() >= 300) {
        std::cout << "Failed." << "\r\n";
        return;
    }

    //  Successful requests to create a new account return a 202 status code with an empty response body. The storage account is created asynchronously. 
    //  If the account already exists or is being provisioned, the request response has a 200 return code with the configuration of the existing storage account in the response body.
    if (resp.get_StatusCode() == 202) {
        std::cout << "Azure-AsyncOperation: " << resp.getHeaderField("Azure-AsyncOperation") << "\r\n";
    }

    if (resp.get_StatusCode() == 200) {

        //  Parse a response like this:

        //  	{
        //  	  "sku": {
        //  	    "name": "Standard_GRS",
        //  	    "tier": "Standard"
        //  	  },
        //  	  "kind": "StorageV2",
        //  	  "id": "/subscriptions/6c42643b-ebef-45f0-b917-b3583b84a57f/resourceGroups/gChilkat/providers/Microsoft.Storage/storageAccounts/chilkatsoftware",
        //  	  "name": "chilkatsoftware",
        //  	  "type": "Microsoft.Storage/storageAccounts",
        //  	  "location": "eastus2",
        //  	  "tags": {},
        //  	  "properties": {
        //  	    "networkAcls": {
        //  	      "bypass": "AzureServices",
        //  	      "virtualNetworkRules": [
        //  	      ],
        //  	      "ipRules": [
        //  	      ],
        //  	      "defaultAction": "Allow"
        //  	    },
        //  	    "supportsHttpsTrafficOnly": false,
        //  	    "encryption": {
        //  	      "services": {
        //  	        "file": {
        //  	          "enabled": true,
        //  	          "lastEnabledTime": "2019-05-14T22:18:33.2246670Z"
        //  	        },
        //  	        "blob": {
        //  	          "enabled": true,
        //  	          "lastEnabledTime": "2019-05-14T22:18:33.2246670Z"
        //  	        }
        //  	      },
        //  	      "keySource": "Microsoft.Storage"
        //  	    },
        //  	    "accessTier": "Hot",
        //  	    "provisioningState": "Succeeded",
        //  
        //  	    "creationTime": "2019-05-14T22:18:33.1309165Z",
        //  	    "primaryEndpoints": {
        //  	      "dfs": "https://chilkatsoftware.dfs.core.windows.net/",
        //  	      "web": "https://chilkatsoftware.z20.web.core.windows.net/",
        //  	      "blob": "https://chilkatsoftware.blob.core.windows.net/",
        //  	      "queue": "https://chilkatsoftware.queue.core.windows.net/",
        //  	      "table": "https://chilkatsoftware.table.core.windows.net/",
        //  	      "file": "https://chilkatsoftware.file.core.windows.net/"
        //  	    },
        //  	    "primaryLocation": "eastus2",
        //  	    "statusOfPrimary": "available",
        //  	    "secondaryLocation": "centralus",
        //  	    "statusOfSecondary": "available"
        //  	  }
        //  	}

        //  Use this online tool to generate parsing code from sample JSON: 
        //  Generate Parsing Code from JSON

        const char *skuName = 0;
        const char *skuTier = 0;
        const char *kind = 0;
        const char *id = 0;
        const char *name = 0;
        const char *v_type = 0;
        const char *location = 0;
        const char *propertiesNetworkAclsBypass = 0;
        const char *propertiesNetworkAclsDefaultAction = 0;
        bool propertiesSupportsHttpsTrafficOnly;
        bool propertiesEncryptionServicesFileEnabled;
        const char *propertiesEncryptionServicesFileLastEnabledTime = 0;
        bool propertiesEncryptionServicesBlobEnabled;
        const char *propertiesEncryptionServicesBlobLastEnabledTime = 0;
        const char *propertiesEncryptionKeySource = 0;
        const char *propertiesAccessTier = 0;
        const char *propertiesProvisioningState = 0;
        const char *propertiesCreationTime = 0;
        const char *propertiesPrimaryEndpointsDfs = 0;
        const char *propertiesPrimaryEndpointsWeb = 0;
        const char *propertiesPrimaryEndpointsBlob = 0;
        const char *propertiesPrimaryEndpointsQueue = 0;
        const char *propertiesPrimaryEndpointsTable = 0;
        const char *propertiesPrimaryEndpointsFile = 0;
        const char *propertiesPrimaryLocation = 0;
        const char *propertiesStatusOfPrimary = 0;
        const char *propertiesSecondaryLocation = 0;
        const char *propertiesStatusOfSecondary = 0;
        int i;
        int count_i;

        skuName = json.stringOf("sku.name");
        skuTier = json.stringOf("sku.tier");
        kind = json.stringOf("kind");
        id = json.stringOf("id");
        name = json.stringOf("name");
        v_type = json.stringOf("type");
        location = json.stringOf("location");
        propertiesNetworkAclsBypass = json.stringOf("properties.networkAcls.bypass");
        propertiesNetworkAclsDefaultAction = json.stringOf("properties.networkAcls.defaultAction");
        propertiesSupportsHttpsTrafficOnly = json.BoolOf("properties.supportsHttpsTrafficOnly");
        propertiesEncryptionServicesFileEnabled = json.BoolOf("properties.encryption.services.file.enabled");
        propertiesEncryptionServicesFileLastEnabledTime = json.stringOf("properties.encryption.services.file.lastEnabledTime");
        propertiesEncryptionServicesBlobEnabled = json.BoolOf("properties.encryption.services.blob.enabled");
        propertiesEncryptionServicesBlobLastEnabledTime = json.stringOf("properties.encryption.services.blob.lastEnabledTime");
        propertiesEncryptionKeySource = json.stringOf("properties.encryption.keySource");
        propertiesAccessTier = json.stringOf("properties.accessTier");
        propertiesProvisioningState = json.stringOf("properties.provisioningState");
        propertiesCreationTime = json.stringOf("properties.creationTime");
        propertiesPrimaryEndpointsDfs = json.stringOf("properties.primaryEndpoints.dfs");
        propertiesPrimaryEndpointsWeb = json.stringOf("properties.primaryEndpoints.web");
        propertiesPrimaryEndpointsBlob = json.stringOf("properties.primaryEndpoints.blob");
        propertiesPrimaryEndpointsQueue = json.stringOf("properties.primaryEndpoints.queue");
        propertiesPrimaryEndpointsTable = json.stringOf("properties.primaryEndpoints.table");
        propertiesPrimaryEndpointsFile = json.stringOf("properties.primaryEndpoints.file");
        propertiesPrimaryLocation = json.stringOf("properties.primaryLocation");
        propertiesStatusOfPrimary = json.stringOf("properties.statusOfPrimary");
        propertiesSecondaryLocation = json.stringOf("properties.secondaryLocation");
        propertiesStatusOfSecondary = json.stringOf("properties.statusOfSecondary");
    }

    std::cout << "Success." << "\r\n";
    }