SFTPToGCSOperator

Google

Transfer files to Google Cloud Storage from SFTP server.

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

source_pathRequiredThe 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_bucketRequiredThe bucket to upload to.
destination_pathThe 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(Optional) The connection ID used to connect to Google Cloud.
sftp_conn_idThe sftp connection id. The name or identifier for establishing a connection to the SFTP server.
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.
mime_typeThe mime-type string
gzipAllows for file to be compressed and uploaded as gzip
move_objectWhen 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_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

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

Was this page helpful?