diff --git a/lib/go/volumegroup/volumegroup_grpc.pb.go b/lib/go/volumegroup/volumegroup_grpc.pb.go index d41b597..d658ee6 100644 --- a/lib/go/volumegroup/volumegroup_grpc.pb.go +++ b/lib/go/volumegroup/volumegroup_grpc.pb.go @@ -40,7 +40,7 @@ type ControllerClient interface { DeleteVolumeGroup(ctx context.Context, in *DeleteVolumeGroupRequest, opts ...grpc.CallOption) (*DeleteVolumeGroupResponse, error) // ListVolumeGroups RPC call to list volume groups. ListVolumeGroups(ctx context.Context, in *ListVolumeGroupsRequest, opts ...grpc.CallOption) (*ListVolumeGroupsResponse, error) - // CreateVolumeGroup RPC call to get a volume group. + // ControllerGetVolumeGroup RPC call to get a volume group. ControllerGetVolumeGroup(ctx context.Context, in *ControllerGetVolumeGroupRequest, opts ...grpc.CallOption) (*ControllerGetVolumeGroupResponse, error) } @@ -109,7 +109,7 @@ type ControllerServer interface { DeleteVolumeGroup(context.Context, *DeleteVolumeGroupRequest) (*DeleteVolumeGroupResponse, error) // ListVolumeGroups RPC call to list volume groups. ListVolumeGroups(context.Context, *ListVolumeGroupsRequest) (*ListVolumeGroupsResponse, error) - // CreateVolumeGroup RPC call to get a volume group. + // ControllerGetVolumeGroup RPC call to get a volume group. ControllerGetVolumeGroup(context.Context, *ControllerGetVolumeGroupRequest) (*ControllerGetVolumeGroupResponse, error) mustEmbedUnimplementedControllerServer() } diff --git a/volumegroup/volumegroup.proto b/volumegroup/volumegroup.proto index e6c0667..03f4e14 100644 --- a/volumegroup/volumegroup.proto +++ b/volumegroup/volumegroup.proto @@ -21,7 +21,7 @@ service Controller { // ListVolumeGroups RPC call to list volume groups. rpc ListVolumeGroups(ListVolumeGroupsRequest) returns (ListVolumeGroupsResponse) {} - // CreateVolumeGroup RPC call to get a volume group. + // ControllerGetVolumeGroup RPC call to get a volume group. rpc ControllerGetVolumeGroup(ControllerGetVolumeGroupRequest) returns (ControllerGetVolumeGroupResponse) {} }