class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Delete a group
 
Args:
  alt: Specifies an alternative representation type.
  userId: ID of the user being referenced. (required)
  groupId: ID of the group to delete. (required)
  hl: Language code to limit language results.
get = method(self, **kwargs)
Get a group
 
Args:
  alt: Specifies an alternative representation type.
  userId: ID of the user being referenced. (required)
  groupId: ID of the group to get. (required)
  hl: Language code to limit language results.
insert = method(self, **kwargs)
Create a group
 
Args:
  body: The request body.
  alt: Specifies an alternative representation type.
  userId: ID of the user being referenced. (required)
  hl: Language code to limit language results.
list = method(self, **kwargs)
Get a user's groups
 
Args:
  c: A continuation token that allows pagination.
  max_results: Maximum number of results to include.
  userId: ID of the user being referenced. (required)
  alt: Specifies an alternative representation type.
  hl: Language code to limit language results.
list_next = methodNext(self, previous)
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.
update = method(self, **kwargs)
Update a group
 
Args:
  body: The request body.
  alt: Specifies an alternative representation type.
  userId: ID of the user being referenced. (required)
  groupId: ID of the group to update. (required)
  hl: Language code to limit language results.

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