Skip to content

Commit

Permalink
chore(connector): add fields for data association with pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
pinglin committed Jul 22, 2022
1 parent 0ca883c commit c15d92a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion vdp/connector/v1alpha/connector.proto
Original file line number Diff line number Diff line change
Expand Up @@ -527,8 +527,15 @@ message WriteDestinationConnectorRequest {
// https://docs.airbyte.com/understanding-airbyte/connections/#sync-modes
SupportedDestinationSyncModes destination_sync_mode = 4
[ (google.api.field_behavior) = REQUIRED ];
// Model instance used to generate the batch structured data
string model_instance = 5 [
(google.api.field_behavior) = REQUIRED,
(google.api.resource_reference) = {type : "api.instill.tech/ModelInstance"}
];
// Indices corresponding to each JSON data element
repeated string indices = 6 [ (google.api.field_behavior) = REQUIRED ];
// JSON data to write
google.protobuf.Struct data = 5 [ (google.api.field_behavior) = REQUIRED ];
google.protobuf.Struct data = 7 [ (google.api.field_behavior) = REQUIRED ];
}

// WriteDestinationConnectorResponse represents the read data from a
Expand Down

0 comments on commit c15d92a

Please sign in to comment.