Sha256: e864fcbbed0ec1eede1130daba21908cf86b24f4b138bb61c37d65de89ca8269

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

module Fog
  module Identity
    class HuaweiCloud
      class V2
        class Real
          def list_users(options = {})
            if options.kind_of?(Hash)
              tenant_id = options.delete(:tenant_id)
              query = options
            else
              Fog::Logger.deprecation('Calling HuaweiCloud[:identity].list_users(tenant_id) is deprecated, use .list_users(:tenant_id => value)')
              tenant_id = options
              query = {}
            end

            path = tenant_id ? "tenants/#{tenant_id}/users" : 'users'
            request(
              :expects => [200, 204],
              :method  => 'GET',
              :path    => path,
              :query   => query
            )
          end
        end

        class Mock
          def list_users(options = {})
            tenant_id = options[:tenant_id]

            users = data[:users].values

            if tenant_id
              users = users.select do |user|
                user['tenantId'] == tenant_id
              end
            end

            Excon::Response.new(
              :body   => {'users' => users},
              :status => 200
            )
          end
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/identity/huaweicloud/v2/requests/list_users.rb
fog-huaweicloud-0.0.2 lib/fog/identity/huaweicloud/v2/requests/list_users.rb
fog-huaweicloud-0.1.3 lib/fog/identity/huaweicloud/v2/requests/list_users.rb
fog-huaweicloud-0.1.2 lib/fog/identity/huaweicloud/v2/requests/list_users.rb