Rust
Rust
Create a New Table in an Azure Storage Account
See more Azure Table Service Examples
Creates a new table using the Azure Table Service REST API.Chilkat Rust Downloads
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let rest = chilkat::Rest::new();
// Implements the following CURL command:
// curl -X POST \
// -H "Content-Type: application/json" \
// -H "Accept: application/json;odata=fullmetadata" \
// -H "Prefer: return-content" \
// -d '{
// "TableName":"mytable"
// }' https://myaccount.table.core.windows.net/Tables
// Use the following online tool to generate REST code from a CURL command
// Convert a cURL Command to REST Source Code
// IMPORTANT: Make sure to change "myaccount" to your actual Azure Storage Account name.
// URL: https://myaccount.table.core.windows.net/Tables
let b_tls = true;
let port = 443;
let b_auto_reconnect = true;
if rest.connect("myaccount.table.core.windows.net", port, b_tls, b_auto_reconnect).is_err() {
println!("ConnectFailReason: {}", rest.connect_fail_reason());
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("myaccount");
az_auth.set_scheme("SharedKey");
az_auth.set_service("Table");
// This causes the "x-ms-version: 2019-07-07" header to be automatically added.
az_auth.set_x_ms_version("2019-07-07");
let _ = rest.set_auth_azure_storage(&az_auth).is_ok();
// Note: The application does not need to explicitly set the following
// headers: Content-Length, x-ms-date, Authorization. These headers
// are automatically set by Chilkat.
// Note: The above code does not need to be repeatedly called for each REST request.
// The rest object can be setup once, and then many requests can be sent. Chilkat will automatically
// reconnect within a FullRequest* method as needed. It is only the very first connection that is explicitly
// made via the Connect method.
// Use this online tool to generate code from sample JSON:
// Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "TableName": "mytable"
// }
let json = chilkat::JsonObject::new();
let _ = json.update_string("TableName", "mytable");
let _ = rest.add_header("Accept", "application/json;odata=fullmetadata");
let _ = rest.add_header("Prefer", "return-content");
let _ = rest.add_header("Content-Type", "application/json");
let sb_request_body = chilkat::StringBuilder::new();
let _ = json.emit_sb(&sb_request_body);
let sb_response_body = chilkat::StringBuilder::new();
if rest.full_request_sb("POST", "/Tables", &sb_request_body, &sb_response_body).is_err() {
println!("{}", rest.last_error_text());
return;
}
let resp_status_code = rest.response_status_code();
if resp_status_code >= 400 {
println!("Response Status Code = {}", resp_status_code);
println!("Response Header:");
println!("{}", rest.response_header());
println!("Response Body:");
println!("{}", sb_response_body.get_as_string().unwrap_or_default());
return;
}
let json_response = chilkat::JsonObject::new();
let _ = json_response.load_sb(&sb_response_body);
json_response.set_emit_compact(false);
println!("{}", json_response.emit().unwrap_or_default());
let odata_metadata = json_response.string_of("\"odata.metadata\"").unwrap_or_default();
let odata_type = json_response.string_of("\"odata.type\"").unwrap_or_default();
let odata_id = json_response.string_of("\"odata.id\"").unwrap_or_default();
let odata_edit_link = json_response.string_of("\"odata.editLink\"").unwrap_or_default();
let table_name = json_response.string_of("TableName").unwrap_or_default();