class Fog::DNS::StormOnDemand::Domain

Public Class Methods

new(attributes={}) click to toggle source
Calls superclass method Fog::Model::new
# File lib/fog/storm_on_demand/models/dns/domain.rb, line 20
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 24
def renew(years)
  requires :identity
  service.renew_domain(:domain => identity, :years => years)
  true
end