Sha256: eea108b4d569176014ba80d849a336fe7a738a138ce033f7a7fb794aa30b897b
Contents?: true
Size: 677 Bytes
Versions: 53
Compression:
Stored size: 677 Bytes
Contents
require 'fog/core/model' module Fog module DNS class StormOnDemand class Domain < Fog::Model identity :domain attribute :admin_handle attribute :bill_handle attribute :created attribute :expire attribute :ip attribute :registrar attribute :renewal_max_years attribute :renewal_status attribute :tech_handle attribute :updated def initialize(attributes={}) super end def renew(years) requires :identity service.renew_domain(:domain => identity, :years => years) true end end end end end
Version data entries
53 entries across 53 versions & 3 rubygems