Skip to content

Commit

Permalink
feat: remove warnings from reservation methods (#249)
Browse files Browse the repository at this point in the history
* feat: remove warnings from reservation methods

* chore: exclude noxfile.py from generated lib copy

* 🦉 Updates from OwlBot

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* revert owlbot changes

Co-authored-by: Bu Sun Kim <busunkim@google.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
  • Loading branch information
4 people committed Oct 11, 2021
1 parent 0a55c26 commit 2defd91
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions google/cloud/pubsublite/admin_client_interface.py
Expand Up @@ -116,45 +116,33 @@ def delete_subscription(self, subscription_path: SubscriptionPath):
@abstractmethod
def create_reservation(self, reservation: Reservation) -> Reservation:
"""Create a reservation, returns the created reservation.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

@abstractmethod
def get_reservation(self, reservation_path: ReservationPath) -> Reservation:
"""Get the reservation object from the server.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

@abstractmethod
def list_reservations(self, location_path: LocationPath) -> List[Reservation]:
"""List the Pub/Sub lite reservations that exist for a project in a given location.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

@abstractmethod
def update_reservation(
self, reservation: Reservation, update_mask: FieldMask
) -> Reservation:
"""Update the masked fields of the provided reservation.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

@abstractmethod
def delete_reservation(self, reservation_path: ReservationPath):
"""Delete a reservation and all associated messages.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

@abstractmethod
def list_reservation_topics(
self, reservation_path: ReservationPath
) -> List[TopicPath]:
"""List the subscriptions that exist for a given reservation.
warning:: This may not be implemented in the backend, it is a pre-release feature.
"""

0 comments on commit 2defd91

Please sign in to comment.