feat: implement Google Workspace clients foundation#1035
Merged
Conversation
sylviamclaughlin
approved these changes
Jan 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary | Résumé
This pull request introduces a new infrastructure layer for Google Workspace API clients, including a robust, reusable executor for Google API calls with built-in retry and error handling, a session provider for authentication and service instantiation, and a facade for accessing all service clients. It also adds comprehensive unit tests and shared fixtures to ensure reliability and testability.
Google Workspace Infrastructure Layer
GoogleWorkspaceClientsfacade class to provide a unified interface for all Google Workspace service clients, improving discoverability and dependency injection. (facade.py)SessionProviderclass to centralize authentication, service account delegation, and Google API service creation, ensuring thread safety and proper credential management. (session_provider.py)executor.pymodule with anexecute_google_api_callfunction that standardizes API call execution, including configurable retries, exponential backoff, rate limit handling, and error normalization. (executor.py)Testing Infrastructure
test_executor.py)conftest.py)__init__.py)Public API and Documentation
__init__.pyto guide developers in integrating the new infrastructure layer. (__init__.py)