Skip to content
Merged
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
20 changes: 20 additions & 0 deletions temporal/api/sdk/v1/external_storage.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
syntax = "proto3";

package temporal.api.sdk.v1;

option go_package = "go.temporal.io/api/sdk/v1;sdk";
option java_package = "io.temporal.api.sdk.v1";
option java_multiple_files = true;
option java_outer_classname = "ExternalStorageProto";
option ruby_package = "Temporalio::Api::Sdk::V1";
option csharp_namespace = "Temporalio.Api.Sdk.V1";

// ExternalStorageReference identifies a payload stored in an external storage system.
// It is used as a claim-check token, allowing the actual payload data to be retrieved
// from the named driver using the provided claim data.
message ExternalStorageReference {
// The name of the storage driver responsible for retrieving the payload.
string driver_name = 1;
// Driver-specific key-value pairs that identify and provide access to the stored payload.
map<string, string> claim_data = 2;
}
Loading