├── .coveragerc ├── .cross_sync ├── README.md ├── generate.py └── transformers.py ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-label.yaml ├── blunderbuss.yml ├── flakybot.yaml ├── header-checker-lint.yml ├── snippet-bot.yml └── workflows │ ├── conformance.yaml │ ├── docs.yml │ ├── lint.yml │ ├── mypy.yml │ ├── system_emulated.yml │ └── unittest.yml ├── .gitignore ├── .gitmodules ├── .kokoro ├── build.sh ├── conformance.sh ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ └── prerelease-deps.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ ├── conformance.cfg │ ├── prerelease-deps.cfg │ ├── presubmit.cfg │ ├── system-3.9.cfg │ └── system.cfg ├── samples │ ├── lint │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.10 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.11 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.12 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.13 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.14 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.7 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ ├── python3.8 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg │ └── python3.9 │ │ ├── common.cfg │ │ ├── continuous.cfg │ │ ├── periodic-head.cfg │ │ ├── periodic.cfg │ │ └── presubmit.cfg ├── test-samples-against-head.sh ├── test-samples-impl.sh ├── test-samples.sh ├── trampoline.sh └── trampoline_v2.sh ├── .librarian ├── generator-input │ ├── .repo-metadata.json │ ├── librarian.py │ ├── noxfile.py │ └── setup.py └── state.yaml ├── .pre-commit-config.yaml ├── .repo-metadata.json ├── .trampolinerc ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── docs ├── README.rst ├── _static │ └── custom.css ├── _templates │ └── layout.html ├── admin_client │ ├── admin_client_usage.rst │ ├── bigtable_instance_admin.rst │ ├── bigtable_table_admin.rst │ ├── services_.rst │ └── types_.rst ├── changelog.md ├── classic_client │ ├── app-profile.rst │ ├── backup.rst │ ├── batcher.rst │ ├── client-intro.rst │ ├── client.rst │ ├── cluster.rst │ ├── column-family.rst │ ├── data-api.rst │ ├── encryption-info.rst │ ├── instance-api.rst │ ├── instance.rst │ ├── row-data.rst │ ├── row-filters.rst │ ├── row-set.rst │ ├── row.rst │ ├── snippets.py │ ├── snippets_table.py │ ├── table-api.rst │ ├── table.rst │ └── usage.rst ├── conf.py ├── data_client │ ├── async_data_authorized_view.rst │ ├── async_data_client.rst │ ├── async_data_execute_query_iterator.rst │ ├── async_data_mutations_batcher.rst │ ├── async_data_table.rst │ ├── common_data_exceptions.rst │ ├── common_data_execute_query_metadata.rst │ ├── common_data_execute_query_values.rst │ ├── common_data_mutations.rst │ ├── common_data_read_modify_write_rules.rst │ ├── common_data_read_rows_query.rst │ ├── common_data_row.rst │ ├── common_data_row_filters.rst │ ├── data_client_usage.rst │ ├── sync_data_authorized_view.rst │ ├── sync_data_client.rst │ ├── sync_data_execute_query_iterator.rst │ ├── sync_data_mutations_batcher.rst │ └── sync_data_table.rst ├── index.rst ├── multiprocessing.rst ├── scripts │ └── patch_devsite_toc.py └── summary_overview.md ├── google └── cloud │ ├── bigtable │ ├── __init__.py │ ├── app_profile.py │ ├── backup.py │ ├── batcher.py │ ├── client.py │ ├── cluster.py │ ├── column_family.py │ ├── data │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── _async │ │ │ ├── __init__.py │ │ │ ├── _mutate_rows.py │ │ │ ├── _read_rows.py │ │ │ ├── _swappable_channel.py │ │ │ ├── client.py │ │ │ ├── metrics_interceptor.py │ │ │ └── mutations_batcher.py │ │ ├── _cross_sync │ │ │ ├── __init__.py │ │ │ ├── _decorators.py │ │ │ ├── _mapping_meta.py │ │ │ └── cross_sync.py │ │ ├── _helpers.py │ │ ├── _sync_autogen │ │ │ ├── _mutate_rows.py │ │ │ ├── _read_rows.py │ │ │ ├── _swappable_channel.py │ │ │ ├── client.py │ │ │ ├── metrics_interceptor.py │ │ │ └── mutations_batcher.py │ │ ├── exceptions.py │ │ ├── execute_query │ │ │ ├── __init__.py │ │ │ ├── _async │ │ │ │ ├── __init__.py │ │ │ │ └── execute_query_iterator.py │ │ │ ├── _byte_cursor.py │ │ │ ├── _checksum.py │ │ │ ├── _parameters_formatting.py │ │ │ ├── _query_result_parsing_utils.py │ │ │ ├── _reader.py │ │ │ ├── _sync_autogen │ │ │ │ └── execute_query_iterator.py │ │ │ ├── metadata.py │ │ │ └── values.py │ │ ├── mutations.py │ │ ├── read_modify_write_rules.py │ │ ├── read_rows_query.py │ │ ├── row.py │ │ └── row_filters.py │ ├── encryption_info.py │ ├── enums.py │ ├── error.py │ ├── gapic_version.py │ ├── helpers.py │ ├── instance.py │ ├── policy.py │ ├── py.typed │ ├── row.py │ ├── row_data.py │ ├── row_filters.py │ ├── row_merger.py │ ├── row_set.py │ └── table.py │ ├── bigtable_admin │ ├── __init__.py │ ├── gapic_version.py │ └── py.typed │ ├── bigtable_admin_v2 │ ├── __init__.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── overlay │ │ ├── __init__.py │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── bigtable_table_admin │ │ │ │ ├── __init__.py │ │ │ │ ├── async_client.py │ │ │ │ └── client.py │ │ └── types │ │ │ ├── __init__.py │ │ │ ├── async_consistency.py │ │ │ ├── async_restore_table.py │ │ │ ├── consistency.py │ │ │ ├── restore_table.py │ │ │ └── wait_for_consistency_request.py │ ├── py.typed │ ├── services │ │ ├── __init__.py │ │ ├── bigtable_instance_admin │ │ │ ├── __init__.py │ │ │ ├── async_client.py │ │ │ ├── client.py │ │ │ ├── pagers.py │ │ │ └── transports │ │ │ │ ├── README.rst │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── grpc.py │ │ │ │ ├── grpc_asyncio.py │ │ │ │ ├── rest.py │ │ │ │ └── rest_base.py │ │ └── bigtable_table_admin │ │ │ ├── __init__.py │ │ │ ├── async_client.py │ │ │ ├── client.py │ │ │ ├── pagers.py │ │ │ └── transports │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── grpc.py │ │ │ ├── grpc_asyncio.py │ │ │ ├── rest.py │ │ │ └── rest_base.py │ ├── types │ │ ├── __init__.py │ │ ├── bigtable_instance_admin.py │ │ ├── bigtable_table_admin.py │ │ ├── common.py │ │ ├── instance.py │ │ ├── table.py │ │ └── types.py │ └── utils │ │ ├── __init__.py │ │ └── oneof_message.py │ └── bigtable_v2 │ ├── __init__.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── py.typed │ ├── services │ ├── __init__.py │ └── bigtable │ │ ├── __init__.py │ │ ├── async_client.py │ │ ├── client.py │ │ └── transports │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── base.py │ │ ├── grpc.py │ │ ├── grpc_asyncio.py │ │ ├── rest.py │ │ └── rest_base.py │ └── types │ ├── __init__.py │ ├── bigtable.py │ ├── data.py │ ├── feature_flags.py │ ├── peer_info.py │ ├── request_stats.py │ ├── response_params.py │ └── types.py ├── mypy.ini ├── noxfile.py ├── pylint.config.py ├── renovate.json ├── samples ├── AUTHORING_GUIDE.md ├── CONTRIBUTING.md ├── README.md ├── __init__.py ├── beam │ ├── __init__.py │ ├── hello_world_write.py │ ├── hello_world_write_test.py │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements-test.txt │ └── requirements.txt ├── generated_samples │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_backup_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_backup_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_create_table_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_delete_table_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_backup_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_backup_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_get_table_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_backups_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_backups_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_tables_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_list_tables_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_restore_table_async_internal.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_restore_table_sync_internal.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_backup_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_backup_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_sync.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_table_async.py │ ├── bigtableadmin_v2_generated_bigtable_table_admin_update_table_sync.py │ └── snippet_metadata_google.bigtable.admin.v2.json ├── hello │ ├── README.md │ ├── __init__.py │ ├── async_main.py │ ├── async_main_test.py │ ├── main.py │ ├── main_test.py │ ├── noxfile.py │ ├── requirements-test.txt │ └── requirements.txt ├── hello_happybase │ ├── README.md │ ├── __init__.py │ ├── main.py │ ├── main_test.py │ ├── noxfile.py │ ├── requirements-test.txt │ └── requirements.txt ├── instanceadmin │ ├── README.md │ ├── instanceadmin.py │ ├── noxfile.py │ ├── requirements-test.txt │ ├── requirements.txt │ └── test_instanceadmin.py ├── metricscaler │ ├── Dockerfile │ ├── README.md │ ├── metricscaler.py │ ├── metricscaler_test.py │ ├── noxfile.py │ ├── noxfile_config.py │ ├── requirements-test.txt │ └── requirements.txt ├── quickstart │ ├── README.md │ ├── __init__.py │ ├── main.py │ ├── main_async.py │ ├── main_async_test.py │ ├── main_test.py │ ├── noxfile.py │ ├── requirements-test.txt │ └── requirements.txt ├── quickstart_happybase │ ├── README.md │ ├── __init__.py │ ├── main.py │ ├── main_test.py │ ├── noxfile.py │ ├── requirements-test.txt │ └── requirements.txt ├── snippets │ ├── README.md │ ├── __init__.py │ ├── data_client │ │ ├── __init__.py │ │ ├── data_client_snippets_async.py │ │ ├── data_client_snippets_async_test.py │ │ ├── noxfile.py │ │ ├── requirements-test.txt │ │ └── requirements.txt │ ├── deletes │ │ ├── __init__.py │ │ ├── deletes_async_test.py │ │ ├── deletes_snippets.py │ │ ├── deletes_snippets_async.py │ │ ├── deletes_test.py │ │ ├── noxfile.py │ │ ├── requirements-test.txt │ │ └── requirements.txt │ ├── filters │ │ ├── __init__.py │ │ ├── filter_snippets.py │ │ ├── filter_snippets_async.py │ │ ├── filter_snippets_async_test.py │ │ ├── filters_test.py │ │ ├── noxfile.py │ │ ├── requirements-test.txt │ │ ├── requirements.txt │ │ └── snapshots │ │ │ ├── __init__.py │ │ │ └── snap_filters_test.py │ ├── reads │ │ ├── __init__.py │ │ ├── noxfile.py │ │ ├── read_snippets.py │ │ ├── reads_test.py │ │ ├── requirements-test.txt │ │ ├── requirements.txt │ │ └── snapshots │ │ │ ├── __init__.py │ │ │ └── snap_reads_test.py │ └── writes │ │ ├── __init__.py │ │ ├── noxfile.py │ │ ├── requirements-test.txt │ │ ├── requirements.txt │ │ ├── write_batch.py │ │ ├── write_conditionally.py │ │ ├── write_increment.py │ │ ├── write_simple.py │ │ └── writes_test.py ├── tableadmin │ ├── README.md │ ├── __init__.py │ ├── noxfile.py │ ├── requirements-test.txt │ ├── requirements.txt │ ├── tableadmin.py │ └── tableadmin_test.py ├── testdata │ ├── README.md │ ├── descriptors.pb │ ├── singer.proto │ └── singer_pb2.py └── utils.py ├── scripts ├── decrypt-secrets.sh ├── fixup_admin_v2_keywords.py ├── fixup_bigtable_admin_v2_keywords.py ├── fixup_bigtable_v2_keywords.py └── readme-gen │ ├── readme_gen.py │ └── templates │ ├── README.tmpl.rst │ ├── auth.tmpl.rst │ ├── auth_api_key.tmpl.rst │ ├── install_deps.tmpl.rst │ └── install_portaudio.tmpl.rst ├── setup.py ├── test_proxy ├── README.md ├── handlers │ ├── client_handler_data_async.py │ ├── client_handler_data_sync_autogen.py │ ├── client_handler_legacy.py │ ├── grpc_handler.py │ └── helpers │ │ └── sql_encoding_helpers.py ├── protos │ ├── bigtable_pb2.py │ ├── bigtable_pb2_grpc.py │ ├── data_pb2.py │ ├── data_pb2_grpc.py │ ├── request_stats_pb2.py │ ├── request_stats_pb2_grpc.py │ ├── test_proxy_pb2.py │ ├── test_proxy_pb2_grpc.py │ ├── types_pb2.py │ └── types_pb2_grpc.py ├── run_tests.sh └── test_proxy.py ├── testing ├── .gitignore ├── constraints-3.10.txt ├── constraints-3.11.txt ├── constraints-3.12.txt ├── constraints-3.13.txt ├── constraints-3.14.txt ├── constraints-3.7.txt ├── constraints-3.8.txt └── constraints-3.9.txt └── tests ├── __init__.py ├── system ├── __init__.py ├── admin_overlay │ ├── __init__.py │ ├── conftest.py │ ├── test_system_async.py │ └── test_system_autogen.py ├── conftest.py ├── cross_sync │ ├── test_cases │ │ ├── async_to_sync.yaml │ │ ├── cross_sync_files.yaml │ │ ├── rm_aio.yaml │ │ ├── strip_async_conditional_branches.yaml │ │ └── symbol_replacer.yaml │ └── test_cross_sync_e2e.py ├── data │ ├── __init__.py │ ├── setup_fixtures.py │ ├── test_system_async.py │ └── test_system_autogen.py └── v2_client │ ├── __init__.py │ ├── _helpers.py │ ├── conftest.py │ ├── test_data_api.py │ ├── test_instance_admin.py │ └── test_table_admin.py └── unit ├── __init__.py ├── admin_overlay ├── my_oneof_message.py ├── test_admin_packaging.py ├── test_async_client.py ├── test_async_consistency.py ├── test_async_restore_table.py ├── test_client.py ├── test_consistency.py ├── test_oneof_message.py └── test_restore_table.py ├── data ├── __init__.py ├── _async │ ├── __init__.py │ ├── test__mutate_rows.py │ ├── test__read_rows.py │ ├── test__swappable_channel.py │ ├── test_client.py │ ├── test_metrics_interceptor.py │ ├── test_mutations_batcher.py │ └── test_read_rows_acceptance.py ├── _cross_sync │ ├── test_cross_sync.py │ └── test_cross_sync_decorators.py ├── _sync_autogen │ ├── __init__.py │ ├── test__mutate_rows.py │ ├── test__read_rows.py │ ├── test__swappable_channel.py │ ├── test_client.py │ ├── test_metrics_interceptor.py │ ├── test_mutations_batcher.py │ └── test_read_rows_acceptance.py ├── execute_query │ ├── __init__.py │ ├── _async │ │ ├── __init__.py │ │ └── test_query_iterator.py │ ├── _sync_autogen │ │ ├── __init__.py │ │ └── test_query_iterator.py │ ├── sql_helpers.py │ ├── test_byte_cursor.py │ ├── test_checksum.py │ ├── test_execute_query_parameters_parsing.py │ ├── test_metadata.py │ ├── test_query_result_parsing_utils.py │ └── test_query_result_row_reader.py ├── read-rows-acceptance-test.json ├── test__helpers.py ├── test_exceptions.py ├── test_helpers.py ├── test_mutations.py ├── test_read_modify_write_rules.py ├── test_read_rows_query.py ├── test_row.py ├── test_row_filters.py └── test_sync_up_to_date.py ├── gapic ├── __init__.py ├── bigtable_admin_v2 │ ├── __init__.py │ ├── test_bigtable_instance_admin.py │ └── test_bigtable_table_admin.py └── bigtable_v2 │ ├── __init__.py │ └── test_bigtable.py ├── test_packaging.py ├── test_sql_routing_parameters.py └── v2_client ├── __init__.py ├── _testing.py ├── read-rows-acceptance-test.json ├── test_app_profile.py ├── test_backup.py ├── test_batcher.py ├── test_client.py ├── test_cluster.py ├── test_column_family.py ├── test_encryption_info.py ├── test_error.py ├── test_instance.py ├── test_policy.py ├── test_row.py ├── test_row_data.py ├── test_row_filters.py ├── test_row_merger.py ├── test_row_set.py └── test_table.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.coveragerc -------------------------------------------------------------------------------- /.cross_sync/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.cross_sync/README.md -------------------------------------------------------------------------------- /.cross_sync/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.cross_sync/generate.py -------------------------------------------------------------------------------- /.cross_sync/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.cross_sync/transformers.py -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/flakybot.yaml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/conformance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/conformance.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/system_emulated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/system_emulated.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.gitmodules -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/conformance.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/conformance.sh -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/continuous/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/conformance.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/conformance.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system-3.9.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/system-3.9.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/system.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/presubmit/system.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.14/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.14/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.14/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.14/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.14/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.7/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.7/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.7/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.7/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.7/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.8/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.8/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.8/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.8/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/generator-input/.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.librarian/generator-input/.repo-metadata.json -------------------------------------------------------------------------------- /.librarian/generator-input/librarian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.librarian/generator-input/librarian.py -------------------------------------------------------------------------------- /.librarian/generator-input/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.librarian/generator-input/noxfile.py -------------------------------------------------------------------------------- /.librarian/generator-input/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.librarian/generator-input/setup.py -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/admin_client/admin_client_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/admin_client/admin_client_usage.rst -------------------------------------------------------------------------------- /docs/admin_client/bigtable_instance_admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/admin_client/bigtable_instance_admin.rst -------------------------------------------------------------------------------- /docs/admin_client/bigtable_table_admin.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/admin_client/bigtable_table_admin.rst -------------------------------------------------------------------------------- /docs/admin_client/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/admin_client/services_.rst -------------------------------------------------------------------------------- /docs/admin_client/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/admin_client/types_.rst -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/classic_client/app-profile.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/app-profile.rst -------------------------------------------------------------------------------- /docs/classic_client/backup.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/backup.rst -------------------------------------------------------------------------------- /docs/classic_client/batcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/batcher.rst -------------------------------------------------------------------------------- /docs/classic_client/client-intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/client-intro.rst -------------------------------------------------------------------------------- /docs/classic_client/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/client.rst -------------------------------------------------------------------------------- /docs/classic_client/cluster.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/cluster.rst -------------------------------------------------------------------------------- /docs/classic_client/column-family.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/column-family.rst -------------------------------------------------------------------------------- /docs/classic_client/data-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/data-api.rst -------------------------------------------------------------------------------- /docs/classic_client/encryption-info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/encryption-info.rst -------------------------------------------------------------------------------- /docs/classic_client/instance-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/instance-api.rst -------------------------------------------------------------------------------- /docs/classic_client/instance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/instance.rst -------------------------------------------------------------------------------- /docs/classic_client/row-data.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/row-data.rst -------------------------------------------------------------------------------- /docs/classic_client/row-filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/row-filters.rst -------------------------------------------------------------------------------- /docs/classic_client/row-set.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/row-set.rst -------------------------------------------------------------------------------- /docs/classic_client/row.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/row.rst -------------------------------------------------------------------------------- /docs/classic_client/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/snippets.py -------------------------------------------------------------------------------- /docs/classic_client/snippets_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/snippets_table.py -------------------------------------------------------------------------------- /docs/classic_client/table-api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/table-api.rst -------------------------------------------------------------------------------- /docs/classic_client/table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/table.rst -------------------------------------------------------------------------------- /docs/classic_client/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/classic_client/usage.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/data_client/async_data_authorized_view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/async_data_authorized_view.rst -------------------------------------------------------------------------------- /docs/data_client/async_data_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/async_data_client.rst -------------------------------------------------------------------------------- /docs/data_client/async_data_execute_query_iterator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/async_data_execute_query_iterator.rst -------------------------------------------------------------------------------- /docs/data_client/async_data_mutations_batcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/async_data_mutations_batcher.rst -------------------------------------------------------------------------------- /docs/data_client/async_data_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/async_data_table.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_exceptions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_exceptions.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_execute_query_metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_execute_query_metadata.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_execute_query_values.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_execute_query_values.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_mutations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_mutations.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_read_modify_write_rules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_read_modify_write_rules.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_read_rows_query.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_read_rows_query.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_row.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_row.rst -------------------------------------------------------------------------------- /docs/data_client/common_data_row_filters.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/common_data_row_filters.rst -------------------------------------------------------------------------------- /docs/data_client/data_client_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/data_client_usage.rst -------------------------------------------------------------------------------- /docs/data_client/sync_data_authorized_view.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/sync_data_authorized_view.rst -------------------------------------------------------------------------------- /docs/data_client/sync_data_client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/sync_data_client.rst -------------------------------------------------------------------------------- /docs/data_client/sync_data_execute_query_iterator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/sync_data_execute_query_iterator.rst -------------------------------------------------------------------------------- /docs/data_client/sync_data_mutations_batcher.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/sync_data_mutations_batcher.rst -------------------------------------------------------------------------------- /docs/data_client/sync_data_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/data_client/sync_data_table.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/multiprocessing.rst -------------------------------------------------------------------------------- /docs/scripts/patch_devsite_toc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/scripts/patch_devsite_toc.py -------------------------------------------------------------------------------- /docs/summary_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/docs/summary_overview.md -------------------------------------------------------------------------------- /google/cloud/bigtable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/app_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/app_profile.py -------------------------------------------------------------------------------- /google/cloud/bigtable/backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/backup.py -------------------------------------------------------------------------------- /google/cloud/bigtable/batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/batcher.py -------------------------------------------------------------------------------- /google/cloud/bigtable/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/cluster.py -------------------------------------------------------------------------------- /google/cloud/bigtable/column_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/column_family.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/README.rst -------------------------------------------------------------------------------- /google/cloud/bigtable/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/_mutate_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/_mutate_rows.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/_read_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/_read_rows.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/_swappable_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/_swappable_channel.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/metrics_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/metrics_interceptor.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_async/mutations_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_async/mutations_batcher.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_cross_sync/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_cross_sync/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_cross_sync/_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_cross_sync/_decorators.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_cross_sync/_mapping_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_cross_sync/_mapping_meta.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_cross_sync/cross_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_cross_sync/cross_sync.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_helpers.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/_mutate_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/_mutate_rows.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/_read_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/_read_rows.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/_swappable_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/_swappable_channel.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/metrics_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/metrics_interceptor.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/_sync_autogen/mutations_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/_sync_autogen/mutations_batcher.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/exceptions.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_async/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_async/execute_query_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_async/execute_query_iterator.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_byte_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_byte_cursor.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_checksum.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_parameters_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_parameters_formatting.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_query_result_parsing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_query_result_parsing_utils.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_reader.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/_sync_autogen/execute_query_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/_sync_autogen/execute_query_iterator.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/metadata.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/execute_query/values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/execute_query/values.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/mutations.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/read_modify_write_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/read_modify_write_rules.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/read_rows_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/read_rows_query.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/row.py -------------------------------------------------------------------------------- /google/cloud/bigtable/data/row_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/data/row_filters.py -------------------------------------------------------------------------------- /google/cloud/bigtable/encryption_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/encryption_info.py -------------------------------------------------------------------------------- /google/cloud/bigtable/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/enums.py -------------------------------------------------------------------------------- /google/cloud/bigtable/error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/error.py -------------------------------------------------------------------------------- /google/cloud/bigtable/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/bigtable/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/helpers.py -------------------------------------------------------------------------------- /google/cloud/bigtable/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/instance.py -------------------------------------------------------------------------------- /google/cloud/bigtable/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/policy.py -------------------------------------------------------------------------------- /google/cloud/bigtable/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-bigtable package uses inline types. 3 | -------------------------------------------------------------------------------- /google/cloud/bigtable/row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/row.py -------------------------------------------------------------------------------- /google/cloud/bigtable/row_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/row_data.py -------------------------------------------------------------------------------- /google/cloud/bigtable/row_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/row_filters.py -------------------------------------------------------------------------------- /google/cloud/bigtable/row_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/row_merger.py -------------------------------------------------------------------------------- /google/cloud/bigtable/row_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/row_set.py -------------------------------------------------------------------------------- /google/cloud/bigtable/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable/table.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin/py.typed -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/async_client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/services/bigtable_table_admin/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/async_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/async_consistency.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/async_restore_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/async_restore_table.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/consistency.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/restore_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/restore_table.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/overlay/types/wait_for_consistency_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/overlay/types/wait_for_consistency_request.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/py.typed -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/async_client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/pagers.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_instance_admin/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/async_client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/pagers.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/services/bigtable_table_admin/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/bigtable_instance_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/bigtable_instance_admin.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/bigtable_table_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/bigtable_table_admin.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/common.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/instance.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/table.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/types/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/types/types.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/utils/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_admin_v2/utils/oneof_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_admin_v2/utils/oneof_message.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-bigtable package uses inline types. 3 | -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/async_client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/client.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/services/bigtable/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/services/bigtable/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/bigtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/bigtable.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/data.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/feature_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/feature_flags.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/peer_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/peer_info.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/request_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/request_stats.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/response_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/response_params.py -------------------------------------------------------------------------------- /google/cloud/bigtable_v2/types/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/google/cloud/bigtable_v2/types/types.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/noxfile.py -------------------------------------------------------------------------------- /pylint.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/pylint.config.py -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/AUTHORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/AUTHORING_GUIDE.md -------------------------------------------------------------------------------- /samples/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/CONTRIBUTING.md -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/beam/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/beam/hello_world_write.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/beam/hello_world_write.py -------------------------------------------------------------------------------- /samples/beam/hello_world_write_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/beam/hello_world_write_test.py -------------------------------------------------------------------------------- /samples/beam/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/beam/noxfile.py -------------------------------------------------------------------------------- /samples/beam/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/beam/noxfile_config.py -------------------------------------------------------------------------------- /samples/beam/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /samples/beam/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/beam/requirements.txt -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_app_profile_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_cluster_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_instance_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_logical_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_create_materialized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_app_profile_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_cluster_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_instance_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_logical_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_delete_materialized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_app_profile_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_cluster_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_iam_policy_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_instance_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_logical_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_get_materialized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_app_profiles_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_clusters_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_hot_tablets_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_instances_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_logical_views_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_list_materialized_views_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_cluster_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_partial_update_instance_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_set_iam_policy_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_test_iam_permissions_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_app_profile_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_cluster_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_instance_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_logical_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_instance_admin_update_materialized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_check_consistency_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_copy_backup_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_authorized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_backup_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_backup_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_backup_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_backup_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_schema_bundle_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_from_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_create_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_authorized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_backup_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_schema_bundle_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_delete_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_drop_row_range_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_generate_consistency_token_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_authorized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_backup_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_backup_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_backup_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_backup_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_iam_policy_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_schema_bundle_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_get_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_authorized_views_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_backups_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_backups_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_backups_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_backups_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_schema_bundles_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_snapshots_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_tables_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_tables_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_tables_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_list_tables_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_modify_column_families_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_restore_table_async_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_restore_table_async_internal.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_restore_table_sync_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_restore_table_sync_internal.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_set_iam_policy_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_snapshot_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_test_iam_permissions_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_undelete_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_authorized_view_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_backup_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_backup_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_backup_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_backup_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_schema_bundle_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_table_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_table_async.py -------------------------------------------------------------------------------- /samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_table_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/bigtableadmin_v2_generated_bigtable_table_admin_update_table_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/snippet_metadata_google.bigtable.admin.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/generated_samples/snippet_metadata_google.bigtable.admin.v2.json -------------------------------------------------------------------------------- /samples/hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/README.md -------------------------------------------------------------------------------- /samples/hello/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/hello/async_main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/async_main.py -------------------------------------------------------------------------------- /samples/hello/async_main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/async_main_test.py -------------------------------------------------------------------------------- /samples/hello/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/main.py -------------------------------------------------------------------------------- /samples/hello/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/main_test.py -------------------------------------------------------------------------------- /samples/hello/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/noxfile.py -------------------------------------------------------------------------------- /samples/hello/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /samples/hello/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello/requirements.txt -------------------------------------------------------------------------------- /samples/hello_happybase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello_happybase/README.md -------------------------------------------------------------------------------- /samples/hello_happybase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/hello_happybase/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello_happybase/main.py -------------------------------------------------------------------------------- /samples/hello_happybase/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello_happybase/main_test.py -------------------------------------------------------------------------------- /samples/hello_happybase/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello_happybase/noxfile.py -------------------------------------------------------------------------------- /samples/hello_happybase/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /samples/hello_happybase/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/hello_happybase/requirements.txt -------------------------------------------------------------------------------- /samples/instanceadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/instanceadmin/README.md -------------------------------------------------------------------------------- /samples/instanceadmin/instanceadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/instanceadmin/instanceadmin.py -------------------------------------------------------------------------------- /samples/instanceadmin/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/instanceadmin/noxfile.py -------------------------------------------------------------------------------- /samples/instanceadmin/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /samples/instanceadmin/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/instanceadmin/requirements.txt -------------------------------------------------------------------------------- /samples/instanceadmin/test_instanceadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/instanceadmin/test_instanceadmin.py -------------------------------------------------------------------------------- /samples/metricscaler/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/Dockerfile -------------------------------------------------------------------------------- /samples/metricscaler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/README.md -------------------------------------------------------------------------------- /samples/metricscaler/metricscaler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/metricscaler.py -------------------------------------------------------------------------------- /samples/metricscaler/metricscaler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/metricscaler_test.py -------------------------------------------------------------------------------- /samples/metricscaler/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/noxfile.py -------------------------------------------------------------------------------- /samples/metricscaler/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/noxfile_config.py -------------------------------------------------------------------------------- /samples/metricscaler/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | mock==5.2.0 3 | google-cloud-testutils 4 | -------------------------------------------------------------------------------- /samples/metricscaler/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/metricscaler/requirements.txt -------------------------------------------------------------------------------- /samples/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/README.md -------------------------------------------------------------------------------- /samples/quickstart/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/quickstart/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/main.py -------------------------------------------------------------------------------- /samples/quickstart/main_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/main_async.py -------------------------------------------------------------------------------- /samples/quickstart/main_async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/main_async_test.py -------------------------------------------------------------------------------- /samples/quickstart/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/main_test.py -------------------------------------------------------------------------------- /samples/quickstart/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/noxfile.py -------------------------------------------------------------------------------- /samples/quickstart/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart/requirements-test.txt -------------------------------------------------------------------------------- /samples/quickstart/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/quickstart_happybase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart_happybase/README.md -------------------------------------------------------------------------------- /samples/quickstart_happybase/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/quickstart_happybase/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart_happybase/main.py -------------------------------------------------------------------------------- /samples/quickstart_happybase/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart_happybase/main_test.py -------------------------------------------------------------------------------- /samples/quickstart_happybase/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart_happybase/noxfile.py -------------------------------------------------------------------------------- /samples/quickstart_happybase/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest -------------------------------------------------------------------------------- /samples/quickstart_happybase/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/quickstart_happybase/requirements.txt -------------------------------------------------------------------------------- /samples/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/README.md -------------------------------------------------------------------------------- /samples/snippets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/data_client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/data_client/data_client_snippets_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/data_client/data_client_snippets_async.py -------------------------------------------------------------------------------- /samples/snippets/data_client/data_client_snippets_async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/data_client/data_client_snippets_async_test.py -------------------------------------------------------------------------------- /samples/snippets/data_client/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/data_client/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/data_client/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/data_client/requirements-test.txt -------------------------------------------------------------------------------- /samples/snippets/data_client/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/snippets/deletes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/deletes/deletes_async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/deletes_async_test.py -------------------------------------------------------------------------------- /samples/snippets/deletes/deletes_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/deletes_snippets.py -------------------------------------------------------------------------------- /samples/snippets/deletes/deletes_snippets_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/deletes_snippets_async.py -------------------------------------------------------------------------------- /samples/snippets/deletes/deletes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/deletes_test.py -------------------------------------------------------------------------------- /samples/snippets/deletes/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/deletes/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/deletes/requirements-test.txt -------------------------------------------------------------------------------- /samples/snippets/deletes/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/snippets/filters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/filters/filter_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/filter_snippets.py -------------------------------------------------------------------------------- /samples/snippets/filters/filter_snippets_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/filter_snippets_async.py -------------------------------------------------------------------------------- /samples/snippets/filters/filter_snippets_async_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/filter_snippets_async_test.py -------------------------------------------------------------------------------- /samples/snippets/filters/filters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/filters_test.py -------------------------------------------------------------------------------- /samples/snippets/filters/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/filters/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/requirements-test.txt -------------------------------------------------------------------------------- /samples/snippets/filters/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/snippets/filters/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/filters/snapshots/snap_filters_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/filters/snapshots/snap_filters_test.py -------------------------------------------------------------------------------- /samples/snippets/reads/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/reads/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/reads/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/reads/read_snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/reads/read_snippets.py -------------------------------------------------------------------------------- /samples/snippets/reads/reads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/reads/reads_test.py -------------------------------------------------------------------------------- /samples/snippets/reads/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /samples/snippets/reads/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/snippets/reads/snapshots/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/reads/snapshots/snap_reads_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/reads/snapshots/snap_reads_test.py -------------------------------------------------------------------------------- /samples/snippets/writes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/snippets/writes/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/writes/requirements-test.txt: -------------------------------------------------------------------------------- 1 | backoff==2.2.1 2 | pytest 3 | -------------------------------------------------------------------------------- /samples/snippets/writes/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 -------------------------------------------------------------------------------- /samples/snippets/writes/write_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/write_batch.py -------------------------------------------------------------------------------- /samples/snippets/writes/write_conditionally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/write_conditionally.py -------------------------------------------------------------------------------- /samples/snippets/writes/write_increment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/write_increment.py -------------------------------------------------------------------------------- /samples/snippets/writes/write_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/write_simple.py -------------------------------------------------------------------------------- /samples/snippets/writes/writes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/snippets/writes/writes_test.py -------------------------------------------------------------------------------- /samples/tableadmin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/tableadmin/README.md -------------------------------------------------------------------------------- /samples/tableadmin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /samples/tableadmin/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/tableadmin/noxfile.py -------------------------------------------------------------------------------- /samples/tableadmin/requirements-test.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | google-cloud-testutils==1.7.0 3 | -------------------------------------------------------------------------------- /samples/tableadmin/requirements.txt: -------------------------------------------------------------------------------- 1 | google-cloud-bigtable==2.34.0 2 | -------------------------------------------------------------------------------- /samples/tableadmin/tableadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/tableadmin/tableadmin.py -------------------------------------------------------------------------------- /samples/tableadmin/tableadmin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/tableadmin/tableadmin_test.py -------------------------------------------------------------------------------- /samples/testdata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/testdata/README.md -------------------------------------------------------------------------------- /samples/testdata/descriptors.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/testdata/descriptors.pb -------------------------------------------------------------------------------- /samples/testdata/singer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/testdata/singer.proto -------------------------------------------------------------------------------- /samples/testdata/singer_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/testdata/singer_pb2.py -------------------------------------------------------------------------------- /samples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/samples/utils.py -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/fixup_admin_v2_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/fixup_admin_v2_keywords.py -------------------------------------------------------------------------------- /scripts/fixup_bigtable_admin_v2_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/fixup_bigtable_admin_v2_keywords.py -------------------------------------------------------------------------------- /scripts/fixup_bigtable_v2_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/fixup_bigtable_v2_keywords.py -------------------------------------------------------------------------------- /scripts/readme-gen/readme_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/readme_gen.py -------------------------------------------------------------------------------- /scripts/readme-gen/templates/README.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/templates/README.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/templates/auth.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth_api_key.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/templates/auth_api_key.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_deps.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/templates/install_deps.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_portaudio.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/scripts/readme-gen/templates/install_portaudio.tmpl.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/setup.py -------------------------------------------------------------------------------- /test_proxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/README.md -------------------------------------------------------------------------------- /test_proxy/handlers/client_handler_data_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/handlers/client_handler_data_async.py -------------------------------------------------------------------------------- /test_proxy/handlers/client_handler_data_sync_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/handlers/client_handler_data_sync_autogen.py -------------------------------------------------------------------------------- /test_proxy/handlers/client_handler_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/handlers/client_handler_legacy.py -------------------------------------------------------------------------------- /test_proxy/handlers/grpc_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/handlers/grpc_handler.py -------------------------------------------------------------------------------- /test_proxy/handlers/helpers/sql_encoding_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/handlers/helpers/sql_encoding_helpers.py -------------------------------------------------------------------------------- /test_proxy/protos/bigtable_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/bigtable_pb2.py -------------------------------------------------------------------------------- /test_proxy/protos/bigtable_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/bigtable_pb2_grpc.py -------------------------------------------------------------------------------- /test_proxy/protos/data_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/data_pb2.py -------------------------------------------------------------------------------- /test_proxy/protos/data_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/data_pb2_grpc.py -------------------------------------------------------------------------------- /test_proxy/protos/request_stats_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/request_stats_pb2.py -------------------------------------------------------------------------------- /test_proxy/protos/request_stats_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/request_stats_pb2_grpc.py -------------------------------------------------------------------------------- /test_proxy/protos/test_proxy_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/test_proxy_pb2.py -------------------------------------------------------------------------------- /test_proxy/protos/test_proxy_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/test_proxy_pb2_grpc.py -------------------------------------------------------------------------------- /test_proxy/protos/types_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/types_pb2.py -------------------------------------------------------------------------------- /test_proxy/protos/types_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/protos/types_pb2_grpc.py -------------------------------------------------------------------------------- /test_proxy/run_tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/run_tests.sh -------------------------------------------------------------------------------- /test_proxy/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/test_proxy/test_proxy.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.14.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/system/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/__init__.py -------------------------------------------------------------------------------- /tests/system/admin_overlay/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/system/admin_overlay/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/admin_overlay/conftest.py -------------------------------------------------------------------------------- /tests/system/admin_overlay/test_system_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/admin_overlay/test_system_async.py -------------------------------------------------------------------------------- /tests/system/admin_overlay/test_system_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/admin_overlay/test_system_autogen.py -------------------------------------------------------------------------------- /tests/system/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/conftest.py -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cases/async_to_sync.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cases/async_to_sync.yaml -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cases/cross_sync_files.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cases/cross_sync_files.yaml -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cases/rm_aio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cases/rm_aio.yaml -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cases/strip_async_conditional_branches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cases/strip_async_conditional_branches.yaml -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cases/symbol_replacer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cases/symbol_replacer.yaml -------------------------------------------------------------------------------- /tests/system/cross_sync/test_cross_sync_e2e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/cross_sync/test_cross_sync_e2e.py -------------------------------------------------------------------------------- /tests/system/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/data/__init__.py -------------------------------------------------------------------------------- /tests/system/data/setup_fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/data/setup_fixtures.py -------------------------------------------------------------------------------- /tests/system/data/test_system_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/data/test_system_async.py -------------------------------------------------------------------------------- /tests/system/data/test_system_autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/data/test_system_autogen.py -------------------------------------------------------------------------------- /tests/system/v2_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/__init__.py -------------------------------------------------------------------------------- /tests/system/v2_client/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/_helpers.py -------------------------------------------------------------------------------- /tests/system/v2_client/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/conftest.py -------------------------------------------------------------------------------- /tests/system/v2_client/test_data_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/test_data_api.py -------------------------------------------------------------------------------- /tests/system/v2_client/test_instance_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/test_instance_admin.py -------------------------------------------------------------------------------- /tests/system/v2_client/test_table_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/system/v2_client/test_table_admin.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/my_oneof_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/my_oneof_message.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_admin_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_admin_packaging.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_async_client.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_async_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_async_consistency.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_async_restore_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_async_restore_table.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_client.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_consistency.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_consistency.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_oneof_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_oneof_message.py -------------------------------------------------------------------------------- /tests/unit/admin_overlay/test_restore_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/admin_overlay/test_restore_table.py -------------------------------------------------------------------------------- /tests/unit/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/__init__.py -------------------------------------------------------------------------------- /tests/unit/data/_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/__init__.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test__mutate_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test__mutate_rows.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test__read_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test__read_rows.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test__swappable_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test__swappable_channel.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test_client.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test_metrics_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test_metrics_interceptor.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test_mutations_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test_mutations_batcher.py -------------------------------------------------------------------------------- /tests/unit/data/_async/test_read_rows_acceptance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_async/test_read_rows_acceptance.py -------------------------------------------------------------------------------- /tests/unit/data/_cross_sync/test_cross_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_cross_sync/test_cross_sync.py -------------------------------------------------------------------------------- /tests/unit/data/_cross_sync/test_cross_sync_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_cross_sync/test_cross_sync_decorators.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test__mutate_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test__mutate_rows.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test__read_rows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test__read_rows.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test__swappable_channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test__swappable_channel.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test_client.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test_metrics_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test_metrics_interceptor.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test_mutations_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test_mutations_batcher.py -------------------------------------------------------------------------------- /tests/unit/data/_sync_autogen/test_read_rows_acceptance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/_sync_autogen/test_read_rows_acceptance.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/__init__.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/_async/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/_async/__init__.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/_async/test_query_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/_async/test_query_iterator.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/_sync_autogen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/data/execute_query/_sync_autogen/test_query_iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/_sync_autogen/test_query_iterator.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/sql_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/sql_helpers.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_byte_cursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_byte_cursor.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_checksum.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_execute_query_parameters_parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_execute_query_parameters_parsing.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_metadata.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_query_result_parsing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_query_result_parsing_utils.py -------------------------------------------------------------------------------- /tests/unit/data/execute_query/test_query_result_row_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/execute_query/test_query_result_row_reader.py -------------------------------------------------------------------------------- /tests/unit/data/read-rows-acceptance-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/read-rows-acceptance-test.json -------------------------------------------------------------------------------- /tests/unit/data/test__helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test__helpers.py -------------------------------------------------------------------------------- /tests/unit/data/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_exceptions.py -------------------------------------------------------------------------------- /tests/unit/data/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_helpers.py -------------------------------------------------------------------------------- /tests/unit/data/test_mutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_mutations.py -------------------------------------------------------------------------------- /tests/unit/data/test_read_modify_write_rules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_read_modify_write_rules.py -------------------------------------------------------------------------------- /tests/unit/data/test_read_rows_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_read_rows_query.py -------------------------------------------------------------------------------- /tests/unit/data/test_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_row.py -------------------------------------------------------------------------------- /tests/unit/data/test_row_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_row_filters.py -------------------------------------------------------------------------------- /tests/unit/data/test_sync_up_to_date.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/data/test_sync_up_to_date.py -------------------------------------------------------------------------------- /tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/bigtable_admin_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/bigtable_admin_v2/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/bigtable_admin_v2/test_bigtable_instance_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/bigtable_admin_v2/test_bigtable_instance_admin.py -------------------------------------------------------------------------------- /tests/unit/gapic/bigtable_admin_v2/test_bigtable_table_admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/bigtable_admin_v2/test_bigtable_table_admin.py -------------------------------------------------------------------------------- /tests/unit/gapic/bigtable_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/bigtable_v2/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/bigtable_v2/test_bigtable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/gapic/bigtable_v2/test_bigtable.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/test_sql_routing_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/test_sql_routing_parameters.py -------------------------------------------------------------------------------- /tests/unit/v2_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/__init__.py -------------------------------------------------------------------------------- /tests/unit/v2_client/_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/_testing.py -------------------------------------------------------------------------------- /tests/unit/v2_client/read-rows-acceptance-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/read-rows-acceptance-test.json -------------------------------------------------------------------------------- /tests/unit/v2_client/test_app_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_app_profile.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_backup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_backup.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_batcher.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_client.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_cluster.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_column_family.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_column_family.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_encryption_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_encryption_info.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_error.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_instance.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_policy.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_row.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_row_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_row_data.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_row_filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_row_filters.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_row_merger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_row_merger.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_row_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_row_set.py -------------------------------------------------------------------------------- /tests/unit/v2_client/test_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-bigtable/HEAD/tests/unit/v2_client/test_table.py --------------------------------------------------------------------------------