Sha256: 2494c8de6924964f276a250ac92363b3a1c1db16c75b96c882211bf194155c6a
Contents?: true
Size: 1.63 KB
Versions: 70
Compression:
Stored size: 1.63 KB
Contents
module Fog module Compute class AWS class Real require 'fog/aws/parsers/compute/basic' # Modifies a volume attribute. # # ==== Parameters # * volume_id<~String> - The ID of the volume. # * auto_enable_io_value<~Boolean> - This attribute exists to auto-enable the I/O operations to the volume. # # ==== Returns # * response<~Excon::Response>: # * body<~Hash>: # * 'requestId'<~String> - Id of request # * 'return'<~Boolean> - success? # # {Amazon API Reference}[http://http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-ModifyVolumeAttribute.html] def modify_volume_attribute(volume_id=nil, auto_enable_io_value=false) request( 'Action' => 'ModifyVolumeAttribute', 'VolumeId' => volume_id, 'AutoEnableIO.Value' => auto_enable_io_value, :idempotent => true, :parser => Fog::Parsers::Compute::AWS::Basic.new ) end end class Mock def modify_volume_attribute(volume_id=nil, auto_enable_io_value=false) response = Excon::Response.new if volume = self.data[:volumes][volume_id] response.status = 200 response.body = { 'requestId' => Fog::AWS::Mock.request_id, 'return' => true } response else raise Fog::Compute::AWS::NotFound.new("The volume '#{volume_id}' does not exist.") end end end end end end
Version data entries
70 entries across 70 versions & 9 rubygems