Sha256: 61e26bd21812790f70a9f093756a1b7d7ffafba15078ca0d29236cc9d0ba7dd4

Contents?: true

Size: 432 Bytes

Versions: 1

Compression:

Stored size: 432 Bytes

Contents

module Lumberg
  module Whostmgr
    class Ssl < Base
      # Public: Removes a SSL certificate
      #
      # options - Hash options for API call params (default: {}):
      #  :domain   - Domain name for the cert removal
      #
      # Returns Hash API response
      def remove(options = {})
        host = options.delete(:domain)
        perform_request({ function: "realdelsslhost", host: host })
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
lumberg-2.0.0.pre7 lib/lumberg/whostmgr/ssl.rb