Skip to content
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

feat: add operations rest client to support long-running operations. #311

Merged
merged 7 commits into from Nov 25, 2021
Merged
Show file tree
Hide file tree
Changes from 6 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion google/api_core/operations_v1/__init__.py
Expand Up @@ -16,5 +16,12 @@

from google.api_core.operations_v1.operations_async_client import OperationsAsyncClient
from google.api_core.operations_v1.operations_client import OperationsClient
from google.api_core.operations_v1.operations_rest_client import OperationsRestClient
from google.api_core.operations_v1.transports.rest import OperationsRestTransport

__all__ = ["OperationsAsyncClient", "OperationsClient"]
__all__ = [
"OperationsAsyncClient",
"OperationsClient",
"OperationsRestClient",
"OperationsRestTransport"
]