mirror of
				https://github.com/juanfont/headscale.git
				synced 2025-11-04 01:51:04 +01:00 
			
		
		
		
	feat: rewrite proto to only update tags of machine
This commit is contained in:
		
							parent
							
								
									3a90079ab8
								
							
						
					
					
						commit
						31debf7055
					
				@ -81,9 +81,9 @@ service HeadscaleService {
 | 
				
			|||||||
        };
 | 
					        };
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    rpc UpdateMachine(UpdateMachineRequest) returns (UpdateMachineResponse) {
 | 
					    rpc SetTags(SetTagsRequest) returns (SetTagsResponse) {
 | 
				
			||||||
        option (google.api.http) = {
 | 
					        option (google.api.http) = {
 | 
				
			||||||
            post: "/api/v1/machine/{machine.id}"
 | 
					            post: "/api/v1/machine/{machine_id}/tags"
 | 
				
			||||||
            body: "*"
 | 
					            body: "*"
 | 
				
			||||||
        };
 | 
					        };
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
@ -62,11 +62,12 @@ message GetMachineResponse {
 | 
				
			|||||||
    Machine machine = 1;
 | 
					    Machine machine = 1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
message UpdateMachineRequest {
 | 
					message SetTagsRequest {
 | 
				
			||||||
    Machine machine = 1;
 | 
					    uint64 machine_id = 1;
 | 
				
			||||||
 | 
					    repeated string tags = 2;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
message UpdateMachineResponse {
 | 
					message SetTagsResponse {
 | 
				
			||||||
    Machine machine = 1;
 | 
					    Machine machine = 1;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user