Sha256: 38070697ae36e30767bf1f1a38efa88f5b4c272efa70cb4c03040dd8b88e1812
Contents?: true
Size: 480 Bytes
Versions: 88
Compression:
Stored size: 480 Bytes
Contents
module Fog module Compute class Joyent class Real # https://us-west-1.api.joyentcloud.com/docs#AddMachineTags def add_machine_tags(machine_id, tags={}) raise ArgumentError, "tags must be a Hash of tags" unless tags.is_a?(Hash) request( :path => "/my/machines/#{machine_id}/tags", :method => "POST", :body => tags, :expects => 200 ) end end end end end
Version data entries
88 entries across 88 versions & 16 rubygems