Sha256: 11be24acc8f2fd0265db6591f70cb809bdc51df1f62c785fc9b850ef0618b73f

Contents?: true

Size: 997 Bytes

Versions: 4

Compression:

Stored size: 997 Bytes

Contents

module Fog
  module SharedFileSystem
    class HuaweiCloud
      class Real
        def grant_share_access(share_id, access_to = '0.0.0.0/0', access_type = 'ip', access_level = 'rw')
          action = {
            "#{action_prefix}allow_access" => {
              'access_to'    => access_to,
              'access_type'  => access_type,
              'access_level' => access_level
            }
          }
          share_action(share_id, action, 200)
        end
      end

      class Mock
        def grant_share_access(share_id, access_to, access_type, access_level)
          response = Excon::Response.new
          response.status = 200

          access                = data[:access_rules].first
          access[:share_id]     = share_id
          access[:access_level] = access_level
          access[:access_type]  = access_type
          access[:access_to]    = access_to

          response.body = {'access' => access}
          response
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/shared_file_system/huaweicloud/requests/grant_share_access.rb
fog-huaweicloud-0.0.2 lib/fog/shared_file_system/huaweicloud/requests/grant_share_access.rb
fog-huaweicloud-0.1.3 lib/fog/shared_file_system/huaweicloud/requests/grant_share_access.rb
fog-huaweicloud-0.1.2 lib/fog/shared_file_system/huaweicloud/requests/grant_share_access.rb