Sha256: 05536bbaa15b210d6a06cc6c429d214a29d5c19146ab27b1f5295aa3061a918c
Contents?: true
Size: 479 Bytes
Versions: 36
Compression:
Stored size: 479 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
36 entries across 34 versions & 6 rubygems