class Fog::DNS::StormOnDemand::Domain

Public Class Methods

new(attributes={}) click to toggle source
Calls superclass method
# File lib/fog/storm_on_demand/models/dns/domain.rb, line 19
def initialize(attributes={})
  super
end

Public Instance Methods

renew(years) click to toggle source
# File lib/fog/storm_on_demand/models/dns/domain.rb, line 23
def renew(years)
  requires :identity
  service.renew_domain(:domain => identity, :years => years)
  true
end