Skip to content

Commit

Permalink
[AIRFLOW-XXX] Add missing GCP operators to Docs (#4260)
Browse files Browse the repository at this point in the history
  • Loading branch information
kaxil committed Jan 9, 2019
1 parent 6f0cdd3 commit fcfb05a
Showing 1 changed file with 21 additions and 12 deletions.
33 changes: 21 additions & 12 deletions docs/integration.rst
Original file line number Diff line number Diff line change
Expand Up @@ -557,10 +557,11 @@ BigQuery Operators
- :ref:`BigQueryValueCheckOperator` : Performs a simple value check using SQL code.
- :ref:`BigQueryIntervalCheckOperator` : Checks that the values of metrics given as SQL expressions are within a certain tolerance of the ones from days_back before.
- :ref:`BigQueryGetDataOperator` : Fetches the data from a BigQuery table and returns data in a python list
- :ref:`BigQueryCreateEmptyDatasetOperator` : Creates an empty BigQuery dataset.
- :ref:`BigQueryCreateEmptyTableOperator` : Creates a new, empty table in the specified BigQuery dataset optionally with schema.
- :ref:`BigQueryCreateExternalTableOperator` : Creates a new, external table in the dataset with the data in Google Cloud Storage.
- :ref:`BigQueryDeleteDatasetOperator` : Deletes an existing BigQuery dataset.
- :ref:`BigQueryCreateEmptyDatasetOperator` : Creates an empty BigQuery dataset.
- :ref:`BigQueryTableDeleteOperator` : Deletes an existing BigQuery table.
- :ref:`BigQueryOperator` : Executes BigQuery SQL queries in a specific BigQuery database.
- :ref:`BigQueryToBigQueryOperator` : Copy a BigQuery table to another BigQuery table.
- :ref:`BigQueryToCloudStorageOperator` : Transfers a BigQuery table to a Google Cloud Storage bucket
Expand Down Expand Up @@ -608,26 +609,19 @@ BigQueryCreateExternalTableOperator

.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryCreateExternalTableOperator

.. _BigQueryDeleteDatasetOperator:

BigQueryDeleteDatasetOperator
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryDeleteDatasetOperator

.. _BigQueryCreateEmptyDatasetOperator:

BigQueryCreateEmptyDatasetOperator
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryCreateEmptyDatasetOperator

.. _BigQueryOperator:
.. _BigQueryDeleteDatasetOperator:

BigQueryOperator
^^^^^^^^^^^^^^^^
BigQueryDeleteDatasetOperator
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryOperator
.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryDeleteDatasetOperator

.. _BigQueryTableDeleteOperator:

Expand All @@ -636,6 +630,13 @@ BigQueryTableDeleteOperator

.. autoclass:: airflow.contrib.operators.bigquery_table_delete_operator.BigQueryTableDeleteOperator

.. _BigQueryOperator:

BigQueryOperator
^^^^^^^^^^^^^^^^

.. autoclass:: airflow.contrib.operators.bigquery_operator.BigQueryOperator

.. _BigQueryToBigQueryOperator:

BigQueryToBigQueryOperator
Expand Down Expand Up @@ -1242,6 +1243,7 @@ Storage Operators
- :ref:`GoogleCloudStorageObjectCreateAclEntryOperator` : Creates a new ACL entry on the specified object.
- :ref:`GoogleCloudStorageToBigQueryOperator` : Loads files from Google cloud storage into BigQuery.
- :ref:`GoogleCloudStorageToGoogleCloudStorageOperator` : Copies objects from a bucket to another, with renaming if requested.
- :ref:`MySqlToGoogleCloudStorageOperator`: Copy data from any MySQL Database to Google cloud storage in JSON format.

.. _FileToGoogleCloudStorageOperator:

Expand Down Expand Up @@ -1299,6 +1301,13 @@ GoogleCloudStorageToGoogleCloudStorageOperator

.. autoclass:: airflow.contrib.operators.gcs_to_gcs.GoogleCloudStorageToGoogleCloudStorageOperator

.. _MySqlToGoogleCloudStorageOperator:

MySqlToGoogleCloudStorageOperator
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

.. autoclass:: airflow.contrib.operators.mysql_to_gcs.MySqlToGoogleCloudStorageOperator

GoogleCloudStorageHook
""""""""""""""""""""""

Expand Down

0 comments on commit fcfb05a

Please sign in to comment.