class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Delete a group
 
Args:
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to delete. (required)
get = method(self, **kwargs)
Get a group
 
Args:
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to get. (required)
insert = method(self, **kwargs)
Create a group
 
Args:
  body: object, The request body. (required)
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
list = method(self, **kwargs)
Get a user's groups
 
Args:
  c: string, A continuation token that allows pagination.
  userId: string, ID of the user being referenced. (required)
  max_results: integer, Maximum number of results to include.
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
list_next = methodNext(self, previous)
Retrieve the next page of results.
 
Takes a single argument, 'body', which is the results
from the last call, and returns the next set of items
in the collection.
 
Returns:
  None if there are no more items in the collection.
patch = method(self, **kwargs)
Update a group. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to update. (required)
update = method(self, **kwargs)
Update a group
 
Args:
  body: object, The request body. (required)
  userId: string, ID of the user being referenced. (required)
  hl: string, Language code to limit language results.
  alt: string, Specifies an alternative representation type.
    Allowed values
      atom - Use Atom XML format
      json - Use JSON format
  groupId: string, ID of the group to update. (required)

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