├── .github └── workflows │ ├── docs.yml │ ├── main.yaml │ ├── release.yaml │ └── validate-docs.yml ├── .gitignore ├── .python-version ├── .vscode └── settings.json ├── LICENSE.md ├── Makefile ├── README.md ├── docs ├── CNAME ├── authentication.md ├── index.md └── services │ ├── api_gateway.md │ ├── api_key.md │ ├── app_engine.md │ ├── big_query.md │ ├── build.md │ ├── calendar.md │ ├── chats.md │ ├── datastore.md │ ├── datastream.md │ ├── directory.md │ ├── dns.md │ ├── error_reporting.md │ ├── firestore.md │ ├── functions.md │ ├── healthcare.md │ ├── iam.md │ ├── iap.md │ ├── identity_platform.md │ ├── index.md │ ├── logging.md │ ├── mocker.md │ ├── monitoring.md │ ├── people.md │ ├── pubsub.md │ ├── resource.md │ ├── run.md │ ├── scheduler.md │ ├── secret_manager.md │ ├── service_usage.md │ ├── sheets.md │ ├── source.md │ ├── speech.md │ ├── sql.md │ ├── storage.md │ └── tasks.md ├── gcp_pilot ├── __init__.py ├── api_gateway.py ├── api_key.py ├── app_engine.py ├── base.py ├── big_query.py ├── build.py ├── calendar.py ├── chats.py ├── datastore.py ├── datastream.py ├── directory.py ├── dns.py ├── drive.py ├── error_reporting.py ├── exceptions.py ├── factories │ ├── __init__.py │ └── identity_platform.py ├── firestore │ ├── __init__.py │ ├── atomic.py │ ├── document.py │ ├── exceptions.py │ ├── factory.py │ ├── fqn.py │ ├── manager.py │ ├── operations.py │ ├── paginator.py │ ├── query.py │ └── subcollection.py ├── functions.py ├── healthcare.py ├── iam.py ├── iap.py ├── identity_platform.py ├── logging.py ├── mocker.py ├── monitoring.py ├── people.py ├── pubsub.py ├── resource.py ├── run.py ├── scheduler.py ├── secret_manager.py ├── service_usage.py ├── sheets.py ├── source.py ├── speech.py ├── sql.py ├── storage.py └── tasks.py ├── mkdocs.yml ├── pyproject.toml ├── tests ├── __init__.py └── gcp_pilot │ ├── __init__.py │ ├── bigquery_test.py │ ├── build_test.py │ ├── calendar_test.py │ ├── chats_test.py │ ├── datastore_test.py │ ├── directory_test.py │ ├── dns_test.py │ ├── error_reporting_test.py │ ├── firestore_test │ ├── __init__.py │ ├── aggregation_test.py │ ├── atomic_operations_test.py │ ├── atomic_writes_test.py │ ├── basic_orm_test.py │ ├── conftest.py │ ├── data_types_test.py │ ├── date_handling_test.py │ ├── filtering_test.py │ ├── pagination_test.py │ ├── paginator_test.py │ ├── query_test.py │ └── subcollection_test.py │ ├── functions_test.py │ ├── google_drive_files_test.py │ ├── google_drive_permissions_test.py │ ├── healthcare_test.py │ ├── iam_test.py │ ├── identity_platform_test.py │ ├── logging_test.py │ ├── mocker_test.py │ ├── monitoring_test.py │ ├── pubsub_test.py │ ├── resource_test.py │ ├── run_test.py │ ├── samples │ └── identity_platform │ │ ├── firebase_signin_decoded_token.json │ │ ├── firebase_tenant_oidc_signin_decoded_token.json │ │ └── firebase_tenant_signin_decoded_token.json │ ├── scheduler_test.py │ ├── secret_manager_test.py │ ├── sheets_test.py │ ├── source_test.py │ ├── speech_test.py │ ├── sql_test.py │ ├── storage_test.py │ └── tasks_test.py └── uv.lock /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.github/workflows/main.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/validate-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.github/workflows/validate-docs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.13.3 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/README.md -------------------------------------------------------------------------------- /docs/CNAME: -------------------------------------------------------------------------------- 1 | gcp-pilot.flamingo.codes -------------------------------------------------------------------------------- /docs/authentication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/authentication.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/services/api_gateway.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/api_gateway.md -------------------------------------------------------------------------------- /docs/services/api_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/api_key.md -------------------------------------------------------------------------------- /docs/services/app_engine.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/app_engine.md -------------------------------------------------------------------------------- /docs/services/big_query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/big_query.md -------------------------------------------------------------------------------- /docs/services/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/build.md -------------------------------------------------------------------------------- /docs/services/calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/calendar.md -------------------------------------------------------------------------------- /docs/services/chats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/chats.md -------------------------------------------------------------------------------- /docs/services/datastore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/datastore.md -------------------------------------------------------------------------------- /docs/services/datastream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/datastream.md -------------------------------------------------------------------------------- /docs/services/directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/directory.md -------------------------------------------------------------------------------- /docs/services/dns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/dns.md -------------------------------------------------------------------------------- /docs/services/error_reporting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/error_reporting.md -------------------------------------------------------------------------------- /docs/services/firestore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/firestore.md -------------------------------------------------------------------------------- /docs/services/functions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/functions.md -------------------------------------------------------------------------------- /docs/services/healthcare.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/healthcare.md -------------------------------------------------------------------------------- /docs/services/iam.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/iam.md -------------------------------------------------------------------------------- /docs/services/iap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/iap.md -------------------------------------------------------------------------------- /docs/services/identity_platform.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/identity_platform.md -------------------------------------------------------------------------------- /docs/services/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/index.md -------------------------------------------------------------------------------- /docs/services/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/logging.md -------------------------------------------------------------------------------- /docs/services/mocker.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/mocker.md -------------------------------------------------------------------------------- /docs/services/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/monitoring.md -------------------------------------------------------------------------------- /docs/services/people.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/people.md -------------------------------------------------------------------------------- /docs/services/pubsub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/pubsub.md -------------------------------------------------------------------------------- /docs/services/resource.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/resource.md -------------------------------------------------------------------------------- /docs/services/run.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/run.md -------------------------------------------------------------------------------- /docs/services/scheduler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/scheduler.md -------------------------------------------------------------------------------- /docs/services/secret_manager.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/secret_manager.md -------------------------------------------------------------------------------- /docs/services/service_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/service_usage.md -------------------------------------------------------------------------------- /docs/services/sheets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/sheets.md -------------------------------------------------------------------------------- /docs/services/source.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/source.md -------------------------------------------------------------------------------- /docs/services/speech.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/speech.md -------------------------------------------------------------------------------- /docs/services/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/sql.md -------------------------------------------------------------------------------- /docs/services/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/storage.md -------------------------------------------------------------------------------- /docs/services/tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/docs/services/tasks.md -------------------------------------------------------------------------------- /gcp_pilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp_pilot/api_gateway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/api_gateway.py -------------------------------------------------------------------------------- /gcp_pilot/api_key.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/api_key.py -------------------------------------------------------------------------------- /gcp_pilot/app_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/app_engine.py -------------------------------------------------------------------------------- /gcp_pilot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/base.py -------------------------------------------------------------------------------- /gcp_pilot/big_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/big_query.py -------------------------------------------------------------------------------- /gcp_pilot/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/build.py -------------------------------------------------------------------------------- /gcp_pilot/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/calendar.py -------------------------------------------------------------------------------- /gcp_pilot/chats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/chats.py -------------------------------------------------------------------------------- /gcp_pilot/datastore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/datastore.py -------------------------------------------------------------------------------- /gcp_pilot/datastream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/datastream.py -------------------------------------------------------------------------------- /gcp_pilot/directory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/directory.py -------------------------------------------------------------------------------- /gcp_pilot/dns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/dns.py -------------------------------------------------------------------------------- /gcp_pilot/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/drive.py -------------------------------------------------------------------------------- /gcp_pilot/error_reporting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/error_reporting.py -------------------------------------------------------------------------------- /gcp_pilot/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/exceptions.py -------------------------------------------------------------------------------- /gcp_pilot/factories/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gcp_pilot/factories/identity_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/factories/identity_platform.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/__init__.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/atomic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/atomic.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/document.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/exceptions.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/factory.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/fqn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/fqn.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/manager.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/operations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/operations.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/paginator.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/query.py -------------------------------------------------------------------------------- /gcp_pilot/firestore/subcollection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/firestore/subcollection.py -------------------------------------------------------------------------------- /gcp_pilot/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/functions.py -------------------------------------------------------------------------------- /gcp_pilot/healthcare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/healthcare.py -------------------------------------------------------------------------------- /gcp_pilot/iam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/iam.py -------------------------------------------------------------------------------- /gcp_pilot/iap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/iap.py -------------------------------------------------------------------------------- /gcp_pilot/identity_platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/identity_platform.py -------------------------------------------------------------------------------- /gcp_pilot/logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/logging.py -------------------------------------------------------------------------------- /gcp_pilot/mocker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/mocker.py -------------------------------------------------------------------------------- /gcp_pilot/monitoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/monitoring.py -------------------------------------------------------------------------------- /gcp_pilot/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/people.py -------------------------------------------------------------------------------- /gcp_pilot/pubsub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/pubsub.py -------------------------------------------------------------------------------- /gcp_pilot/resource.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/resource.py -------------------------------------------------------------------------------- /gcp_pilot/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/run.py -------------------------------------------------------------------------------- /gcp_pilot/scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/scheduler.py -------------------------------------------------------------------------------- /gcp_pilot/secret_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/secret_manager.py -------------------------------------------------------------------------------- /gcp_pilot/service_usage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/service_usage.py -------------------------------------------------------------------------------- /gcp_pilot/sheets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/sheets.py -------------------------------------------------------------------------------- /gcp_pilot/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/source.py -------------------------------------------------------------------------------- /gcp_pilot/speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/speech.py -------------------------------------------------------------------------------- /gcp_pilot/sql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/sql.py -------------------------------------------------------------------------------- /gcp_pilot/storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/storage.py -------------------------------------------------------------------------------- /gcp_pilot/tasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/gcp_pilot/tasks.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/gcp_pilot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gcp_pilot/bigquery_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/bigquery_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/build_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/build_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/calendar_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/calendar_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/chats_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/chats_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/datastore_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/datastore_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/directory_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/directory_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/dns_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/dns_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/error_reporting_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/error_reporting_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/aggregation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/aggregation_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/atomic_operations_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/atomic_operations_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/atomic_writes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/atomic_writes_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/basic_orm_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/basic_orm_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/conftest.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/data_types_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/data_types_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/date_handling_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/date_handling_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/filtering_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/filtering_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/pagination_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/pagination_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/paginator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/paginator_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/query_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/query_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/firestore_test/subcollection_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/firestore_test/subcollection_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/functions_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/google_drive_files_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/google_drive_files_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/google_drive_permissions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/google_drive_permissions_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/healthcare_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/healthcare_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/iam_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/iam_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/identity_platform_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/identity_platform_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/logging_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/logging_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/mocker_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/mocker_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/monitoring_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/monitoring_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/pubsub_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/pubsub_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/resource_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/resource_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/run_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/run_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/samples/identity_platform/firebase_signin_decoded_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/samples/identity_platform/firebase_signin_decoded_token.json -------------------------------------------------------------------------------- /tests/gcp_pilot/samples/identity_platform/firebase_tenant_oidc_signin_decoded_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/samples/identity_platform/firebase_tenant_oidc_signin_decoded_token.json -------------------------------------------------------------------------------- /tests/gcp_pilot/samples/identity_platform/firebase_tenant_signin_decoded_token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/samples/identity_platform/firebase_tenant_signin_decoded_token.json -------------------------------------------------------------------------------- /tests/gcp_pilot/scheduler_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/scheduler_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/secret_manager_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/secret_manager_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/sheets_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/sheets_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/source_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/source_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/speech_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/speech_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/sql_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/sql_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/storage_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/storage_test.py -------------------------------------------------------------------------------- /tests/gcp_pilot/tasks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/tests/gcp_pilot/tasks_test.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flamingo-run/gcp-pilot/HEAD/uv.lock --------------------------------------------------------------------------------