blob: 225c7daad5f59f9993bfb52fccf7887ef3156c8e [file] [log] [blame]
:py:mod:`airflow.providers.google.cloud.sensors.bigtable`
=========================================================
.. py:module:: airflow.providers.google.cloud.sensors.bigtable
.. autoapi-nested-parse::
This module contains Google Cloud Bigtable sensor.
Module Contents
---------------
Classes
~~~~~~~
.. autoapisummary::
airflow.providers.google.cloud.sensors.bigtable.BigtableTableReplicationCompletedSensor
.. py:class:: BigtableTableReplicationCompletedSensor(*, instance_id, table_id, project_id = None, gcp_conn_id = 'google_cloud_default', impersonation_chain = None, **kwargs)
Bases: :py:obj:`airflow.sensors.base.BaseSensorOperator`, :py:obj:`airflow.providers.google.cloud.operators.bigtable.BigtableValidationMixin`
Sensor that waits for Cloud Bigtable table to be fully replicated to its clusters.
No exception will be raised if the instance or the table does not exist.
For more details about cluster states for a table, have a look at the reference:
https://googleapis.github.io/google-cloud-python/latest/bigtable/table.html#google.cloud.bigtable.table.Table.get_cluster_states
.. seealso::
For more information on how to use this operator, take a look at the guide:
:ref:`howto/operator:BigtableTableReplicationCompletedSensor`
:param instance_id: The ID of the Cloud Bigtable instance.
:param table_id: The ID of the table to check replication status.
:param project_id: Optional, the ID of the Google Cloud project.
:param impersonation_chain: 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).
.. py:attribute:: REQUIRED_ATTRIBUTES
:annotation: = ['instance_id', 'table_id']
.. py:attribute:: template_fields
:annotation: :Sequence[str] = ['project_id', 'instance_id', 'table_id', 'impersonation_chain']
.. py:attribute:: operator_extra_links
.. py:method:: poke(context)
Function that the sensors defined while deriving this class should
override.