airflow.providers.google.cloud.transfers.sftp_to_gcs

This module contains SFTP to Google Cloud Storage operator.

Module Contents

Classes

SFTPToGCSOperator

Transfer files to Google Cloud Storage from SFTP server.

Attributes

WILDCARD

airflow.providers.google.cloud.transfers.sftp_to_gcs.WILDCARD = '*'[source]
class airflow.providers.google.cloud.transfers.sftp_to_gcs.SFTPToGCSOperator(*, source_path, destination_bucket, destination_path=None, gcp_conn_id='google_cloud_default', sftp_conn_id='ssh_default', mime_type='application/octet-stream', gzip=False, move_object=False, impersonation_chain=None, sftp_prefetch=True, **kwargs)[source]

Bases: airflow.models.BaseOperator

Transfer files to Google Cloud Storage from SFTP server.

See also

For more information on how to use this operator, take a look at the guide: Operator

Parameters
  • source_path (str) – The sftp remote path. This is the specified file path for downloading the single file or multiple files from the SFTP server. You can use only one wildcard within your path. The wildcard can appear inside the path or at the end of the path.

  • destination_bucket (str) – The bucket to upload to.

  • destination_path (str | None) – The destination name of the object in the destination Google Cloud Storage bucket. If destination_path is not provided file/files will be placed in the main bucket path. If a wildcard is supplied in the destination_path argument, this is the prefix that will be prepended to the final destination objects’ paths.

  • gcp_conn_id (str) – (Optional) The connection ID used to connect to Google Cloud.

  • sftp_conn_id (str) – The sftp connection id. The name or identifier for establishing a connection to the SFTP server.

  • mime_type (str) – The mime-type string

  • gzip (bool) – Allows for file to be compressed and uploaded as gzip

  • move_object (bool) – When move object is True, the object is moved instead of copied to the new location. This is the equivalent of a mv command as opposed to a cp command.

  • 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).

  • sftp_prefetch (bool) – Whether to enable SFTP prefetch, the default is True.

template_fields: Sequence[str] = ('source_path', 'destination_path', 'destination_bucket', 'impersonation_chain')[source]
execute(context)[source]

Derive when creating an operator.

Context is the same dictionary used as when rendering jinja templates.

Refer to get_template_context for more context.

Was this entry helpful?