File: describe_mount_target_security_groups.rb

package info (click to toggle)
ruby-fog-aws 3.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 8,092 kB
  • sloc: ruby: 72,795; javascript: 14; makefile: 9; sh: 4
file content (34 lines) | stat: -rw-r--r-- 1,047 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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