Rust
Rust
Azure List Storage Accounts
See more Azure Storage Accounts Examples
Demonstrates how to list Azure storage accounts.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let http = chilkat::Http::new();
// Load an OAuth2 access token previously fetched by this example: Get Azure OAuth2 Access Token
let json_token = chilkat::JsonObject::new();
let _ = json_token.load_file("qa_data/tokens/azureToken.json").is_ok();
// Assuming success..
http.set_auth_token(&json_token.string_of("access_token").unwrap_or_default());
println!("AuthToken: {}", http.auth_token());
http.set_accept("application/json");
let url = "https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Storage/storageAccounts?api-version=2018-11-01".to_string();
let Ok(json_resp) = http.quick_get_str(&url) else {
println!("{}", http.last_error_text());
return;
};
println!("Response Status Code: {}", http.last_status());
let json = chilkat::JsonObject::new();
let _ = json.load(&json_resp);
json.set_emit_compact(false);
println!("{}", json.emit().unwrap_or_default());
if http.last_status() != 200 {
println!("Failed.");
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"
// }
// }
// ]
// }
//
let mut i: i32 = 0;
i = 0;
let count_i = json.size_of_array("value");
while i < count_i {
json.set_i(i);
let _ = json.string_of("value[i].sku.name").unwrap_or_default();
let _ = json.string_of("value[i].sku.tier").unwrap_or_default();
let _ = json.string_of("value[i].kind").unwrap_or_default();
let _ = json.string_of("value[i].id").unwrap_or_default();
let _ = json.string_of("value[i].name").unwrap_or_default();
let _ = json.string_of("value[i].type").unwrap_or_default();
let _ = json.string_of("value[i].location").unwrap_or_default();
let _ = json.string_of("value[i].properties.networkAcls.bypass").unwrap_or_default();
let _ = json.string_of("value[i].properties.networkAcls.defaultAction").unwrap_or_default();
let _ = json.bool_of("value[i].properties.supportsHttpsTrafficOnly");
let _ = json.bool_of("value[i].properties.encryption.services.file.enabled");
let _ = json.string_of("value[i].properties.encryption.services.file.lastEnabledTime").unwrap_or_default();
let _ = json.bool_of("value[i].properties.encryption.services.blob.enabled");
let _ = json.string_of("value[i].properties.encryption.services.blob.lastEnabledTime").unwrap_or_default();
let _ = json.string_of("value[i].properties.encryption.keySource").unwrap_or_default();
let _ = json.string_of("value[i].properties.provisioningState").unwrap_or_default();
let _ = json.string_of("value[i].properties.creationTime").unwrap_or_default();
let _ = json.string_of("value[i].properties.primaryEndpoints.blob").unwrap_or_default();
let _ = json.string_of("value[i].properties.primaryEndpoints.queue").unwrap_or_default();
let _ = json.string_of("value[i].properties.primaryEndpoints.table").unwrap_or_default();
let _ = json.string_of("value[i].properties.primaryEndpoints.file").unwrap_or_default();
let _ = json.string_of("value[i].properties.primaryLocation").unwrap_or_default();
let _ = json.string_of("value[i].properties.statusOfPrimary").unwrap_or_default();
i = i + 1;
}