1
0
Fork 0
mirror of https://github.com/fog/fog.git synced 2022-11-09 13:51:43 -05:00
fog--fog/lib/fog/compute/requests/aws/modify_snapshot_attribute.rb

37 lines
1.2 KiB
Ruby
Raw Normal View History

module Fog
module AWS
2010-09-08 17:40:02 -04:00
class Compute
class Real
require 'fog/compute/parsers/aws/basic'
# Modify snapshot attributes
#
# ==== Parameters
# * snapshot_id<~String> - Id of snapshot to modify
# * attribute<~String> - Attribute to modify, in ['createVolumePermission']
# * operation_type<~String> - Operation to perform on attribute, in ['add', 'remove']
#
#
#
# {Amazon API Reference}[http://docs.amazonwebservices.com/AWSEC2/latest/APIReference/ApiReference-query-ModifySnapshotAttribute.html]
#
def modify_snapshot_attribute(snapshot_id, attribute, operation_type, options = {})
params = {}
params.merge!(AWS.indexed_param('UserId', options['UserId']))
params.merge!(AWS.indexed_param('UserGroup', options['UserGroup']))
request({
'Action' => 'ModifySnapshotAttribute',
'Attribute' => attribute,
'SnapshotId' => snapshot_id,
'OperationType' => operation_type,
:idempotent => true,
2010-09-08 17:40:02 -04:00
:parser => Fog::Parsers::AWS::Compute::Basic.new
}.merge!(params))
end
end
end
end
end