GoogleCalendarToGCSOperator

Google

Writes Google Calendar data into Google Cloud Storage.

View on GitHub

Last Updated: Jan. 23, 2023

Access Instructions

Install the Google provider package into your Airflow environment.

Import the module into your DAG file and instantiate it with your desired params.

Parameters

calendar_idThe Google Calendar ID to interact with.
i_cal_uidOptional. Specifies event ID in the iCalendar format in the response.
max_attendeesOptional. If there are more than the specified number of attendees, only the participant is returned.
max_resultsOptional. Maximum number of events returned on one result page. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger than 2500 events
order_byOptional. Acceptable values are "startTime" or “updated”
private_extended_propertyOptional. Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all given constraints.
text_search_queryOptional. Free text search.
shared_extended_propertyOptional. Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all given constraints.
show_deletedOptional. False by default
show_hidden_invitationOptional. False by default
single_eventsOptional. False by default
sync_tokenOptional. Token obtained from the nextSyncToken field returned
time_maxOptional. Upper bound (exclusive) for an event’s start time to filter by. Default is no filter
time_minOptional. Lower bound (exclusive) for an event’s end time to filter by. Default is no filter
time_zoneOptional. Time zone used in response. Default is calendars time zone.
updated_minOptional. Lower bound for an event’s last modification time
destination_bucketRequiredThe destination Google Cloud Storage bucket where the report should be written to. (templated)
destination_pathThe Google Cloud Storage URI array for the object created by the operator. For example: path/to/my/files.
gcp_conn_idThe connection ID to use when fetching connection info.
delegate_toThe account to impersonate using domain-wide delegation of authority, if any. For this to work, the service account making the request must have domain-wide delegation enabled.
impersonation_chainOptional service account to impersonate using short-term credentials, or chained list of accounts required to get the access_token of the last account in the list, which will be impersonated in the request. If set as a string, the account must grant the originating account the Service Account Token Creator IAM role. If set as a sequence, the identities from the list must grant Service Account Token Creator IAM role to the directly preceding identity, with first account from the list granting this role to the originating account (templated).

Documentation

Writes Google Calendar data into Google Cloud Storage.

See also

For more information on how to use this operator, take a look at the guide: Upload data from Google Calendar to GCS

Was this page helpful?