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/aws/requests/compute/modify_snapshot_attribute.rb
2010-09-08 14:40:57 -07:00

38 lines
1.2 KiB
Ruby

module Fog
module AWS
class Compute
class Real
# 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']
#
def modify_snapshot_attribute(snapshot_id, attribute, operation_type, options = {})
params = {}
params.merge!(AWS.indexed_param('UserId', options['UserId'], 1))
params.merge!(AWS.indexed_param('UserGroup', options['UserGroup'], 1))
request({
'Action' => 'ModifySnapshotAttribute',
'Attribute' => attribute,
'SnapshotId' => snapshot_id,
'OperationType' => operation_type,
:idempotent => true,
:parser => Fog::Parsers::AWS::Compute::Basic.new
}.merge!(params))
end
end
class Mock
def modify_snapshot_attribute(snapshot_id, attribute, operation_type, options = {})
Fog::Mock.not_implemented
end
end
end
end
end