Stored Procedures
Stored procedures are function-like interfaces that extend the functionality of the connector beyond simple SELECT/INSERT/UPDATE/DELETE operations with Google Calendar.
Stored procedures accept a list of parameters, perform their intended function, and then return any relevant response data from Google Calendar, along with an indication of whether the procedure succeeded or failed.
CData Python Connector for Google Calendar Stored Procedures
| Name | Description |
| DownloadAttachments | Downloads Google Calendar event attachments. |
| GetAvailability | Queries the free/busy information for one or more calendars using the FreeBusy: query API. |
| GetOAuthAccessToken | Obtains the OAuth access token to be used for authentication with various Google services. |
| GetOAuthAuthorizationURL | Obtains the OAuth authorization URL used for authentication with various Google services. |
| ImportEvent | Imports an event into a calendar. |
| MoveEvent | Moves an event from one calendar to another using the Google Calendar Events.move API. |
| QuickAddEvent | Creates a Google Calendar event based on a simple text string. |
| RefreshOAuthAccessToken | Obtains the OAuth access token to be used for authentication with various Google services. |
| StopWatchingResources | Stops receiving notifications for a given channel. |
| SubscribeToAclChanges | Starts watching for changes to the access control list (ACL) of a calendar. |
| SubscribeToCalendarListChanges | Starts watching for changes in the user's calendar list. |
| SubscribeToEventChanges | Starts watching for changes to events on a calendar. |
| SubscribeToSettingsChanges | Starts watching for changes to the authenticated user's calendar settings. |