Skip to content
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
230 changes: 192 additions & 38 deletions rpc/mocguestagent/compute/moc_mocguestagent_virtualmachine.pb.go

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

Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,22 @@ message UpdateAgentResponse {
string Error = 2;
}

message CopyVmcFilesRequest {
bytes VmcBinary = 1;
bytes PublicCertificate = 2;
bytes InstallScript = 3;
string VmcVersion = 4;
}

message CopyVmcFilesResponse {
google.protobuf.BoolValue Result = 1;
string Error = 2;
}

service VirtualMachineAgent {
rpc CheckNotification(google.protobuf.Empty) returns (NotificationResponse) {}
rpc RunCommand(VirtualMachineRunCommandRequest) returns (VirtualMachineRunCommandResponse) {}
rpc GetCommandResult(VirtualMachineCommandResultRequest) returns (VirtualMachineRunCommandResponse) {}
rpc UpdateAgent(UpdateAgentRequest) returns (UpdateAgentResponse) {}
rpc CopyVmcFiles(CopyVmcFilesRequest) returns (CopyVmcFilesResponse) {}
}
Loading
Loading