azure-storage-ruby/table
Tank Tang cae7ca0b72 Version and Doc change for 2.0.3/2.0.4 release. 2021-12-05 18:18:02 +08:00
..
lib/azure/storage Version and Doc change for 2.0.3/2.0.4 release. 2021-12-05 18:18:02 +08:00
BreakingChanges.md Version change for 2.0.0 release. 2020-03-09 01:25:58 -07:00
ChangeLog.md Version and Doc change for 2.0.3/2.0.4 release. 2021-12-05 18:18:02 +08:00
Gemfile Split the ruby client library to 5 gems -- no doc change. 2018-01-05 18:05:13 +08:00
LICENSE.txt Split the ruby client library to 5 gems -- no doc change. 2018-01-05 18:05:13 +08:00
README.md Added document change for split 2018-01-10 14:49:51 +08:00
azure-storage-table.gemspec Resolve dependency issue for Nokogiri/Faraday 2021-11-02 10:29:55 +08:00

README.md

Microsoft Azure Storage Table Client Library for Ruby

Gem Version

  • Master: Master Build Status Coverage Status
  • Dev: Dev Build Status Coverage Status

This project provides a Ruby package that makes it easy to access and manage Microsoft Azure Storage Table Services.

Supported Ruby Versions

  • Ruby 1.9.3 to 2.5

Note:

  • x64 Ruby for Windows is known to have some compatibility issues.
  • azure-storage-table depends on gem nokogiri. For Ruby version lower than 2.2, please install the compatible nokogiri before trying to install azure-storage-table.

Getting Started

Install the rubygem package

You can install the azure storage table rubygem package directly.

gem install azure-storage-table

Setup Connection

You can use this Client Library against the Microsoft Azure Storage Table Services in the cloud, or against the local Storage Emulator if you are on Windows.

There are two ways you can set up the connections:

  1. via code
  2. via environment variables

Via Code

  • Against Microsoft Azure Services in the cloud

  require 'azure/storage/table'

  # Setup a specific instance of an Azure::Storage::Table::TableService
  table_client = Azure::Storage::Table::TableService.create(storage_account_name: 'your account name', storage_access_key: 'your access key')

  # Or create a client and initialize with it.
  require 'azure/storage/common'
  common_client = Azure::Storage::Common::Client.create(storage_account_name: 'your account name', storage_access_key: 'your access key')
  table_client = Azure::Storage::Table::TableService.new(client: common_client)

  # Configure a ca_cert.pem file if you are having issues with ssl peer verification
  table_client.ca_file = './ca_file.pem'

  • Against local Emulator (Windows Only)

  require 'azure/storage/table'
  client = Azure::Storage::Table::TableService.create_development

  # Or create by options and provide your own proxy_uri
  client = Azure::Storage::Table::TableService.create(:use_development_storage => true, :development_storage_proxy_uri => 'your proxy uri')

Via Environment Variables

  • Against Microsoft Azure Storage Table Services in the cloud

    export AZURE_STORAGE_ACCOUNT = <your azure storage account name>
    export AZURE_STORAGE_ACCESS_KEY = <your azure storage access key>
    
  • Against local Emulator (Windows Only)

    export EMULATED = true
    
  • SSL Certificate File if having issues with ssl peer verification

    SSL_CERT_FILE=<path to *.pem>
    

Usage

Tables


# Require the azure storage rubygem
require 'azure/storage'

# Setup a specific instance of an Azure::Storage::Client
client = Azure::Storage::Client.create(:storage_account_name => 'your account name', :storage_access_key => 'your access key')

# Get an azure storage table service object from a specific instance of an Azure::Storage::Client
tables = client.table_client

# Or setup the client as a singleton
Azure::Storage.setup(:storage_account_name => 'your account name', :storage_access_key => 'your access key')

# Create an azure storage table service object after you set up the credentials
tables = Azure::Storage::Table::TableService.new

# Add retry filter to the service object
tables.with_filter(Azure::Storage::Core::Filter::ExponentialRetryPolicyFilter.new)

# Create a table
tables.create_table('testtable')

# Insert an entity
entity = { content: 'test entity', PartitionKey: 'test-partition-key', RowKey: '1' }
tables.insert_entity('testtable', entity)

# Get an entity
result = tables.get_entity('testtable', 'test-partition-key', '1')

# Update an entity
result.properties['content'] = 'test entity with updated content'
tables.update_entity(result.table, result.properties)

# Query entities
query = { :filter => "content eq 'test entity'" }
result, token = tables.query_entities('testtable', query)

# Delete an entity
tables.delete_entity('testtable', 'test-partition-key', '1')

# delete a table
tables.delete_table('testtable')

Customize the user-agent

You can customize the user-agent string by setting your user agent prefix when creating the service client.

# Require the azure storage table rubygem
require "azure/storage/table"

# Setup a specific instance of an Azure::Storage::Client with :user_agent_prefix option
client = Azure::Storage::Table::TableService.create(:storage_account_name => "your account name", :storage_access_key => "your access key", :user_agent_prefix => "your application name")

Code of Conduct

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.