Chilkat HOME Android™ Classic ASP C C++ C# Mono C# .NET Core C# C# UWP/WinRT DataFlex Delphi ActiveX Delphi DLL Visual FoxPro Java Lianja MFC Objective-C Perl PHP ActiveX PHP Extension PowerBuilder PowerShell PureBasic CkPython Chilkat2-Python Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ Visual Basic 6.0 VB.NET VB.NET UWP/WinRT VBScript Xojo Plugin Node.js Excel Go
(MFC) Azure List Storage AccountsDemonstrates how to list Azure storage accounts.
#include <CkHttp.h> #include <CkJsonObject.h> void ChilkatSample(void) { CkString strOut; // 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; bool success = jsonToken.LoadFile("qa_data/tokens/azureToken.json"); // Assuming success.. http.put_AuthToken(jsonToken.stringOf("access_token")); strOut.append("AuthToken: "); strOut.append(http.authToken()); strOut.append("\r\n"); http.put_Accept("application/json"); const char *url = "https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts?api-version=2018-11-01"; const char *jsonResp = http.quickGetStr(url); if (http.get_LastMethodSuccess() != true) { strOut.append(http.lastErrorText()); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } strOut.append("Response Status Code: "); strOut.appendInt(http.get_LastStatus()); strOut.append("\r\n"); CkJsonObject json; json.Load(jsonResp); json.put_EmitCompact(false); strOut.append(json.emit()); strOut.append("\r\n"); if (http.get_LastStatus() != 200) { strOut.append("Failed."); strOut.append("\r\n"); SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); return; } // Sample output... // (See the parsing code below..) // // Use this online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON // { // "value": [ // { // "sku": { // "name": "Standard_LRS", // "tier": "Standard" // }, // "kind": "Storage", // "id": "/subscriptions/6c42643b-ebef-45e0-b917-b3583b84a57f/resourceGroups/gchilkat/providers/Microsoft.Storage/storageAccounts/chilkat", // "name": "chilkat", // "type": "Microsoft.Storage/storageAccounts", // "location": "eastus", // "tags": {}, // "properties": { // "networkAcls": { // "bypass": "AzureServices", // "virtualNetworkRules": [ // ], // "ipRules": [ // ], // "defaultAction": "Allow" // }, // "supportsHttpsTrafficOnly": true, // "encryption": { // "services": { // "file": { // "enabled": true, // "lastEnabledTime": "2017-12-28T11:02:10.6840887Z" // }, // "blob": { // "enabled": true, // "lastEnabledTime": "2017-12-28T11:02:10.6840887Z" // } // }, // "keySource": "Microsoft.Storage" // }, // "provisioningState": "Succeeded", // "creationTime": "2016-04-18T22:57:36.5377065Z", // "primaryEndpoints": { // "blob": "https://chilkat.blob.core.windows.net/", // "queue": "https://chilkat.queue.core.windows.net/", // "table": "https://chilkat.table.core.windows.net/", // "file": "https://chilkat.file.core.windows.net/" // }, // "primaryLocation": "eastus", // "statusOfPrimary": "available" // } // } // ] // } // int i; int count_i; 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 *propertiesProvisioningState = 0; const char *propertiesCreationTime = 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; i = 0; count_i = json.SizeOfArray("value"); while (i < count_i) { json.put_I(i); skuName = json.stringOf("value[i].sku.name"); skuTier = json.stringOf("value[i].sku.tier"); kind = json.stringOf("value[i].kind"); id = json.stringOf("value[i].id"); name = json.stringOf("value[i].name"); v_type = json.stringOf("value[i].type"); location = json.stringOf("value[i].location"); propertiesNetworkAclsBypass = json.stringOf("value[i].properties.networkAcls.bypass"); propertiesNetworkAclsDefaultAction = json.stringOf("value[i].properties.networkAcls.defaultAction"); propertiesSupportsHttpsTrafficOnly = json.BoolOf("value[i].properties.supportsHttpsTrafficOnly"); propertiesEncryptionServicesFileEnabled = json.BoolOf("value[i].properties.encryption.services.file.enabled"); propertiesEncryptionServicesFileLastEnabledTime = json.stringOf("value[i].properties.encryption.services.file.lastEnabledTime"); propertiesEncryptionServicesBlobEnabled = json.BoolOf("value[i].properties.encryption.services.blob.enabled"); propertiesEncryptionServicesBlobLastEnabledTime = json.stringOf("value[i].properties.encryption.services.blob.lastEnabledTime"); propertiesEncryptionKeySource = json.stringOf("value[i].properties.encryption.keySource"); propertiesProvisioningState = json.stringOf("value[i].properties.provisioningState"); propertiesCreationTime = json.stringOf("value[i].properties.creationTime"); propertiesPrimaryEndpointsBlob = json.stringOf("value[i].properties.primaryEndpoints.blob"); propertiesPrimaryEndpointsQueue = json.stringOf("value[i].properties.primaryEndpoints.queue"); propertiesPrimaryEndpointsTable = json.stringOf("value[i].properties.primaryEndpoints.table"); propertiesPrimaryEndpointsFile = json.stringOf("value[i].properties.primaryEndpoints.file"); propertiesPrimaryLocation = json.stringOf("value[i].properties.primaryLocation"); propertiesStatusOfPrimary = json.stringOf("value[i].properties.statusOfPrimary"); i = i + 1; } SetDlgItemText(IDC_EDIT1,strOut.getUnicode()); } |
© 2000-2022 Chilkat Software, Inc. All Rights Reserved.