Sample code for 30+ languages & platforms
Rust

Azure Storage: Get Blob Service Stats

See more Azure Cloud Storage Examples

Azure Storage Blob Service REST API: Sample code to get Blob Service Stats

Chilkat Rust Downloads

Rust

// Azure Blob Service Example: Get Blob Service Stats

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

let rest = chilkat::Rest::new();

// Connect to the Azure Storage Blob Service
let b_tls = true;
let port = 443;
let b_auto_reconnect = true;
// In this example, the storage account name is "chilkat".
// ---- IMPORTANT ----
// The "-secondary" suffix is required.
// This requires an Azure storage account with replication set to "Read-access geo-redundant storage (RA-GRS)"
// If you made the change just prior to testing this example, you'll need to give it time for the 
// DNS to become available..  
// ---- IMPORTANT ----
if rest.connect("chilkat-secondary.blob.core.windows.net", port, b_tls, b_auto_reconnect).is_err() {
    println!("{}", rest.last_error_text());
    return;
}

// Provide Azure Cloud credentials for the REST call.
let az_auth = chilkat::AuthAzureStorage::new();
az_auth.set_access_key("AZURE_ACCESS_KEY");
// The account name used here should match the 1st part of the domain passed in the call to Connect (above).
az_auth.set_account("chilkat");
az_auth.set_scheme("SharedKey");
az_auth.set_service("Blob");
// This causes the "x-ms-version: 2021-08-06" header to be automatically added.
az_auth.set_x_ms_version("2021-08-06");
let _ = rest.set_auth_azure_storage(&az_auth).is_ok();

// Note: The application does not need to explicitly set the following
// headers: x-ms-date, Authorization.  These headers
// are automatically set by Chilkat.

let Ok(response_str) = rest.full_request_no_body("GET", "/?restype=service&comp=stats") else {
    println!("{}", rest.last_error_text());
    return;
};

// When successful, the Azure Storage service will respond with a 200 response code,
// with an XML body.  
if rest.response_status_code() != 200 {
    // Examine the request/response to see what happened.
    println!("response status code = {}", rest.response_status_code());
    println!("response status text = {}", rest.response_status_text());
    println!("response header: {}", rest.response_header());
    println!("response body (if any): {}", response_str);
    println!("---");
    println!("LastRequestStartLine: {}", rest.last_request_start_line());
    println!("LastRequestHeader: {}", rest.last_request_header());
    return;
}

// Load the XML response for parsing.
// An example of the response XML is shown below.
let xml = chilkat::Xml::new();
let _ = xml.load_xml(&response_str).is_ok();

println!("{}", xml.get_xml().unwrap_or_default());

// Use the ChilkatPath method to get various pieces of information out
// of the XML.  For example:

println!("Status = {}", xml.chilkat_path("GeoReplication|Status|*").unwrap_or_default());
let last_sync_time_str = xml.chilkat_path("GeoReplication|LastSyncTime|*").unwrap_or_default();
println!("LastSyncTime = {}", last_sync_time_str);

// The date/time string can be loaded into a CkDateTime object for 
// access to individual parts, or conversion to other formats.
let date_time = chilkat::DateTime::new();
let _ = date_time.set_from_rfc822(&last_sync_time_str).is_ok();

// For example:
let b_local_time = true;
let dt = chilkat::DtObj::new();
date_time.to_dt_obj(b_local_time, &dt);

println!("{}/{}/{}", dt.year(), dt.month(), dt.day());

// <StorageServiceStats>
//     <GeoReplication>
//         <Status>live</Status>
//         <LastSyncTime>Tue, 03 May 2016 23:57:54 GMT</LastSyncTime>
//     </GeoReplication>
// </StorageServiceStats>