Skip to content

Commit 2defd91

Browse files
dpcollins-googlebusunkim96gcf-owl-bot[bot]parthea
authored
feat: remove warnings from reservation methods (#249)
* 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 <[email protected]> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent 0a55c26 commit 2defd91

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

google/cloud/pubsublite/admin_client_interface.py

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -116,45 +116,33 @@ def delete_subscription(self, subscription_path: SubscriptionPath):
116116
@abstractmethod
117117
def create_reservation(self, reservation: Reservation) -> Reservation:
118118
"""Create a reservation, returns the created reservation.
119-
120-
warning:: This may not be implemented in the backend, it is a pre-release feature.
121119
"""
122120

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

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

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

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

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

0 commit comments

Comments
 (0)