in pipelines/iot_analytics/iot_analytics_pipeline/options.py [0:0]
def _add_argparse_args(cls, parser: ArgumentParser):
parser.add_argument(
'--topic',
dest='topic',
help='Pub/sub topic name :"projects/your_project_id/topics/topic_name"')
parser.add_argument(
'--project_id', dest='project', help='Your Google Cloud project ID')
parser.add_argument(
'--dataset', dest='dataset', help='Enter BigQuery Dataset Id')
parser.add_argument('--table', dest='table', help='Enter BigQuery Table Id')
parser.add_argument(
'--bigtable_instance_id',
dest='bigtable_instance_id',
help='Enter BigTable Instance Id')
parser.add_argument(
'--bigtable_table_id',
dest='bigtable_table_id',
help='Enter BigTable Table Id')
parser.add_argument(
'--row_key', dest='row_key', help='Enter BigTable row key')