class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
getRest = method(self, **kwargs)
Retrieve the description of a particular version of an api.
 
Args:
  api: string, The name of the API. (required)
  version: string, The version of the API. (required)
list = method(self, **kwargs)
Retrieve the list of APIs supported at this endpoint.
 
Args:
  name: string, Only include APIs with the given name.
  preferred: boolean, Return only the preferred version of an API.
  label: string, Only include APIs with a matching label, such as 'graduated' or 'labs'.
    Allowed values
      deprecated - APIs that have been deprecated.
      graduated - Supported APIs that have graduated from labs.
      labs - APIs that are experimental

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)