airflow.providers.teradata.transfers.azure_blob_to_teradata

Module Contents

Classes

AzureBlobStorageToTeradataOperator

Loads CSV, JSON and Parquet format data from Azure Blob Storage to Teradata.

class airflow.providers.teradata.transfers.azure_blob_to_teradata.AzureBlobStorageToTeradataOperator(*, blob_source_key, public_bucket=False, azure_conn_id='azure_default', teradata_table, teradata_conn_id='teradata_default', teradata_authorization_name='', **kwargs)[source]

Bases: airflow.models.BaseOperator

Loads CSV, JSON and Parquet format data from Azure Blob Storage to Teradata.

See also

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

Parameters

Note that blob_source_key and teradata_table are templated, so you can use variables in them if you wish.

template_fields: Sequence[str] = ('blob_source_key', 'teradata_table')[source]
ui_color = '#e07c24'[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?