Sha256: 6df74a506d93dd1906cd4ace95158ab3ec06453c4d09aa747a6a2bffc15d00a6
Contents?: true
Size: 1.02 KB
Versions: 52
Compression:
Stored size: 1.02 KB
Contents
module Fog module AWS class EFS class Real # Describe mount target security groups # http://docs.aws.amazon.com/efs/latest/ug/API_DescribeMountTargetSecurityGroups.html # ==== Parameters # * MountTargetId - Id of the mount target for which you want to describe security groups # ==== Returns # * response<~Excon::Response> # * body<~Hash> def describe_mount_target_security_groups(mount_target_id) request( :path => "mount-targets/#{mount_target_id}/security-groups" ) end end class Mock def describe_mount_target_security_groups(mount_target_id) response = Excon::Response.new unless self.data[:mount_targets][mount_target_id] raise Fog::AWS::EFS::NotFound.new("invalid mount target ID: #{mount_target_id}") end response.body = {"SecurityGroups" => self.data[:security_groups][mount_target_id]} response end end end end end
Version data entries
52 entries across 50 versions & 2 rubygems