fog/fog-cloudatcost

View on GitHub
lib/fog/cloudatcost/models/task.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Fog
  module Compute
    class CloudAtCost
      class Task < Fog::Model
        identity :id
        attribute :cid
        attribute :idf
        attribute :serverid
        attribute :action
        attribute :status
        attribute :starttime
        attribute :finishtime
        attribute :servername
        attribute :ip
        attribute :label
        attribute :rdns
        attribute :rdnsdefault
      end
    end
  end
end