Skip to content

Commit

Permalink
update goldens
Browse files Browse the repository at this point in the history
  • Loading branch information
parthea committed Sep 23, 2024
1 parent dc23263 commit 99c7e17
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1534,9 +1534,6 @@ def get_location(self):
return self._GetLocation(self._session, self._host, self._interceptor) # type: ignore

class _GetLocation(_BaseCloudRedisRestTransport._BaseGetLocation, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.GetLocation")

@staticmethod
def _get_response(
host,
Expand Down Expand Up @@ -1607,9 +1604,6 @@ def list_locations(self):
return self._ListLocations(self._session, self._host, self._interceptor) # type: ignore

class _ListLocations(_BaseCloudRedisRestTransport._BaseListLocations, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.ListLocations")

@staticmethod
def _get_response(
host,
Expand Down Expand Up @@ -1680,9 +1674,6 @@ def cancel_operation(self):
return self._CancelOperation(self._session, self._host, self._interceptor) # type: ignore

class _CancelOperation(_BaseCloudRedisRestTransport._BaseCancelOperation, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.CancelOperation")

@staticmethod
def _get_response(
host,
Expand Down Expand Up @@ -1746,9 +1737,6 @@ def delete_operation(self):
return self._DeleteOperation(self._session, self._host, self._interceptor) # type: ignore

class _DeleteOperation(_BaseCloudRedisRestTransport._BaseDeleteOperation, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.DeleteOperation")

@staticmethod
def _get_response(
host,
Expand Down Expand Up @@ -1812,9 +1800,6 @@ def get_operation(self):
return self._GetOperation(self._session, self._host, self._interceptor) # type: ignore

class _GetOperation(_BaseCloudRedisRestTransport._BaseGetOperation, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.GetOperation")

@staticmethod
def _get_response(
host,
Expand Down Expand Up @@ -1885,9 +1870,6 @@ def list_operations(self):
return self._ListOperations(self._session, self._host, self._interceptor) # type: ignore

class _ListOperations(_BaseCloudRedisRestTransport._BaseListOperations, CloudRedisRestStub):
def __hash__(self):
return hash("CloudRedisRestTransport.ListOperations")

@staticmethod
def _get_response(
host,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseGetLocation:
def __hash__(self):
return hash("CloudRedisRestTransport.GetLocation")

@staticmethod
def _get_http_options():
Expand All @@ -577,6 +579,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseListLocations:
def __hash__(self):
return hash("CloudRedisRestTransport.ListLocations")

@staticmethod
def _get_http_options():
Expand All @@ -600,6 +604,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseCancelOperation:
def __hash__(self):
return hash("CloudRedisRestTransport.CancelOperation")

@staticmethod
def _get_http_options():
Expand All @@ -623,6 +629,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseDeleteOperation:
def __hash__(self):
return hash("CloudRedisRestTransport.DeleteOperation")

@staticmethod
def _get_http_options():
Expand All @@ -646,6 +654,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseGetOperation:
def __hash__(self):
return hash("CloudRedisRestTransport.GetOperation")

@staticmethod
def _get_http_options():
Expand All @@ -669,6 +679,8 @@ def _get_query_params_json(transcoded_request):
return query_params

class _BaseListOperations:
def __hash__(self):
return hash("CloudRedisRestTransport.ListOperations")

@staticmethod
def _get_http_options():
Expand Down

0 comments on commit 99c7e17

Please sign in to comment.