feat(google/maps/mapmanagement/v2): onboard a new library - #18173
feat(google/maps/mapmanagement/v2): onboard a new library#18173quirogas wants to merge 1 commit into
Conversation
There was a problem hiding this comment.
Code Review
This pull request introduces the google-maps-mapmanagement package, adding the generated Python client library for the Google Maps Map Management v2 API. This includes sync and async clients, transports, types, documentation, generated samples, and release configuration updates. The review feedback suggests sorting the __all__ lists alphabetically in both the main package and types initialization files to improve code readability and maintainability.
| __all__ = ( | ||
| "MapManagementAsyncClient", | ||
| "CreateMapConfigRequest", | ||
| "CreateMapContextConfigRequest", | ||
| "CreateStyleConfigRequest", | ||
| "DeleteMapConfigRequest", | ||
| "DeleteMapContextConfigRequest", | ||
| "DeleteStyleConfigRequest", | ||
| "GetMapConfigRequest", | ||
| "GetMapContextConfigRequest", | ||
| "GetStyleConfigRequest", | ||
| "ListMapConfigsRequest", | ||
| "ListMapConfigsResponse", | ||
| "ListMapContextConfigsRequest", | ||
| "ListMapContextConfigsResponse", | ||
| "ListStyleConfigsRequest", | ||
| "ListStyleConfigsResponse", | ||
| "MapConfig", | ||
| "MapContextConfig", | ||
| "MapFeatures", | ||
| "MapManagementClient", | ||
| "MapRenderingType", | ||
| "StyleConfig", | ||
| "StyleConfigView", | ||
| "UpdateMapConfigRequest", | ||
| "UpdateMapContextConfigRequest", | ||
| "UpdateStyleConfigRequest", | ||
| ) |
There was a problem hiding this comment.
The __all__ list in a Python module should be alphabetically sorted to improve readability and maintainability.
__all__ = (
"CreateMapConfigRequest",
"CreateMapContextConfigRequest",
"CreateStyleConfigRequest",
"DeleteMapConfigRequest",
"DeleteMapContextConfigRequest",
"DeleteStyleConfigRequest",
"GetMapConfigRequest",
"GetMapContextConfigRequest",
"GetStyleConfigRequest",
"ListMapConfigsRequest",
"ListMapConfigsResponse",
"ListMapContextConfigsRequest",
"ListMapContextConfigsResponse",
"ListStyleConfigsRequest",
"ListStyleConfigsResponse",
"MapConfig",
"MapContextConfig",
"MapFeatures",
"MapManagementAsyncClient",
"MapManagementClient",
"MapRenderingType",
"StyleConfig",
"StyleConfigView",
"UpdateMapConfigRequest",
"UpdateMapContextConfigRequest",
"UpdateStyleConfigRequest",
)References
- The
__all__list in a Python module should be alphabetically sorted to improve readability and maintainability.
| __all__ = ( | ||
| "CreateMapConfigRequest", | ||
| "CreateMapContextConfigRequest", | ||
| "CreateStyleConfigRequest", | ||
| "DeleteMapConfigRequest", | ||
| "DeleteMapContextConfigRequest", | ||
| "DeleteStyleConfigRequest", | ||
| "GetMapConfigRequest", | ||
| "GetMapContextConfigRequest", | ||
| "GetStyleConfigRequest", | ||
| "ListMapConfigsRequest", | ||
| "ListMapConfigsResponse", | ||
| "ListMapContextConfigsRequest", | ||
| "ListMapContextConfigsResponse", | ||
| "ListStyleConfigsRequest", | ||
| "ListStyleConfigsResponse", | ||
| "MapConfig", | ||
| "MapContextConfig", | ||
| "MapFeatures", | ||
| "StyleConfig", | ||
| "UpdateMapConfigRequest", | ||
| "UpdateMapContextConfigRequest", | ||
| "UpdateStyleConfigRequest", | ||
| "MapRenderingType", | ||
| "StyleConfigView", | ||
| ) |
There was a problem hiding this comment.
To improve maintainability, please keep the __all__ list sorted alphabetically.
__all__ = (
"CreateMapConfigRequest",
"CreateMapContextConfigRequest",
"CreateStyleConfigRequest",
"DeleteMapConfigRequest",
"DeleteMapContextConfigRequest",
"DeleteStyleConfigRequest",
"GetMapConfigRequest",
"GetMapContextConfigRequest",
"GetStyleConfigRequest",
"ListMapConfigsRequest",
"ListMapConfigsResponse",
"ListMapContextConfigsRequest",
"ListMapContextConfigsResponse",
"ListStyleConfigsRequest",
"ListStyleConfigsResponse",
"MapConfig",
"MapContextConfig",
"MapFeatures",
"MapRenderingType",
"StyleConfig",
"StyleConfigView",
"UpdateMapConfigRequest",
"UpdateMapContextConfigRequest",
"UpdateStyleConfigRequest",
)References
- The
__all__list in a Python module should be alphabetically sorted to improve readability and maintainability.
|
Do not merge until #18013 has been merged. |
PiperOrigin-RevId: 963642371
Fixes b/545715827