airflow.providers.google.suite.transfers.gcs_to_sheets
¶
Module Contents¶
Classes¶
Uploads .csv file from Google Cloud Storage to provided Google Spreadsheet. |
- class airflow.providers.google.suite.transfers.gcs_to_sheets.GCSToGoogleSheetsOperator(*, spreadsheet_id, bucket_name, object_name, spreadsheet_range='Sheet1', gcp_conn_id='google_cloud_default', impersonation_chain=None, delegate_to=None, **kwargs)[source]¶
Bases:
airflow.models.BaseOperator
Uploads .csv file from Google Cloud Storage to provided Google Spreadsheet.
See also
For more information on how to use this operator, take a look at the guide: Upload data from GCS to Google Sheets
- Parameters
spreadsheet_id (str) – The Google Sheet ID to interact with.
bucket_name (str) – Name of GCS bucket.:
object_name (str) – Path to the .csv file on the GCS bucket.
spreadsheet_range (str) – The A1 notation of the values to retrieve.
gcp_conn_id (str) – The connection ID to use when fetching connection info.
delegate_to (str | None) – The 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. This only applies to the Google Sheet Connection
impersonation_chain (str | Sequence[str] | None) – Optional 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).