class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
clear = method(self, **kwargs)
Clears a primary calendar. This operation deletes all data associated with the primary calendar of an account and cannot be undone.
 
Args:
  body: object, The request body. (required)
  calendarId: string, Calendar identifier. (required)
delete = method(self, **kwargs)
Deletes a secondary calendar.
 
Args:
  calendarId: string, Calendar identifier. (required)
get = method(self, **kwargs)
Returns metadata for a calendar.
 
Args:
  calendarId: string, Calendar identifier. (required)
 
Returns:
  An object of the form
 
    {
      "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
      "description": "A String", # Description of the calendar. Optional.
      "summary": "A String", # Title of the calendar.
      "etag": "A String", # ETag of the resource.
      "location": "A String", # Geographic location of the calendar as free-form text. Optional.
      "timeZone": "A String", # The time zone of the calendar. Optional.
      "id": "A String", # Identifier of the calendar.
    }
insert = method(self, **kwargs)
Creates a secondary calendar.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
    "description": "A String", # Description of the calendar. Optional.
    "summary": "A String", # Title of the calendar.
    "etag": "A String", # ETag of the resource.
    "location": "A String", # Geographic location of the calendar as free-form text. Optional.
    "timeZone": "A String", # The time zone of the calendar. Optional.
    "id": "A String", # Identifier of the calendar.
  }
 
 
Returns:
  An object of the form
 
    {
      "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
      "description": "A String", # Description of the calendar. Optional.
      "summary": "A String", # Title of the calendar.
      "etag": "A String", # ETag of the resource.
      "location": "A String", # Geographic location of the calendar as free-form text. Optional.
      "timeZone": "A String", # The time zone of the calendar. Optional.
      "id": "A String", # Identifier of the calendar.
    }
patch = method(self, **kwargs)
Updates metadata for a calendar. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
    "description": "A String", # Description of the calendar. Optional.
    "summary": "A String", # Title of the calendar.
    "etag": "A String", # ETag of the resource.
    "location": "A String", # Geographic location of the calendar as free-form text. Optional.
    "timeZone": "A String", # The time zone of the calendar. Optional.
    "id": "A String", # Identifier of the calendar.
  }
 
  calendarId: string, Calendar identifier. (required)
 
Returns:
  An object of the form
 
    {
      "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
      "description": "A String", # Description of the calendar. Optional.
      "summary": "A String", # Title of the calendar.
      "etag": "A String", # ETag of the resource.
      "location": "A String", # Geographic location of the calendar as free-form text. Optional.
      "timeZone": "A String", # The time zone of the calendar. Optional.
      "id": "A String", # Identifier of the calendar.
    }
update = method(self, **kwargs)
Updates metadata for a calendar.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
    "description": "A String", # Description of the calendar. Optional.
    "summary": "A String", # Title of the calendar.
    "etag": "A String", # ETag of the resource.
    "location": "A String", # Geographic location of the calendar as free-form text. Optional.
    "timeZone": "A String", # The time zone of the calendar. Optional.
    "id": "A String", # Identifier of the calendar.
  }
 
  calendarId: string, Calendar identifier. (required)
 
Returns:
  An object of the form
 
    {
      "kind": "calendar#calendar", # Type of the resource ("calendar#calendar").
      "description": "A String", # Description of the calendar. Optional.
      "summary": "A String", # Title of the calendar.
      "etag": "A String", # ETag of the resource.
      "location": "A String", # Geographic location of the calendar as free-form text. Optional.
      "timeZone": "A String", # The time zone of the calendar. Optional.
      "id": "A String", # Identifier of the calendar.
    }

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