├── .coveragerc ├── .flake8 ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-label.yaml ├── blunderbuss.yml ├── flakybot.yaml ├── header-checker-lint.yml ├── release-trigger.yml ├── snippet-bot.yml └── workflows │ ├── docs.yml │ ├── lint.yml │ └── unittest.yml ├── .gitignore ├── .kokoro ├── build.sh ├── common_env_vars.cfg ├── continuous │ ├── common.cfg │ ├── continuous.cfg │ └── prerelease-deps.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ ├── prerelease-deps.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 ├── 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 ├── devtools-clouderrorreporting-v1beta1-py.tar.gz ├── docs ├── README.rst ├── _static │ └── custom.css ├── _templates │ └── layout.html ├── changelog.md ├── client.rst ├── conf.py ├── errorreporting_v1beta1 │ ├── error_group_service.rst │ ├── error_stats_service.rst │ ├── report_errors_service.rst │ ├── services_.rst │ └── types_.rst ├── index.rst ├── multiprocessing.rst ├── summary_overview.md ├── usage.rst └── util.rst ├── google └── cloud │ ├── error_reporting │ ├── __init__.py │ ├── _gapic.py │ ├── _logging.py │ ├── client.py │ ├── gapic_version.py │ └── util.py │ └── errorreporting_v1beta1 │ ├── __init__.py │ ├── gapic_metadata.json │ ├── gapic_version.py │ ├── py.typed │ ├── services │ ├── __init__.py │ ├── error_group_service │ │ ├── __init__.py │ │ ├── async_client.py │ │ ├── client.py │ │ └── transports │ │ │ ├── README.rst │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── grpc.py │ │ │ ├── grpc_asyncio.py │ │ │ ├── rest.py │ │ │ └── rest_base.py │ ├── error_stats_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 │ └── report_errors_service │ │ ├── __init__.py │ │ ├── async_client.py │ │ ├── client.py │ │ └── transports │ │ ├── README.rst │ │ ├── __init__.py │ │ ├── base.py │ │ ├── grpc.py │ │ ├── grpc_asyncio.py │ │ ├── rest.py │ │ └── rest_base.py │ └── types │ ├── __init__.py │ ├── common.py │ ├── error_group_service.py │ ├── error_stats_service.py │ └── report_errors_service.py ├── mypy.ini ├── noxfile.py ├── owlbot.py ├── pylint.config.py ├── pytest.ini ├── renovate.json ├── samples ├── AUTHORING_GUIDE.md ├── CONTRIBUTING.md ├── generated_samples │ ├── clouderrorreporting_v1beta1_generated_error_group_service_get_group_async.py │ ├── clouderrorreporting_v1beta1_generated_error_group_service_get_group_sync.py │ ├── clouderrorreporting_v1beta1_generated_error_group_service_update_group_async.py │ ├── clouderrorreporting_v1beta1_generated_error_group_service_update_group_sync.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_async.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_sync.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_list_events_async.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_list_events_sync.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_async.py │ ├── clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_sync.py │ ├── clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_async.py │ ├── clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_sync.py │ └── snippet_metadata_google.devtools.clouderrorreporting.v1beta1.json └── snippets │ └── README.md ├── scripts ├── decrypt-secrets.sh ├── fixup_errorreporting_v1beta1_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 ├── gapic │ └── v1beta1 │ │ └── test_system_report_errors_service_v1beta1.py └── test_system.py └── unit ├── __init__.py ├── gapic ├── __init__.py └── errorreporting_v1beta1 │ ├── __init__.py │ ├── test_error_group_service.py │ ├── test_error_stats_service.py │ └── test_report_errors_service.py ├── test__gapic.py ├── test__logging.py ├── test_client.py ├── test_packaging.py └── test_util.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.coveragerc -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/flakybot.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/flakybot.yaml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/release-trigger.yml: -------------------------------------------------------------------------------- 1 | enabled: true 2 | multiScmName: python-error-reporting 3 | -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/unittest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.github/workflows/unittest.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/common_env_vars.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/common_env_vars.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/continuous/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/prerelease-deps.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/presubmit/prerelease-deps.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/lint/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/lint/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/lint/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/lint/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/lint/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.10/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.10/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.10/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.10/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.10/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.10/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.11/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.11/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.11/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.11/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.11/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.11/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.12/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.12/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.12/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.12/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.12/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.12/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.13/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.13/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.13/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.13/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.13/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.13/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.14/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.14/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.14/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.14/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.14/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.14/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.7/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.7/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.7/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.7/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.7/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.7/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.8/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.8/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.8/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.8/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.8/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.8/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.9/common.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.9/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic-head.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.9/periodic-head.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/periodic.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.9/periodic.cfg -------------------------------------------------------------------------------- /.kokoro/samples/python3.9/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/samples/python3.9/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/test-samples-against-head.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/test-samples-against-head.sh -------------------------------------------------------------------------------- /.kokoro/test-samples-impl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/test-samples-impl.sh -------------------------------------------------------------------------------- /.kokoro/test-samples.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/test-samples.sh -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/generator-input/.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.librarian/generator-input/.repo-metadata.json -------------------------------------------------------------------------------- /.librarian/generator-input/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.librarian/generator-input/noxfile.py -------------------------------------------------------------------------------- /.librarian/generator-input/owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.librarian/generator-input/owlbot.py -------------------------------------------------------------------------------- /.librarian/generator-input/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.librarian/generator-input/setup.py -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/.trampolinerc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/SECURITY.md -------------------------------------------------------------------------------- /devtools-clouderrorreporting-v1beta1-py.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/README.rst -------------------------------------------------------------------------------- /docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/_static/custom.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/changelog.md: -------------------------------------------------------------------------------- 1 | ../CHANGELOG.md -------------------------------------------------------------------------------- /docs/client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/client.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/errorreporting_v1beta1/error_group_service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/errorreporting_v1beta1/error_group_service.rst -------------------------------------------------------------------------------- /docs/errorreporting_v1beta1/error_stats_service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/errorreporting_v1beta1/error_stats_service.rst -------------------------------------------------------------------------------- /docs/errorreporting_v1beta1/report_errors_service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/errorreporting_v1beta1/report_errors_service.rst -------------------------------------------------------------------------------- /docs/errorreporting_v1beta1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/errorreporting_v1beta1/services_.rst -------------------------------------------------------------------------------- /docs/errorreporting_v1beta1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/errorreporting_v1beta1/types_.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/multiprocessing.rst -------------------------------------------------------------------------------- /docs/summary_overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/summary_overview.md -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /docs/util.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/docs/util.rst -------------------------------------------------------------------------------- /google/cloud/error_reporting/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/__init__.py -------------------------------------------------------------------------------- /google/cloud/error_reporting/_gapic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/_gapic.py -------------------------------------------------------------------------------- /google/cloud/error_reporting/_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/_logging.py -------------------------------------------------------------------------------- /google/cloud/error_reporting/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/client.py -------------------------------------------------------------------------------- /google/cloud/error_reporting/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/error_reporting/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/error_reporting/util.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/gapic_metadata.json -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/gapic_version.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/py.typed -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/async_client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_group_service/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_group_service/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/async_client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/pagers.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/error_stats_service/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/async_client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/client.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/README.rst -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/grpc.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/rest.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/services/report_errors_service/transports/rest_base.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/types/__init__.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/types/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/types/common.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/types/error_group_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/types/error_group_service.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/types/error_stats_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/types/error_stats_service.py -------------------------------------------------------------------------------- /google/cloud/errorreporting_v1beta1/types/report_errors_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/google/cloud/errorreporting_v1beta1/types/report_errors_service.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/mypy.ini -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/noxfile.py -------------------------------------------------------------------------------- /owlbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/owlbot.py -------------------------------------------------------------------------------- /pylint.config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/pylint.config.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/pytest.ini -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/renovate.json -------------------------------------------------------------------------------- /samples/AUTHORING_GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/AUTHORING_GUIDE.md -------------------------------------------------------------------------------- /samples/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/CONTRIBUTING.md -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_get_group_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_get_group_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_get_group_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_get_group_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_update_group_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_update_group_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_update_group_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_group_service_update_group_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_delete_events_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_events_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_events_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_events_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_events_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_error_stats_service_list_group_stats_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_async.py -------------------------------------------------------------------------------- /samples/generated_samples/clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/clouderrorreporting_v1beta1_generated_report_errors_service_report_error_event_sync.py -------------------------------------------------------------------------------- /samples/generated_samples/snippet_metadata_google.devtools.clouderrorreporting.v1beta1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/generated_samples/snippet_metadata_google.devtools.clouderrorreporting.v1beta1.json -------------------------------------------------------------------------------- /samples/snippets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/samples/snippets/README.md -------------------------------------------------------------------------------- /scripts/decrypt-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/decrypt-secrets.sh -------------------------------------------------------------------------------- /scripts/fixup_errorreporting_v1beta1_keywords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/fixup_errorreporting_v1beta1_keywords.py -------------------------------------------------------------------------------- /scripts/readme-gen/readme_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/readme_gen.py -------------------------------------------------------------------------------- /scripts/readme-gen/templates/README.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/templates/README.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/templates/auth.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/auth_api_key.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/templates/auth_api_key.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_deps.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/templates/install_deps.tmpl.rst -------------------------------------------------------------------------------- /scripts/readme-gen/templates/install_portaudio.tmpl.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/scripts/readme-gen/templates/install_portaudio.tmpl.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/setup.py -------------------------------------------------------------------------------- /testing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/.gitignore -------------------------------------------------------------------------------- /testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/system/gapic/v1beta1/test_system_report_errors_service_v1beta1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/system/gapic/v1beta1/test_system_report_errors_service_v1beta1.py -------------------------------------------------------------------------------- /tests/system/test_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/system/test_system.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/errorreporting_v1beta1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/gapic/errorreporting_v1beta1/__init__.py -------------------------------------------------------------------------------- /tests/unit/gapic/errorreporting_v1beta1/test_error_group_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/gapic/errorreporting_v1beta1/test_error_group_service.py -------------------------------------------------------------------------------- /tests/unit/gapic/errorreporting_v1beta1/test_error_stats_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/gapic/errorreporting_v1beta1/test_error_stats_service.py -------------------------------------------------------------------------------- /tests/unit/gapic/errorreporting_v1beta1/test_report_errors_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/gapic/errorreporting_v1beta1/test_report_errors_service.py -------------------------------------------------------------------------------- /tests/unit/test__gapic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/test__gapic.py -------------------------------------------------------------------------------- /tests/unit/test__logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/test__logging.py -------------------------------------------------------------------------------- /tests/unit/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/test_client.py -------------------------------------------------------------------------------- /tests/unit/test_packaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/test_packaging.py -------------------------------------------------------------------------------- /tests/unit/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/python-error-reporting/HEAD/tests/unit/test_util.py --------------------------------------------------------------------------------