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

chore(proto): update to latest proto files #89

Merged
merged 1 commit into from
Sep 7, 2023
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
64 changes: 43 additions & 21 deletions pydpu/proto/v1/backend_aio_pb2.py

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

18 changes: 12 additions & 6 deletions pydpu/proto/v1/backend_aio_pb2_grpc.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,37 +53,43 @@ class AioVolumeServiceServicer(object):
"""

def CreateAioVolume(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""Create an Aio Volume
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def DeleteAioVolume(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""Delete an Aio Volume
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def UpdateAioVolume(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""Update an Aio Volume
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def ListAioVolumes(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""List Aio Volumes
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def GetAioVolume(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""Get an Aio Volume
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')

def StatsAioVolume(self, request, context):
"""Missing associated documentation comment in .proto file."""
"""Get an Aio Volume statistics
"""
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
context.set_details('Method not implemented!')
raise NotImplementedError('Method not implemented!')
Expand Down
Loading