├── .bazeliskrc ├── .bazelrc ├── .coveragerc ├── .dockerignore ├── .flake8 ├── .githooks └── pre-commit ├── .github ├── CODEOWNERS ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── feature_request.md │ └── support_request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-label.yaml ├── blunderbuss.yml ├── header-checker-lint.yml ├── snippet-bot.yml └── workflows │ └── tests.yaml ├── .gitignore ├── .kokoro ├── build.sh ├── continuous │ ├── common.cfg │ └── continuous.cfg ├── populate-secrets.sh ├── presubmit │ ├── common.cfg │ └── presubmit.cfg ├── trampoline.sh └── trampoline_v2.sh ├── .librarian └── state.yaml ├── .readthedocs.yml ├── .repo-metadata.json ├── .trampolinerc ├── BUILD.bazel ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DEVELOPMENT.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── SECURITY.md ├── WORKSPACE ├── docs ├── Makefile ├── conf.py ├── getting-started │ ├── _example.rst │ ├── _samplegen.rst │ ├── _usage_intro.rst │ ├── _verifying.rst │ ├── bazel.rst │ ├── index.rst │ └── local.rst ├── index.rst ├── process.rst ├── reference │ ├── generator.rst │ ├── index.rst │ ├── schema.rst │ └── utils.rst ├── status.rst └── templates.rst ├── gapic ├── ads-templates │ ├── %namespace │ │ └── %name │ │ │ ├── %version │ │ │ ├── %sub │ │ │ │ ├── __init__.py.j2 │ │ │ │ ├── gapic_version.py.j2 │ │ │ │ ├── services │ │ │ │ │ ├── %service │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ ├── _mixins.py.j2 │ │ │ │ │ │ ├── _shared_macros.j2 │ │ │ │ │ │ ├── client.py.j2 │ │ │ │ │ │ ├── pagers.py.j2 │ │ │ │ │ │ └── transports │ │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ │ ├── _mixins.py.j2 │ │ │ │ │ │ │ ├── _rest_mixins.py.j2 │ │ │ │ │ │ │ ├── _rest_mixins_base.py.j2 │ │ │ │ │ │ │ ├── base.py.j2 │ │ │ │ │ │ │ ├── grpc.py.j2 │ │ │ │ │ │ │ ├── rest.py.j2 │ │ │ │ │ │ │ └── rest_base.py.j2 │ │ │ │ │ └── __init__.py.j2 │ │ │ │ └── types │ │ │ │ │ ├── %proto.py.j2 │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ ├── _enum.py.j2 │ │ │ │ │ └── _message.py.j2 │ │ │ ├── __init__.py.j2 │ │ │ └── gapic_metadata.json.j2 │ │ │ ├── __init__.py.j2 │ │ │ └── py.typed.j2 │ ├── .coveragerc.j2 │ ├── MANIFEST.in.j2 │ ├── _base.py.j2 │ ├── _license.j2 │ ├── docs │ │ ├── %name_%version │ │ │ ├── services.rst.j2 │ │ │ └── types.rst.j2 │ │ ├── _static │ │ │ └── custom.css.j2 │ │ ├── conf.py.j2 │ │ └── index.rst.j2 │ ├── examples │ │ ├── feature_fragments.j2 │ │ └── sample.py.j2 │ ├── mypy.ini.j2 │ ├── noxfile.py.j2 │ ├── setup.py.j2 │ └── tests │ │ ├── __init__.py.j2 │ │ └── unit │ │ ├── __init__.py.j2 │ │ └── gapic │ │ ├── %name_%version │ │ ├── %sub │ │ │ ├── __init__.py.j2 │ │ │ ├── _test_mixins.py.j2 │ │ │ └── test_%service.py.j2 │ │ └── test_module_import.py.j2 │ │ └── __init__.py.j2 ├── cli │ ├── __init__.py │ ├── dump.py │ ├── generate.py │ └── generate_with_pandoc.py ├── configurable_snippetgen │ ├── __init__.py │ ├── configured_snippet.py │ ├── libcst_utils.py │ ├── snippet_config_language.proto │ ├── snippet_config_language_pb2.py │ └── snippet_config_language_pb2.pyi ├── generator │ ├── __init__.py │ ├── formatter.py │ └── generator.py ├── samplegen │ ├── __init__.py │ ├── manifest.py │ └── samplegen.py ├── samplegen_utils │ ├── __init__.py │ ├── snippet_index.py │ ├── snippet_metadata.proto │ ├── snippet_metadata_pb2.py │ ├── types.py │ ├── utils.py │ └── yaml.py ├── schema │ ├── __init__.py │ ├── api.py │ ├── imp.py │ ├── metadata.py │ ├── mixins.py │ ├── naming.py │ └── wrappers.py ├── templates │ ├── %namespace │ │ ├── %name │ │ │ ├── __init__.py.j2 │ │ │ ├── gapic_version.py.j2 │ │ │ └── py.typed.j2 │ │ └── %name_%version │ │ │ ├── %sub │ │ │ ├── __init__.py.j2 │ │ │ ├── services │ │ │ │ ├── %service │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ ├── _async_mixins.py.j2 │ │ │ │ │ ├── _client_macros.j2 │ │ │ │ │ ├── _mixins.py.j2 │ │ │ │ │ ├── _shared_macros.j2 │ │ │ │ │ ├── async_client.py.j2 │ │ │ │ │ ├── client.py.j2 │ │ │ │ │ ├── pagers.py.j2 │ │ │ │ │ └── transports │ │ │ │ │ │ ├── README.rst.j2 │ │ │ │ │ │ ├── __init__.py.j2 │ │ │ │ │ │ ├── _mixins.py.j2 │ │ │ │ │ │ ├── _rest_mixins.py.j2 │ │ │ │ │ │ ├── _rest_mixins_base.py.j2 │ │ │ │ │ │ ├── base.py.j2 │ │ │ │ │ │ ├── grpc.py.j2 │ │ │ │ │ │ ├── grpc_asyncio.py.j2 │ │ │ │ │ │ ├── rest.py.j2 │ │ │ │ │ │ ├── rest_asyncio.py.j2 │ │ │ │ │ │ └── rest_base.py.j2 │ │ │ │ └── __init__.py.j2 │ │ │ └── types │ │ │ │ ├── %proto.py.j2 │ │ │ │ ├── __init__.py.j2 │ │ │ │ ├── _enum.py.j2 │ │ │ │ └── _message.py.j2 │ │ │ ├── gapic_metadata.json.j2 │ │ │ ├── gapic_version.py.j2 │ │ │ └── py.typed.j2 │ ├── .coveragerc.j2 │ ├── .flake8.j2 │ ├── LICENSE.j2 │ ├── MANIFEST.in.j2 │ ├── README.rst.j2 │ ├── _base.py.j2 │ ├── _license.j2 │ ├── _pypi_packages.j2 │ ├── docs │ │ ├── %name_%version │ │ │ ├── %service.rst.j2 │ │ │ ├── services_.rst.j2 │ │ │ └── types_.rst.j2 │ │ ├── _static │ │ │ └── custom.css.j2 │ │ ├── _templates │ │ │ └── layout.html.j2 │ │ ├── conf.py.j2 │ │ ├── index.rst.j2 │ │ └── multiprocessing.rst.j2 │ ├── examples │ │ ├── _generated_sample_comment.j2 │ │ ├── feature_fragments.j2 │ │ └── sample.py.j2 │ ├── mypy.ini.j2 │ ├── noxfile.py.j2 │ ├── setup.py.j2 │ ├── testing │ │ ├── _default_constraints.j2 │ │ ├── constraints-3.10.txt.j2 │ │ ├── constraints-3.11.txt.j2 │ │ ├── constraints-3.12.txt.j2 │ │ ├── constraints-3.13.txt.j2 │ │ ├── constraints-3.14.txt.j2 │ │ ├── constraints-3.7.txt.j2 │ │ ├── constraints-3.8.txt.j2 │ │ └── constraints-3.9.txt.j2 │ └── tests │ │ ├── __init__.py.j2 │ │ └── unit │ │ ├── __init__.py.j2 │ │ └── gapic │ │ ├── %name_%version │ │ └── %sub │ │ │ ├── __init__.py.j2 │ │ │ ├── _test_mixins.py.j2 │ │ │ ├── test_%service.py.j2 │ │ │ └── test_macros.j2 │ │ └── __init__.py.j2 └── utils │ ├── __init__.py │ ├── cache.py │ ├── case.py │ ├── checks.py │ ├── code.py │ ├── doc.py │ ├── filename.py │ ├── lines.py │ ├── options.py │ ├── reserved_names.py │ ├── rst.py │ ├── uri_conv.py │ └── uri_sample.py ├── gapic_generator_python.bzl ├── mypy.ini ├── noxfile.py ├── pyenv3wrapper.sh ├── renovate.json ├── repositories.bzl ├── requirements.in ├── requirements.txt ├── rules_python_gapic ├── BUILD.bazel ├── py_gapic.bzl ├── py_gapic_pkg.bzl ├── pytest.py ├── test.py └── test │ ├── BUILD.bazel │ └── integration_test.bzl ├── setup.py ├── test_utils ├── __init__.py └── test_utils.py └── tests ├── cert ├── mtls.crt └── mtls.key ├── fragments ├── google │ ├── README.rst │ ├── api │ │ ├── annotations.proto │ │ ├── client.proto │ │ ├── field_behavior.proto │ │ ├── http.proto │ │ ├── httpbody.proto │ │ └── routing.proto │ ├── cloud │ │ └── extended_operations.proto │ ├── longrunning │ │ └── operations.proto │ ├── protobuf │ │ ├── any.proto │ │ ├── descriptor.proto │ │ └── struct.proto │ ├── rpc │ │ └── status.proto │ └── type │ │ └── dayofweek.proto ├── import.proto ├── test_api_version.proto ├── test_compute_operation.proto ├── test_dynamic_routing.proto ├── test_enum_indexed_types.proto ├── test_enum_indexed_types_nonlocal.proto ├── test_extended_operation_forwardcompat_lro.proto ├── test_flattened_value.proto ├── test_google_protobuf_type.proto ├── test_keyword_import.proto ├── test_multiple_required_fields.proto ├── test_nested_messages.proto ├── test_non_primitive_body.proto ├── test_oneof_imported_response.proto ├── test_optional_signature.proto ├── test_pagination_max_results_and_wrapper.proto ├── test_recursive_messages.proto ├── test_repeated_double.proto ├── test_required_non_string.proto ├── test_reserved_field_name.proto ├── test_reserved_method_names.proto └── test_rest_streaming.proto ├── integration ├── BUILD.bazel ├── cloudasset_grpc_service_config.json ├── cloudasset_v1.yaml ├── eventarc_grpc_service_config.json ├── eventarc_v1.yaml ├── goldens │ ├── asset │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── asset_v1 │ │ │ │ ├── asset_service.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ └── multiprocessing.rst │ │ ├── google │ │ │ └── cloud │ │ │ │ ├── asset │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_version.py │ │ │ │ └── py.typed │ │ │ │ └── asset_v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── asset_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 │ │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── asset_service.py │ │ │ │ └── assets.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_iam_policy_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_iam_policy_longrunning_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_iam_policy_longrunning_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_iam_policy_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_move_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_move_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policies_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policies_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policy_governed_assets_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policy_governed_assets_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policy_governed_containers_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_analyze_org_policy_governed_containers_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_batch_get_assets_history_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_batch_get_assets_history_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_batch_get_effective_iam_policies_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_batch_get_effective_iam_policies_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_create_feed_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_create_feed_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_create_saved_query_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_create_saved_query_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_delete_feed_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_delete_feed_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_delete_saved_query_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_delete_saved_query_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_export_assets_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_export_assets_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_get_feed_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_get_feed_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_get_saved_query_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_get_saved_query_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_assets_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_assets_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_feeds_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_feeds_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_saved_queries_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_list_saved_queries_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_query_assets_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_query_assets_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_search_all_iam_policies_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_search_all_iam_policies_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_search_all_resources_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_search_all_resources_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_update_feed_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_update_feed_sync.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_update_saved_query_async.py │ │ │ │ ├── cloudasset_v1_generated_asset_service_update_saved_query_sync.py │ │ │ │ └── snippet_metadata_google.cloud.asset.v1.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── asset_v1 │ │ │ ├── __init__.py │ │ │ └── test_asset_service.py │ ├── credentials │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── conf.py │ │ │ ├── credentials_v1 │ │ │ │ ├── iam_credentials.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ │ ├── index.rst │ │ │ └── multiprocessing.rst │ │ ├── google │ │ │ └── iam │ │ │ │ ├── credentials │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_version.py │ │ │ │ └── py.typed │ │ │ │ └── credentials_v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── iam_credentials │ │ │ │ │ ├── __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 │ │ │ │ └── iamcredentials.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_generate_access_token_async.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_generate_access_token_sync.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_generate_id_token_async.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_generate_id_token_sync.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_sign_blob_async.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_sign_blob_sync.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_sign_jwt_async.py │ │ │ │ ├── iamcredentials_v1_generated_iam_credentials_sign_jwt_sync.py │ │ │ │ └── snippet_metadata_google.iam.credentials.v1.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── credentials_v1 │ │ │ ├── __init__.py │ │ │ └── test_iam_credentials.py │ ├── eventarc │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── conf.py │ │ │ ├── eventarc_v1 │ │ │ │ ├── eventarc.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ │ ├── index.rst │ │ │ └── multiprocessing.rst │ │ ├── google │ │ │ └── cloud │ │ │ │ └── eventarc_v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── eventarc │ │ │ │ │ ├── __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 │ │ │ │ ├── channel.py │ │ │ │ ├── channel_connection.py │ │ │ │ ├── discovery.py │ │ │ │ ├── eventarc.py │ │ │ │ ├── google_channel_config.py │ │ │ │ └── trigger.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── eventarc_v1_generated_eventarc_create_channel_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_create_channel_connection_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_create_channel_connection_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_create_channel_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_create_trigger_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_create_trigger_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_channel_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_channel_connection_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_channel_connection_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_channel_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_trigger_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_delete_trigger_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_channel_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_channel_connection_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_channel_connection_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_channel_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_google_channel_config_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_google_channel_config_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_provider_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_provider_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_trigger_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_get_trigger_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_channel_connections_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_channel_connections_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_channels_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_channels_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_providers_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_providers_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_triggers_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_list_triggers_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_channel_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_channel_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_google_channel_config_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_google_channel_config_sync.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_trigger_async.py │ │ │ │ ├── eventarc_v1_generated_eventarc_update_trigger_sync.py │ │ │ │ └── snippet_metadata_google.cloud.eventarc.v1.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── eventarc_v1 │ │ │ ├── __init__.py │ │ │ └── test_eventarc.py │ ├── logging │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── logging_v2 │ │ │ │ ├── config_service_v2.rst │ │ │ │ ├── logging_service_v2.rst │ │ │ │ ├── metrics_service_v2.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ │ └── multiprocessing.rst │ │ ├── google │ │ │ └── cloud │ │ │ │ ├── logging │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_version.py │ │ │ │ └── py.typed │ │ │ │ └── logging_v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ ├── config_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── grpc.py │ │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ ├── logging_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── grpc.py │ │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ └── metrics_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── grpc.py │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── log_entry.py │ │ │ │ ├── logging.py │ │ │ │ ├── logging_config.py │ │ │ │ └── logging_metrics.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── logging_v2_generated_config_service_v2_copy_log_entries_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_copy_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_exclusion_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_exclusion_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_link_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_link_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_sink_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_sink_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_view_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_view_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_exclusion_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_exclusion_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_link_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_link_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_sink_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_sink_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_view_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_view_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_cmek_settings_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_cmek_settings_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_exclusion_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_exclusion_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_link_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_link_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_settings_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_settings_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_sink_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_sink_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_view_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_view_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_buckets_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_buckets_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_exclusions_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_exclusions_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_links_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_links_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_sinks_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_sinks_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_views_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_views_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_undelete_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_undelete_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_cmek_settings_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_cmek_settings_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_exclusion_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_exclusion_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_settings_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_settings_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_sink_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_sink_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_view_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_view_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_delete_log_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_delete_log_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_logs_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_logs_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_monitored_resource_descriptors_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_monitored_resource_descriptors_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_tail_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_tail_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_write_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_write_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_create_log_metric_async.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_create_log_metric_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_delete_log_metric_async.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_delete_log_metric_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_get_log_metric_async.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_get_log_metric_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_list_log_metrics_async.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_list_log_metrics_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_update_log_metric_async.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_update_log_metric_sync.py │ │ │ │ └── snippet_metadata_google.logging.v2.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── logging_v2 │ │ │ ├── __init__.py │ │ │ ├── test_config_service_v2.py │ │ │ ├── test_logging_service_v2.py │ │ │ └── test_metrics_service_v2.py │ ├── logging_internal │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── logging_v2 │ │ │ │ ├── config_service_v2.rst │ │ │ │ ├── logging_service_v2.rst │ │ │ │ ├── metrics_service_v2.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ │ └── multiprocessing.rst │ │ ├── google │ │ │ └── cloud │ │ │ │ ├── logging │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_version.py │ │ │ │ └── py.typed │ │ │ │ └── logging_v2 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ ├── config_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── grpc.py │ │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ ├── logging_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ │ ├── README.rst │ │ │ │ │ │ ├── __init__.py │ │ │ │ │ │ ├── base.py │ │ │ │ │ │ ├── grpc.py │ │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ └── metrics_service_v2 │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── grpc.py │ │ │ │ │ └── grpc_asyncio.py │ │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ ├── log_entry.py │ │ │ │ ├── logging.py │ │ │ │ ├── logging_config.py │ │ │ │ └── logging_metrics.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── logging_v2_generated_config_service_v2_copy_log_entries_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_copy_log_entries_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_async_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_exclusion_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_exclusion_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_link_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_link_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_sink_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_sink_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_view_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_create_view_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_exclusion_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_exclusion_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_link_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_link_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_sink_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_sink_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_view_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_delete_view_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_cmek_settings_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_cmek_settings_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_exclusion_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_exclusion_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_link_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_link_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_settings_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_settings_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_sink_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_sink_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_view_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_get_view_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_buckets_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_buckets_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_exclusions_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_exclusions_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_links_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_links_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_sinks_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_sinks_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_views_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_list_views_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_undelete_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_undelete_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async_async.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_async_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_bucket_sync.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_cmek_settings_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_cmek_settings_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_exclusion_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_exclusion_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_settings_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_settings_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_sink_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_sink_sync_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_view_async_internal.py │ │ │ │ ├── logging_v2_generated_config_service_v2_update_view_sync_internal.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_delete_log_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_delete_log_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_logs_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_logs_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_monitored_resource_descriptors_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_list_monitored_resource_descriptors_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_tail_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_tail_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_write_log_entries_async.py │ │ │ │ ├── logging_v2_generated_logging_service_v2_write_log_entries_sync.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_create_log_metric_async_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_create_log_metric_sync_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_delete_log_metric_async_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_delete_log_metric_sync_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_get_log_metric_async_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_get_log_metric_sync_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_list_log_metrics_async_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_list_log_metrics_sync_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_update_log_metric_async_internal.py │ │ │ │ ├── logging_v2_generated_metrics_service_v2_update_log_metric_sync_internal.py │ │ │ │ └── snippet_metadata_google.logging.v2.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── logging_v2 │ │ │ ├── __init__.py │ │ │ ├── test_config_service_v2.py │ │ │ ├── test_logging_service_v2.py │ │ │ └── test_metrics_service_v2.py │ ├── redis │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ │ ├── _static │ │ │ │ └── custom.css │ │ │ ├── _templates │ │ │ │ └── layout.html │ │ │ ├── conf.py │ │ │ ├── index.rst │ │ │ ├── multiprocessing.rst │ │ │ └── redis_v1 │ │ │ │ ├── cloud_redis.rst │ │ │ │ ├── services_.rst │ │ │ │ └── types_.rst │ │ ├── google │ │ │ └── cloud │ │ │ │ ├── redis │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_version.py │ │ │ │ └── py.typed │ │ │ │ └── redis_v1 │ │ │ │ ├── __init__.py │ │ │ │ ├── gapic_metadata.json │ │ │ │ ├── gapic_version.py │ │ │ │ ├── py.typed │ │ │ │ ├── services │ │ │ │ ├── __init__.py │ │ │ │ └── cloud_redis │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── async_client.py │ │ │ │ │ ├── client.py │ │ │ │ │ ├── pagers.py │ │ │ │ │ └── transports │ │ │ │ │ ├── README.rst │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── base.py │ │ │ │ │ ├── grpc.py │ │ │ │ │ ├── grpc_asyncio.py │ │ │ │ │ ├── rest.py │ │ │ │ │ ├── rest_asyncio.py │ │ │ │ │ └── rest_base.py │ │ │ │ └── types │ │ │ │ ├── __init__.py │ │ │ │ └── cloud_redis.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ │ └── generated_samples │ │ │ │ ├── redis_v1_generated_cloud_redis_create_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_create_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_delete_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_delete_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_export_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_export_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_failover_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_failover_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_auth_string_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_auth_string_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_import_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_import_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_list_instances_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_list_instances_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_reschedule_maintenance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_reschedule_maintenance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_update_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_update_instance_sync.py │ │ │ │ ├── redis_v1_generated_cloud_redis_upgrade_instance_async.py │ │ │ │ ├── redis_v1_generated_cloud_redis_upgrade_instance_sync.py │ │ │ │ └── snippet_metadata_google.cloud.redis.v1.json │ │ ├── setup.py │ │ ├── testing │ │ │ ├── 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 │ │ │ └── unit │ │ │ ├── __init__.py │ │ │ └── gapic │ │ │ ├── __init__.py │ │ │ └── redis_v1 │ │ │ ├── __init__.py │ │ │ └── test_cloud_redis.py │ └── redis_selective │ │ ├── .coveragerc │ │ ├── .flake8 │ │ ├── BUILD.bazel │ │ ├── LICENSE │ │ ├── MANIFEST.in │ │ ├── README.rst │ │ ├── docs │ │ ├── _static │ │ │ └── custom.css │ │ ├── _templates │ │ │ └── layout.html │ │ ├── conf.py │ │ ├── index.rst │ │ ├── multiprocessing.rst │ │ └── redis_v1 │ │ │ ├── cloud_redis.rst │ │ │ ├── services_.rst │ │ │ └── types_.rst │ │ ├── google │ │ └── cloud │ │ │ ├── redis │ │ │ ├── __init__.py │ │ │ ├── gapic_version.py │ │ │ └── py.typed │ │ │ └── redis_v1 │ │ │ ├── __init__.py │ │ │ ├── gapic_metadata.json │ │ │ ├── gapic_version.py │ │ │ ├── py.typed │ │ │ ├── services │ │ │ ├── __init__.py │ │ │ └── cloud_redis │ │ │ │ ├── __init__.py │ │ │ │ ├── async_client.py │ │ │ │ ├── client.py │ │ │ │ ├── pagers.py │ │ │ │ └── transports │ │ │ │ ├── README.rst │ │ │ │ ├── __init__.py │ │ │ │ ├── base.py │ │ │ │ ├── grpc.py │ │ │ │ ├── grpc_asyncio.py │ │ │ │ ├── rest.py │ │ │ │ ├── rest_asyncio.py │ │ │ │ └── rest_base.py │ │ │ └── types │ │ │ ├── __init__.py │ │ │ └── cloud_redis.py │ │ ├── mypy.ini │ │ ├── noxfile.py │ │ ├── samples │ │ └── generated_samples │ │ │ ├── redis_v1_generated_cloud_redis_create_instance_async.py │ │ │ ├── redis_v1_generated_cloud_redis_create_instance_sync.py │ │ │ ├── redis_v1_generated_cloud_redis_delete_instance_async.py │ │ │ ├── redis_v1_generated_cloud_redis_delete_instance_sync.py │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_async.py │ │ │ ├── redis_v1_generated_cloud_redis_get_instance_sync.py │ │ │ ├── redis_v1_generated_cloud_redis_list_instances_async.py │ │ │ ├── redis_v1_generated_cloud_redis_list_instances_sync.py │ │ │ ├── redis_v1_generated_cloud_redis_update_instance_async.py │ │ │ ├── redis_v1_generated_cloud_redis_update_instance_sync.py │ │ │ └── snippet_metadata_google.cloud.redis.v1.json │ │ ├── setup.py │ │ ├── testing │ │ ├── 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 │ │ └── unit │ │ ├── __init__.py │ │ └── gapic │ │ ├── __init__.py │ │ └── redis_v1 │ │ ├── __init__.py │ │ └── test_cloud_redis.py ├── iamcredentials_grpc_service_config.json ├── iamcredentials_v1.yaml ├── logging_grpc_service_config.json ├── logging_internal_v2.yaml ├── logging_v2.yaml ├── redis_grpc_service_config.json ├── redis_selective_v1.yaml └── redis_v1.yaml ├── snippetgen ├── goldens │ ├── mollusca_v1_generated_snippets_list_resources_async.py │ ├── mollusca_v1_generated_snippets_list_resources_sync.py │ ├── mollusca_v1_generated_snippets_method_bidi_streaming_async.py │ ├── mollusca_v1_generated_snippets_method_bidi_streaming_sync.py │ ├── mollusca_v1_generated_snippets_method_lro_signatures_async.py │ ├── mollusca_v1_generated_snippets_method_lro_signatures_sync.py │ ├── mollusca_v1_generated_snippets_method_one_signature_async.py │ ├── mollusca_v1_generated_snippets_method_one_signature_sync.py │ ├── mollusca_v1_generated_snippets_method_server_streaming_async.py │ ├── mollusca_v1_generated_snippets_method_server_streaming_sync.py │ ├── mollusca_v1_generated_snippets_one_of_method_async.py │ ├── mollusca_v1_generated_snippets_one_of_method_required_field_async.py │ ├── mollusca_v1_generated_snippets_one_of_method_required_field_sync.py │ ├── mollusca_v1_generated_snippets_one_of_method_sync.py │ └── snippet_metadata_mollusca_v1.json ├── snippets.proto └── test_snippetgen.py ├── system ├── conftest.py ├── test_api_version_header.py ├── test_client_context_manager.py ├── test_error_details.py ├── test_grpc_interceptor_streams.py ├── test_lro.py ├── test_mixins.py ├── test_pagination.py ├── test_request_metadata.py ├── test_resource_crud.py ├── test_response_metadata.py ├── test_retry.py ├── test_streams.py ├── test_unary.py └── test_universe_domain.py └── unit ├── __init__.py ├── common_types.py ├── configurable_snippetgen ├── resources │ ├── README.md │ └── speech │ │ ├── request.desc │ │ ├── speech_createCustomClass.json │ │ └── speech_v1_generated_adaptation_create_custom_class_basic_async.py ├── test_configured_snippet.py ├── test_libcst_utils.py └── test_resources.py ├── generator ├── __init__.py ├── test_formatter.py ├── test_generator.py └── test_options.py ├── samplegen ├── __init__.py ├── golden_snippets │ ├── sample_basic.py │ ├── sample_basic_async.py │ ├── sample_basic_internal.py │ ├── sample_basic_unflattenable.py │ └── sample_basic_void_method.py ├── test_integration.py ├── test_manifest.py ├── test_samplegen.py ├── test_snippet_index.py └── test_template.py ├── schema ├── test_api.py ├── test_imp.py ├── test_metadata.py ├── test_naming.py └── wrappers │ ├── test_enums.py │ ├── test_field.py │ ├── test_message.py │ ├── test_method.py │ ├── test_oneof.py │ ├── test_python.py │ ├── test_routing.py │ └── test_service.py └── utils ├── test_cache.py ├── test_case.py ├── test_checks.py ├── test_code.py ├── test_filename.py ├── test_lines.py ├── test_rst.py ├── test_uri_conv.py └── test_uri_sample.py /.bazeliskrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.bazeliskrc -------------------------------------------------------------------------------- /.bazelrc: -------------------------------------------------------------------------------- 1 | # New protobuf requires C++17 2 | build --repo_env=BAZEL_CXXOPTS="-std=c++17" 3 | -------------------------------------------------------------------------------- /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.dockerignore -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.githooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.githooks/pre-commit -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/support_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/ISSUE_TEMPLATE/support_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-label.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/auto-label.yaml -------------------------------------------------------------------------------- /.github/blunderbuss.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/blunderbuss.yml -------------------------------------------------------------------------------- /.github/header-checker-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/header-checker-lint.yml -------------------------------------------------------------------------------- /.github/snippet-bot.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.github/workflows/tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.kokoro/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/build.sh -------------------------------------------------------------------------------- /.kokoro/continuous/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/continuous/common.cfg -------------------------------------------------------------------------------- /.kokoro/continuous/continuous.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/continuous/continuous.cfg -------------------------------------------------------------------------------- /.kokoro/populate-secrets.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/populate-secrets.sh -------------------------------------------------------------------------------- /.kokoro/presubmit/common.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/presubmit/common.cfg -------------------------------------------------------------------------------- /.kokoro/presubmit/presubmit.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/presubmit/presubmit.cfg -------------------------------------------------------------------------------- /.kokoro/trampoline.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/trampoline.sh -------------------------------------------------------------------------------- /.kokoro/trampoline_v2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.kokoro/trampoline_v2.sh -------------------------------------------------------------------------------- /.librarian/state.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.librarian/state.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.repo-metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.repo-metadata.json -------------------------------------------------------------------------------- /.trampolinerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/.trampolinerc -------------------------------------------------------------------------------- /BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/BUILD.bazel -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DEVELOPMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/DEVELOPMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/README.rst -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/WORKSPACE -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting-started/_example.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/_example.rst -------------------------------------------------------------------------------- /docs/getting-started/_samplegen.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/_samplegen.rst -------------------------------------------------------------------------------- /docs/getting-started/_usage_intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/_usage_intro.rst -------------------------------------------------------------------------------- /docs/getting-started/_verifying.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/_verifying.rst -------------------------------------------------------------------------------- /docs/getting-started/bazel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/bazel.rst -------------------------------------------------------------------------------- /docs/getting-started/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/index.rst -------------------------------------------------------------------------------- /docs/getting-started/local.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/getting-started/local.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/process.rst -------------------------------------------------------------------------------- /docs/reference/generator.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/reference/generator.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/schema.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/reference/schema.rst -------------------------------------------------------------------------------- /docs/reference/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/reference/utils.rst -------------------------------------------------------------------------------- /docs/status.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/status.rst -------------------------------------------------------------------------------- /docs/templates.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/docs/templates.rst -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/gapic_version.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/gapic_version.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/_shared_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/_shared_macros.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/client.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/client.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/pagers.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/pagers.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_rest_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_rest_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_rest_mixins_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/_rest_mixins_base.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/base.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/grpc.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/grpc.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/rest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/rest.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/rest_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/services/%service/transports/rest_base.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/services/__init__.py.j2: -------------------------------------------------------------------------------- 1 | {% extends '_base.py.j2' %} 2 | -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/types/%proto.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/types/%proto.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/types/__init__.py.j2: -------------------------------------------------------------------------------- 1 | {% extends '_base.py.j2' %} 2 | -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/types/_enum.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/types/_enum.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/%sub/types/_message.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/%sub/types/_message.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/%version/gapic_metadata.json.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/%version/gapic_metadata.json.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/%namespace/%name/py.typed.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/%namespace/%name/py.typed.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/.coveragerc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/.coveragerc.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/MANIFEST.in.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/MANIFEST.in.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/_base.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/_license.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/_license.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/docs/%name_%version/services.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/docs/%name_%version/services.rst.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/docs/%name_%version/types.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/docs/%name_%version/types.rst.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/docs/_static/custom.css.j2: -------------------------------------------------------------------------------- 1 | dl.field-list > dt { 2 | min-width: 100px 3 | } -------------------------------------------------------------------------------- /gapic/ads-templates/docs/conf.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/docs/conf.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/docs/index.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/docs/index.rst.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/examples/feature_fragments.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/examples/feature_fragments.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/examples/sample.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/examples/sample.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/mypy.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/mypy.ini.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/noxfile.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/noxfile.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/setup.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/setup.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/tests/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/gapic/%name_%version/%sub/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/gapic/%name_%version/%sub/_test_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/tests/unit/gapic/%name_%version/%sub/_test_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/gapic/%name_%version/%sub/test_%service.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/tests/unit/gapic/%name_%version/%sub/test_%service.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/gapic/%name_%version/test_module_import.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/ads-templates/tests/unit/gapic/%name_%version/test_module_import.py.j2 -------------------------------------------------------------------------------- /gapic/ads-templates/tests/unit/gapic/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/cli/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/cli/__init__.py -------------------------------------------------------------------------------- /gapic/cli/dump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/cli/dump.py -------------------------------------------------------------------------------- /gapic/cli/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/cli/generate.py -------------------------------------------------------------------------------- /gapic/cli/generate_with_pandoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/cli/generate_with_pandoc.py -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/__init__.py -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/configured_snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/configured_snippet.py -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/libcst_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/libcst_utils.py -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/snippet_config_language.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/snippet_config_language.proto -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/snippet_config_language_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/snippet_config_language_pb2.py -------------------------------------------------------------------------------- /gapic/configurable_snippetgen/snippet_config_language_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/configurable_snippetgen/snippet_config_language_pb2.pyi -------------------------------------------------------------------------------- /gapic/generator/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/generator/__init__.py -------------------------------------------------------------------------------- /gapic/generator/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/generator/formatter.py -------------------------------------------------------------------------------- /gapic/generator/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/generator/generator.py -------------------------------------------------------------------------------- /gapic/samplegen/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen/__init__.py -------------------------------------------------------------------------------- /gapic/samplegen/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen/manifest.py -------------------------------------------------------------------------------- /gapic/samplegen/samplegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen/samplegen.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/__init__.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/snippet_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/snippet_index.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/snippet_metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/snippet_metadata.proto -------------------------------------------------------------------------------- /gapic/samplegen_utils/snippet_metadata_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/snippet_metadata_pb2.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/types.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/utils.py -------------------------------------------------------------------------------- /gapic/samplegen_utils/yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/samplegen_utils/yaml.py -------------------------------------------------------------------------------- /gapic/schema/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/__init__.py -------------------------------------------------------------------------------- /gapic/schema/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/api.py -------------------------------------------------------------------------------- /gapic/schema/imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/imp.py -------------------------------------------------------------------------------- /gapic/schema/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/metadata.py -------------------------------------------------------------------------------- /gapic/schema/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/mixins.py -------------------------------------------------------------------------------- /gapic/schema/naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/naming.py -------------------------------------------------------------------------------- /gapic/schema/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/schema/wrappers.py -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name/gapic_version.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name/gapic_version.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name/py.typed.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name/py.typed.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/_async_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/_async_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/_client_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/_client_macros.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/_shared_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/_shared_macros.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/async_client.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/async_client.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/client.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/client.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/pagers.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/pagers.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/README.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/README.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_rest_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_rest_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_rest_mixins_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/_rest_mixins_base.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/base.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/grpc.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/grpc.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/grpc_asyncio.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/grpc_asyncio.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest_asyncio.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest_asyncio.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/services/%service/transports/rest_base.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/services/__init__.py.j2: -------------------------------------------------------------------------------- 1 | {% extends '_base.py.j2' %} 2 | -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/types/%proto.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/types/%proto.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/types/__init__.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/types/__init__.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/types/_enum.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/types/_enum.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/%sub/types/_message.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/%sub/types/_message.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/gapic_metadata.json.j2: -------------------------------------------------------------------------------- 1 | {{ api.gapic_metadata_json(opts) }} 2 | -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/gapic_version.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/gapic_version.py.j2 -------------------------------------------------------------------------------- /gapic/templates/%namespace/%name_%version/py.typed.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/%namespace/%name_%version/py.typed.j2 -------------------------------------------------------------------------------- /gapic/templates/.coveragerc.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/.coveragerc.j2 -------------------------------------------------------------------------------- /gapic/templates/.flake8.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/.flake8.j2 -------------------------------------------------------------------------------- /gapic/templates/LICENSE.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/LICENSE.j2 -------------------------------------------------------------------------------- /gapic/templates/MANIFEST.in.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/MANIFEST.in.j2 -------------------------------------------------------------------------------- /gapic/templates/README.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/README.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/_base.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/_base.py.j2 -------------------------------------------------------------------------------- /gapic/templates/_license.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/_license.j2 -------------------------------------------------------------------------------- /gapic/templates/_pypi_packages.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/_pypi_packages.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/%name_%version/%service.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/%name_%version/%service.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/%name_%version/services_.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/%name_%version/services_.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/%name_%version/types_.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/%name_%version/types_.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/_static/custom.css.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/_static/custom.css.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/_templates/layout.html.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/_templates/layout.html.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/conf.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/conf.py.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/index.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/index.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/docs/multiprocessing.rst.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/docs/multiprocessing.rst.j2 -------------------------------------------------------------------------------- /gapic/templates/examples/_generated_sample_comment.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/examples/_generated_sample_comment.j2 -------------------------------------------------------------------------------- /gapic/templates/examples/feature_fragments.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/examples/feature_fragments.j2 -------------------------------------------------------------------------------- /gapic/templates/examples/sample.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/examples/sample.py.j2 -------------------------------------------------------------------------------- /gapic/templates/mypy.ini.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/mypy.ini.j2 -------------------------------------------------------------------------------- /gapic/templates/noxfile.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/noxfile.py.j2 -------------------------------------------------------------------------------- /gapic/templates/setup.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/setup.py.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/_default_constraints.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/_default_constraints.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.10.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.10.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.11.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.11.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.12.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.12.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.13.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.13.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.14.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.14.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.7.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.7.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.8.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.8.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/testing/constraints-3.9.txt.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/testing/constraints-3.9.txt.j2 -------------------------------------------------------------------------------- /gapic/templates/tests/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/templates/tests/unit/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/templates/tests/unit/gapic/%name_%version/%sub/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/templates/tests/unit/gapic/%name_%version/%sub/_test_mixins.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/tests/unit/gapic/%name_%version/%sub/_test_mixins.py.j2 -------------------------------------------------------------------------------- /gapic/templates/tests/unit/gapic/%name_%version/%sub/test_%service.py.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/tests/unit/gapic/%name_%version/%sub/test_%service.py.j2 -------------------------------------------------------------------------------- /gapic/templates/tests/unit/gapic/%name_%version/%sub/test_macros.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/templates/tests/unit/gapic/%name_%version/%sub/test_macros.j2 -------------------------------------------------------------------------------- /gapic/templates/tests/unit/gapic/__init__.py.j2: -------------------------------------------------------------------------------- 1 | 2 | {% extends '_base.py.j2' %} -------------------------------------------------------------------------------- /gapic/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/__init__.py -------------------------------------------------------------------------------- /gapic/utils/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/cache.py -------------------------------------------------------------------------------- /gapic/utils/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/case.py -------------------------------------------------------------------------------- /gapic/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/checks.py -------------------------------------------------------------------------------- /gapic/utils/code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/code.py -------------------------------------------------------------------------------- /gapic/utils/doc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/doc.py -------------------------------------------------------------------------------- /gapic/utils/filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/filename.py -------------------------------------------------------------------------------- /gapic/utils/lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/lines.py -------------------------------------------------------------------------------- /gapic/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/options.py -------------------------------------------------------------------------------- /gapic/utils/reserved_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/reserved_names.py -------------------------------------------------------------------------------- /gapic/utils/rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/rst.py -------------------------------------------------------------------------------- /gapic/utils/uri_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/uri_conv.py -------------------------------------------------------------------------------- /gapic/utils/uri_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic/utils/uri_sample.py -------------------------------------------------------------------------------- /gapic_generator_python.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/gapic_generator_python.bzl -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- 1 | [mypy] 2 | python_version = 3.8 3 | -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/noxfile.py -------------------------------------------------------------------------------- /pyenv3wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/pyenv3wrapper.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/renovate.json -------------------------------------------------------------------------------- /repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/repositories.bzl -------------------------------------------------------------------------------- /requirements.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/requirements.in -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /rules_python_gapic/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/BUILD.bazel -------------------------------------------------------------------------------- /rules_python_gapic/py_gapic.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/py_gapic.bzl -------------------------------------------------------------------------------- /rules_python_gapic/py_gapic_pkg.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/py_gapic_pkg.bzl -------------------------------------------------------------------------------- /rules_python_gapic/pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/pytest.py -------------------------------------------------------------------------------- /rules_python_gapic/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/test.py -------------------------------------------------------------------------------- /rules_python_gapic/test/BUILD.bazel: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rules_python_gapic/test/integration_test.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/rules_python_gapic/test/integration_test.bzl -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/setup.py -------------------------------------------------------------------------------- /test_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/test_utils/__init__.py -------------------------------------------------------------------------------- /test_utils/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/test_utils/test_utils.py -------------------------------------------------------------------------------- /tests/cert/mtls.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/cert/mtls.crt -------------------------------------------------------------------------------- /tests/cert/mtls.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/cert/mtls.key -------------------------------------------------------------------------------- /tests/fragments/google/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/README.rst -------------------------------------------------------------------------------- /tests/fragments/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/annotations.proto -------------------------------------------------------------------------------- /tests/fragments/google/api/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/client.proto -------------------------------------------------------------------------------- /tests/fragments/google/api/field_behavior.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/field_behavior.proto -------------------------------------------------------------------------------- /tests/fragments/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/http.proto -------------------------------------------------------------------------------- /tests/fragments/google/api/httpbody.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/httpbody.proto -------------------------------------------------------------------------------- /tests/fragments/google/api/routing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/api/routing.proto -------------------------------------------------------------------------------- /tests/fragments/google/cloud/extended_operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/cloud/extended_operations.proto -------------------------------------------------------------------------------- /tests/fragments/google/longrunning/operations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/longrunning/operations.proto -------------------------------------------------------------------------------- /tests/fragments/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/protobuf/any.proto -------------------------------------------------------------------------------- /tests/fragments/google/protobuf/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/protobuf/descriptor.proto -------------------------------------------------------------------------------- /tests/fragments/google/protobuf/struct.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/protobuf/struct.proto -------------------------------------------------------------------------------- /tests/fragments/google/rpc/status.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/rpc/status.proto -------------------------------------------------------------------------------- /tests/fragments/google/type/dayofweek.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/google/type/dayofweek.proto -------------------------------------------------------------------------------- /tests/fragments/import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/import.proto -------------------------------------------------------------------------------- /tests/fragments/test_api_version.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_api_version.proto -------------------------------------------------------------------------------- /tests/fragments/test_compute_operation.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_compute_operation.proto -------------------------------------------------------------------------------- /tests/fragments/test_dynamic_routing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_dynamic_routing.proto -------------------------------------------------------------------------------- /tests/fragments/test_enum_indexed_types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_enum_indexed_types.proto -------------------------------------------------------------------------------- /tests/fragments/test_enum_indexed_types_nonlocal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_enum_indexed_types_nonlocal.proto -------------------------------------------------------------------------------- /tests/fragments/test_extended_operation_forwardcompat_lro.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_extended_operation_forwardcompat_lro.proto -------------------------------------------------------------------------------- /tests/fragments/test_flattened_value.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_flattened_value.proto -------------------------------------------------------------------------------- /tests/fragments/test_google_protobuf_type.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_google_protobuf_type.proto -------------------------------------------------------------------------------- /tests/fragments/test_keyword_import.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_keyword_import.proto -------------------------------------------------------------------------------- /tests/fragments/test_multiple_required_fields.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_multiple_required_fields.proto -------------------------------------------------------------------------------- /tests/fragments/test_nested_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_nested_messages.proto -------------------------------------------------------------------------------- /tests/fragments/test_non_primitive_body.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_non_primitive_body.proto -------------------------------------------------------------------------------- /tests/fragments/test_oneof_imported_response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_oneof_imported_response.proto -------------------------------------------------------------------------------- /tests/fragments/test_optional_signature.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_optional_signature.proto -------------------------------------------------------------------------------- /tests/fragments/test_pagination_max_results_and_wrapper.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_pagination_max_results_and_wrapper.proto -------------------------------------------------------------------------------- /tests/fragments/test_recursive_messages.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_recursive_messages.proto -------------------------------------------------------------------------------- /tests/fragments/test_repeated_double.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_repeated_double.proto -------------------------------------------------------------------------------- /tests/fragments/test_required_non_string.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_required_non_string.proto -------------------------------------------------------------------------------- /tests/fragments/test_reserved_field_name.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_reserved_field_name.proto -------------------------------------------------------------------------------- /tests/fragments/test_reserved_method_names.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_reserved_method_names.proto -------------------------------------------------------------------------------- /tests/fragments/test_rest_streaming.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/fragments/test_rest_streaming.proto -------------------------------------------------------------------------------- /tests/integration/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/cloudasset_grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/cloudasset_grpc_service_config.json -------------------------------------------------------------------------------- /tests/integration/cloudasset_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/cloudasset_v1.yaml -------------------------------------------------------------------------------- /tests/integration/eventarc_grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/eventarc_grpc_service_config.json -------------------------------------------------------------------------------- /tests/integration/eventarc_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/eventarc_v1.yaml -------------------------------------------------------------------------------- /tests/integration/goldens/asset/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/asset/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/asset/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/asset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/asset/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/asset/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/asset_v1/asset_service.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/asset_v1/asset_service.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/asset_v1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/asset_v1/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/asset_v1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/asset_v1/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-asset package uses inline types. 3 | -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/py.typed: -------------------------------------------------------------------------------- 1 | # Marker file for PEP 561. 2 | # The google-cloud-asset package uses inline types. 3 | -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/base.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/grpc.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/rest.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/services/asset_service/transports/rest_base.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/types/asset_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/types/asset_service.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/google/cloud/asset_v1/types/assets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/google/cloud/asset_v1/types/assets.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/asset/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/samples/generated_samples/snippet_metadata_google.cloud.asset.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/samples/generated_samples/snippet_metadata_google.cloud.asset.v1.json -------------------------------------------------------------------------------- /tests/integration/goldens/asset/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/asset/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/tests/unit/gapic/asset_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/tests/unit/gapic/asset_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/asset/tests/unit/gapic/asset_v1/test_asset_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/asset/tests/unit/gapic/asset_v1/test_asset_service.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/credentials_v1/iam_credentials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/credentials_v1/iam_credentials.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/credentials_v1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/credentials_v1/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/credentials_v1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/credentials_v1/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/services/iam_credentials/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/services/iam_credentials/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/services/iam_credentials/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/services/iam_credentials/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/types/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/types/common.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/google/iam/credentials_v1/types/iamcredentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/google/iam/credentials_v1/types/iamcredentials.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/tests/unit/gapic/credentials_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/tests/unit/gapic/credentials_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/credentials/tests/unit/gapic/credentials_v1/test_iam_credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/credentials/tests/unit/gapic/credentials_v1/test_iam_credentials.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/eventarc_v1/eventarc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/eventarc_v1/eventarc.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/eventarc_v1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/eventarc_v1/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/eventarc_v1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/eventarc_v1/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/base.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/grpc.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/rest.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/services/eventarc/transports/rest_base.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/channel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/channel.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/channel_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/channel_connection.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/discovery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/discovery.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/eventarc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/eventarc.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/google_channel_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/google_channel_config.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/trigger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/google/cloud/eventarc_v1/types/trigger.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/tests/unit/gapic/eventarc_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/tests/unit/gapic/eventarc_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/eventarc/tests/unit/gapic/eventarc_v1/test_eventarc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/eventarc/tests/unit/gapic/eventarc_v1/test_eventarc.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/logging/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/logging/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/logging/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/logging/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/logging/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/logging_v2/config_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/logging_v2/config_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/logging_v2/logging_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/logging_v2/logging_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/logging_v2/metrics_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/logging_v2/metrics_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/logging_v2/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/logging_v2/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/logging_v2/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/logging_v2/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/config_service_v2/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/logging_service_v2/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/services/metrics_service_v2/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/types/log_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/types/log_entry.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/types/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/types/logging.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/types/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/types/logging_config.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/google/cloud/logging_v2/types/logging_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/google/cloud/logging_v2/types/logging_metrics.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/logging/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/samples/generated_samples/snippet_metadata_google.logging.v2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/samples/generated_samples/snippet_metadata_google.logging.v2.json -------------------------------------------------------------------------------- /tests/integration/goldens/logging/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/gapic/logging_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/gapic/logging_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_config_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_config_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_logging_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_logging_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_metrics_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging/tests/unit/gapic/logging_v2/test_metrics_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/logging_v2/config_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/logging_v2/config_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/logging_v2/logging_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/logging_v2/logging_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/logging_v2/metrics_service_v2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/logging_v2/metrics_service_v2.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/logging_v2/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/logging_v2/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/logging_v2/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/logging_v2/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/log_entry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/log_entry.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging_config.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/google/cloud/logging_v2/types/logging_metrics.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_config_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_config_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_logging_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_logging_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_metrics_service_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/logging_internal/tests/unit/gapic/logging_v2/test_metrics_service_v2.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/redis/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/redis/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/redis/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/redis/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/redis/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/redis_v1/cloud_redis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/redis_v1/cloud_redis.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/redis_v1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/redis_v1/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/docs/redis_v1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/docs/redis_v1/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/base.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/grpc.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/grpc_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/grpc_asyncio.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest_asyncio.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/services/cloud_redis/transports/rest_base.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/google/cloud/redis_v1/types/cloud_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/google/cloud/redis_v1/types/cloud_redis.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/redis/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/samples/generated_samples/snippet_metadata_google.cloud.redis.v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/samples/generated_samples/snippet_metadata_google.cloud.redis.v1.json -------------------------------------------------------------------------------- /tests/integration/goldens/redis/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/tests/unit/gapic/redis_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/tests/unit/gapic/redis_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis/tests/unit/gapic/redis_v1/test_cloud_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis/tests/unit/gapic/redis_v1/test_cloud_redis.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/.coveragerc -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/.flake8 -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/BUILD.bazel: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/BUILD.bazel -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/LICENSE -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/MANIFEST.in -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/README.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/_static/custom.css -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/_templates/layout.html -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/conf.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/index.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/multiprocessing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/multiprocessing.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/redis_v1/cloud_redis.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/redis_v1/cloud_redis.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/redis_v1/services_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/redis_v1/services_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/docs/redis_v1/types_.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/docs/redis_v1/types_.rst -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/gapic_metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/gapic_metadata.json -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/gapic_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/gapic_version.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/py.typed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/py.typed -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/async_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/async_client.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/client.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/pagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/services/cloud_redis/pagers.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/types/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/types/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/google/cloud/redis_v1/types/cloud_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/google/cloud/redis_v1/types/cloud_redis.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/mypy.ini -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/noxfile.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/setup.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.10.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.11.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.12.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.13.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.14.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.7.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.8.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/testing/constraints-3.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/testing/constraints-3.9.txt -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/tests/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/tests/unit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/tests/unit/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/tests/unit/gapic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/tests/unit/gapic/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/tests/unit/gapic/redis_v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/tests/unit/gapic/redis_v1/__init__.py -------------------------------------------------------------------------------- /tests/integration/goldens/redis_selective/tests/unit/gapic/redis_v1/test_cloud_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/goldens/redis_selective/tests/unit/gapic/redis_v1/test_cloud_redis.py -------------------------------------------------------------------------------- /tests/integration/iamcredentials_grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/iamcredentials_grpc_service_config.json -------------------------------------------------------------------------------- /tests/integration/iamcredentials_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/iamcredentials_v1.yaml -------------------------------------------------------------------------------- /tests/integration/logging_grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/logging_grpc_service_config.json -------------------------------------------------------------------------------- /tests/integration/logging_internal_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/logging_internal_v2.yaml -------------------------------------------------------------------------------- /tests/integration/logging_v2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/logging_v2.yaml -------------------------------------------------------------------------------- /tests/integration/redis_grpc_service_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/redis_grpc_service_config.json -------------------------------------------------------------------------------- /tests/integration/redis_selective_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/redis_selective_v1.yaml -------------------------------------------------------------------------------- /tests/integration/redis_v1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/integration/redis_v1.yaml -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_list_resources_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_list_resources_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_list_resources_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_list_resources_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_bidi_streaming_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_bidi_streaming_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_bidi_streaming_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_bidi_streaming_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_lro_signatures_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_lro_signatures_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_lro_signatures_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_lro_signatures_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_one_signature_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_one_signature_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_one_signature_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_one_signature_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_server_streaming_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_server_streaming_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_server_streaming_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_method_server_streaming_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_required_field_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_required_field_async.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_required_field_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_required_field_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/mollusca_v1_generated_snippets_one_of_method_sync.py -------------------------------------------------------------------------------- /tests/snippetgen/goldens/snippet_metadata_mollusca_v1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/goldens/snippet_metadata_mollusca_v1.json -------------------------------------------------------------------------------- /tests/snippetgen/snippets.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/snippets.proto -------------------------------------------------------------------------------- /tests/snippetgen/test_snippetgen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/snippetgen/test_snippetgen.py -------------------------------------------------------------------------------- /tests/system/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/conftest.py -------------------------------------------------------------------------------- /tests/system/test_api_version_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_api_version_header.py -------------------------------------------------------------------------------- /tests/system/test_client_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_client_context_manager.py -------------------------------------------------------------------------------- /tests/system/test_error_details.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_error_details.py -------------------------------------------------------------------------------- /tests/system/test_grpc_interceptor_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_grpc_interceptor_streams.py -------------------------------------------------------------------------------- /tests/system/test_lro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_lro.py -------------------------------------------------------------------------------- /tests/system/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_mixins.py -------------------------------------------------------------------------------- /tests/system/test_pagination.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_pagination.py -------------------------------------------------------------------------------- /tests/system/test_request_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_request_metadata.py -------------------------------------------------------------------------------- /tests/system/test_resource_crud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_resource_crud.py -------------------------------------------------------------------------------- /tests/system/test_response_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_response_metadata.py -------------------------------------------------------------------------------- /tests/system/test_retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_retry.py -------------------------------------------------------------------------------- /tests/system/test_streams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_streams.py -------------------------------------------------------------------------------- /tests/system/test_unary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_unary.py -------------------------------------------------------------------------------- /tests/system/test_universe_domain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/system/test_universe_domain.py -------------------------------------------------------------------------------- /tests/unit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/common_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/common_types.py -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/resources/README.md -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/resources/speech/request.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/resources/speech/request.desc -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/resources/speech/speech_createCustomClass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/resources/speech/speech_createCustomClass.json -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/test_configured_snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/test_configured_snippet.py -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/test_libcst_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/test_libcst_utils.py -------------------------------------------------------------------------------- /tests/unit/configurable_snippetgen/test_resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/configurable_snippetgen/test_resources.py -------------------------------------------------------------------------------- /tests/unit/generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/generator/test_formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/generator/test_formatter.py -------------------------------------------------------------------------------- /tests/unit/generator/test_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/generator/test_generator.py -------------------------------------------------------------------------------- /tests/unit/generator/test_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/generator/test_options.py -------------------------------------------------------------------------------- /tests/unit/samplegen/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/unit/samplegen/golden_snippets/sample_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/golden_snippets/sample_basic.py -------------------------------------------------------------------------------- /tests/unit/samplegen/golden_snippets/sample_basic_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/golden_snippets/sample_basic_async.py -------------------------------------------------------------------------------- /tests/unit/samplegen/golden_snippets/sample_basic_internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/golden_snippets/sample_basic_internal.py -------------------------------------------------------------------------------- /tests/unit/samplegen/golden_snippets/sample_basic_unflattenable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/golden_snippets/sample_basic_unflattenable.py -------------------------------------------------------------------------------- /tests/unit/samplegen/golden_snippets/sample_basic_void_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/golden_snippets/sample_basic_void_method.py -------------------------------------------------------------------------------- /tests/unit/samplegen/test_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/test_integration.py -------------------------------------------------------------------------------- /tests/unit/samplegen/test_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/test_manifest.py -------------------------------------------------------------------------------- /tests/unit/samplegen/test_samplegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/test_samplegen.py -------------------------------------------------------------------------------- /tests/unit/samplegen/test_snippet_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/test_snippet_index.py -------------------------------------------------------------------------------- /tests/unit/samplegen/test_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/samplegen/test_template.py -------------------------------------------------------------------------------- /tests/unit/schema/test_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/test_api.py -------------------------------------------------------------------------------- /tests/unit/schema/test_imp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/test_imp.py -------------------------------------------------------------------------------- /tests/unit/schema/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/test_metadata.py -------------------------------------------------------------------------------- /tests/unit/schema/test_naming.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/test_naming.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_enums.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_field.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_field.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_message.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_method.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_oneof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_oneof.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_python.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_routing.py -------------------------------------------------------------------------------- /tests/unit/schema/wrappers/test_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/schema/wrappers/test_service.py -------------------------------------------------------------------------------- /tests/unit/utils/test_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_cache.py -------------------------------------------------------------------------------- /tests/unit/utils/test_case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_case.py -------------------------------------------------------------------------------- /tests/unit/utils/test_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_checks.py -------------------------------------------------------------------------------- /tests/unit/utils/test_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_code.py -------------------------------------------------------------------------------- /tests/unit/utils/test_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_filename.py -------------------------------------------------------------------------------- /tests/unit/utils/test_lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_lines.py -------------------------------------------------------------------------------- /tests/unit/utils/test_rst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_rst.py -------------------------------------------------------------------------------- /tests/unit/utils/test_uri_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_uri_conv.py -------------------------------------------------------------------------------- /tests/unit/utils/test_uri_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googleapis/gapic-generator-python/HEAD/tests/unit/utils/test_uri_sample.py --------------------------------------------------------------------------------