2013-12-12 01:33:01 +00:00

12 lines
337 B
Ruby

actions :associate, :disassociate
attribute :aws_access_key, :kind_of => String
attribute :aws_secret_access_key, :kind_of => String
attribute :ip, :kind_of => String
attribute :timeout, :default => 3*60 # 3 mins, nil or 0 for no timeout
def initialize(*args)
super
@action = :associate
end