09
  $   	H403358_I|Mjq؂ <o f    	<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>403 Forbidden</title>
</head><body>
<h1>Forbidden</h1>
<p>You don't have permission to access this resource.</p>
<p>Additionally, a 403 Forbidden
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
     h      0x0000000000000000
  )   Z٫{-i[D<o_I|Mjq؂            mn0D|!sjAKK,Tbx)ZINf& dv}9ydu{l[1H/Hs
5xBnL:;nV˞;T噶IWUcv_͡lH)wh?<K\"P>HRBc{M<    "   696a=J*e8Aq. Jbѿ     
)rjc           @   s3   d  d l  m Z m Z d e e f d     YZ d S(   i(   t   Plugint   RedHatPlugint   MigrationResultsc           B   s    e  Z d  Z d Z d Z d Z RS(   s*   Information about conversions and upgradest   migration_resultst   systems   /etc/migration-results(   s   system(   s   /etc/migration-results(   t   __name__t
   __module__t   __doc__t   plugin_namet   profilest   files(    (    (    sA   /usr/lib/python2.7/site-packages/sos/plugins/migration_results.pyR      s   N(   t   sos.pluginsR    R   R   (    (    (    sA   /usr/lib/python2.7/site-packages/sos/plugins/migration_results.pyt   <module>	   s     
   355¾ c    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html><head>
<title>404 Not Found</title>
</head><body>
<h1>Not Found</h1>
<p>The requested URL was not found on this server.</p>
<p>Additionally, a 404 Not Found
error was encountered while trying to use an ErrorDocument to handle the request.</p>
</body></html>
  "   lY>eJuA3pjbѿ/ 	]    # Copyright (c) 2009-2016 Hewlett Packard Enterprise Development LP
#
# Redistribution and use of this software in source and binary forms,
# with or without modification, are permitted provided that the following
# conditions are met:
#
#   Redistributions of source code must retain the above copyright notice,
#   this list of conditions and the following disclaimer.
#
#   Redistributions in binary form must reproduce the above copyright
#   notice, this list of conditions and the following disclaimer in the
#   documentation and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

from requestbuilder import Arg
from requestbuilder.response import PaginatedResponse

from euca2ools.commands.iam import IAMRequest, AS_ACCOUNT


class ListGroups(IAMRequest):
    DESCRIPTION = "List your account's groups"
    ARGS = [Arg('-p', '--path-prefix', dest='PathPrefix', metavar='PATH',
                help='limit results to groups that begin with a given path'),
            AS_ACCOUNT]
    LIST_TAGS = ['Groups']

    def main(self):
        return PaginatedResponse(self, (None,), ('Groups',))

    def prepare_for_page(self, page):
        # Pages are defined by markers
        self.params['Marker'] = page

    # pylint: disable=no-self-use
    def get_next_page(self, response):
        if response.get('IsTruncated') == 'true':
            return response['Marker']
    # pylint: enable=n