Project

idcf-dns

0.01
No commit activity in last 3 years
No release in over 3 years
A Ruby client for IDCF Cloud DNS Service.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.14
>= 0
~> 10.0
~> 3.0

Runtime

 Project Readme

Idcf::Dns

Gem Version Build Status Code Climate Test Coverage

A Ruby client for IDCF Cloud DNS service.

Installation

Add this line to your application's Gemfile:

gem 'idcf-dns'

And then execute:

$ bundle

Or install it yourself as:

$ gem install idcf-dns

Dependencies

  • Ruby 2.1.10 or higher

Usage

Basic usage

Client

require "idcf/dns"

client =
  Idcf::Dns::Client.new(
    api_key: ENV["IDCF_API_KEY"],
    secret_key: ENV["IDCF_SECRET_KEY"]
  )

# Call GET request directly
# returns Response object
response = client.get("zones")
response.success? #=> true
response.status   #=> 200

# Response#body returns HTTP response body as a hash or an array
response.body     #=> [zone1, zone2, ...]
response.body[0]  #=> zone1

# Response#[] is alias to Response#body[]
response[0]       #=> zone1

Zones

Create a new zone
response =
  client.create_zone(
    name: "foobar.example.com",
    email: "foobar@example.com",
    description: "description",
    default_ttl: 600
  )

response.uuid #=> UUID of new zone
Get zones
# Get all zones
zones = client.list_zones.body
zones[0]["name"] #=> "foobar.example.com"

# Get a zone
zone = client.get_zone(zone_uuid).body
zone["name"]         #=> "foobar.example.com"
zone["records"].size #=> 3
Update a zone
client.update_zone(zone_uuid, description: "Updated")
Delete a zone
client.delete_zone(zone_uuid)

Records

Create a new record
response =
  client.create_record(
    zone_uuid,
    name: "baz.foobar.example.com",
    type: "A",
    content: "8.8.8.8",
    ttl: 600
  )

response.uuid #=> UUID of new record
Get records
# Get all records of a zone
records = client.list_records(zone_uuid).body
records[0]["name"] #=> "baz.foobar.example.com"

# Get a record
record = client.get_record(zone_uuid, record_uuid).body
record["name"] #=> "baz.foobar.example.com"
Update a record
client.update_record(zone_uuid, record_uuid, content: "210.140.158.1")
Delete a record
client.delete_record(zone_uuid, record_uuid)

Advanced usage

Custom expiration of requests

In default, requests will expire in 600 seconds. You can use custom expirations for each request.

expiration = Time.now.to_i + 10

client.list_zones("X-IDCF-Expires": expiration).success?
#=> true

# wait for 10 seconds ...

client.list_zones("X-IDCF-Expires": expiration)
#=> Idcf::Dns::ApiError: HTTP status code: 403, Error message: This api request is expired., Reference: http://docs.idcf.jp/cloud/dns

API reference

http://www.rubydoc.info/gems/idcf-dns

Contributing

  1. Fork it ( https://github.com/idcf/idcf-dns-ruby/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request