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

docs: update comments #11661

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@


class RapidMigrationAssessmentAsyncClient:
"""Rapid Migration Assessment service"""
"""Service describing handlers for resources."""

_client: RapidMigrationAssessmentClient

Expand Down Expand Up @@ -991,7 +991,8 @@ async def delete_collector(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation_async.AsyncOperation:
r"""Deletes a single Collector - changes state of
collector to "Deleting".
collector to "Deleting". Background jobs does final
deletion thorugh producer api.

.. code-block:: python

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ def get_transport_class(


class RapidMigrationAssessmentClient(metaclass=RapidMigrationAssessmentClientMeta):
"""Rapid Migration Assessment service"""
"""Service describing handlers for resources."""

@staticmethod
def _get_default_mtls_endpoint(api_endpoint):
Expand Down Expand Up @@ -1203,7 +1203,8 @@ def delete_collector(
metadata: Sequence[Tuple[str, str]] = (),
) -> operation.Operation:
r"""Deletes a single Collector - changes state of
collector to "Deleting".
collector to "Deleting". Background jobs does final
deletion thorugh producer api.

.. code-block:: python

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
class RapidMigrationAssessmentGrpcTransport(RapidMigrationAssessmentTransport):
"""gRPC backend transport for RapidMigrationAssessment.

Rapid Migration Assessment service
Service describing handlers for resources.

This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
Expand Down Expand Up @@ -427,7 +427,8 @@ def delete_collector(
r"""Return a callable for the delete collector method over gRPC.

Deletes a single Collector - changes state of
collector to "Deleting".
collector to "Deleting". Background jobs does final
deletion thorugh producer api.

Returns:
Callable[[~.DeleteCollectorRequest],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
class RapidMigrationAssessmentGrpcAsyncIOTransport(RapidMigrationAssessmentTransport):
"""gRPC AsyncIO backend transport for RapidMigrationAssessment.

Rapid Migration Assessment service
Service describing handlers for resources.

This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
Expand Down Expand Up @@ -438,7 +438,8 @@ def delete_collector(
r"""Return a callable for the delete collector method over gRPC.

Deletes a single Collector - changes state of
collector to "Deleting".
collector to "Deleting". Background jobs does final
deletion thorugh producer api.

Returns:
Callable[[~.DeleteCollectorRequest],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,7 +554,7 @@ class RapidMigrationAssessmentRestStub:
class RapidMigrationAssessmentRestTransport(RapidMigrationAssessmentTransport):
"""REST backend transport for RapidMigrationAssessment.

Rapid Migration Assessment service
Service describing handlers for resources.

This class defines the same methods as the primary client, so the
primary client can load the underlying transport implementation
Expand Down
Loading