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
23 changes: 19 additions & 4 deletions pkg/migration/migration.pb.go

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

8 changes: 7 additions & 1 deletion pkg/migration/migration.proto
Original file line number Diff line number Diff line change
Expand Up @@ -147,10 +147,16 @@ message ImportSandboxRequest {
// Identifier for the migration session. Must match the session_id used
// on the source for this LM.
string session_id = 1;
// Identifier of the new sandbox being rehydrated on the destination.
// The destination shim is created by this RPC, so there is no prior
// channel through which to communicate the new sandbox id; it must be
// supplied here. The opaque config from the source will be applied to
// a new sandbox with this id.
string sandbox_id = 2;
// Opaque config produced by PrepareAndExportSandbox on the source.
// Forwarded verbatim by the caller; the destination shim is responsible
// for decoding and applying it.
google.protobuf.Any config = 2;
google.protobuf.Any config = 3;
}

message ImportSandboxResponse {}
Expand Down
Loading