├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-approve.yml ├── auto-label.yaml ├── blunderbuss.yml ├── flakybot.yaml ├── header-checker-lint.yml ├── snippet-bot.yml ├── sync-repo-settings.yaml └── workflows │ ├── docs.yml │ ├── lint.yml │ └── unittest.yml ├── .gitignore ├── .kokoro ├── build.sh ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ └── prerelease-deps.cfg ├── populate-secrets.sh ├── presubmit-against-pubsublite-samples.sh ├── presubmit │ ├── common.cfg │ ├── prerelease-deps.cfg │ ├── presubmit-against-pubsublite-samples.cfg │ └── presubmit.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 ├── config.yaml ├── generator-input │ ├── .repo-metadata.json │ ├── noxfile.py │ ├── owlbot.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 ├── UPGRADING.md ├── docs ├── README.rst ├── UPGRADING.md ├── _static │ └── custom.css ├── _templates │ └── layout.html ├── changelog.md ├── conf.py ├── index.rst ├── multiprocessing.rst ├── pubsub │ ├── publisher │ │ ├── api │ │ │ ├── client.rst │ │ │ ├── futures.rst │ │ │ └── pagers.rst │ │ └── index.rst │ ├── subscriber │ │ ├── api │ │ │ ├── client.rst │ │ │ ├── futures.rst │ │ │ ├── message.rst │ │ │ ├── pagers.rst │ │ │ └── scheduler.rst │ │ └── index.rst │ └── types.rst └── summary_overview.md ├── google ├── cloud │ ├── pubsub │ │ └── __init__.py │ └── pubsub_v1 │ │ ├── __init__.py │ │ ├── exceptions.py │ │ ├── futures.py │ │ ├── open_telemetry │ │ ├── __init__.py │ │ ├── context_propagation.py │ │ ├── publish_message_wrapper.py │ │ └── subscribe_opentelemetry.py │ │ ├── proto │ │ ├── pubsub.proto │ │ └── schema.proto │ │ ├── publisher │ │ ├── __init__.py │ │ ├── _batch │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ └── thread.py │ │ ├── _sequencer │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── ordered_sequencer.py │ │ │ └── unordered_sequencer.py │ │ ├── client.py │ │ ├── exceptions.py │ │ ├── flow_controller.py │ │ └── futures.py │ │ ├── subscriber │ │ ├── __init__.py │ │ ├── _protocol │ │ │ ├── __init__.py │ │ │ ├── dispatcher.py │ │ │ ├── heartbeater.py │ │ │ ├── helper_threads.py │ │ │ ├── histogram.py │ │ │ ├── leaser.py │ │ │ ├── messages_on_hold.py │ │ │ ├── requests.py │ │ │ └── streaming_pull_manager.py │ │ ├── client.py │ │ ├── exceptions.py │ │ ├── futures.py │ │ ├── message.py │ │ └── scheduler.py │ │ └── types.py ├── pubsub │ ├── __init__.py │ ├── gapic_version.py │ └── py.typed └── pubsub_v1 │ ├── __init__.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── py.typed │ ├── services │ ├── __init__.py │ ├── publisher │ │ ├── __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 │ ├── schema_service │ │ ├── __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 │ └── subscriber │ │ ├── __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 │ ├── pubsub.py │ └── schema.py ├── mypy.ini ├── noxfile.py ├── owlbot.py ├── pylint.config.py ├── pytest.ini ├── renovate.json ├── samples ├── AUTHORING_GUIDE.md ├── CONTRIBUTING.md ├── generated_samples │ ├── pubsub_v1_generated_publisher_create_topic_async.py │ ├── pubsub_v1_generated_publisher_create_topic_sync.py │ ├── pubsub_v1_generated_publisher_delete_topic_async.py │ ├── pubsub_v1_generated_publisher_delete_topic_sync.py │ ├── pubsub_v1_generated_publisher_detach_subscription_async.py │ ├── pubsub_v1_generated_publisher_detach_subscription_sync.py │ ├── pubsub_v1_generated_publisher_get_topic_async.py │ ├── pubsub_v1_generated_publisher_get_topic_sync.py │ ├── pubsub_v1_generated_publisher_list_topic_snapshots_async.py │ ├── pubsub_v1_generated_publisher_list_topic_snapshots_sync.py │ ├── pubsub_v1_generated_publisher_list_topic_subscriptions_async.py │ ├── pubsub_v1_generated_publisher_list_topic_subscriptions_sync.py │ ├── pubsub_v1_generated_publisher_list_topics_async.py │ ├── pubsub_v1_generated_publisher_list_topics_sync.py │ ├── pubsub_v1_generated_publisher_publish_async.py │ ├── pubsub_v1_generated_publisher_publish_sync.py │ ├── pubsub_v1_generated_publisher_update_topic_async.py │ ├── pubsub_v1_generated_publisher_update_topic_sync.py │ ├── pubsub_v1_generated_schema_service_commit_schema_async.py │ ├── pubsub_v1_generated_schema_service_commit_schema_sync.py │ ├── pubsub_v1_generated_schema_service_create_schema_async.py │ ├── pubsub_v1_generated_schema_service_create_schema_sync.py │ ├── pubsub_v1_generated_schema_service_delete_schema_async.py │ ├── pubsub_v1_generated_schema_service_delete_schema_revision_async.py │ ├── pubsub_v1_generated_schema_service_delete_schema_revision_sync.py │ ├── pubsub_v1_generated_schema_service_delete_schema_sync.py │ ├── pubsub_v1_generated_schema_service_get_schema_async.py │ ├── pubsub_v1_generated_schema_service_get_schema_sync.py │ ├── pubsub_v1_generated_schema_service_list_schema_revisions_async.py │ ├── pubsub_v1_generated_schema_service_list_schema_revisions_sync.py │ ├── pubsub_v1_generated_schema_service_list_schemas_async.py │ ├── pubsub_v1_generated_schema_service_list_schemas_sync.py │ ├── pubsub_v1_generated_schema_service_rollback_schema_async.py │ ├── pubsub_v1_generated_schema_service_rollback_schema_sync.py │ ├── pubsub_v1_generated_schema_service_validate_message_async.py │ ├── pubsub_v1_generated_schema_service_validate_message_sync.py │ ├── pubsub_v1_generated_schema_service_validate_schema_async.py │ ├── pubsub_v1_generated_schema_service_validate_schema_sync.py │ ├── pubsub_v1_generated_subscriber_acknowledge_async.py │ ├── pubsub_v1_generated_subscriber_acknowledge_sync.py │ ├── pubsub_v1_generated_subscriber_create_snapshot_async.py │ ├── pubsub_v1_generated_subscriber_create_snapshot_sync.py │ ├── pubsub_v1_generated_subscriber_create_subscription_async.py │ ├── pubsub_v1_generated_subscriber_create_subscription_sync.py │ ├── pubsub_v1_generated_subscriber_delete_snapshot_async.py │ ├── pubsub_v1_generated_subscriber_delete_snapshot_sync.py │ ├── pubsub_v1_generated_subscriber_delete_subscription_async.py │ ├── pubsub_v1_generated_subscriber_delete_subscription_sync.py │ ├── pubsub_v1_generated_subscriber_get_snapshot_async.py │ ├── pubsub_v1_generated_subscriber_get_snapshot_sync.py │ ├── pubsub_v1_generated_subscriber_get_subscription_async.py │ ├── pubsub_v1_generated_subscriber_get_subscription_sync.py │ ├── pubsub_v1_generated_subscriber_list_snapshots_async.py │ ├── pubsub_v1_generated_subscriber_list_snapshots_sync.py │ ├── pubsub_v1_generated_subscriber_list_subscriptions_async.py │ ├── pubsub_v1_generated_subscriber_list_subscriptions_sync.py │ ├── pubsub_v1_generated_subscriber_modify_ack_deadline_async.py │ ├── pubsub_v1_generated_subscriber_modify_ack_deadline_sync.py │ ├── pubsub_v1_generated_subscriber_modify_push_config_async.py │ ├── pubsub_v1_generated_subscriber_modify_push_config_sync.py │ ├── pubsub_v1_generated_subscriber_pull_async.py │ ├── pubsub_v1_generated_subscriber_pull_sync.py │ ├── pubsub_v1_generated_subscriber_seek_async.py │ ├── pubsub_v1_generated_subscriber_seek_sync.py │ ├── pubsub_v1_generated_subscriber_streaming_pull_async.py │ ├── pubsub_v1_generated_subscriber_streaming_pull_sync.py │ ├── pubsub_v1_generated_subscriber_update_snapshot_async.py │ ├── pubsub_v1_generated_subscriber_update_snapshot_sync.py │ ├── pubsub_v1_generated_subscriber_update_subscription_async.py │ ├── pubsub_v1_generated_subscriber_update_subscription_sync.py │ └── snippet_metadata_google.pubsub.v1.json └── snippets │ ├── README.rst │ ├── README.rst.in │ ├── iam.py │ ├── iam_test.py │ ├── mypy.ini │ ├── noxfile.py │ ├── noxfile_config.py │ ├── publisher.py │ ├── publisher_test.py │ ├── quickstart │ ├── pub.py │ ├── quickstart_test.py │ └── sub.py │ ├── requirements-test.txt │ ├── requirements.txt │ ├── resources │ ├── us-states-plus.avsc │ ├── us-states-plus.proto │ ├── us-states.avsc │ └── us-states.proto │ ├── schema.py │ ├── schema_test.py │ ├── subscriber.py │ ├── subscriber_test.py │ └── utilities │ └── us_states_pb2.py ├── scripts ├── decrypt-secrets.sh ├── fixup_pubsub_v1_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 ├── 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.py └── unit ├── __init__.py ├── gapic ├── __init__.py └── pubsub_v1 │ ├── __init__.py │ ├── test_publisher.py │ ├── test_schema_service.py │ └── test_subscriber.py ├── pubsub_v1 ├── conftest.py ├── publisher │ ├── batch │ │ ├── test_base.py │ │ └── test_thread.py │ ├── sequencer │ │ ├── test_ordered_sequencer.py │ │ └── test_unordered_sequencer.py │ ├── test_flow_controller.py │ ├── test_futures_publisher.py │ ├── test_publish_message_wrapper.py │ └── test_publisher_client.py ├── subscriber │ ├── test_dispatcher.py │ ├── test_futures_subscriber.py │ ├── test_heartbeater.py │ ├── test_helper_threads.py │ ├── test_histogram.py │ ├── test_leaser.py │ ├── test_message.py │ ├── test_messages_on_hold.py │ ├── test_scheduler.py │ ├── test_streaming_pull_manager.py │ ├── test_subscribe_opentelemetry.py │ └── test_subscriber_client.py └── test_futures.py ├── test_packaging.py └── test_pubsub.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-approve.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/auto-approve.yml -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- 1 | issuePriority: p2 2 | -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/sync-repo-settings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/sync-repo-settings.yaml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/continuous/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit-against-pubsublite-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/presubmit-against-pubsublite-samples.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit-against-pubsublite-samples.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/presubmit/presubmit-against-pubsublite-samples.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.14/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.14/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.14/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.14/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.14/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.7/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.7/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.7/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.7/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.7/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.8/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.8/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.8/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.8/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/config.yaml -------------------------------------------------------------------------------- /.librarian/generator-input/.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/generator-input/.repo-metadata.json -------------------------------------------------------------------------------- /.librarian/generator-input/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/generator-input/noxfile.py -------------------------------------------------------------------------------- /.librarian/generator-input/owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/generator-input/owlbot.py -------------------------------------------------------------------------------- /.librarian/generator-input/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/generator-input/setup.py -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/SECURITY.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- 1 | ../README.rst -------------------------------------------------------------------------------- /docs/UPGRADING.md: -------------------------------------------------------------------------------- 1 | ../UPGRADING.md -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/multiprocessing.rst -------------------------------------------------------------------------------- /docs/pubsub/publisher/api/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/publisher/api/client.rst -------------------------------------------------------------------------------- /docs/pubsub/publisher/api/futures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/publisher/api/futures.rst -------------------------------------------------------------------------------- /docs/pubsub/publisher/api/pagers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/publisher/api/pagers.rst -------------------------------------------------------------------------------- /docs/pubsub/publisher/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/publisher/index.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/api/client.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/futures.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/api/futures.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/message.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/api/message.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/pagers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/api/pagers.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/api/scheduler.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/api/scheduler.rst -------------------------------------------------------------------------------- /docs/pubsub/subscriber/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/subscriber/index.rst -------------------------------------------------------------------------------- /docs/pubsub/types.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/pubsub/types.rst -------------------------------------------------------------------------------- /docs/summary_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/docs/summary_overview.md -------------------------------------------------------------------------------- /google/cloud/pubsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub/__init__.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/__init__.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/exceptions.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/futures.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/open_telemetry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/open_telemetry/__init__.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/open_telemetry/context_propagation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/open_telemetry/context_propagation.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/open_telemetry/publish_message_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/open_telemetry/publish_message_wrapper.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/open_telemetry/subscribe_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/open_telemetry/subscribe_opentelemetry.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/proto/pubsub.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/proto/pubsub.proto -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/proto/schema.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/proto/schema.proto -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/__init__.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_batch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_batch/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/_batch/base.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_batch/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/_batch/thread.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_sequencer/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_sequencer/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/_sequencer/base.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_sequencer/ordered_sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/_sequencer/ordered_sequencer.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/_sequencer/unordered_sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/_sequencer/unordered_sequencer.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/client.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/exceptions.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/flow_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/flow_controller.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/publisher/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/publisher/futures.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/__init__.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/dispatcher.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/heartbeater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/heartbeater.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/helper_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/helper_threads.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/histogram.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/leaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/leaser.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/messages_on_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/messages_on_hold.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/requests.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/_protocol/streaming_pull_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/_protocol/streaming_pull_manager.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/client.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/exceptions.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/futures.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/message.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/subscriber/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/subscriber/scheduler.py -------------------------------------------------------------------------------- /google/cloud/pubsub_v1/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/cloud/pubsub_v1/types.py -------------------------------------------------------------------------------- /google/pubsub/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub/__init__.py -------------------------------------------------------------------------------- /google/pubsub/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub/gapic_version.py -------------------------------------------------------------------------------- /google/pubsub/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-pubsub package uses inline types. 3 | -------------------------------------------------------------------------------- /google/pubsub_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/gapic_metadata.json -------------------------------------------------------------------------------- /google/pubsub_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/gapic_version.py -------------------------------------------------------------------------------- /google/pubsub_v1/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-pubsub package uses inline types. 3 | -------------------------------------------------------------------------------- /google/pubsub_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/async_client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/pagers.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/README.rst -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/base.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/grpc.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/rest.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/publisher/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/publisher/transports/rest_base.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/async_client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/pagers.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/README.rst -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/base.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/grpc.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/rest.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/schema_service/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/schema_service/transports/rest_base.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/async_client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/client.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/pagers.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/README.rst -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/base.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/grpc.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/rest.py -------------------------------------------------------------------------------- /google/pubsub_v1/services/subscriber/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/services/subscriber/transports/rest_base.py -------------------------------------------------------------------------------- /google/pubsub_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/types/__init__.py -------------------------------------------------------------------------------- /google/pubsub_v1/types/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/types/pubsub.py -------------------------------------------------------------------------------- /google/pubsub_v1/types/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/google/pubsub_v1/types/schema.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/noxfile.py -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/owlbot.py -------------------------------------------------------------------------------- /pylint.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/pylint.config.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/pytest.ini -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/AUTHORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/AUTHORING_GUIDE.md -------------------------------------------------------------------------------- /samples/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/CONTRIBUTING.md -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_create_topic_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_create_topic_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_create_topic_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_create_topic_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_delete_topic_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_delete_topic_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_delete_topic_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_delete_topic_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_detach_subscription_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_detach_subscription_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_detach_subscription_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_detach_subscription_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_get_topic_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_get_topic_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_get_topic_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_get_topic_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topic_snapshots_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topic_snapshots_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topic_snapshots_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topic_snapshots_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topic_subscriptions_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topic_subscriptions_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topic_subscriptions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topic_subscriptions_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topics_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topics_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_list_topics_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_list_topics_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_publish_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_publish_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_publish_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_publish_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_update_topic_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_update_topic_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_publisher_update_topic_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_publisher_update_topic_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_commit_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_commit_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_commit_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_commit_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_create_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_create_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_create_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_create_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_revision_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_revision_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_revision_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_revision_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_delete_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_get_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_get_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_get_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_get_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_list_schema_revisions_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_list_schema_revisions_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_list_schema_revisions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_list_schema_revisions_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_list_schemas_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_list_schemas_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_list_schemas_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_list_schemas_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_rollback_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_rollback_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_rollback_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_rollback_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_validate_message_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_validate_message_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_validate_message_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_validate_message_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_validate_schema_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_validate_schema_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_schema_service_validate_schema_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_schema_service_validate_schema_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_acknowledge_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_acknowledge_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_acknowledge_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_acknowledge_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_create_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_create_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_create_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_create_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_create_subscription_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_create_subscription_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_create_subscription_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_create_subscription_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_delete_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_delete_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_delete_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_delete_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_delete_subscription_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_delete_subscription_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_delete_subscription_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_delete_subscription_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_get_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_get_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_get_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_get_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_get_subscription_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_get_subscription_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_get_subscription_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_get_subscription_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_list_snapshots_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_list_snapshots_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_list_snapshots_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_list_snapshots_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_list_subscriptions_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_list_subscriptions_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_list_subscriptions_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_list_subscriptions_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_modify_ack_deadline_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_modify_ack_deadline_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_modify_ack_deadline_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_modify_ack_deadline_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_modify_push_config_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_modify_push_config_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_modify_push_config_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_modify_push_config_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_pull_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_pull_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_pull_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_pull_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_seek_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_seek_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_seek_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_seek_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_streaming_pull_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_streaming_pull_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_streaming_pull_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_streaming_pull_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_update_snapshot_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_update_snapshot_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_update_snapshot_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_update_snapshot_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_update_subscription_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_update_subscription_async.py -------------------------------------------------------------------------------- /samples/generated_samples/pubsub_v1_generated_subscriber_update_subscription_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/pubsub_v1_generated_subscriber_update_subscription_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/snippet_metadata_google.pubsub.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/generated_samples/snippet_metadata_google.pubsub.v1.json -------------------------------------------------------------------------------- /samples/snippets/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/README.rst -------------------------------------------------------------------------------- /samples/snippets/README.rst.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/README.rst.in -------------------------------------------------------------------------------- /samples/snippets/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/iam.py -------------------------------------------------------------------------------- /samples/snippets/iam_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/iam_test.py -------------------------------------------------------------------------------- /samples/snippets/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/mypy.ini -------------------------------------------------------------------------------- /samples/snippets/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/noxfile.py -------------------------------------------------------------------------------- /samples/snippets/noxfile_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/noxfile_config.py -------------------------------------------------------------------------------- /samples/snippets/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/publisher.py -------------------------------------------------------------------------------- /samples/snippets/publisher_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/publisher_test.py -------------------------------------------------------------------------------- /samples/snippets/quickstart/pub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/quickstart/pub.py -------------------------------------------------------------------------------- /samples/snippets/quickstart/quickstart_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/quickstart/quickstart_test.py -------------------------------------------------------------------------------- /samples/snippets/quickstart/sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/quickstart/sub.py -------------------------------------------------------------------------------- /samples/snippets/requirements-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/requirements-test.txt -------------------------------------------------------------------------------- /samples/snippets/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/requirements.txt -------------------------------------------------------------------------------- /samples/snippets/resources/us-states-plus.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/resources/us-states-plus.avsc -------------------------------------------------------------------------------- /samples/snippets/resources/us-states-plus.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/resources/us-states-plus.proto -------------------------------------------------------------------------------- /samples/snippets/resources/us-states.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/resources/us-states.avsc -------------------------------------------------------------------------------- /samples/snippets/resources/us-states.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/resources/us-states.proto -------------------------------------------------------------------------------- /samples/snippets/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/schema.py -------------------------------------------------------------------------------- /samples/snippets/schema_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/schema_test.py -------------------------------------------------------------------------------- /samples/snippets/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/subscriber.py -------------------------------------------------------------------------------- /samples/snippets/subscriber_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/subscriber_test.py -------------------------------------------------------------------------------- /samples/snippets/utilities/us_states_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/samples/snippets/utilities/us_states_pb2.py -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/fixup_pubsub_v1_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/fixup_pubsub_v1_keywords.py -------------------------------------------------------------------------------- /scripts/readme-gen/readme_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/readme_gen.py -------------------------------------------------------------------------------- /scripts/readme-gen/templates/README.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/templates/README.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/templates/auth.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth_api_key.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/templates/auth_api_key.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_deps.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/templates/install_deps.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_portaudio.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/scripts/readme-gen/templates/install_portaudio.tmpl.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/setup.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/system.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/pubsub_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/gapic/pubsub_v1/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/pubsub_v1/test_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/gapic/pubsub_v1/test_publisher.py -------------------------------------------------------------------------------- /tests/unit/gapic/pubsub_v1/test_schema_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/gapic/pubsub_v1/test_schema_service.py -------------------------------------------------------------------------------- /tests/unit/gapic/pubsub_v1/test_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/gapic/pubsub_v1/test_subscriber.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/conftest.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/batch/test_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/batch/test_base.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/batch/test_thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/batch/test_thread.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/sequencer/test_ordered_sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/sequencer/test_ordered_sequencer.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/sequencer/test_unordered_sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/sequencer/test_unordered_sequencer.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/test_flow_controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/test_flow_controller.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/test_futures_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/test_futures_publisher.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/test_publish_message_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/test_publish_message_wrapper.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/publisher/test_publisher_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/publisher/test_publisher_client.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_dispatcher.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_futures_subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_futures_subscriber.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_heartbeater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_heartbeater.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_helper_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_helper_threads.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_histogram.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_leaser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_leaser.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_message.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_messages_on_hold.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_messages_on_hold.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_scheduler.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_streaming_pull_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_streaming_pull_manager.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_subscribe_opentelemetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_subscribe_opentelemetry.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/subscriber/test_subscriber_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/subscriber/test_subscriber_client.py -------------------------------------------------------------------------------- /tests/unit/pubsub_v1/test_futures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/pubsub_v1/test_futures.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/test_pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-pubsub/HEAD/tests/unit/test_pubsub.py --------------------------------------------------------------------------------