# File lib/fog/openstack/requests/identity/create_tenant.rb, line 5
        def create_tenant(attributes)
          request(
            :expects => [200],
            :method  => 'POST',
            :path    => "tenants",
            :body    => {
              'tenant' => attributes
            }.to_json
          )
        end