-
Notifications
You must be signed in to change notification settings - Fork 104
chore: librarian generate pull request: 20260323T221520Z #1518
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,8 +20,8 @@ | |
| import os | ||
| import re | ||
| from typing import ( | ||
| Callable, | ||
| Dict, | ||
| Callable, | ||
| Mapping, | ||
| MutableMapping, | ||
| MutableSequence, | ||
|
|
@@ -35,19 +35,19 @@ | |
| import uuid | ||
| import warnings | ||
|
|
||
| from google.cloud.spanner_admin_database_v1 import gapic_version as package_version | ||
|
|
||
| from google.api_core import client_options as client_options_lib | ||
| from google.api_core import exceptions as core_exceptions | ||
| from google.api_core import gapic_v1 | ||
| from google.api_core import retry as retries | ||
| from google.auth import credentials as ga_credentials # type: ignore | ||
| from google.auth.exceptions import MutualTLSChannelError # type: ignore | ||
| from google.auth.transport import mtls # type: ignore | ||
| from google.auth.transport.grpc import SslCredentials # type: ignore | ||
| from google.auth.exceptions import MutualTLSChannelError # type: ignore | ||
| from google.oauth2 import service_account # type: ignore | ||
| import google.protobuf | ||
|
|
||
| from google.cloud.spanner_admin_database_v1 import gapic_version as package_version | ||
|
|
||
| try: | ||
| OptionalRetry = Union[retries.Retry, gapic_v1.method._MethodDefault, None] | ||
| except AttributeError: # pragma: NO COVER | ||
|
|
@@ -64,24 +64,24 @@ | |
|
|
||
| from google.api_core import operation # type: ignore | ||
| from google.api_core import operation_async # type: ignore | ||
| from google.cloud.spanner_admin_database_v1.services.database_admin import pagers | ||
| from google.cloud.spanner_admin_database_v1.types import backup | ||
| from google.cloud.spanner_admin_database_v1.types import backup as gsad_backup | ||
| from google.cloud.spanner_admin_database_v1.types import backup_schedule | ||
| from google.cloud.spanner_admin_database_v1.types import ( | ||
| backup_schedule as gsad_backup_schedule, | ||
| ) | ||
| from google.cloud.spanner_admin_database_v1.types import common | ||
| from google.cloud.spanner_admin_database_v1.types import spanner_database_admin | ||
| from google.iam.v1 import iam_policy_pb2 # type: ignore | ||
| from google.iam.v1 import policy_pb2 # type: ignore | ||
| from google.longrunning import operations_pb2 # type: ignore | ||
| from google.longrunning import operations_pb2 # type: ignore | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| from google.protobuf import duration_pb2 # type: ignore | ||
| from google.protobuf import empty_pb2 # type: ignore | ||
| from google.protobuf import field_mask_pb2 # type: ignore | ||
| from google.protobuf import timestamp_pb2 # type: ignore | ||
|
|
||
| from google.cloud.spanner_admin_database_v1.services.database_admin import pagers | ||
| from google.cloud.spanner_admin_database_v1.types import common, spanner_database_admin | ||
| from google.cloud.spanner_admin_database_v1.types import ( | ||
| backup_schedule as gsad_backup_schedule, | ||
| ) | ||
| from google.cloud.spanner_admin_database_v1.types import backup | ||
| from google.cloud.spanner_admin_database_v1.types import backup as gsad_backup | ||
| from google.cloud.spanner_admin_database_v1.types import backup_schedule | ||
|
|
||
| from .transports.base import DEFAULT_CLIENT_INFO, DatabaseAdminTransport | ||
| from .transports.base import DatabaseAdminTransport, DEFAULT_CLIENT_INFO | ||
| from .transports.grpc import DatabaseAdminGrpcTransport | ||
| from .transports.grpc_asyncio import DatabaseAdminGrpcAsyncIOTransport | ||
| from .transports.rest import DatabaseAdminRestTransport | ||
|
|
||
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This import of
google.longrunning.operations_pb2is duplicated. Please remove one of them to keep the imports clean.